CliRemote 1.7.9__py3-none-any.whl → 1.7.10__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {cliremote-1.7.9.dist-info → cliremote-1.7.10.dist-info}/METADATA +1 -1
- {cliremote-1.7.9.dist-info → cliremote-1.7.10.dist-info}/RECORD +6 -6
- remote/admin_manager.py +44 -22
- {cliremote-1.7.9.dist-info → cliremote-1.7.10.dist-info}/WHEEL +0 -0
- {cliremote-1.7.9.dist-info → cliremote-1.7.10.dist-info}/licenses/LICENSE +0 -0
- {cliremote-1.7.9.dist-info → cliremote-1.7.10.dist-info}/top_level.txt +0 -0
@@ -1,8 +1,8 @@
|
|
1
|
-
cliremote-1.7.
|
1
|
+
cliremote-1.7.10.dist-info/licenses/LICENSE,sha256=O-0zMbcEi6wXz1DiSdVgzMlQjJcNqNe5KDv08uYzqR0,1055
|
2
2
|
remote/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
3
3
|
remote/account_manager.py,sha256=TepnGIoE2hU-j_NmU5ByoS-JrboE0w3A1bYmQoQX5h8,15176
|
4
4
|
remote/account_viewer.py,sha256=j46KSjbgrBmBi7UxFeJ5tCwHIe0QvCvphkirGIbB2oo,5192
|
5
|
-
remote/admin_manager.py,sha256=
|
5
|
+
remote/admin_manager.py,sha256=lgpdN3Mo6YzxNNm7eb7fjGuKzzkV39VRGafpavrAp8Y,4802
|
6
6
|
remote/analytics_manager.py,sha256=6jPvwt_ELA4RMbQdD8W_ltfAoaSgILnEkOAp6HZAqsU,7382
|
7
7
|
remote/batch_manager.py,sha256=jVGhYVwHMKJd7f7JxcWjKlwr03dq0RaGD1KdkyYdb00,1051
|
8
8
|
remote/block_manager.py,sha256=R7UaQigr-hTRtjxjG3OvJdKhvp0mDpLaESp3Of1AYhs,5692
|
@@ -33,7 +33,7 @@ remote/text_manager.py,sha256=C2wNSXPSCDu8NSD3RsfbKmUQMWOYd1B5N4tzy-Jsriw,2195
|
|
33
33
|
remote/username_manager.py,sha256=nMNdke-2FIv86xR1Y6rR-43oUoQu_3Khw8wEo54noXI,3388
|
34
34
|
remote/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
35
35
|
remote/utils/sqlite_utils.py,sha256=5i0oUXsBgKC_8qHZPJ-Gyhp9D1TwqKHVvuZRIhKpS6w,1260
|
36
|
-
cliremote-1.7.
|
37
|
-
cliremote-1.7.
|
38
|
-
cliremote-1.7.
|
39
|
-
cliremote-1.7.
|
36
|
+
cliremote-1.7.10.dist-info/METADATA,sha256=QTB61ZPptktRQaQTzGvRU5-F5vX4JatOmWdT_STGw1Y,1203
|
37
|
+
cliremote-1.7.10.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
38
|
+
cliremote-1.7.10.dist-info/top_level.txt,sha256=yBZidJ6zCix_a2ubGlYaewvlzBFXWbckQt20dudxJ1E,7
|
39
|
+
cliremote-1.7.10.dist-info/RECORD,,
|
remote/admin_manager.py
CHANGED
@@ -1,44 +1,67 @@
|
|
1
1
|
# remote/admin_manager.py
|
2
|
-
import json, os, logging
|
2
|
+
import json, os, sys, logging
|
3
|
+
from pathlib import Path
|
3
4
|
from pyrogram import filters
|
4
5
|
from .config import OWNER_ID
|
5
6
|
|
6
7
|
logger = logging.getLogger(__name__)
|
7
8
|
|
8
|
-
|
9
|
-
BASE_DIR = os.path.dirname(__file__)
|
10
|
-
ADMINS_FILE = os.path.join(BASE_DIR, "admins.json")
|
11
|
-
|
12
|
-
def load_admins() -> list[int]:
|
9
|
+
def _project_root() -> Path:
|
13
10
|
"""
|
14
|
-
|
11
|
+
ریشه پروژه = پوشهای که main.py داخلش اجرا شده.
|
15
12
|
"""
|
16
|
-
s = set(OWNER_ID) # همیشه Ownerها باشند
|
17
13
|
try:
|
18
|
-
|
19
|
-
|
14
|
+
main_file = Path(sys.modules["__main__"].__file__).resolve()
|
15
|
+
return main_file.parent
|
16
|
+
except Exception:
|
17
|
+
# fallback: اگر به هر دلیل __main__.__file__ نبود
|
18
|
+
return Path(os.getcwd()).resolve()
|
19
|
+
|
20
|
+
PROJECT_ROOT = _project_root()
|
21
|
+
ADMINS_FILE = PROJECT_ROOT / "admins.json" # ✅ کنار main.py
|
22
|
+
|
23
|
+
def _load_admins_from_file() -> list[int]:
|
24
|
+
try:
|
25
|
+
if ADMINS_FILE.exists():
|
26
|
+
with ADMINS_FILE.open("r", encoding="utf-8") as f:
|
20
27
|
data = json.load(f)
|
21
28
|
if isinstance(data, list):
|
29
|
+
out = []
|
22
30
|
for v in data:
|
23
31
|
try:
|
24
|
-
|
32
|
+
out.append(int(v))
|
25
33
|
except Exception:
|
26
34
|
logger.warning(f"Bad admin id in file: {v!r}")
|
35
|
+
return out
|
27
36
|
except Exception as e:
|
28
|
-
logger.warning(f"Error loading admins: {e}")
|
29
|
-
return
|
37
|
+
logger.warning(f"Error loading admins from {ADMINS_FILE}: {e}")
|
38
|
+
return []
|
39
|
+
|
40
|
+
# لیست ادمینهای موثر (فایل + Owner)
|
41
|
+
ADMINS: list[int] = []
|
42
|
+
|
43
|
+
def reload_admins():
|
44
|
+
"""فایل را میخواند و با OWNER_ID ادغام میکند؛ نتیجه در ADMINS."""
|
45
|
+
file_admins = _load_admins_from_file()
|
46
|
+
s = set(file_admins) | set(OWNER_ID)
|
47
|
+
global ADMINS
|
48
|
+
ADMINS = sorted(s)
|
49
|
+
logger.info(f"Loaded admins ({ADMINS_FILE}): {ADMINS}")
|
30
50
|
|
31
51
|
def save_admins():
|
32
|
-
"""
|
52
|
+
"""
|
53
|
+
ذخیره در فایل کنار main.py.
|
54
|
+
فقط ادمینهای غیر-Owner را داخل فایل نگه میداریم (Ownerها از config میآیند).
|
55
|
+
"""
|
33
56
|
try:
|
34
|
-
|
35
|
-
|
57
|
+
file_list = [x for x in ADMINS if x not in set(OWNER_ID)]
|
58
|
+
with ADMINS_FILE.open("w", encoding="utf-8") as f:
|
59
|
+
json.dump(file_list, f, ensure_ascii=False, indent=2)
|
60
|
+
logger.info(f"Saved admins to {ADMINS_FILE}: {file_list}")
|
36
61
|
except Exception as e:
|
37
62
|
logger.error(f"Error saving admins: {e}")
|
38
63
|
|
39
|
-
|
40
|
-
|
41
|
-
# فیلترها (داینامیک: هر بار اجرا، مقدار فعلی لیستها چک میشود)
|
64
|
+
# فیلترهای دسترسی
|
42
65
|
admin_filter = filters.create(
|
43
66
|
lambda _, __, m: bool(getattr(m, "from_user", None)) and int(m.from_user.id) in ADMINS
|
44
67
|
)
|
@@ -46,9 +69,7 @@ owner_filter = filters.create(
|
|
46
69
|
lambda _, __, m: bool(getattr(m, "from_user", None)) and int(m.from_user.id) in OWNER_ID
|
47
70
|
)
|
48
71
|
|
49
|
-
#
|
50
|
-
# فرمانهای مدیریتی
|
51
|
-
# =============================
|
72
|
+
# ===== فرمانها =====
|
52
73
|
async def add_admin_cmd(message):
|
53
74
|
try:
|
54
75
|
parts = (message.text or "").split()
|
@@ -61,6 +82,7 @@ async def add_admin_cmd(message):
|
|
61
82
|
return
|
62
83
|
if uid not in ADMINS:
|
63
84
|
ADMINS.append(uid)
|
85
|
+
ADMINS[:] = sorted(set(ADMINS) | set(OWNER_ID))
|
64
86
|
save_admins()
|
65
87
|
await message.reply(f"ادمین جدید اضافه شد: <code>{uid}</code>")
|
66
88
|
logger.info(f"Admin added: {uid}")
|
File without changes
|
File without changes
|
File without changes
|