Browse Source

perform identity tests

root 2 years ago
parent
commit
a6643d3662
3 changed files with 31 additions and 8 deletions
  1. 28 5
      js/score.js
  2. 0 0
      js/score.min.js
  3. 3 3
      score/index.html

+ 28 - 5
js/score.js

@@ -8,7 +8,7 @@ function decimal(x, n) {
     return x.toFixed(n);
 }
 var fileCount = 0, cur = 0, files = {};
-var stuId = {}, examId = {}
+var stuId = {}, examId = {}, user
 
 function prevFile() {
     cur = (cur - 1 + fileCount) % fileCount;
@@ -111,6 +111,29 @@ function fetchDo(id) {
     })
 }
 
+function check() {
+    var a = prompt('验证身份\n我的数字校园号是:')
+    fetch('/js/e.json', {
+        method: 'GET',
+        headers: {
+            'Content-type': 'application/json',
+        }
+    }).then(res => {
+        res.json().then(resj => {
+            var queryData = resj.data.filter(function (e) {
+                return e.no == a
+            });
+            var o = queryData[0].organization
+
+            if (o.slice(o.length - 3) == '11班') {
+                user = queryData[0].name
+                $('.fetch').toggle(1000)
+            }
+            else alert('no')
+        });
+    })
+}
+
 function fetchMe(id) {
     if (!parseInt(id)) {
         fetch('/js/e.json', {
@@ -203,7 +226,7 @@ function getSe(id, force, force2) {
                 $('#singleDat').append('<br><span class="cover' + (i - 1) + '"></span><img src="http://36.112.23.77' + f.examUrl + 'page_' + i + '.jpg" onload="imageLoaded(' + (i - 1) + ')">')
                 $('img')[i - 1].style.width = '100%'
             }
-            if(!f.pageCount)$('#singleDat').append('<p>无答题卡数据</p>')
+            if (!f.pageCount) $('#singleDat').append('<p>无答题卡数据</p>')
             datSe = f;
         });
     })
@@ -258,7 +281,7 @@ function resizeChart() {
 }
 
 function getClassCount() {
-    if (examId[cur] == 1028 ||examId[cur] == 1021 || examId[cur] == 972 || examId[cur] == 957 || examId[cur] == 951) return '15'
+    if (examId[cur] == 1044 || examId[cur] == 1028 || examId[cur] == 1021 || examId[cur] == 972 || examId[cur] == 957 || examId[cur] == 951) return '15'
     else if (examId[cur] == 970) return '13'
     else return '?'
 }
@@ -423,7 +446,7 @@ function processFiles(isFirstTime = 0) {
         $('#single').append('<span id="singleDat" style="word-wrap: break-word; white-space: normal"></span><br><br><br>')
         if (isFirstTime) {
             var bd = JSON.stringify({
-                content: stuId[cur] + ' (' + parseInt(dat.examStudents[0].classId) + ' ' + mulStu.studentName + ') fetched ' + examId[cur] + ' ("' + dat.multiExam.meName + '")',
+                content: user + ' fetched ' + stuId[cur] + ' (' + parseInt(dat.examStudents[0].classId) + ' ' + mulStu.studentName + ') ' + examId[cur] + ' ("' + dat.multiExam.meName + '")',
             })
             fetch('/score/log', {
                 method: 'POST',
@@ -785,4 +808,4 @@ $().ready(function () {
     })
 })
 
-//uglifyjs public/js/score.js -c -m eval,toplevel,reserved=[nextFile,prevFile,fetchMe,resizeChart,getSe,imageLoaded,getFiles,fontSize,curSe,datSe] -o public/js/score.min.js
+//uglifyjs public/js/score.js -c -m eval,toplevel,reserved=[check,nextFile,prevFile,fetchMe,resizeChart,getSe,imageLoaded,getFiles,fontSize,curSe,datSe] -o public/js/score.min.js

File diff suppressed because it is too large
+ 0 - 0
js/score.min.js


+ 3 - 3
score/index.html

@@ -95,7 +95,7 @@
 </head>
 
 <body>
-    <a class="btn btn-info" href="/"><span class="glyphicon glyphicon-home" aria-hidden="true"></span>&nbsp;返回</a>
+    <a class="btn btn-info" href="https://43.143.233.184/"><span class="glyphicon glyphicon-home" aria-hidden="true"></span>&nbsp;返回</a>
     <a tabindex="0" class="btn btn-warning hidable toggleHide"
         onclick="$('.hidable').show(1000);$('.toggleHide').toggle(1000)" style="display:none;">
         <span class="glyphicon glyphicon-eye-close" aria-hidden="true"></span>
@@ -135,7 +135,7 @@
     <div class="input-group fetch" style="display:none">
         <span class="input-group-addon">考试编号<a data-toggle="tooltip" data-placement="bottom"
                 title="心意答点击考试标题后,切换考试的列表里可见" aria-hidden="true">*</a></span>
-        <input id="Id" type="text" class="form-control" autocomplete="off" placeholder="972" value="972">
+        <input id="Id" type="text" class="form-control" autocomplete="off" placeholder="高一上期中: 972; 期末: 1044">
     </div>
     <div class="input-group fetch" style="display:none">
         <span class="input-group-addon">姓名<a href="/js/e.json" onclick="setWeigh2()" data-toggle="tooltip"
@@ -153,7 +153,7 @@
                     style="display: none;" id="fileInput" type="file" onchange="getFiles(event)">
             </a>
             <a id="upbtn" tabindex="0" class="btn btn-danger"
-                onclick="/*var a=aesEncrypt(prompt('我的班级')),b=aesEncrypt(prompt('我的学号'));if(a=='1170185235a2b833f24d4cf0e7d3f1c1'&&b=='b1b384c7b1e81d67482a132f60b3456e')*/$('.fetch').toggle(1000);/*else alert('你非我')*/">
+                onclick="check()">
                 <b>?!</b>
             </a>
             <!-- If you must... -->

Some files were not shown because too many files changed in this diff