mirror of
https://github.com/renbaoshuo/S2OJ.git
synced 2024-11-08 12:58:42 +00:00
fix(remote_judger/luogu): cdn cc firewall
All checks were successful
continuous-integration/drone/push Build is passing
All checks were successful
continuous-integration/drone/push Build is passing
This commit is contained in:
parent
bdd05d0527
commit
2c42382247
@ -193,7 +193,20 @@ export default class LuoguProvider implements IBasicProvider {
|
|||||||
}
|
}
|
||||||
|
|
||||||
async safeGet(url: string) {
|
async safeGet(url: string) {
|
||||||
const res = await this.get(url);
|
const res = await this.get(url).ok(res => res.status < 400);
|
||||||
|
|
||||||
|
if ([302, 301].includes(res.status)) {
|
||||||
|
if (res.header['set-cookie']) {
|
||||||
|
Array.from(res.header['set-cookie']).forEach((cookie: string) => {
|
||||||
|
const name = cookie.split('=')[0];
|
||||||
|
const value = cookie.split('=')[1].split(';')[0];
|
||||||
|
|
||||||
|
this.setCookie(name, value);
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
return await this.get(url);
|
||||||
|
}
|
||||||
|
|
||||||
if (res.text.startsWith('<html><script>document.location.reload()')) {
|
if (res.text.startsWith('<html><script>document.location.reload()')) {
|
||||||
const sec = this.getCookie.call(
|
const sec = this.getCookie.call(
|
||||||
|
Loading…
Reference in New Issue
Block a user