- 新增 README.md 文件,包含项目描述、初始化步骤和使用方法 - 添加 default.env 文件,用于配置环境变量 - 实现 glut.py,包含登录、获取成绩、解析成绩等功能 - 添加 index.html,提供 Web 界面展示成绩 - 实现 main.py,提供命令行接口 - 添加 requirements.txt,列出项目依赖 - 实现 server.py,提供 HTTP 服务接口
137 lines
4.4 KiB
HTML
137 lines
4.4 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="zh-CN">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>成绩展示</title>
|
|
<style>
|
|
table {
|
|
width: 100%;
|
|
border-collapse: collapse;
|
|
}
|
|
th, td {
|
|
border: 1px solid black;
|
|
padding: 8px;
|
|
text-align: left;
|
|
}
|
|
th {
|
|
background-color: #f2f2f2;
|
|
}
|
|
.form-group {
|
|
margin-bottom: 15px;
|
|
}
|
|
label {
|
|
display: block;
|
|
margin-bottom: 5px;
|
|
}
|
|
input[type="text"], input[type="number"] {
|
|
width: 100%;
|
|
padding: 8px;
|
|
box-sizing: border-box;
|
|
}
|
|
button {
|
|
padding: 10px 15px;
|
|
background-color: #007BFF;
|
|
color: white;
|
|
border: none;
|
|
cursor: pointer;
|
|
}
|
|
button:hover {
|
|
background-color: #0056b3;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<h1>成绩展示</h1>
|
|
|
|
<div class="form-group">
|
|
<label for="year">学年:</label>
|
|
<input type="number" id="year" name="year" value="2023">
|
|
</div>
|
|
<div class="form-group">
|
|
<label for="term">学期:</label>
|
|
<input type="text" id="term" name="term" value="SUMMER">
|
|
</div>
|
|
<div class="form-group">
|
|
<label for="username">用户名:</label>
|
|
<input type="text" id="username" name="username">
|
|
</div>
|
|
<div class="form-group">
|
|
<label for="password">密码:</label>
|
|
<input type="password" id="password" name="password">
|
|
</div>
|
|
<!-- <button id="jmpLinkButton" style="display:none;" onclick="jmpLinkWithCookies()">教务管理系统</button> -->
|
|
<button onclick="fetchScores()">获取成绩</button>
|
|
|
|
<h5>PGA: <span id="pga"></span></h5>
|
|
<table id="scoresTable">
|
|
<thead>
|
|
<tr>
|
|
<th>课程名</th>
|
|
<th>总评成绩</th>
|
|
<th>绩点</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
</tbody>
|
|
</table>
|
|
|
|
<input type="hidden" id="cookies" value="">
|
|
|
|
<script>
|
|
async function jmpLinkWithCookies() {
|
|
var url = "https://jw.glut.edu.cn/academic/index_new.jsp";
|
|
var cookies = document.getElementById('cookies').value;
|
|
try {
|
|
const response = await fetch(url, {
|
|
method: 'GET',
|
|
credentials: 'include',
|
|
headers: {
|
|
'Cookie': cookies
|
|
}
|
|
});
|
|
if (response.ok) {
|
|
window.open(url);
|
|
} else {
|
|
alert('无法跳转到教务系统');
|
|
}
|
|
} catch (error) {
|
|
alert('无法跳转到教务系统 error');
|
|
}
|
|
}
|
|
|
|
function fetchScores() {
|
|
const year = document.getElementById('year').value;
|
|
const term = document.getElementById('term').value;
|
|
const username = document.getElementById('username').value;
|
|
const password = document.getElementById('password').value;
|
|
|
|
const url = `/get_scores?year=${encodeURIComponent(year)}&term=${encodeURIComponent(term)}&username=${encodeURIComponent(username)}&password=${encodeURIComponent(password)}`;
|
|
|
|
fetch(url)
|
|
.then(response => response.json())
|
|
.then(data => {
|
|
const scores = data.scores;
|
|
const tableBody = document.querySelector('#scoresTable tbody');
|
|
tableBody.innerHTML = '';
|
|
data.pga;
|
|
document.getElementById("pga").innerHTML = data.pga;
|
|
|
|
scores.forEach(score => {
|
|
const row = document.createElement('tr');
|
|
row.innerHTML = `
|
|
<td>${score.course_name}</td>
|
|
<td>${score.final_grade}</td>
|
|
<td>${score.gpa}</td>
|
|
`;
|
|
tableBody.appendChild(row);
|
|
});
|
|
|
|
// document.getElementById('jmpLinkButton').style.display = 'block';
|
|
document.getElementById('cookies').value = data.cookies;
|
|
})
|
|
.catch(error => console.error('Error fetching scores:', error));
|
|
}
|
|
</script>
|
|
</body>
|
|
</html> |