-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
136 lines (122 loc) · 4.85 KB
/
index.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
const fs = require('fs').promises;
const path = require('path');
const axios = require('axios').default;
const cheerio = require('cheerio');
const { wrapper } = require('axios-cookiejar-support');
const { CookieJar } = require('tough-cookie');
require('dotenv').config();
const api = wrapper(axios.create({
baseURL: 'http://hdlbits.01xz.net',
withCredentials: true,
jar: new CookieJar(),
}));
const hdlbitsLogin = async (username, password) => {
const data = new URLSearchParams();
data.append('vlg_username', username);
data.append('password', password);
data.append('login', 'Login');
await api.get('/wiki/Special:VlgLogin');
const response = await api.post('/wiki/Special:VlgLogin', data);
const $ = cheerio.load(response.data);
return $('#hcuser').length > 0;
};
const hdlbitsProblems = async () => {
let problemMap = {};
let result = [], stack = [];
stack.push(result);
const response = await api.get('/wiki/Problem_sets');
const $ = cheerio.load(response.data);
const contents = $('#mw-content-text');
let lastTag = '';
contents.children().each((_, el) => {
switch (el.tagName) {
case 'h2':
case 'h3':
case 'h4':
const diff = parseInt(lastTag.slice(1)) - parseInt(el.tagName.slice(1)) + 1;
for(let _ = 0; _ < diff; _++) {
stack.pop();
}
const level = {
title: $(el).text(),
children: [],
};
stack[stack.length - 1].push(level);
stack.push(level.children);
lastTag = el.tagName;
break;
case 'ul':
$(el.children).each((_, el) => {
if (el.tagName == 'li') {
const link = $(el).find('a');
const status = $(el).find('span');
const url = link.attr('href');
let statusText;
if (status.hasClass('fa-check-circle')) {
statusText = 'finished';
} else if (status.hasClass('fa-minus-circle')) {
statusText = 'attempted';
} else {
statusText = 'new';
};
const problem = {
title: link.text(),
url: (url.startsWith('//') || url.startsWith('http:') || url.startsWith('https:')) ? url : `http://hdlbits.01xz.net${url.startsWith('/') ? url : ('/' + url)}`,
status: statusText,
};
stack[stack.length - 1].push(problem);
}
})
break;
}
});
return result;
};
const hdlbitsLoad = async (problem, saved) => {
const data = new URLSearchParams();
data.append('tc', problem);
data.append('name', saved);
const response = await api.post('/load.php', data);
return response.data['data'];
};
(async () => {
const username = process.env['HDLBITS_USERNAME'];
const password = process.env['HDLBITS_PASSWORD'];
console.log(`Attempt to login HDLBits... (username: ${username})`)
if (await hdlbitsLogin(username, password)) {
console.log(`Logged in as ${username}.`);
} else {
console.error('Failed to login!');
}
const problems = await hdlbitsProblems();
const iterate = async (list, f, nest) => {
nest = nest || 1;
for(const node of list) {
if (node.children) {
f('title', nest, node);
await iterate(node.children, f, nest + 1);
} else {
f('problem', nest, node);
}
}
}
let markdown = process.env['README_TEMPLATE'] ? await fs.readFile(path.resolve(__dirname, process.env['README_TEMPLATE']), 'utf8') : '';
await iterate(problems, async (type, nest, node) => {
if (type == 'title') {
markdown += (`\n${'#'.repeat(nest)} ${node.title}\n\n`);
} else {
if (node.status == 'finished') {
const filename = node.url.split('/').at(-1) + '.v';
markdown += `- [X] [${node.title}](${node.url}) (Solution: [${filename}](./solutions/${filename}))\n`;
const page = (await api.get(node.url)).data;
const tc = page.match(/send\("tc=([^"]+)"/)[1];
const solution = await hdlbitsLoad(tc, '0');
await fs.writeFile(path.resolve(__dirname, 'solutions', filename), solution);
} else {
markdown += `- [ ] [${node.title}](${node.url})\n`;
}
}
});
await fs.writeFile(path.resolve(__dirname, 'README.md'), markdown);
console.log(markdown);
})();