-
Notifications
You must be signed in to change notification settings - Fork 511
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1068 from leeAx/feat/lark_http
feat(lark):enable lark callback
- Loading branch information
Showing
6 changed files
with
152 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
from __future__ import annotations | ||
|
||
from .. import migration | ||
|
||
|
||
@migration.migration_class("lark-config-cmpl", 30) | ||
class LarkConfigCmplMigration(migration.Migration): | ||
"""迁移""" | ||
|
||
async def need_migrate(self) -> bool: | ||
"""判断当前环境是否需要运行此迁移""" | ||
|
||
for adapter in self.ap.platform_cfg.data['platform-adapters']: | ||
if adapter['adapter'] == 'lark': | ||
if 'enable-webhook' not in adapter: | ||
return True | ||
|
||
return False | ||
|
||
async def run(self): | ||
"""执行迁移""" | ||
for adapter in self.ap.platform_cfg.data['platform-adapters']: | ||
if adapter['adapter'] == 'lark': | ||
if 'enable-webhook' not in adapter: | ||
adapter['enable-webhook'] = False | ||
if 'port' not in adapter: | ||
adapter['port'] = 2285 | ||
if 'encrypt-key' not in adapter: | ||
adapter['encrypt-key'] = "xxxxxxxxx" | ||
|
||
await self.ap.platform_cfg.dump_config() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters