admin.html 10.6 KB
Newer Older
H
hjdhnx 已提交
1 2 3
<!DOCTYPE html>
<html lang="en">
<head>
H
hjdhnx 已提交
4
    <meta charset="utf-8">
H
hjdhnx 已提交
5
  <title>管理员操作中心-{{rules.count}}条规则</title>
H
hjdhnx 已提交
6 7 8
  <meta name="description" content="particles.js is a lightweight JavaScript library for creating particles.">
  <meta name="author" content="道长"/>
  <meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0, user-scalable=no">
H
hjdhnx 已提交
9
<!--    <link rel="stylesheet" media="screen" href="/static/css/admin.css">-->
H
hjdhnx 已提交
10
    <link rel="stylesheet" media="screen" href="/static/css/admin.css">
H
hjdhnx 已提交
11
  <link rel="icon" href="/static/img/logo.png" type="image/x-icon">
H
hjdhnx 已提交
12
    <script src="/static/js/jquery.min.js"></script>
H
hjdhnx 已提交
13
    <script src="/static/js/common.js"></script>
H
hjdhnx 已提交
14 15
</head>
<body>
H
hjdhnx 已提交
16 17 18 19 20 21 22
<script>
    $(document).ready(function(){
        $(".view").click(function(){
            let rule = this.innerText.trim();
            location.href = '/admin/view/'+rule+'.js';
        });

H
hjdhnx 已提交
23 24 25 26 27
        $(".view_home").click(function(){
            let rule = this.getAttribute('value').trim();
            location.href = '/vod?rule='+rule;
        });

H
hjdhnx 已提交
28 29 30 31 32 33 34 35
        $("#checkUpdate").click(function(){
            console.log('开始检查升级...');
            $.get("/admin/get_ver",function(data,status){
                console.log("数据: " + data + "\n状态: " + status);
                if(data.msg){
                    alert(data.msg);
                    return false
                }else{
36
                    if(data.local_ver && data.online_ver && !data.msg){
H
hjdhnx 已提交
37 38 39 40 41
                        if(data.local_ver !== data.online_ver){
                            msg = `本地版本:${data.local_ver}\n线上版本:${data.online_ver}\n是否立即执行升级?`;
                            if(confirm(msg)){
                               $.get("/admin/update_ver",function(data,status){
                                   console.log(data);
H
hjdhnx 已提交
42
                                   if(data.code === 200){
43 44
                                       // alert(data.msg+'\n除主程序app.py需要自行检测替换升级外,其他关键文件全部更新完毕');
                                       alert(data.msg);
H
hjdhnx 已提交
45 46 47
                                      location.reload();
                                   }else{
                                       alert(data.msg||'未知数据,具体到数据控制台查看');
H
hjdhnx 已提交
48 49 50
                                       console.log('升级失败了...');
                                       return false
                                   }
H
hjdhnx 已提交
51 52 53 54 55
                               });
                            }
                        }else{
                            alert('已经是最新版,无需升级!')
                        }
56 57
                    }else if(data.msg){
                        alert('检测升级疑似发生了问题:\n'+data.msg);
H
hjdhnx 已提交
58 59 60 61 62 63 64
                    }else{
                        alert('已经是最新版,无需升级!')
                    }
                }
            });
        });

H
hjdhnx 已提交
65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80
        $(".clear").click(function(){
            let rule = this.getAttribute('value').trim();
            if(confirm('确认删除内置规则:'+rule+'?')){
            let code = $.ajax({url:'/admin/clear/'+rule+'.js',async:false}).responseText;
            code = typeof(code) === "object"?code:JSON.parse(code);
            if(code.code === 200){
                alert('操作成功!\n'+code.msg);
                location.reload()
            }else{
                alert('操作失败!\n'+code.msg);
            }
            }
        });

        $('#upload').click(function(){
            var file_data = $("input[name='file']").prop("files")[0];
H
hjdhnx 已提交
81
            // console.log(file_data);
H
hjdhnx 已提交
82 83
            if(!file_data){
                alert('文件必选');
84 85 86 87 88 89
                return false
            }
            var name = file_data.name;
            if(!name.endsWith('.js')){
                alert('仅支持上传js文件');
                return false
H
hjdhnx 已提交
90 91 92 93
            }
            var form_data = new FormData();
            // 把所有表单信息
            form_data.append("id", "001");
94
            form_data.append("name", name);
H
hjdhnx 已提交
95 96 97
            form_data.append("file", file_data);
            $.ajax({
                type: "POST",
H
hjdhnx 已提交
98
                url: "/admin/upload",
H
hjdhnx 已提交
99 100 101 102 103 104 105 106 107 108 109 110 111
                dataType : "json",
                processData: false,  // 注意:让jQuery不要处理数据
                contentType: false,  // 注意:让jQuery不要设置contentType
                data: form_data
            }).success(function(ret) {
                console.log(ret);
                alert(ret.msg);
                location.reload();
            }).fail(function(ret) {
                console.log(ret);
                alert(ret.msg);
            });
        });
H
hjdhnx 已提交
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

        $('#update_lives').click(function(){
            let live_url = $('#live_url').val();
            // console.log(live_url);
            let new_live_url = prompt('输入临时同步远程直播源地址(自动获取当前配置)',live_url);
            if(new_live_url.startsWith('http')){
                $.get("/admin/update_lives?url="+new_live_url,function(data,status){
                console.log("数据: " + data + "\n状态: " + status);
                if(data.code === 200){
                    alert('操作成功!\n'+data.msg);
                    // location.reload();
                }else{
                    alert('操作失败!\n'+data.msg);
                }
             });
            }
        });

        $('#write_lives').click(function(){
            let live_url = $('#live_url').val();
            let new_live_url = prompt('请修改默认的远程直播源地址',live_url);
            if(new_live_url){
                console.log('修改直播源地址为:'+new_live_url);
                $.get("/admin/write_live_url?url="+new_live_url,function(data,status){
                console.log("数据: " + data + "\n状态: " + status);
                if(data.code === 200){
                    alert('操作成功!\n'+data.msg);
                    location.reload();
                }else{
                    alert('操作失败!\n'+data.msg);
                }
             });
            }
        });

H
hjdhnx 已提交
147 148 149 150 151 152 153 154 155 156
        $('#force_update').click(function (){
            let msg = `
            升级过程中由于新版本升级脚本发生改变可能会导致升级完毕但是升级不完整。
            此时需要重启服务后执行强制升级操作通过更新后的升级脚本把本地升级包文件再次覆盖完成完整升级。
            是否继续(请确认你升级完后重启过,不然点确定毫无必要)?
            `;
            if(confirm(msg)){
                $.get("/admin/force_update",function(data,status){
                                   console.log(data);
                                   if(data.code === 200){
157 158
                                       // alert(data.msg+'\n除主程序app.py需要自行检测替换升级外,其他关键文件全部更新完毕');
                                       alert(data.msg);
H
hjdhnx 已提交
159 160 161 162 163 164 165 166 167 168
                                      location.reload();
                                   }else{
                                       alert(data.msg||'未知数据,具体到数据控制台查看');
                                       console.log('升级失败了...');
                                       return false
                                   }
               });
            }
        });

H
hjdhnx 已提交
169 170 171 172 173 174 175 176 177 178 179 180 181 182
        $('#use_py').click(function (){
             $.get("/admin/change_use_py",function(data,status){
                   console.log(data);
                   if(data.code === 200){
                       alert(data.msg);
                      location.reload();
                   }else{
                       alert(data.msg);
                       console.log('升级失败了...');
                       return false
                   }
               });
        });

H
hjdhnx 已提交
183
});
H
hjdhnx 已提交
184 185
function getFileSize(fileObj) {
   $('#file_size').text('文件大小为:'+fileObj.files[0].size/1024+'kb');
H
hjdhnx 已提交
186
}
H
hjdhnx 已提交
187
</script>
H
hjdhnx 已提交
188 189 190
<h2 class="title">欢迎使用DR-PY管理界面<div><span class="ver_title">当前版本: {{ ver }}</span><span
                class="ver_title">框架开发:道长</span><span class="ver_title">框架美化:蓝莓</span></div>
</h2>
H
hjdhnx 已提交
191
<h4>
H
hjdhnx 已提交
192
    <button type="button" class="yongyin"><a href="/index">返回首页</a></button>
H
hjdhnx 已提交
193
    <button type="button" class="yongyin"><a href="/admin/settings">设置中心</a></button>
H
hjdhnx 已提交
194 195
    <button type="button" class="yongyin1"><a href="javascript:void(0);" class="funcbtn"
            id="checkUpdate">检测升级</a></button>
H
hjdhnx 已提交
196 197 198 199 200 201
    <button type="button" class="yongyin1"><a href="javascript:void(0);" class="funcbtn"
            id="force_update">强制升级</a></button>
<!--    <button type="button" class="yongyin2"><a href="javascript:copy('cp ./tmp/dr_py-master/app.py ./app.py');"-->
<!--            class="funcbtn" id="update_by_self">升级指令</a></button>-->
<!--    <button type="button" class="yongyin2"><a href="javascript:copy('cp ./tmp/dr_py-master/base/custom.conf base');"-->
<!--            class="funcbtn" id="user_custom">用户配置</a></button>-->
H
hjdhnx 已提交
202 203 204 205
    <button type="button" class="yongyin3"><a href="javascript:void(0);" class="funcbtn"
            id="write_lives">修改直播源</a></button>
    <button type="button" class="yongyin4"><a href="javascript:void(0);" class="funcbtn"
            id="update_lives">同步直播源</a></button>
