-
Notifications
You must be signed in to change notification settings - Fork 37
/
main.py
159 lines (136 loc) · 4.55 KB
/
main.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
# Moon-Userbot - telegram userbot
# Copyright (C) 2020-present Moon Userbot Organization
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <https://www.gnu.org/licenses/>.
# /// script
# requires-python = ">=3.12"
# dependencies = [
# "pip",
# "pyrofork",
# "tgcrypto",
# "wheel",
# "gunicorn",
# "flask",
# "humanize",
# "pygments",
# "ffmpeg-python",
# "pymongo",
# "psutil",
# "Pillow>=9.0.0",
# "pytubefix",
# "click",
# "dnspython",
# "requests",
# "environs",
# "GitPython",
# "beautifulsoup4",
# "aiohttp",
# "aiofiles",
# "rentry",
# "pySmartDL",
# "lexica-api",
# ]
# ///
import os
import logging
import sqlite3
import platform
import subprocess
from pathlib import Path
from pyrogram import Client, idle, errors
from pyrogram.enums.parse_mode import ParseMode
from pyrogram.raw.functions.account import GetAuthorizations, DeleteAccount
from utils import config
from utils.db import db
from utils.misc import gitrepo, userbot_version
from utils.scripts import restart, load_module
script_path = os.path.dirname(os.path.realpath(__file__))
if script_path != os.getcwd():
os.chdir(script_path)
common_params = {
"api_id": config.api_id,
"api_hash": config.api_hash,
"hide_password": True,
"workdir": script_path,
"app_version": userbot_version,
"device_model": f"Moon-Userbot @ {gitrepo.head.commit.hexsha[:7]}",
"system_version": platform.version() + " " + platform.machine(),
"sleep_threshold": 30,
"test_mode": config.test_server,
"parse_mode": ParseMode.HTML,
}
if config.STRINGSESSION:
common_params["session_string"] = config.STRINGSESSION
app = Client("my_account", **common_params)
async def main():
logging.basicConfig(
format="%(asctime)s - %(name)s - %(levelname)s - %(message)s",
handlers=[logging.FileHandler("moonlogs.txt"), logging.StreamHandler()],
level=logging.INFO,
)
DeleteAccount.__new__ = None
try:
await app.start()
except sqlite3.OperationalError as e:
if str(e) == "database is locked" and os.name == "posix":
logging.warning(
"Session file is locked. Trying to kill blocking process..."
)
subprocess.run(["fuser", "-k", "my_account.session"], check=True)
restart()
raise
except (errors.NotAcceptable, errors.Unauthorized) as e:
logging.error(
f"{e.__class__.__name__}: {e}\nMoving session file to my_account.session-old..."
)
os.rename("./my_account.session", "./my_account.session-old")
restart()
success_modules = 0
failed_modules = 0
for path in Path("modules").rglob("*.py"):
try:
await load_module(
path.stem, app, core="custom_modules" not in path.parent.parts
)
except Exception:
logging.warning("Can't import module %s", path.stem, exc_info=True)
failed_modules += 1
else:
success_modules += 1
logging.info("Imported %s modules", success_modules)
if failed_modules:
logging.warning("Failed to import %s modules", failed_modules)
if info := db.get("core.updater", "restart_info"):
text = {
"restart": "<b>Restart completed!</b>",
"update": "<b>Update process completed!</b>",
}[info["type"]]
try:
await app.edit_message_text(info["chat_id"], info["message_id"], text)
except errors.RPCError:
pass
db.remove("core.updater", "restart_info")
# required for sessionkiller module
if db.get("core.sessionkiller", "enabled", False):
db.set(
"core.sessionkiller",
"auths_hashes",
[
auth.hash
for auth in (await app.invoke(GetAuthorizations())).authorizations
],
)
logging.info("Moon-Userbot started!")
await idle()
await app.stop()
if __name__ == "__main__":
app.run(main())