mirror of https://github.com/midoks/mdserver-web
parent
e64ac8f616
commit
af880115ab
|
Before Width: | Height: | Size: 974 B |
@ -1,27 +0,0 @@ |
||||
<div class="bt-form"> |
||||
<div class='plugin_version'></div> |
||||
<div class="bt-w-main"> |
||||
<div class="bt-w-menu"> |
||||
<p class="bgw" onclick="pluginService('tgclient');">服务</p> |
||||
<p onclick="pluginInitD('tgclient');">自启动</p> |
||||
<p onclick="clientConf();">配置</p> |
||||
<p onclick="botExtList();">扩展列表</p> |
||||
<p onclick="pluginLogs('tgclient','','run_log');">日志</p> |
||||
<p onclick="readme();">说明</p> |
||||
</div> |
||||
<div class="bt-w-con pd15"> |
||||
<div class="soft-man-con"></div> |
||||
</div> |
||||
</div> |
||||
</div> |
||||
<style> |
||||
.conf_p span{ |
||||
width: 70px; |
||||
} |
||||
</style> |
||||
<script type="text/javascript"> |
||||
resetPluginWinHeight(350); |
||||
$.getScript( "/plugins/file?name=tgclient&f=js/tgclient.js", function(){ |
||||
pluginService('tgclient'); |
||||
}); |
||||
</script> |
||||
@ -1,375 +0,0 @@ |
||||
# coding:utf-8 |
||||
|
||||
import sys |
||||
import io |
||||
import os |
||||
import time |
||||
import re |
||||
import json |
||||
import base64 |
||||
|
||||
web_dir = os.getcwd() + "/web" |
||||
if os.path.exists(web_dir): |
||||
sys.path.append(web_dir) |
||||
os.chdir(web_dir) |
||||
|
||||
import core.mw as mw |
||||
|
||||
app_debug = False |
||||
if mw.isAppleSystem(): |
||||
app_debug = True |
||||
|
||||
|
||||
def getPluginName(): |
||||
return 'tgclient' |
||||
|
||||
|
||||
def getPluginDir(): |
||||
return mw.getPluginDir() + '/' + getPluginName() |
||||
|
||||
|
||||
def getServerDir(): |
||||
return mw.getServerDir() + '/' + getPluginName() |
||||
|
||||
|
||||
def getInitDFile(): |
||||
if app_debug: |
||||
return '/tmp/' + getPluginName() |
||||
return '/etc/init.d/' + getPluginName() |
||||
|
||||
|
||||
def getConfigData(): |
||||
cfg_path = getServerDir() + "/data.cfg" |
||||
if not os.path.exists(cfg_path): |
||||
mw.writeFile(cfg_path, '{}') |
||||
t = mw.readFile(cfg_path) |
||||
return json.loads(t) |
||||
|
||||
|
||||
def writeConf(data): |
||||
cfg_path = getServerDir() + "/data.cfg" |
||||
mw.writeFile(cfg_path, json.dumps(data)) |
||||
return True |
||||
|
||||
|
||||
def getExtCfg(): |
||||
cfg_path = getServerDir() + "/extend.cfg" |
||||
if not os.path.exists(cfg_path): |
||||
mw.writeFile(cfg_path, '{}') |
||||
t = mw.readFile(cfg_path) |
||||
return json.loads(t) |
||||
|
||||
|
||||
def writeExtCfg(data): |
||||
cfg_path = getServerDir() + "/extend.cfg" |
||||
return mw.writeFile(cfg_path, json.dumps(data)) |
||||
|
||||
|
||||
def getInitDTpl(): |
||||
path = getPluginDir() + "/init.d/" + getPluginName() + ".tpl" |
||||
return path |
||||
|
||||
|
||||
def getArgs(): |
||||
args = sys.argv[2:] |
||||
tmp = {} |
||||
args_len = len(args) |
||||
if args_len == 1: |
||||
t = args[0].strip('{').strip('}') |
||||
if t.strip() == '': |
||||
tmp = [] |
||||
else: |
||||
t = t.split(':') |
||||
tmp[t[0]] = t[1] |
||||
tmp[t[0]] = t[1] |
||||
elif args_len > 1: |
||||
for i in range(len(args)): |
||||
t = args[i].split(':') |
||||
tmp[t[0]] = t[1] |
||||
return tmp |
||||
|
||||
|
||||
def checkArgs(data, ck=[]): |
||||
for i in range(len(ck)): |
||||
if not ck[i] in data: |
||||
return (False, mw.returnJson(False, '参数:(' + ck[i] + ')没有!')) |
||||
return (True, mw.returnJson(True, 'ok')) |
||||
|
||||
|
||||
def status(): |
||||
data = mw.execShell( |
||||
"ps -ef|grep tgclient |grep -v grep | grep -v mdserver-web | awk '{print $2}'") |
||||
if data[0] == '': |
||||
return 'stop' |
||||
return 'start' |
||||
|
||||
|
||||
def initDreplace(): |
||||
|
||||
file_tpl = getInitDTpl() |
||||
service_path = mw.getServerDir() |
||||
app_path = service_path + '/' + getPluginName() |
||||
|
||||
initD_path = getServerDir() + '/init.d' |
||||
if not os.path.exists(initD_path): |
||||
os.mkdir(initD_path) |
||||
file_bin = initD_path + '/' + getPluginName() |
||||
|
||||
# initd replace |
||||
# if not os.path.exists(file_bin): |
||||
content = mw.readFile(file_tpl) |
||||
content = content.replace('{$SERVER_PATH}', service_path + '/mdserver-web') |
||||
content = content.replace('{$APP_PATH}', app_path) |
||||
|
||||
mw.writeFile(file_bin, content) |
||||
mw.execShell('chmod +x ' + file_bin) |
||||
|
||||
pyMainTplContent = mw.readFile(getPluginDir() + '/startup/tgclient.py') |
||||
toPyMainPath = mw.getServerDir() + '/tgclient.py' |
||||
mw.writeFile(toPyMainPath, pyMainTplContent) |
||||
|
||||
# systemd |
||||
systemDir = mw.systemdCfgDir() |
||||
systemService = systemDir + '/tgclient.service' |
||||
systemServiceTpl = getPluginDir() + '/init.d/tgclient.service.tpl' |
||||
if os.path.exists(systemDir) and not os.path.exists(systemService): |
||||
service_path = mw.getServerDir() |
||||
se_content = mw.readFile(systemServiceTpl) |
||||
se_content = se_content.replace('{$APP_PATH}', app_path) |
||||
mw.writeFile(systemService, se_content) |
||||
mw.execShell('systemctl daemon-reload') |
||||
|
||||
return file_bin |
||||
|
||||
|
||||
def tbOp(method): |
||||
file = initDreplace() |
||||
|
||||
if not mw.isAppleSystem(): |
||||
data = mw.execShell('systemctl ' + method + ' ' + getPluginName()) |
||||
if data[1] == '': |
||||
return 'ok' |
||||
return data[1] |
||||
|
||||
data = mw.execShell(file + ' ' + method) |
||||
# print(data) |
||||
if data[1] == '': |
||||
return 'ok' |
||||
return 'ok' |
||||
|
||||
|
||||
def start(): |
||||
return tbOp('start') |
||||
|
||||
|
||||
def stop(): |
||||
return tbOp('stop') |
||||
|
||||
|
||||
def restart(): |
||||
status = tbOp('restart') |
||||
return status |
||||
|
||||
|
||||
def reload(): |
||||
|
||||
tgbot_tpl = getPluginDir() + '/startup/tgclient.py' |
||||
tgbot_dst = getServerDir() + '/tgclient.py' |
||||
|
||||
content = mw.readFile(tgbot_tpl) |
||||
mw.writeFile(tgbot_dst, content) |
||||
|
||||
ext_src = getPluginDir() + '/startup/extend' |
||||
ext_dst = getServerDir() |
||||
|
||||
mw.execShell('cp -rf ' + ext_src + ' ' + ext_dst) |
||||
|
||||
return tbOp('restart') |
||||
|
||||
|
||||
def initdStatus(): |
||||
if mw.isAppleSystem(): |
||||
return "Apple Computer does not support" |
||||
|
||||
shell_cmd = 'systemctl status ' + \ |
||||
getPluginName() + ' | grep loaded | grep "enabled;"' |
||||
data = mw.execShell(shell_cmd) |
||||
if data[0] == '': |
||||
return 'fail' |
||||
return 'ok' |
||||
|
||||
|
||||
def initdInstall(): |
||||
if mw.isAppleSystem(): |
||||
return "Apple Computer does not support" |
||||
|
||||
mw.execShell('systemctl enable ' + getPluginName()) |
||||
return 'ok' |
||||
|
||||
|
||||
def initdUinstall(): |
||||
if mw.isAppleSystem(): |
||||
return "Apple Computer does not support" |
||||
|
||||
mw.execShell('systemctl disable ' + getPluginName()) |
||||
return 'ok' |
||||
|
||||
|
||||
def getClientConf(): |
||||
data = getConfigData() |
||||
if 'bot' in data: |
||||
return mw.returnJson(True, 'ok', data['bot']) |
||||
return mw.returnJson(False, 'ok', {}) |
||||
|
||||
|
||||
def setClientConf(): |
||||
args = getArgs() |
||||
data_args = checkArgs(args, ['api_id', 'api_hash']) |
||||
if not data_args[0]: |
||||
return data_args[1] |
||||
|
||||
data = getConfigData() |
||||
args['api_id'] = base64.b64decode(args['api_id']).decode('ascii') |
||||
args['api_hash'] = base64.b64decode(args['api_hash']).decode('ascii') |
||||
data['bot'] = args |
||||
writeConf(data) |
||||
|
||||
return mw.returnJson(True, '保存成功!', []) |
||||
|
||||
|
||||
def installPreInspection(): |
||||
i = sys.version_info |
||||
if i[0] < 3 or i[1] < 7: |
||||
return "telebot在python小于3.7无法正常使用" |
||||
return 'ok' |
||||
|
||||
|
||||
def uninstallPreInspection(): |
||||
stop() |
||||
return "请手动删除<br/> rm -rf {}".format(getServerDir()) |
||||
|
||||
|
||||
def getExtCfgByName(name): |
||||
elist = getExtCfg() |
||||
for x in elist: |
||||
if x['name'] == name: |
||||
return x |
||||
return None |
||||
|
||||
|
||||
def clientExtList(): |
||||
|
||||
args = getArgs() |
||||
data_args = checkArgs(args, ['p']) |
||||
if not data_args[0]: |
||||
return data_args[1] |
||||
|
||||
ext_path = getServerDir() + '/extend' |
||||
if not os.path.exists(ext_path): |
||||
return mw.returnJson(False, 'ok', []) |
||||
elist_source = os.listdir(ext_path) |
||||
|
||||
elist = [] |
||||
for e in elist_source: |
||||
if e.endswith('py'): |
||||
elist.append(e) |
||||
|
||||
page = int(args['p']) |
||||
page_size = 5 |
||||
|
||||
make_ext_list = [] |
||||
for ex in elist: |
||||
tmp = {} |
||||
tmp['name'] = ex |
||||
edata = getExtCfgByName(ex) |
||||
if edata: |
||||
tmp['status'] = edata['status'] |
||||
else: |
||||
tmp['status'] = 'stop' |
||||
|
||||
tmp['tag'] = ex.split('_')[0] |
||||
make_ext_list.append(tmp) |
||||
|
||||
writeExtCfg(make_ext_list) |
||||
dlist_sum = len(make_ext_list) |
||||
|
||||
page_start = int((page - 1) * page_size) |
||||
page_end = page_start + page_size |
||||
|
||||
if page_end >= dlist_sum: |
||||
ret_data = make_ext_list[page_start:] |
||||
else: |
||||
ret_data = make_ext_list[page_start:page_end] |
||||
|
||||
data = {} |
||||
data['data'] = ret_data |
||||
data['args'] = args |
||||
data['list'] = mw.getPage( |
||||
{'count': dlist_sum, 'p': page, 'row': page_size, 'tojs': 'botExtListP'}) |
||||
|
||||
return mw.returnJson(True, 'ok', data) |
||||
|
||||
|
||||
def setExtStatus(): |
||||
args = getArgs() |
||||
data_args = checkArgs(args, ['name', 'status']) |
||||
if not data_args[0]: |
||||
return data_args[1] |
||||
|
||||
elist = getExtCfg() |
||||
name = args['name'] |
||||
status = args['status'] |
||||
for x in range(len(elist)): |
||||
if elist[x]['name'] == name: |
||||
elist[x]['status'] = status |
||||
break |
||||
|
||||
writeExtCfg(elist) |
||||
|
||||
action = '开启' |
||||
if status == 'stop': |
||||
action = '关闭' |
||||
|
||||
return mw.returnJson(True, action + '[' + name + ']扩展成功') |
||||
|
||||
|
||||
def runLog(): |
||||
p = getServerDir() + '/task.log' |
||||
return p |
||||
|
||||
|
||||
if __name__ == "__main__": |
||||
func = sys.argv[1] |
||||
if func == 'status': |
||||
print(status()) |
||||
elif func == 'start': |
||||
print(start()) |
||||
elif func == 'stop': |
||||
print(stop()) |
||||
elif func == 'restart': |
||||
print(restart()) |
||||
elif func == 'reload': |
||||
print(reload()) |
||||
elif func == 'initd_status': |
||||
print(initdStatus()) |
||||
elif func == 'initd_install': |
||||
print(initdInstall()) |
||||
elif func == 'initd_uninstall': |
||||
print(initdUinstall()) |
||||
elif func == 'install_pre_inspection': |
||||
print(installPreInspection()) |
||||
elif func == 'uninstall_pre_inspection': |
||||
print(uninstallPreInspection()) |
||||
elif func == 'get_client_conf': |
||||
print(getClientConf()) |
||||
elif func == 'set_client_conf': |
||||
print(setClientConf()) |
||||
elif func == 'client_ext_list': |
||||
print(clientExtList()) |
||||
elif func == 'set_ext_status': |
||||
print(setExtStatus()) |
||||
elif func == 'run_log': |
||||
print(runLog()) |
||||
|
||||
else: |
||||
print('error') |
||||
@ -1,20 +0,0 @@ |
||||
{ |
||||
"sort": 7, |
||||
"ps": "简单Telegram客服端管理", |
||||
"name": "tgclient", |
||||
"title": "tgclient", |
||||
"shell": "install.sh", |
||||
"versions":["1.1"], |
||||
"tip": "soft", |
||||
"checks": "server/tgclient", |
||||
"path": "server/tgclient", |
||||
"install_pre_inspection":true, |
||||
"uninstall_pre_inspection":true, |
||||
"display": 1, |
||||
"author": "midoks", |
||||
"date": "2023-03-06", |
||||
"home": "https://my.telegram.org/apps", |
||||
"depend_doc1":"https://docs.telethon.dev/en/stable/basic/installation.html", |
||||
"type": 0, |
||||
"pid": "5" |
||||
} |
||||
@ -1,14 +0,0 @@ |
||||
[Unit] |
||||
Description=Tgbot Service |
||||
After=network.target |
||||
|
||||
[Service] |
||||
Type=forking |
||||
ExecStart={$APP_PATH}/init.d/tgclient start |
||||
ExecStop={$APP_PATH}/init.d/tgclient stop |
||||
ExecReload={$APP_PATH}/init.d/tgclient reload |
||||
KillMode=process |
||||
Restart=on-failure |
||||
|
||||
[Install] |
||||
WantedBy=multi-user.target |
||||
@ -1,86 +0,0 @@ |
||||
#!/bin/sh |
||||
# chkconfig: 2345 55 25 |
||||
# description: Tgbot Service |
||||
|
||||
### BEGIN INIT INFO |
||||
# Provides: Tgbot |
||||
# Required-Start: $all |
||||
# Required-Stop: $all |
||||
# Default-Start: 2 3 4 5 |
||||
# Default-Stop: 0 1 6 |
||||
# Short-Description: starts Tgbot |
||||
# Description: starts the MDW-Web |
||||
### END INIT INFO |
||||
|
||||
# Simple Tgbot init.d script conceived to work on Linux systems |
||||
# as it does use of the /proc filesystem. |
||||
|
||||
PATH=/usr/local/bin:/bin:/sbin:/usr/bin:/usr/sbin:/usr/local/bin:/usr/local/sbin:~/bin |
||||
export LANG=en_US.UTF-8 |
||||
|
||||
|
||||
mw_path={$SERVER_PATH} |
||||
PATH=$PATH:$mw_path/bin |
||||
|
||||
if [ -f $mw_path/bin/activate ];then |
||||
source $mw_path/bin/activate |
||||
fi |
||||
|
||||
tg_start(){ |
||||
|
||||
isStart=`ps -ef|grep 'tgclient.py' |grep -v grep | awk '{print $2}'` |
||||
if [ "$isStart" == '' ];then |
||||
echo -e "starting tgclient... \c" |
||||
cd $mw_path |
||||
echo "python3 {$APP_PATH}/tgclient.py" |
||||
python3 {$APP_PATH}/tgclient.py >> {$APP_PATH}/task.log & |
||||
isStart="" |
||||
while [[ "$isStart" == "" ]]; |
||||
do |
||||
echo -e ".\c" |
||||
sleep 0.5 |
||||
isStart=`ps -ef|grep 'tgclient.py' |grep -v grep | awk '{print $2}'` |
||||
let n+=1 |
||||
if [ $n -gt 20 ];then |
||||
break; |
||||
fi |
||||
done |
||||
if [ "$isStart" == '' ];then |
||||
echo -e "\033[31mfailed\033[0m" |
||||
echo -e "\033[31mError: tgclient service startup failed.\033[0m" |
||||
return; |
||||
fi |
||||
echo -e "\033[32mdone\033[0m" |
||||
else |
||||
echo "starting tgclient...(pid $(echo $isStart)) already running" |
||||
fi |
||||
} |
||||
|
||||
|
||||
tg_stop(){ |
||||
echo -e "stopping tgclient ... \c"; |
||||
arr=`ps -ef|grep 'tgclient.py'|grep -v grep|awk '{print $2}'` |
||||
for p in ${arr[@]} |
||||
do |
||||
kill -9 $p > /dev/null 2>&1 |
||||
done |
||||
echo -e "\033[32mdone\033[0m" |
||||
} |
||||
|
||||
case "$1" in |
||||
start) |
||||
tg_start |
||||
;; |
||||
stop) |
||||
tg_stop |
||||
;; |
||||
restart|reload) |
||||
tg_stop |
||||
sleep 0.3 |
||||
tg_start |
||||
;; |
||||
*) |
||||
echo "Please use start or stop as first argument" |
||||
;; |
||||
esac |
||||
|
||||
@ -1,55 +0,0 @@ |
||||
#!/bin/bash |
||||
PATH=/bin:/sbin:/usr/bin:/usr/sbin:/usr/local/bin:/usr/local/sbin:~/bin |
||||
export PATH |
||||
|
||||
curPath=`pwd` |
||||
rootPath=$(dirname "$curPath") |
||||
rootPath=$(dirname "$rootPath") |
||||
serverPath=$(dirname "$rootPath") |
||||
|
||||
VERSION=$2 |
||||
|
||||
# pip3 install ccxt |
||||
if [ -f ${rootPath}/bin/activate ];then |
||||
source ${rootPath}/bin/activate |
||||
fi |
||||
|
||||
pip3 install telethon |
||||
|
||||
Install_App() |
||||
{ |
||||
echo '正在安装脚本文件...' |
||||
mkdir -p $serverPath/source |
||||
mkdir -p $serverPath/tgclient |
||||
echo "${VERSION}" > $serverPath/tgclient/version.pl |
||||
|
||||
cp -rf ${rootPath}/plugins/tgclient/startup/* $serverPath/tgclient |
||||
|
||||
cd ${rootPath} && python3 ${rootPath}/plugins/tgclient/index.py start |
||||
cd ${rootPath} && python3 ${rootPath}/plugins/tgclient/index.py initd_install |
||||
echo '安装完成' |
||||
} |
||||
|
||||
Uninstall_App() |
||||
{ |
||||
if [ -f /usr/lib/systemd/system/tgclient.service ];then |
||||
systemctl stop tgclient |
||||
systemctl disable tgclient |
||||
rm -rf /usr/lib/systemd/system/tgclient.service |
||||
systemctl daemon-reload |
||||
fi |
||||
|
||||
if [ -f $serverPath/tgclient/initd/tgclient ];then |
||||
$serverPath/tgclient/initd/tgclient stop |
||||
fi |
||||
|
||||
rm -rf $serverPath/tgclient |
||||
echo "Uninstall_redis" |
||||
} |
||||
|
||||
action=$1 |
||||
if [ "${1}" == 'install' ];then |
||||
Install_App |
||||
else |
||||
Uninstall_App |
||||
fi |
||||
@ -1,163 +0,0 @@ |
||||
function readme(){ |
||||
var readme = '<ul class="help-info-text c7">'; |
||||
readme += '<li>在填写好配置信息好后,还要执行下面命令。进行手机号和短信码验证。再重启,即可正常使用</li>'; |
||||
readme += '<li>cd /www/server/mdserver-web && source bin/activate && python3 /www/server/tgclient/tgclient.py</li>'; |
||||
readme += '<li>https://my.telegram.org/auth</li>'; |
||||
readme += '</ul>'; |
||||
$('.soft-man-con').html(readme); |
||||
} |
||||
|
||||
function appPost(method, args,callback){ |
||||
var loadT = layer.msg('正在获取...', { icon: 16, time: 0, shade: 0.3 }); |
||||
|
||||
var req_data = {}; |
||||
req_data['name'] = 'tgclient'; |
||||
req_data['func'] = method; |
||||
|
||||
if (typeof(args) == 'string'){ |
||||
req_data['args'] = JSON.stringify(toArrayObject(args)); |
||||
} else { |
||||
req_data['args'] = JSON.stringify(args); |
||||
} |
||||
|
||||
$.post('/plugins/run', req_data, function(data) { |
||||
layer.close(loadT); |
||||
if(typeof(callback) == 'function'){ |
||||
callback(data); |
||||
} |
||||
},'json');
|
||||
} |
||||
|
||||
function appPostCallbak(method, args,callback){ |
||||
var loadT = layer.msg('正在获取...', { icon: 16, time: 0, shade: 0.3 }); |
||||
|
||||
var req_data = {}; |
||||
req_data['name'] = 'tgclient'; |
||||
req_data['func'] = method; |
||||
|
||||
if (typeof(args) == 'string'){ |
||||
req_data['args'] = JSON.stringify(toArrayObject(args)); |
||||
} else { |
||||
req_data['args'] = JSON.stringify(args); |
||||
} |
||||
|
||||
$.post('/plugins/callback', req_data, function(data) { |
||||
layer.close(loadT); |
||||
if (!data.status){ |
||||
layer.msg(data.msg,{icon:0,time:2000,shade: [0.3, '#000']}); |
||||
return; |
||||
} |
||||
|
||||
if(typeof(callback) == 'function'){ |
||||
callback(data); |
||||
} |
||||
},'json');
|
||||
} |
||||
|
||||
function clientConf(){ |
||||
appPost('get_client_conf','',function(data){ |
||||
var rdata = $.parseJSON(data.data); |
||||
var api_id = 'api_id'; |
||||
var api_hash = 'api_hash'; |
||||
if(rdata['status']){ |
||||
db_data = rdata['data']; |
||||
|
||||
// api_id, api_hash
|
||||
api_id = db_data['api_id']; |
||||
api_hash = db_data['api_hash']; |
||||
|
||||
} |
||||
|
||||
var mlist = ''; |
||||
mlist += '<p><span>api_id</span><input style="width: 250px;" class="bt-input-text mr5" name="api_id" value="'+api_id+'" type="text"><font>必填写</font></p>'; |
||||
mlist += '<p><span>api_hash</span><input style="width: 250px;" class="bt-input-text mr5" name="api_hash" value="'+api_hash+'" type="text"><font>必填写</font></p>'; |
||||
var option = '<style>.conf_p p{margin-bottom: 2px}</style>\ |
||||
<div class="conf_p" style="margin-bottom:0">\ |
||||
' + mlist + '\ |
||||
<div style="margin-top:10px; padding-right:15px" class="text-right">\ |
||||
<button class="btn btn-success btn-sm" onclick="submitBotConf()">保存</button>\ |
||||
</div>\ |
||||
</div>'; |
||||
$(".soft-man-con").html(option); |
||||
}); |
||||
} |
||||
|
||||
function submitBotConf(){ |
||||
var pull_data = {}; |
||||
pull_data['api_id'] = base64_encode($('input[name="api_id"]').val()); |
||||
pull_data['api_hash'] = base64_encode($('input[name="api_hash"]').val()); |
||||
appPost('set_client_conf',pull_data,function(data){ |
||||
var rdata = $.parseJSON(data.data); |
||||
layer.msg(rdata['msg'],{icon:rdata['status']?1:2,time:2000,shade: [0.3, '#000']}); |
||||
}); |
||||
} |
||||
|
||||
|
||||
function botExtList(){ |
||||
var body = '<div class="divtable mtb10">\ |
||||
<table class="table table-hover" width="100%" cellspacing="0" cellpadding="0" border="0">\ |
||||
<thead>\ |
||||
<tr>\ |
||||
<th width="20">脚本</th>\ |
||||
<th width="120">类型</th>\ |
||||
<th width="10">状态</th>\ |
||||
</tr>\ |
||||
</thead>\ |
||||
<tbody id="ext_list"></tbody>\ |
||||
</table>\ |
||||
<div class="dataTables_paginate paging_bootstrap pagination">\ |
||||
<ul id="ext_list_page" class="page"></ul>\ |
||||
</div>\ |
||||
</div>'; |
||||
$('.soft-man-con').html(body); |
||||
botExtListP(1); |
||||
} |
||||
|
||||
function setBotExtStatus(name,status){ |
||||
appPost('set_ext_status',{'name':name,'status':status}, function(rdata){ |
||||
var rdata = $.parseJSON(rdata.data); |
||||
layer.msg(rdata['msg'],); |
||||
showMsg(rdata['msg'], function(){ |
||||
botExtListP(1); |
||||
},{icon:rdata['status']?1:2,shade: [0.3, '#000']},2000); |
||||
}); |
||||
} |
||||
|
||||
function botExtListP(p=1){ |
||||
appPost('client_ext_list',{'p':p}, function(rdata){ |
||||
// console.log(rdata);
|
||||
var rdata = $.parseJSON(rdata.data); |
||||
// console.log(rdata);
|
||||
var tBody = ''; |
||||
|
||||
if (!rdata.status && rdata.data.length == 0 ){ |
||||
var tBody = '<tr><td colspan="4"><div style="text-align:center;">无数据</div></td></tr>'; |
||||
} else{ |
||||
var ldata = rdata.data.data; |
||||
for (var i = 0; i < ldata.length; i++) { |
||||
tBody += '<tr data-name="'+ldata[i]['name']+'">' |
||||
tBody += '<td>'+ldata[i]['name']+'</td>'; |
||||
tBody += '<td>'+ldata[i]['tag']+'</td>'; |
||||
|
||||
if (ldata[i]['status'] == 'start'){ |
||||
tBody += '<td><span style="color:#20a53a;cursor: pointer;" class="ext_status glyphicon glyphicon-play"></span></td>'; |
||||
} else{ |
||||
tBody += '<td><span style="color:red;cursor: pointer;" class="ext_status glyphicon glyphicon-pause"></span></td>'; |
||||
} |
||||
tBody +='<tr>'; |
||||
} |
||||
} |
||||
|
||||
$('#ext_list').html(tBody); |
||||
$('#ext_list_page').html(rdata.data.list); |
||||
|
||||
$('#ext_list .ext_status').click(function(){ |
||||
var name = $(this).parent().parent().data('name'); |
||||
var status = 'stop'; |
||||
if ($(this).hasClass('glyphicon-pause')){ |
||||
status = 'start'; |
||||
} |
||||
setBotExtStatus(name,status); |
||||
}); |
||||
}); |
||||
} |
||||
@ -1,97 +0,0 @@ |
||||
# coding:utf-8 |
||||
|
||||
# func: 在其他发送推送AD |
||||
# url: https://docs.telethon.dev/en/stable/modules/client.html |
||||
import sys |
||||
import io |
||||
import os |
||||
import time |
||||
import re |
||||
import json |
||||
import base64 |
||||
import threading |
||||
import asyncio |
||||
|
||||
sys.path.append(os.getcwd() + "/class/core") |
||||
import mw |
||||
|
||||
from telethon import utils |
||||
from telethon import functions, types |
||||
from telethon.tl.functions.messages import AddChatUserRequest |
||||
from telethon.tl.functions.channels import InviteToChannelRequest |
||||
# 指定群ID |
||||
chat_id_list = [-1001578009023] |
||||
filter_g_id = [-1001771526434] |
||||
|
||||
|
||||
msg_ad = "本人软件推广(10s)\n\n" |
||||
msg_ad += "开源Linux面板【mdserver-web】,站长必备,无毒,源码为证。\n" |
||||
msg_ad += "不收费,全靠TG乞讨! \n" |
||||
msg_ad += "看个人简介,加入群聊,一起进步!\n" |
||||
# msg_ad += "https://github.com/midoks/mdserver-web \n" |
||||
# msg_ad += "\n" |
||||
# msg_ad += "加入群聊,一起进步! \n" |
||||
# msg_ad += "https://t.me/mdserver_web \n" |
||||
# msg_ad += "不收费,无毒。源码为证。全靠TG乞讨!😭\n\n" |
||||
# msg_ad += "捐赠地址 USDT(TRC20)\n" |
||||
# msg_ad += "TVbNgrpeGBGZVm5gTLa21ADP7RpnPFhjya\n" |
||||
# msg_ad += "日行一善,以后必定大富大贵\n" |
||||
|
||||
|
||||
async def writeLog(log_str): |
||||
if __name__ == "__main__": |
||||
print(log_str) |
||||
|
||||
now = mw.getDateFromNow() |
||||
log_file = mw.getServerDir() + '/tgclient/task.log' |
||||
mw.writeFileLog(now + ':' + log_str, log_file, limit_size=5 * 1024) |
||||
return True |
||||
|
||||
async def send_msg(client, chat_id, tag='ad', trigger_time=600): |
||||
# 信号只在一个周期内执行一次|start |
||||
lock_file = mw.getServerDir() + '/tgclient/lock.json' |
||||
if not os.path.exists(lock_file): |
||||
mw.writeFile(lock_file, '{}') |
||||
|
||||
lock_data = json.loads(mw.readFile(lock_file)) |
||||
if tag in lock_data: |
||||
diff_time = time.time() - lock_data[tag]['do_time'] |
||||
if diff_time >= trigger_time: |
||||
lock_data[tag]['do_time'] = time.time() |
||||
else: |
||||
return False, 0, 0 |
||||
else: |
||||
lock_data[tag] = {'do_time': time.time()} |
||||
mw.writeFile(lock_file, json.dumps(lock_data)) |
||||
# 信号只在一个周期内执行一次|end |
||||
|
||||
msg = await client.send_message(chat_id, msg_ad) |
||||
await asyncio.sleep(10) |
||||
await client.delete_messages(chat_id, msg) |
||||
await asyncio.sleep(3) |
||||
|
||||
async def run(client): |
||||
client.parse_mode = 'html' |
||||
# for chat_id in chat_id_list: |
||||
# await send_msg(client, chat_id) |
||||
# await asyncio.sleep(30) |
||||
|
||||
info = await client.get_dialogs() |
||||
for chat in info: |
||||
if chat.is_group and not chat.id in filter_g_id: |
||||
chat_id = str(chat.id) |
||||
if chat_id[0:4] != '-100': |
||||
continue |
||||
|
||||
# print(chat) |
||||
await writeLog('name:{0} id:{1} is_user:{2} is_channel:{3} is_group:{4}'.format( |
||||
chat.name, chat.id, chat.is_user, chat.is_channel, chat.is_group)) |
||||
try: |
||||
await send_msg(client, chat.id, 'ad_' + str(chat.id)) |
||||
except Exception as e: |
||||
await writeLog(str(chat)) |
||||
await writeLog(str(e)) |
||||
|
||||
|
||||
if __name__ == "__main__": |
||||
pass |
||||
@ -1,69 +0,0 @@ |
||||
# coding:utf-8 |
||||
|
||||
# func: 自动检测已经注销群成员 |
||||
|
||||
import sys |
||||
import io |
||||
import os |
||||
import time |
||||
import re |
||||
import json |
||||
import base64 |
||||
import threading |
||||
import asyncio |
||||
|
||||
sys.path.append(os.getcwd() + "/class/core") |
||||
import mw |
||||
|
||||
import telebot |
||||
from telebot import types |
||||
from telebot.util import quick_markup |
||||
|
||||
|
||||
# 指定群ID |
||||
chat_id_list = [-1001979545570] |
||||
# 别人群ID[有API调用限制] |
||||
chat_id_list_other = [-1001578009023, -1001771526434] |
||||
|
||||
async def writeLog(log_str): |
||||
if __name__ == "__main__": |
||||
print(log_str) |
||||
|
||||
now = mw.getDateFromNow() |
||||
log_file = mw.getServerDir() + '/tgclient/task.log' |
||||
mw.writeFileLog(now + ':' + log_str, log_file, limit_size=5 * 1024) |
||||
return True |
||||
|
||||
async def run(client): |
||||
for chat_id in chat_id_list: |
||||
try: |
||||
s = await client.send_message(chat_id, '开始自动检测已经注销群成员...') |
||||
count = 0 |
||||
async for user in client.iter_participants(chat_id): |
||||
if user.deleted: |
||||
count += 1 |
||||
msg = await client.kick_participant(chat_id, user) |
||||
|
||||
await client.edit_message(chat_id, s.id, '已经检测到有(%d)个账户已失效' % (count)) |
||||
await asyncio.sleep(3) |
||||
await client.edit_message(chat_id, s.id, '自动检测已经注销群成员完毕!!!') |
||||
await asyncio.sleep(3) |
||||
await client.delete_messages(chat_id, s) |
||||
except Exception as e: |
||||
print(str(e)) |
||||
writeLog(str(e)) |
||||
|
||||
for chat_id in chat_id_list_other: |
||||
try: |
||||
async for user in client.iter_participants(chat_id): |
||||
if user.deleted: |
||||
msg = await client.kick_participant(chat_id, user) |
||||
except Exception as e: |
||||
print(str(e)) |
||||
writeLog(str(e)) |
||||
|
||||
await asyncio.sleep(300) |
||||
|
||||
|
||||
if __name__ == "__main__": |
||||
pass |
||||
@ -1,55 +0,0 @@ |
||||
# coding:utf-8 |
||||
|
||||
# func: 自动邀请群成员 |
||||
|
||||
import sys |
||||
import io |
||||
import os |
||||
import time |
||||
import re |
||||
import json |
||||
import base64 |
||||
import threading |
||||
import asyncio |
||||
|
||||
sys.path.append(os.getcwd() + "/class/core") |
||||
import mw |
||||
|
||||
from telethon import utils |
||||
from telethon import functions, types |
||||
from telethon.tl.functions.messages import AddChatUserRequest |
||||
from telethon.tl.functions.channels import InviteToChannelRequest |
||||
# 指定群ID |
||||
chat_id = -1001979545570 |
||||
filter_user_id = 5568699210 |
||||
filter_g_id = [-1001771526434] |
||||
|
||||
|
||||
async def run(client): |
||||
info = await client.get_dialogs() |
||||
for chat in info: |
||||
is_sleep = True |
||||
print('name:{0} id:{1} is_user:{2} is_channel:{3} is_group:{4}'.format( |
||||
chat.name, chat.id, chat.is_user, chat.is_channel, chat.is_group)) |
||||
if chat.is_group and chat.id != chat_id: |
||||
list_user = [] |
||||
async for user in client.iter_participants(chat.id): |
||||
if chat.id in filter_g_id: |
||||
is_sleep = False |
||||
continue |
||||
|
||||
if filter_user_id != user.id and user.username != None and user.bot == False: |
||||
list_user.append(user.username) |
||||
print(list_user) |
||||
try: |
||||
await client(InviteToChannelRequest( |
||||
channel=chat_id, # chat_id |
||||
users=list_user, # 被邀请人id |
||||
)) |
||||
except Exception as e: |
||||
print(str(e)) |
||||
if is_sleep: |
||||
await asyncio.sleep(90000) |
||||
|
||||
if __name__ == "__main__": |
||||
pass |
||||
@ -1,54 +0,0 @@ |
||||
# coding:utf-8 |
||||
|
||||
# func: 临时测试 |
||||
|
||||
import sys |
||||
import io |
||||
import os |
||||
import time |
||||
import re |
||||
import json |
||||
import base64 |
||||
import threading |
||||
import asyncio |
||||
|
||||
sys.path.append(os.getcwd() + "/class/core") |
||||
import mw |
||||
|
||||
from telethon import utils |
||||
from telethon import functions, types |
||||
from telethon.tl.functions.messages import AddChatUserRequest |
||||
from telethon.tl.functions.channels import InviteToChannelRequest |
||||
# 指定群ID |
||||
chat_id = -1001979545570 |
||||
filter_user_id = 5568699210 |
||||
filter_g_id = [-1001771526434] |
||||
|
||||
|
||||
async def run(client): |
||||
|
||||
my_channel = await client.get_entity(PeerChannel(-1001173826177)) |
||||
print(my_channel) |
||||
|
||||
for i in range(9999999999): |
||||
try: |
||||
v = -1001000000000 - i |
||||
my_channel = await client.get_entity(PeerChannel(v)) |
||||
print(my_channel) |
||||
except Exception as e: |
||||
pass |
||||
|
||||
# -1001809140739 |
||||
# -1001800000000 |
||||
# -1000000000001 |
||||
|
||||
info = await client.get_dialogs() |
||||
for chat in info: |
||||
if not chat.is_group and chat.is_channel: |
||||
print('name:{0} id:{1} is_user:{2} is_channel:{3} is_group:{4}'.format( |
||||
chat.name, chat.id, chat.is_user, chat.is_channel, chat.is_group)) |
||||
await asyncio.sleep(10) |
||||
|
||||
|
||||
if __name__ == "__main__": |
||||
pass |
||||
@ -1 +0,0 @@ |
||||
push_*.py 识别为推送插件 |
||||
@ -1,132 +0,0 @@ |
||||
# coding:utf-8 |
||||
|
||||
import sys |
||||
import io |
||||
import os |
||||
import time |
||||
import re |
||||
import json |
||||
import base64 |
||||
import threading |
||||
import asyncio |
||||
import logging |
||||
|
||||
# python /Users/midoks/Desktop/mwdev/server/tgclient/tgclient.py |
||||
|
||||
''' |
||||
cd /www/server/mdserver-web && source bin/activate && python3 /www/server/tgclient/tgclient.py |
||||
''' |
||||
|
||||
from telethon import TelegramClient |
||||
|
||||
|
||||
sys.path.append(os.getcwd() + "/class/core") |
||||
import mw |
||||
|
||||
logging.basicConfig(level=logging.INFO, |
||||
format='%(asctime)s - %(name)s - %(levelname)s - %(message)s') |
||||
logger = logging.getLogger(__name__) |
||||
|
||||
|
||||
def getPluginName(): |
||||
return 'tgclient' |
||||
|
||||
|
||||
def getPluginDir(): |
||||
return mw.getPluginDir() + '/' + getPluginName() |
||||
|
||||
|
||||
def getServerDir(): |
||||
return mw.getServerDir() + '/' + getPluginName() |
||||
|
||||
|
||||
sys.path.append(getServerDir() + "/extend") |
||||
|
||||
|
||||
def getConfigData(): |
||||
cfg_path = getServerDir() + "/data.cfg" |
||||
if not os.path.exists(cfg_path): |
||||
mw.writeFile(cfg_path, '{}') |
||||
t = mw.readFile(cfg_path) |
||||
return json.loads(t) |
||||
|
||||
|
||||
def writeConf(data): |
||||
cfg_path = getServerDir() + "/data.cfg" |
||||
mw.writeFile(cfg_path, json.dumps(data)) |
||||
return True |
||||
|
||||
|
||||
def getExtCfg(): |
||||
cfg_path = getServerDir() + "/extend.cfg" |
||||
if not os.path.exists(cfg_path): |
||||
mw.writeFile(cfg_path, '{}') |
||||
t = mw.readFile(cfg_path) |
||||
return json.loads(t) |
||||
|
||||
|
||||
def getStartExtCfgByTag(tag='push'): |
||||
# 获取开启的扩展 |
||||
elist = getExtCfg() |
||||
rlist = [] |
||||
for x in elist: |
||||
if x['tag'] == tag and x['status'] == 'start': |
||||
rlist.append(x) |
||||
return rlist |
||||
|
||||
|
||||
def writeLog(log_str): |
||||
if __name__ == "__main__": |
||||
print(log_str) |
||||
|
||||
now = mw.getDateFromNow() |
||||
log_file = getServerDir() + '/task.log' |
||||
mw.writeFileLog(now + ':' + log_str, log_file, limit_size=5 * 1024) |
||||
return True |
||||
|
||||
|
||||
# start tgbot |
||||
cfg = getConfigData() |
||||
while True: |
||||
cfg = getConfigData() |
||||
if 'bot' in cfg and 'api_id' in cfg['bot']: |
||||
if cfg['bot']['api_id'] != '' and cfg['bot']['api_id'] != 'api_id': |
||||
break |
||||
if cfg['bot']['api_hash'] != '' and cfg['bot']['api_hash'] != 'api_hash': |
||||
break |
||||
writeLog('等待输入配置,api_id') |
||||
time.sleep(3) |
||||
|
||||
client = TelegramClient('mdioks', cfg['bot']['api_id'], cfg['bot']['api_hash']) |
||||
|
||||
async def plugins_run_task(): |
||||
plist = getStartExtCfgByTag('client') |
||||
for p in plist: |
||||
try: |
||||
script = p['name'].split('.')[0] |
||||
await __import__(script).run(client) |
||||
except Exception as e: |
||||
writeLog('----- client error start -------') |
||||
writeLog(mw.getTracebackInfo()) |
||||
writeLog('----- client error end -------') |
||||
|
||||
async def plugins_run(): |
||||
while True: |
||||
await plugins_run_task() |
||||
time.sleep(1) |
||||
|
||||
async def main(loop): |
||||
await client.start() |
||||
|
||||
# create new task |
||||
writeLog('creating plugins_run task.') |
||||
task = loop.create_task(plugins_run()) |
||||
await task |
||||
|
||||
writeLog('It works.') |
||||
await client.run_until_disconnected() |
||||
task.cancel() |
||||
|
||||
if __name__ == '__main__': |
||||
loop = asyncio.get_event_loop() |
||||
loop.run_until_complete(main(loop)) |
||||
Loading…
Reference in new issue