H
hjdhnx 已提交
206 207
    <button type="button" class="yongyin3"><a href="javascript:void(0);" class="funcbtn"
            id="use_py">已{% if pystate=='1' %}启用{% else %}关闭{% endif %}py源</a></button>
H
hjdhnx 已提交
208

H
hjdhnx 已提交
209 210
    <input id="live_url" value="{{live_url}}" style="display: none">
    <p class="box">你可以在此界面在线管理JS目录里规则文件的上传/删除</p>
H
hjdhnx 已提交
211
</h4>
H
hjdhnx 已提交
212
 <form action = "/admin/upload" method = "POST" enctype = "multipart/form-data">
213 214
<!--     <input type = "file" name = "file" class="btn" accept=".js"  onchange="getFileSize(this)"/>-->
     <input type = "file" name = "file" class="btn" onchange="getFileSize(this)"/>
H
hjdhnx 已提交
215 216
<!--     <input type = "submit" value="上传" class="btn"/>-->
     <input type="button" id="upload" value="上传" class="btn"/>
H
hjdhnx 已提交
217
</form>
H
hjdhnx 已提交
218
<p id="file_size"></p>
H
hjdhnx 已提交
219
<h2>规则列表数据-共{{rules.count}}条</h2>
H
hjdhnx 已提交
220 221 222
{% if rules.count < 1 %}
<h3>暂无内置的规则</h3>
{% endif %}
H
hjdhnx 已提交
223
<div class="zt">
H
hjdhnx 已提交
224
{% for rule in rules.list %}
H
hjdhnx 已提交
225 226 227 228 229
    <div class="red">
         <div class="mz"><a class="view" href="javascript:void(0);">{{ rule.name }}</a></div>
        <div class="sj"><a class="view_home" href="javascript:void(0);" value="{{ rule.name }}">主页数据预览</a></div>
        <div class="sc"><a class="clear" href="javascript:void(0);" value="{{ rule.name }}">删除</a></div>
    </div>
H
hjdhnx 已提交
230
 {% endfor %}
H
hjdhnx 已提交
231
</div>
H
hjdhnx 已提交
232 233
</body>
</html>