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
160
161
162
163
164
165
166
|
#!/usr/bin/env python3
# -*- encoding: utf-8 -*-
'''
@File : __init__.py
@Time : 2020/10/11 14:44:06
@Author : Kyomotoi
@Contact : [email protected]
@Github : https://github.com/Kyomotoi
@License : Copyright © 2018-2020 Kyomotoi, All Rights Reserved.
'''
__author__ = 'kyomotoi'
import os
import json
from pathlib import Path
from typing import Optional
def checkSwitch(func_name: str, group: str) -> bool:
"""
:说明:
判断此功能针对 群 或 全体 是否开启。
:参数:
* ``func_name: str``: 功能名称
* ``group: str``: 功能触发所在群号
:返回:
是:True | 否:False
:用法:
.. code-block:: python
switch(func_name=Func, group=123456789)
"""
file_switch_all = Path('.') / 'utils' / 'utils_switch' / 'switch.json'
file_switch_alone = Path('.') / 'ATRI' / 'data' / 'data_Group' / f'{group}' / 'switch.json'
try:
with open(file_switch_all, 'r') as f:
data_switch_all = json.load(f)
except:
data_switch_all = {}
data_switch_all["anime-setu"] = "True"
data_switch_all["anime-pic-search"] = "True"
data_switch_all["anime-vid-search"] = "True"
data_switch_all["ai-face"] = "True"
data_switch_all["pixiv-pic-search"] = "True"
data_switch_all["pixiv-author-search"] = "True"
data_switch_all["pixiv-rank"] = "True"
with open(file_switch_all, 'w') as f:
f.write(json.dumps(data_switch_all))
f.close()
try:
with open(file_switch_alone, 'r') as f:
data_switch_alone = json.load(f)
except:
data_switch_alone = {}
try:
os.mkdir(Path('.') / 'ATRI' / 'data' / 'data_Group' / f'{group}')
except:
pass
data_switch_alone["anime-setu"] = "True"
data_switch_alone["anime-pic-search"] = "True"
data_switch_alone["anime-vid-search"] = "True"
data_switch_alone["ai-face"] = "True"
data_switch_alone["pixiv-pic-search"] = "True"
data_switch_alone["pixiv-author-search"] = "True"
data_switch_alone["pixiv-rank"] = "True"
with open(file_switch_alone, 'w') as f:
f.write(json.dumps(data_switch_alone))
f.close()
if data_switch_all[func_name] == "True":
if data_switch_alone[func_name] == "True":
return True
else:
return False
else:
return False
def controlSwitch(func_name: str, control: bool, group: Optional[str] = None) -> str:
"""
:说明:
目标功能针对 群 或 全体 开启或关闭。
:参数:
* ``func_name: str``: 功能名称
* ``control: bool``: 开启 / 关闭
* ``group: Optional[str] = None``: 对应群号,若不传入则为全局
:返回:
None
:用法:
.. code-block:: python
controlSwitch(func_name=Func, group=123456789)
"""
file_switch_all = Path('.') / 'utils' / 'utils_switch' / 'switch.json'
if group:
file_switch_group = Path('.') / 'ATRI' / 'data' / 'data_Group' / f'{group}' / 'switch.json'
try:
with open(file_switch_group, 'r') as f:
data_switch_group = json.load(f)
except:
data_switch_group = {}
if data_switch_group[f"{func_name}"]:
pass
else:
return f"Can't find func({func_name})"
data_switch_group[f"{func_name}"] = f"{control}"
with open(file_switch_group, 'w') as f:
f.write(json.dumps(data_switch_group))
f.close()
else:
pass
try:
with open(file_switch_all, 'r') as f:
data_switch_all = json.load(f)
except:
data_switch_all = {}
if data_switch_all[f"{func_name}"]:
pass
else:
return f"Can't find func({func_name})"
data_switch_all[f"{func_name}"] = f"{control}"
with open(file_switch_all, 'w') as f:
f.write(json.dumps(data_switch_all))
f.close()
if control == True:
if group:
msg = f"({func_name}) has been opened for group ({group})!"
else:
msg = f"({func_name}) has been opened!"
else:
if group:
msg = f"({func_name}) has been closed for group ({group})!"
else:
msg = f"({func_name}) has been closed!"
return msg
|