-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathserver.js
295 lines (280 loc) · 6.75 KB
/
server.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
var http = require("http")
var url = require("url")
var qs = require("querystring")
var sqlite3 = require("sqlite3").verbose()
var config = require("./config.js")
var port = config.port || 8000
var host = config.host || "0.0.0.0"
console.log("Starting app")
var db = new sqlite3.Database(
`${process.env.DATA_PATH}links.db`,
sqlite3.OPEN_READWRITE | sqlite3.OPEN_CREATE,
function (err) {
if (err) {
console.log(err)
process.exit(1)
}
console.log("Starting DB")
db.serialize(function () {
db.run(
"CREATE TABLE IF NOT EXISTS links (path TEXT PRIMARY KEY NOT NULL, destination TEXT NOT NULL, used INT NOT NULL)",
function (err) {
if (err) {
console.log(err)
process.exit(2)
}
console.log("Started DB")
}
)
})
}
)
http
.createServer(function (req, res) {
var url_params = url.parse(req.url)
var query = qs.parse(url_params.query)
console.log(url_params)
console.log(query)
if (
url_params.pathname &&
url_params.pathname.length > 2 &&
url_params.pathname[2] == "."
) {
res.writeHead(404, { "Content-Type": "text/plain" })
res.end("Not found")
} else if (query.secret == config.secret) {
switch (url_params.pathname) {
case "":
case "/":
res.writeHead(200, { "Content-Type": "text/html" })
getFrontPageHtml(function (html) {
res.end(html)
})
break
case "/new":
if (typeof query.target === "undefined" || query.target.length == 0) {
returnError(res, 400, "Bad Request: Target must be specified")
} else {
var path,
target = query.target
if (typeof query.path !== "undefined" && query.path.length > 0) {
path = query.path
newLink(res, path, target)
} else {
db.get(
"SELECT path FROM links WHERE destination = $destination",
{
$destination: target,
},
function (err, row) {
if (err) {
returnError(res, 500, "SQL Error")
} else {
console.log("Existing " + (row ? row.path : "none"))
if (row && row.path) {
res.writeHead(200, { "Content-Type": "application/json" })
res.end(
JSON.stringify({
status: 200,
short: config.base_url + row.path,
destination: target,
})
)
} else {
generateNewLinkPath(res, target)
}
}
}
)
}
}
break
default:
returnError(res, 404, "Not Found")
break
}
} else if (url_params.pathname.length < 2) {
returnError(res, 200, "Forbidden to access /")
} else {
var path = url_params.pathname.substring(1)
// Follow redirect
db.get(
"SELECT destination FROM links WHERE path = $path",
{
$path: path,
},
function (err, row) {
if (err) {
console.log(err)
returnError(res, 500, "SQL Error")
} else if (!row || !row.destination) {
returnError(res, 404, "Not Found")
} else {
res.writeHead(301, {
"Content-Type": "text/html",
Location: row.destination,
})
res.end(
'<script type="text/javascript">window.location.href="' +
row.destination +
'";</script><a href="' +
row.destination +
'">Click here to follow redirect.</a>'
)
db.run("UPDATE links SET used = used + 1 WHERE path = $path", {
$path: path,
})
}
}
)
}
})
.listen(port, host)
console.log("Starting HTTP")
function generateNewLinkPath(res, target) {
var path = numToPath(Math.floor(Math.random() * (Math.pow(64, 5) - 1) + 1))
db.get(
"SELECT COUNT(1) AS amount FROM links WHERE path = $path",
{
$path: path,
},
function (err, row) {
if (err) {
returnError(res, 500, "SQL Error")
} else {
if (row && row.amount) {
generateNewLinkPath(res)
} else {
newLink(res, path, target)
}
}
}
)
}
var validChars =
"qwertyuiopasdfghjklzxcvbnmQWERTYUIOPASDFGHJKLZXCVBNM1234567890_-"
function numToPath(num) {
if (num < validChars.length) return validChars[num]
return (
numToPath(Math.floor(num / validChars.length)) +
numToPath(num % validChars.length)
)
}
function returnError(res, code, message) {
res.writeHead(code, { "Content-Type": "application/json" })
res.end(
JSON.stringify({
status: code,
msg: message,
})
)
}
function newLink(res, path, target) {
if (config.includeHostInPath) {
if (!/^[a-z0-9]+:\/\//.test(target)) {
target = "http://" + target
}
var targetparts = url.parse(target)
console.log(target, JSON.stringify(targetparts))
path = targetparts.hostname + "/" + path
}
db.run(
"INSERT OR IGNORE INTO links VALUES ($path, $destination, 0)",
{
$path: path,
$destination: target,
},
function (err) {
if (err) {
console.log(err)
returnError(res, 500, "SQL Error")
} else {
db.run(
"UPDATE links SET destination = $destination WHERE path = $path",
{
$path: path,
$destination: target,
},
function (err) {
if (err) {
console.log(err)
returnError(res, 500, "SQL Error")
} else {
res.writeHead(200, { "Content-Type": "application/json" })
res.end(
JSON.stringify({
status: 200,
short: config.base_url + path,
destination: target,
})
)
}
}
)
}
}
)
}
function HtmlReplacer(c) {
return (
{
'"': """,
"&": "&",
"'": "'",
"/": "/",
"<": "<",
">": ">",
}[c] || "[UNKNOWN]"
)
}
function escapeHtml(text) {
return text.toString().replace(/["&'\/<>]/g, HtmlReplacer)
}
function getFrontPageHtml(callback) {
var html =
'<!DOCTYPE html><html><head><meta charset="utf-8" /><title>Shorten Link</title></head><body>' +
'<form action="' +
config.base_url +
'new" method="GET"><input type="hidden" name="secret" value="' +
config.secret +
'" /><input type="text" name="path" placeholder="(optional) path" /><input type="url" name="target" placeholder="target" /><input name="submit" type="submit" value="Create" /></form><ul>'
db.each(
"SELECT rowid AS id, path, destination, used FROM links",
function (err, row) {
if (err) {
console.log(err)
} else {
console.log(
row.id + " (" + row.used + ") " + row.path + ": " + row.destination
)
html +=
"<li>" +
row.id +
" (" +
row.used +
") " +
escapeHtml(row.path) +
": " +
escapeHtml(row.destination) +
"</li>"
}
},
function (err) {
if (err) {
console.log(err)
}
html += "</ul></body></html>"
callback(html)
}
)
}
function exitHandler() {
console.log("Closing db connection")
db.close(function (err) {
if (err) {
console.log(err)
process.exit(3)
} else process.exit(0)
})
}
process.on("SIGINT", exitHandler)