* manager: add script for randomizing pkg name
Signed-off-by: rsuntk <rsuntk@yukiprjkt.my.id>
Co-Authored-By: YC酱luyancib <luyancib@qq.com>
* manager: Update randomizer to avoid bug
Revert "manager: Update randomizer to avoid bug"
This reverts commit af9205e70a11db3e3d43bb34de880bbd6b4185b5.
manager: Update randomizer to avoid bug
* mamager: Update randomizer to fix error
fixed
> Task :app:compileReleaseAidl FAILED
ERROR: /home/runner/work/SukiSU-Ultra/SukiSU-Ultra/manager/app/src/main/aidl/org/knifhr/zako/IKsuInterface.aidl:7.1-10: IKsuInterface should be declared in a file called com/sukisu/zako/IKsuInterface.aidl
* manager:clean randomizer
* ci:add spoofed manager build with matrix
* 更新 build-manager.yml
* 更新 build-manager.yml
* fix
* Revert "更新 build-manager.yml"
This reverts commit da80e3f13a.
* ksubot: make MESSAGE_THREAD_ID optional
---------
Signed-off-by: rsuntk <rsuntk@yukiprjkt.my.id>
Co-authored-by: rifsxd <rifat.44.azad.rifs@gmail.com>
Co-authored-by: 5ec1cff <ewtqyqyewtqyqy@gmail.com>
113 lines
2.9 KiB
Python
113 lines
2.9 KiB
Python
import asyncio
|
|
import os
|
|
import sys
|
|
from telethon import TelegramClient
|
|
|
|
API_ID = 611335
|
|
API_HASH = "d524b414d21f4d37f08684c1df41ac9c"
|
|
|
|
|
|
BOT_TOKEN = os.environ.get("BOT_TOKEN")
|
|
CHAT_ID = os.environ.get("CHAT_ID")
|
|
MESSAGE_THREAD_ID = os.environ.get("MESSAGE_THREAD_ID")
|
|
COMMIT_URL = os.environ.get("COMMIT_URL")
|
|
COMMIT_MESSAGE = os.environ.get("COMMIT_MESSAGE")
|
|
RUN_URL = os.environ.get("RUN_URL")
|
|
TITLE = os.environ.get("TITLE")
|
|
VERSION = os.environ.get("VERSION")
|
|
BRANCH = os.environ.get("BRANCH")
|
|
MSG_TEMPLATE = """
|
|
**{title}**
|
|
Branch: {branch}
|
|
#ci_{version}
|
|
```
|
|
{commit_message}
|
|
```
|
|
[Commit]({commit_url})
|
|
[Workflow run]({run_url})
|
|
""".strip()
|
|
|
|
|
|
def get_caption():
|
|
msg = MSG_TEMPLATE.format(
|
|
title=TITLE,
|
|
branch=BRANCH,
|
|
version=VERSION,
|
|
commit_message=COMMIT_MESSAGE,
|
|
commit_url=COMMIT_URL,
|
|
run_url=RUN_URL,
|
|
)
|
|
if len(msg) > 1024:
|
|
return COMMIT_URL
|
|
return msg
|
|
|
|
|
|
def check_environ():
|
|
global CHAT_ID, MESSAGE_THREAD_ID
|
|
if BOT_TOKEN is None:
|
|
print("[-] Invalid BOT_TOKEN")
|
|
exit(1)
|
|
if CHAT_ID is None:
|
|
print("[-] Invalid CHAT_ID")
|
|
exit(1)
|
|
else:
|
|
try:
|
|
CHAT_ID = int(CHAT_ID)
|
|
except:
|
|
pass
|
|
if COMMIT_URL is None:
|
|
print("[-] Invalid COMMIT_URL")
|
|
exit(1)
|
|
if COMMIT_MESSAGE is None:
|
|
print("[-] Invalid COMMIT_MESSAGE")
|
|
exit(1)
|
|
if RUN_URL is None:
|
|
print("[-] Invalid RUN_URL")
|
|
exit(1)
|
|
if TITLE is None:
|
|
print("[-] Invalid TITLE")
|
|
exit(1)
|
|
if VERSION is None:
|
|
print("[-] Invalid VERSION")
|
|
exit(1)
|
|
if BRANCH is None:
|
|
print("[-] Invalid BRANCH")
|
|
exit(1)
|
|
if MESSAGE_THREAD_ID is None and MESSAGE_THREAD_ID != "":
|
|
try:
|
|
MESSAGE_THREAD_ID = int(MESSAGE_THREAD_ID)
|
|
except:
|
|
print("[-] Invaild MESSAGE_THREAD_ID")
|
|
exit(1)
|
|
else:
|
|
MESSAGE_THREAD_ID = None
|
|
|
|
|
|
async def main():
|
|
print("[+] Uploading to telegram")
|
|
check_environ()
|
|
files = sys.argv[1:]
|
|
print("[+] Files:", files)
|
|
if len(files) <= 0:
|
|
print("[-] No files to upload")
|
|
exit(1)
|
|
print("[+] Logging in Telegram with bot")
|
|
script_dir = os.path.dirname(os.path.abspath(sys.argv[0]))
|
|
session_dir = os.path.join(script_dir, "ksubot")
|
|
async with await TelegramClient(session=session_dir, api_id=API_ID, api_hash=API_HASH).start(bot_token=BOT_TOKEN) as bot:
|
|
caption = [""] * len(files)
|
|
caption[-1] = get_caption()
|
|
print("[+] Caption: ")
|
|
print("---")
|
|
print(caption)
|
|
print("---")
|
|
print("[+] Sending")
|
|
await bot.send_file(entity=CHAT_ID, file=files, caption=caption, reply_to=MESSAGE_THREAD_ID, parse_mode="markdown")
|
|
print("[+] Done!")
|
|
|
|
if __name__ == "__main__":
|
|
try:
|
|
asyncio.run(main())
|
|
except Exception as e:
|
|
print(f"[-] An error occurred: {e}")
|