forked from r-anime/awards-web
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.js
302 lines (291 loc) · 7.89 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
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
const fs = require('fs');
const http = require('http');
const https = require('https');
const path = require('path');
const polka = require('polka'); // Web server
const sirv = require('sirv'); // Static file middleware
const session = require('express-session'); // Session storage middleware
const SequelizeStore = require('connect-session-sequelize')(session.Store);
const log = require('another-logger'); // Logging utility
const logging = require('./util/logging'); // Request logging middleware
const helpers = require('./util/helpers'); // Generic request/response helpers
const config = require('./config'); // Generic configuration
const requestIp = require('request-ip');
const ipFilter = require('express-ipfilter').IpFilter;
const jwt = require('jsonwebtoken');
const sequelize = require('./models').sequelize;
// Routes for non-frontend things
const api = require('./routes/api');
const auth = require('./routes/auth');
const indexPage = fs.readFileSync(path.join(config.publicDir, 'index.html'));
const hostPage = fs.readFileSync(path.join(config.publicDir, 'host.html'));
const appsPage = fs.readFileSync(path.join(config.publicDir, 'jurorApps.html'));
const votePage = fs.readFileSync(path.join(config.publicDir, 'vote.html'));
const finalVotePage = fs.readFileSync(path.join(config.publicDir, 'final-vote.html'));
// Discord stuff
const {yuuko} = require('./bot/index');
// Define the main application
const app = polka({
// Send results page for routes other than /host or /apps
onNoMatch: (request, response) => response.end(indexPage),
});
// Set up global middlewares
app.use(
// Request logging
logging,
// Helper functions
helpers,
// Middleware for grabbing IPs in the request
requestIp.mw(),
// Filter IPs from access
// Session storage
session({
secret: config.session.secret,
resave: false,
saveUninitialized: false,
cookie: {
maxAge: 72 * 60 * 60 * 1000,
},
store: new SequelizeStore({
db: sequelize,
checkExpirationInterval: 15 * 60 * 1000, // The interval at which to cleanup expired sessions in milliseconds.
expiration: 72 * 60 * 60 * 1000, // The maximum age (in milliseconds) of a valid session.
}),
}),
// Static assets
sirv(config.publicDir, {
dev: true, // HACK: dev mode to skip caching potentially incomplete webpack bundles, since for some reason they get regenerated at random times and it breaks the site
brotli: true,
}),
);
// Register the API routes and auth routes
app.use('/api', api);
app.use('/auth', auth);
// Register API routes for webpack entrypoints
app.use('/host', (request, response) => response.end(hostPage));
// Login is a stupid route that needs to be handled better and hosted at /host instead of /login
app.use('/login', (request, response) => response.end(hostPage));
app.use('/vote', (request, response) => response.end(votePage));
app.use('/apps', (request, response) => response.end(appsPage));
app.use('/final-vote', (request, response) => response.end(finalVotePage));
// Synchronize sequelize models
// and then start the server
sequelize.sync().then(async () => {
const blacklistedFeedback = await sequelize.model('feedback').findAll({where: {blacklist: true}});
const ips = blacklistedFeedback.map(feedback => jwt.verify(feedback.ip_hash, config.private_key));
app.use((request, response, next) => {
if (ips.find(ip => ip == request.clientIp)) {
response.json(401, {error: 'Your IP is blocked.'});
} else {
next();
}
});
// A sequelize transaction to create required rows in tables
await sequelize.transaction(t => {
try {
// Register Heather and Geo as admins so that we don't have to manually insert rows and fuck with sequelize
return Promise.all([
sequelize.model('users').findOrCreate({
where: {
reddit: 'JoseiToAoiTori',
},
defaults: {
level: 4,
},
transaction: t,
}),
sequelize.model('users').findOrCreate({
where: {
reddit: 'geo1088',
},
defaults: {
level: 4,
},
transaction: t,
}),
sequelize.model('users').findOrCreate({
where: {
reddit: 'PandavengerX',
},
defaults: {
level: 4,
},
transaction: t,
}),
// Initialize the locks table if it hasn't already
sequelize.model('locks').findOrCreate({
where: {
name: 'hostResults',
},
defaults: {
level: 2,
flag: false,
},
transaction: t,
}),
sequelize.model('locks').findOrCreate({
where: {
name: 'voting',
},
defaults: {
level: 3,
flag: false,
},
transaction: t,
}),
sequelize.model('locks').findOrCreate({
where: {
name: 'allocations',
},
defaults: {
level: 0,
flag: false,
},
transaction: t,
}),
sequelize.model('locks').findOrCreate({
where: {
name: 'juryGuide',
},
defaults: {
level: 0,
flag: false,
},
transaction: t,
}),
sequelize.model('locks').findOrCreate({
where: {
name: 'awards-ongoing',
},
defaults: {
level: 0,
flag: false,
},
transaction: t,
}),
sequelize.model('locks').findOrCreate({
where: {
name: 'apps-open',
},
defaults: {
level: 3,
flag: false,
},
transaction: t,
}),
sequelize.model('locks').findOrCreate({
where: {
name: 'app-names',
},
defaults: {
level: 2,
flag: false,
},
transaction: t,
}),
sequelize.model('locks').findOrCreate({
where: {
name: 'grading-open',
},
defaults: {
level: 3,
flag: false,
},
transaction: t,
}),
sequelize.model('locks').findOrCreate({
where: {
name: 'fv-genre',
},
defaults: {
level: 3,
flag: false,
},
transaction: t,
}),
sequelize.model('locks').findOrCreate({
where: {
name: 'fv-character',
},
defaults: {
level: 3,
flag: false,
},
transaction: t,
}),
sequelize.model('locks').findOrCreate({
where: {
name: 'fv-visual-prod',
},
defaults: {
level: 3,
flag: false,
},
transaction: t,
}),
sequelize.model('locks').findOrCreate({
where: {
name: 'fv-audio-prod',
},
defaults: {
level: 3,
flag: false,
},
transaction: t,
}),
sequelize.model('locks').findOrCreate({
where: {
name: 'fv-main',
},
defaults: {
level: 3,
flag: false,
},
transaction: t,
}),
sequelize.model('locks').findOrCreate({
where: {
name: 'fv-results',
},
defaults: {
level: 2,
flag: false,
},
transaction: t,
}),
]);
} catch (error) {
log.error(error);
}
});
// Connect to Discord
yuuko.connect();
yuuko.once('ready', () => {
log.success('Connected to Discord');
});
yuuko.on('error', (e, id) => {
log.error('Error ' + id + ': ' + e);
})
if (config.https) {
// If we're using HTTPS, create an HTTPS server
const httpsOptions = {
key: config.https.key,
cert: config.https.cert,
};
const httpsApp = https.createServer(httpsOptions, app.handler);
httpsApp.listen(config.https.port, () => {
log.success(`HTTPS listening on port ${config.https.port}`);
});
// The HTTP server will just redirect to the HTTPS server
http.createServer((req, res) => {
res.writeHead(301, {Location: `https://${req.headers.host}${req.url}`});
res.end();
}).listen(config.port, () => {
log.success(`HTTP redirect listening on port ${config.port}`);
});
} else {
app.listen(config.port, () => {
log.success(`Listening on port ${config.port}~!`);
});
}
});