index.html 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309
  1. <!DOCTYPE html>
  2. <head>
  3. <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
  4. <title>数字校园</title>
  5. <script type="text/javascript" src="/js/jquery.min.js"></script>
  6. <link rel="stylesheet" href="/css/bootstrap.min.css">
  7. <script type="text/javascript" src="/js/bootstrap.min.js"></script>
  8. <script type="text/javascript" src="/js/md5.js"></script>
  9. <link rel="preconnect" href="https://fonts.loli.net">
  10. <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
  11. <link href="https://fonts.loli.net/css2?family=Anonymous+Pro:ital,wght@0,400;0,700;1,400;1,700
  12. &family=Noto+Serif+SC:wght@300;400;500;600;700&display=swap" rel="stylesheet">
  13. <link rel="stylesheet" href="/css/style.css">
  14. <script>
  15. var status, oid, user, pwd
  16. const rot = '43.143.233.184:81', root = 'https://43.143.233.184:81/'
  17. function getCookie(name) {
  18. let arr = document.cookie.match(new RegExp("(^| )" + name + "=([^;]*)(;|$)"));
  19. if (arr != null) return arr[2];
  20. return null;
  21. }
  22. function delCookie(name, path = 'u') {
  23. var exp = new Date();
  24. exp.setTime(exp.getTime() - 1);
  25. var cval = getCookie(name);
  26. if (cval != null)
  27. document.cookie = name + "=" + cval + ";expires=" + exp.toGMTString() + ((path == 'u') ? '' : ';path=' + path)
  28. }
  29. function getUrl(e) {
  30. return e.replace('dd.sdsz.com.cn', rot).replace(/^http:/, 'https:').replace(rot.split(':')[0] + '/', rot + '/')
  31. }
  32. function setStatus(e, fast) {
  33. console.log('STATUS', e)
  34. status = e
  35. if (e == 1) {
  36. $('#loginSt').text('登录成功')
  37. $('.login').hide(200)
  38. $('#loginSt').addClass('label-success')
  39. $('#loginSt').removeClass('label-danger')
  40. $('.reqLogin').show(300)
  41. } else if (e == 2) {
  42. $('#loginSt').text('登录失败')
  43. $('#loginSt').removeClass('label-success')
  44. $('#loginSt').addClass('label-danger')
  45. } else {
  46. $('.login').show(200)
  47. $('#loginSt').text('未登录')
  48. $('#loginSt').removeClass('label-success')
  49. $('#loginSt').removeClass('label-danger')
  50. $('.reqLogin').hide(300 * !fast)
  51. $('#avatar').attr('src', '')
  52. $('#user').text('-')
  53. }
  54. }
  55. function delCookies(force) {
  56. if (force) {
  57. delCookie('CASTGC', '/')
  58. delCookie('gosh', '/score/')
  59. if (force <= 2) {
  60. delCookie('gosh', '/sso/')
  61. delCookie('gowd', '/sso/')
  62. }
  63. }
  64. if (force >= 2) {
  65. delCookie('JSESSIONID', '/bxn-portal/')
  66. delCookie('JSESSIONID', '/bxn-library/')
  67. delCookie('JSESSIONID', '/bxn-core-uic/')
  68. }
  69. delCookie('JSESSIONID', '/')
  70. delCookie('JSESSIONID', '/sso/')
  71. }
  72. function postLogin() {
  73. console.log("POSTLOGIN")
  74. if (status != 1) return;
  75. if (!user) user = getCookie('gosh'), pwd = getCookie('gowd')
  76. document.cookie = "gosh=" + user + ";path=/score/";
  77. document.cookie = "gosh=" + user + ";path=/sso/";
  78. document.cookie = "gowd=" + pwd + ";path=/sso/";
  79. $('#changePwd').val(pwd)
  80. // get('bxn-portal/portal/osforstudent/index', 0, e => {
  81. // let res = JSON.parse(e.match(/user_resources.*window\.admin/gs)[0].replace(/(?:user_resources =|window\.admin|([^)]);)/gs, '$1'))
  82. // console.log(res)
  83. // })
  84. get('bxn-library/library/jumpExamreport?jumpUrl=http://36.112.23.77/analysis/auto/%23/autoLogin', e => {
  85. $('#scoreOld').attr('href', e)
  86. })
  87. get('bxn-portal/portal/api/proxy?username=true&userId=true&needvalidate=true&t=http%3A%2F%2F202.94.10.118%2Fbxn-library%2Fapi%2Flibrary%2FgetLatestBorrowBook%3Fcategory%3D1&resourceId=103519&cache=nocache&systime=0', e => {
  88. e = JSON.parse(e)
  89. $('#user').text(e.requestParams[0].ownerName)
  90. oid = e.requestParams[0].ownerId
  91. console.log(oid)
  92. $('#avatar').attr('src', root + 'avatar/tiny/' + oid)
  93. })
  94. get('bxn-portal/portal/api/proxy?username=true&userId=true&needvalidate=true&t=http%3A%2F%2F202.94.10.164%3A18030%2Fbxn-office%2Fapi%2Fmsg%2FgetLatestActivities&resourceId=100022&cache=nocache&systime=0', e => {
  95. e = JSON.parse(e)
  96. $('#mailList').empty()
  97. for (let i = 0; i < e.list.length; i++) {
  98. $('#mailList').append('<li>' + e.list[i].typeZh + ': ' + e.list[i].title + '<span class="pull-right" style="color:rgb(144,144,144);">' + e.list[i].time + '</span></li>')
  99. }
  100. })
  101. }
  102. function login() {
  103. console.log("LOGIN!!")
  104. if (status == 1) return;
  105. delCookies()
  106. user = $('#loginId').val(), pwd = $('#loginPwd').val()
  107. return fetch(root + "sso/login", {
  108. "headers": {
  109. "content-type": "application/x-www-form-urlencoded; charset=UTF-8",
  110. // "user-agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36"
  111. },
  112. "method": "GET",
  113. "mode": "cors",
  114. "credentials": 'include'
  115. }).then(() => {
  116. return fetch('https://43.143.233.184/andlogin', {
  117. method: 'POST',
  118. headers: { 'Content-type': 'application/json' },
  119. body: JSON.stringify({
  120. user: user,
  121. pwd: pwd,
  122. cook: getCookie('JSESSIONID')
  123. }),
  124. credentials: 'include',
  125. })
  126. }).then(e => e.text()).then(e => { setStatus((e != 'success') + 1), Promise.resolve() })
  127. }
  128. function matches(e) {
  129. return e.match('(DOCTYPE|[/n]\\?username=|requestParams|\"newmessage\")')
  130. }
  131. async function next(e, call) {//异步递归嘿嘿嘿,再多 302 也不怕;再加上回调函数,真是妙
  132. if (e.length < 3000 && !matches(e)) {
  133. return fetch(getUrl(e), {
  134. method: 'GET',
  135. credentials: 'include'
  136. }).then(e => e.text()).then(res => { next(res, call) })
  137. }
  138. else return call(e), new Promise((resolve, reject) => { })
  139. }
  140. function pre(e, url, call) {
  141. if (e.match('北师大实验中学--登录')) {
  142. console.log("ERR", e, url)
  143. delCookies(3)
  144. setStatus(0)
  145. tryLogin()
  146. } else {
  147. $('#bxn' + url.split('bxn')[1].split('/')[0]).addClass('btn-success')
  148. call(e)
  149. }
  150. }
  151. function get(url, call = () => { }) {
  152. console.log("GET", url)
  153. if (status != 1) return
  154. next(root + url, e => { pre(e, url, call); })
  155. }
  156. function change() {
  157. if (status != 1 || pwd == $('#changePwd').val()) return
  158. var fd = new URLSearchParams()
  159. fd.append('rating', '4')
  160. fd.append('ratingWord', '极佳')
  161. fd.append('oldPassword', pwd)
  162. fd.append('newPassword', $('#changePwd').val())
  163. fd.append('reNewPassword', $('#changePwd').val())
  164. fetch(root + 'bxn-core-uic/uic-public/personal/management/password/save', {
  165. "headers": {
  166. "content-type": "application/x-www-form-urlencoded; charset=UTF-8",
  167. // "user-agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36"
  168. },
  169. method: 'POST',
  170. body: fd,
  171. credentials: 'include',
  172. })
  173. $('#changeBtn').addClass('btn-success')
  174. }
  175. function tryLogin() {
  176. if (getCookie('CASTGC')) {
  177. setStatus(1), postLogin()
  178. } else if (getCookie('gosh') && getCookie('gosh') != 'null') {
  179. $('#loginId').val(getCookie('gosh'))
  180. $('#loginPwd').val(getCookie('gowd'))
  181. login().then(() => { status == 2 ? setStatus(0, 1) : postLogin() })
  182. } else setStatus(0, 1)
  183. }
  184. $().ready(() => {
  185. $('.e').addClass('reqLogin')
  186. $('.e').removeClass('e')
  187. tryLogin()
  188. $("[data-toggle='tooltip']").tooltip();
  189. })
  190. </script>
  191. <style>
  192. .form-control {
  193. font-weight: bold;
  194. font-family: 'Courier New', Courier, monospace;
  195. }
  196. li {
  197. border-bottom: 3px solid #eee;
  198. }
  199. li:hover {
  200. background-color: #eee;
  201. }
  202. .box::before {
  203. content: '';
  204. display: block;
  205. width: 100%;
  206. height: 3px;
  207. margin-top: 10px;
  208. border-bottom: 1px solid;
  209. border-image: linear-gradient(to right, transparent, #6aaad8, #75ddb6, transparent) 1;
  210. }
  211. .box:hover::before {
  212. border-bottom: 3px solid;
  213. border-image: linear-gradient(to right, transparent, #6aaad8, #75ddb6, transparent) 1;
  214. }
  215. .box:hover {
  216. background-image: linear-gradient(#f8ffef, transparent);
  217. }
  218. .page-header.nohr {
  219. margin-bottom: 0;
  220. border-bottom: none;
  221. }
  222. </style>
  223. </head>
  224. <body>
  225. <div class="page-header nohr">
  226. <h2>数字校园
  227. <button class="btn btn-default btn-xs">
  228. <span class="glyphicon glyphicon-question-sign"></span>
  229. </button>
  230. </h2>
  231. <span id="loginSt" class="label label-default">未登录</span>
  232. <span id="user" class="label label-default">-</span>
  233. <button class="btn btn-danger btn-xs e" onclick="postLogin()">
  234. <span class="glyphicon glyphicon-refresh"></span>
  235. </button>
  236. <button class="btn btn-danger btn-xs e" onclick="delCookies(1);setStatus(0)" onmouseenter="$('#double-off').css('scale','100%')" onmouseleave="$('#double-off').css('scale','0')">
  237. <span class="glyphicon glyphicon-log-out"></span>
  238. </button>
  239. <button id="double-off" class="btn btn-danger btn-xs e" onclick="delCookies(2);location.reload()" onmouseenter="$('#double-off').css('scale','100%')" onmouseleave="$('#double-off').css('scale','0')" style="scale:0;transition-duration: 1000ms;" data-toggle="tooltip" data-placement="right" title="全部重置">
  240. <span class="glyphicon glyphicon-off"></span>
  241. </button>
  242. <button class="btn btn-danger btn-xs login" onclick="delCookies(2);location.reload()" data-toggle="tooltip" data-placement="right" title="全部重置">
  243. <span class="glyphicon glyphicon-off"></span>
  244. </button>
  245. <img id="avatar" style="position:absolute;right:10px;top:10px;">
  246. </div>
  247. <div class="col-md-4 col-sm-6 box">
  248. <div class="page-header">
  249. <h3><span class="glyphicon glyphicon-stats"></span> 成绩</h3>
  250. </div>
  251. <div class="btn-group">
  252. <a id="scoreOld" class="btn btn-default e" target="_blank">原版</a>
  253. <a class="btn btn-default e" href="/score" target="_blank">新版</a>
  254. </div>
  255. </div>
  256. <div class="col-md-4 col-sm-6 box">
  257. <div class="page-header">
  258. <h3><span class="glyphicon glyphicon-user"></span> 账号
  259. <div id="cookie" class="btn-group" style="display: none;">
  260. <button id="bxn-portal" class="btn btn-default btn-xs" onclick="get('bxn-portal/portal/osforstudent/index')">bxn-portal</button>
  261. <button id="bxn-core-uic" class="btn btn-default btn-xs" onclick="get('bxn-core-uic/uic/index')">bxn-core-uic</button>
  262. <button id="bxn-library" class="btn btn-default btn-xs" onclick="get('bxn-library/library/jumpExamreport?jumpUrl=')">bxn-library</button>
  263. </div>
  264. </h3>
  265. </div>
  266. <button class="btn btn-default e" onclick="$('#change').toggle(200)">修改密码</button>
  267. <button class="btn btn-default e" onclick="$('#cookie').toggle(200)">cookie</button>
  268. <div class="login">
  269. <br>
  270. <div class="input-group">
  271. <span class="input-group-addon">账号</span>
  272. <input id="loginId" type="id" class="form-control" placeholder="20222222">
  273. </div>
  274. <br>
  275. <div class="input-group">
  276. <span class="input-group-addon">密码</span>
  277. <input id="loginPwd" type="password" class="form-control" placeholder="password">
  278. <span class="input-group-btn"><button class="btn btn-default" type="button" onclick="login().then(postLogin)">登录</button></span>
  279. </div>
  280. </div>
  281. <div id="change" style="display: none;">
  282. <br>
  283. <div class="input-group">
  284. <span class="input-group-addon">新密码</span>
  285. <input id="changePwd" type="password" class="form-control" placeholder="password" onmouseenter="this.type='id'" onmouseleave="this.type='password'">
  286. <span class="input-group-btn"><button id="changeBtn" class="btn btn-default" type="button" onclick="change()">修改</button></span>
  287. </div>
  288. </div>
  289. </div>
  290. <div class="col-md-4 col-sm-6 box">
  291. <div class="page-header">
  292. <h3><span class="glyphicon glyphicon-envelope"></span> 通知</h3>
  293. </div>
  294. <ul id="mailList" class="list-unstyled e"></ul>
  295. </div>
  296. <div style="position:absolute;bottom:10px;left:10px;color:#ccc">
  297. 北师大实验中学
  298. </div>
  299. </body>