-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathupload.js
executable file
·136 lines (111 loc) · 4.02 KB
/
upload.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
#!/bin/env node
const root_name = "root"
const root_password = "password"
const roj_url = 'http://localhost:3000/'
const problem_create = `${roj_url}admin/problem/create`
const problem_update = `${roj_url}admin/problem/update`
const ProgressBar = require('progress');
const { program } = require('commander');
const fs = require("fs")
const {execSync,spawnSync} = require("child_process")
const yaml = require("js-yaml")
if(!fs.existsSync('cookie')){
console.log("先在网页上登录admin,然后获取 Cookie存入cookie文件")
process.exit(0)
}
const COOKIE = fs.readFileSync("cookie","utf8")
if(fs.existsSync('log')){
console.log("删除上次的日志文件: log")
fs.unlinkSync('log')
}
if(fs.existsSync('data.zip')) fs.unlinkSync(`data.zip`)
program.option("-f --force","强制上传,和 -u 配合,可以强制上传数据覆盖原数据")
.option("-u --update","更新题目,不加-f,只会更新题面")
.option("-i --ignore","忽略错误")
.option("-d --debug","输出 debug 信息")
.arguments('<start> [end]')
.action(function(start,end){
Start = start
End = end
})
program.parse(process.argv)
function upload({file,content,pid,title,time=1000,memory=128,stack=128,spj='default',level=1}){
if( memory > 4096) memory = Math.ceil(memory/1024/1024)
let args = [
["file",`@${file}`],
["content",`${content}`],
["pid",pid],
["title",title],
["time",time],
["memory",memory],
["stack",stack],
["spj",spj],
["level",level]
]
//如果选择了更新 但没有加force 只会更新题面
if( program.update && !program.force ) args.shift()
let args_1 = ["-X","POST"]
args.map( d => args_1.push(...[`-F`,`${d[0]}=${d[1]}`]) )
if(program.force) args_1.push(...["-F",'upload_force=1'])
args_1.push(`-b`,`${COOKIE.trim()}`)
let url = program.update ? problem_update : problem_create
args_1.push(url)
if( program.debug) console.log("curl "+ args_1.join(" "))
return spawnSync("curl",args_1,{encoding:'utf8',cwd:__dirname})
}
async function main(){
if(!End ) End = Start
var bar = new ProgressBar(':bar :current/:total\n :m1', { total: End-Start+1 });
console.log(`你要上传的题目范围是:${Start} --> ${End}`)
for( let i = Start ;i <= End ;i++){
if( fs.existsSync(`./problems/${i}`) ){
try {
let config = yaml.safeLoad(fs.readFileSync(`./problems/${i}/reference.yml`, 'utf8'));
//let content = fs.readFileSync(`./problems/${i}/content.md`, 'utf8')
if(!fs.existsSync(`./problems/${i}/content.md`)){
throw(`${i} content.md 不存在`)
}
execSync(`zip -j data.zip -r ./problems/${i}/data`)
let ret = upload({file:'data.zip',content:`<problems/${i}/content.md`,pid:i,...config})
if(ret.error) throw(ret.error)
if(ret.stderr && program.debug)
console.log(ret.stderr)
if( ret.stdout.startsWith('Redirect') ){
if( ret.stdout.includes('<a href="/404">')){
console.log(`网址错误!`)
process.exit(1)
}
console.log(`请重新登录!`)
process.exit(1)
}
if( JSON.parse(ret.stdout).status !== 0){
throw(ret)
}
fs.unlinkSync(`data.zip`)
bar.tick({
"m1":`成功 ${i}`
})
}
catch(e){
bar.tick({
"m1":`失败 ${i}`
})
console.error(e)
fs.writeFileSync("log",`fail at ${i}\n${e}\n\n\n`,{flag:"a+"})
if( ! program.ignore ){
console.log("如果想忽略错误,请加上 -i 或 --ignore,具体查看 log 文件")
process.exit(1);
}
}
}
else {
bar.tick({
"m1":`失败 题目:${i} 不存在`
})
console.log("请查看日志文件: log")
fs.writeFileSync("log",`fail at ${i} 不存在\n\n\n`,{flag:"a+"})
}
if(fs.existsSync('data.zip')) fs.unlinkSync(`data.zip`)
}
}
main()