2024-11-04 08:40:52 +00:00
|
|
|
|
const projectBaseURL = "https://offer.gter.net"
|
2024-10-31 11:03:26 +00:00
|
|
|
|
if (["localhost", "127.0.0.1"].includes(location.hostname)) {
|
|
|
|
|
axios.defaults.headers = {
|
2024-11-07 07:56:27 +00:00
|
|
|
|
"Authorization": "ld9bk0gpdkqkydoyhdiqkvlm68cgxmjc",
|
2024-10-31 11:03:26 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function $ajax(url) {
|
|
|
|
|
var data = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {}
|
2024-11-04 08:40:52 +00:00
|
|
|
|
url = url.indexOf("https://") > -1 ? url : projectBaseURL + url
|
2024-10-31 11:03:26 +00:00
|
|
|
|
|
2024-11-07 07:56:27 +00:00
|
|
|
|
data["authorization"] = "ld9bk0gpdkqkydoyhdiqkvlm68cgxmjc"
|
2024-10-31 11:03:26 +00:00
|
|
|
|
|
|
|
|
|
return new Promise(function (resolve, reject) {
|
|
|
|
|
axios
|
|
|
|
|
.post(url, data, {
|
|
|
|
|
emulateJSON: true,
|
|
|
|
|
withCredentials: true,
|
|
|
|
|
})
|
|
|
|
|
.then(function (res) {
|
|
|
|
|
var data = typeof res.data == "string" ? JSON.parse(res.data) : res.data
|
|
|
|
|
if (data.code == 401) reject()
|
2024-11-08 09:25:44 +00:00
|
|
|
|
if (data.code == 201) creationAlertBox("error", res.message)
|
2024-10-31 11:03:26 +00:00
|
|
|
|
resolve(data)
|
|
|
|
|
})
|
|
|
|
|
.catch(err => {
|
|
|
|
|
if (err.response.status == 401)
|
|
|
|
|
showWindow("login", "https://passport.gter.net/login/ajax", "get", -1, {
|
|
|
|
|
cover: true,
|
|
|
|
|
})
|
|
|
|
|
})
|
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function $ajaxget(url, data) {
|
2024-11-04 08:40:52 +00:00
|
|
|
|
url = url.indexOf("https://") > -1 ? url : projectBaseURL + url
|
2024-10-31 11:03:26 +00:00
|
|
|
|
url += objectToQueryString(data)
|
|
|
|
|
return new Promise(function (resolve, reject) {
|
|
|
|
|
axios
|
|
|
|
|
.get(
|
|
|
|
|
url,
|
|
|
|
|
{},
|
|
|
|
|
{
|
|
|
|
|
emulateJSON: true,
|
|
|
|
|
withCredentials: true,
|
|
|
|
|
}
|
|
|
|
|
)
|
|
|
|
|
.then(function (res) {
|
|
|
|
|
var data = typeof res.data == "string" ? JSON.parse(res.data) : res.data
|
|
|
|
|
if (data.code == 401) reject()
|
2024-11-08 09:25:44 +00:00
|
|
|
|
if (data.code == 201) creationAlertBox("error", res.message)
|
2024-10-31 11:03:26 +00:00
|
|
|
|
resolve(data)
|
|
|
|
|
})
|
|
|
|
|
.catch(error => {
|
|
|
|
|
reject(error)
|
|
|
|
|
})
|
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function randomString(n) {
|
|
|
|
|
let str = "abcdefghijklmnopqrstuvwxyz9876543210"
|
|
|
|
|
let tmp = "",
|
|
|
|
|
i = 0,
|
|
|
|
|
l = str.length
|
|
|
|
|
for (i = 0; i < n; i++) {
|
|
|
|
|
tmp += str.charAt(Math.floor(Math.random() * l))
|
|
|
|
|
}
|
|
|
|
|
return tmp
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function formatNumberWithSpaces(number) {
|
|
|
|
|
if (typeof number != "string") number = ""
|
|
|
|
|
return number.toString().replace(/\B(?=(\d{3})+(?!\d))/g, ",")
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// 将一个JavaScript对象转换为路由参数的形式将键值对转换为key=value的形式
|
|
|
|
|
function objectToQueryString(obj = {}) {
|
|
|
|
|
const queryString = Object.keys(obj)
|
|
|
|
|
.map(key => encodeURIComponent(key) + "=" + encodeURIComponent(obj[key]))
|
|
|
|
|
.join("&")
|
|
|
|
|
return queryString ? "?" + queryString : ""
|
|
|
|
|
}
|
2024-11-04 08:24:44 +00:00
|
|
|
|
|
|
|
|
|
function decodeKey(encrypted, key) {
|
|
|
|
|
return new Promise((resolve, reject) => {
|
|
|
|
|
try {
|
|
|
|
|
const encryptedData = CryptoJS.enc.Base64.parse(encrypted)
|
|
|
|
|
|
2024-11-05 11:00:36 +00:00
|
|
|
|
const decrypted = CryptoJS.AES.decrypt(
|
|
|
|
|
{
|
|
|
|
|
ciphertext: encryptedData,
|
|
|
|
|
},
|
2024-11-08 07:52:42 +00:00
|
|
|
|
CryptoJS.enc.Utf8.parse(key),
|
2024-11-05 11:00:36 +00:00
|
|
|
|
{
|
|
|
|
|
mode: CryptoJS.mode.ECB,
|
|
|
|
|
padding: CryptoJS.pad.Pkcs7,
|
|
|
|
|
}
|
|
|
|
|
)
|
2024-11-04 08:24:44 +00:00
|
|
|
|
|
|
|
|
|
const text = JSON.parse(decrypted.toString(CryptoJS.enc.Utf8))
|
|
|
|
|
resolve(text)
|
|
|
|
|
} catch (error) {
|
|
|
|
|
reject()
|
|
|
|
|
}
|
|
|
|
|
})
|
2024-11-05 11:00:36 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function getBaseData() {
|
|
|
|
|
return new Promise((resolve, reject) => {
|
|
|
|
|
const storedTime = localStorage.getItem("dataTimestamp")
|
|
|
|
|
const storedData = localStorage.getItem("basicData")
|
|
|
|
|
|
|
|
|
|
const currentTime = new Date().getTime()
|
|
|
|
|
const timeDiff = currentTime - parseInt(storedTime)
|
|
|
|
|
if (storedTime && storedData && timeDiff <= 5 * 60 * 1000) {
|
|
|
|
|
// 在5分钟内,使用本地存储的数据
|
|
|
|
|
const basicData = JSON.parse(storedData)
|
|
|
|
|
// 处理数据
|
|
|
|
|
resolve(basicData)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
$ajaxget("/api/project.home/basicData").then(res => {
|
|
|
|
|
if (res.code != 200) return
|
|
|
|
|
const data = res.data
|
|
|
|
|
const basicData = {
|
|
|
|
|
contrastcount: data.contrastcount || 0,
|
|
|
|
|
university: data.university,
|
|
|
|
|
discipline: data.discipline,
|
|
|
|
|
rankings: data.rankings,
|
|
|
|
|
encodekey: data.encodekey,
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// 更新本地存储的时间戳和数据
|
|
|
|
|
localStorage.setItem("dataTimestamp", new Date().getTime())
|
|
|
|
|
localStorage.setItem("basicData", JSON.stringify(basicData))
|
|
|
|
|
resolve(basicData)
|
|
|
|
|
})
|
|
|
|
|
})
|
|
|
|
|
}
|