-
Notifications
You must be signed in to change notification settings - Fork 1
/
app.js
318 lines (265 loc) · 8.26 KB
/
app.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
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
const express = require("express");
const ejs = require("ejs");
const fetch = (...args) => import('node-fetch').then(({default: fetch}) => fetch(...args));
const PORT = process.env.PORT || 3010;
var Microformats = require("microformat-node"), Cheerio = require('cheerio'), options = {};
const app = express();
app.set("view engine", "ejs");
app.use(express.static("public"));
// allow json
app.use(express.json());
const SERVICES = {
"mastodon": "mastodon"
}
function compileVCard (last_name, first_name, additional_name, honorific_prefix, honorific_suffix, full_name, organization, title, tel, email, url) {
var final_vcard = `
BEGIN:VCARD
VERSION:3.0
`;
if (first_name || last_name) {
first_name = first_name || "";
last_name = last_name || "";
additional_name = additional_name || "";
honorific_prefix = honorific_prefix || "";
honorific_suffix = honorific_suffix || "";
final_vcard += `
N:${last_name};${first_name};${additional_name};${honorific_prefix};${honorific_suffix}
`;
}
final_vcard += `
FN:${full_name}
`;
final_vcard += `
ORG:${organization}
`;
final_vcard += `
TITLE:${title}
`;
if (tel) {
final_vcard += `
TEL;TYPE=home,voice;VALUE=uri:tel:${tel}
`;
}
// add email
final_vcard += `
EMAIL:${email}
`;
// add url
final_vcard += `
URL:${url}
`;
// end vcard
final_vcard += `
END:VCARD
`;
// strip whitespace
final_vcard = final_vcard.replace(/^\s+|\s+$/g, '');
return final_vcard;
}
function get(object, key, default_value) {
var result = object[key];
return (typeof result !== "undefined") ? result : default_value;
}
app.route("/").get(async (req, res) => {
res.render("home");
});
app.route("/").post(async (req, res) => {
// get fromjson body
var url = req.body.url;
var service = req.body.service;
if (!url) {
// load home.ejs
res.render("home");
return;
}
if (!service || !SERVICES[service]) {
res.render("home", {
error: "Invalid service"
});
return;
}
res.redirect("/" + SERVICES[service] + "?url=" + url);
return;
});
app.route("/mastodon").get(async (req, res) => {
var url = req.query.url;
if (!url) {
// load home.ejs
res.render("home");
return;
}
try {
var parsed_url = new URL(url);
} catch (e) {
res.render("error", {
error: "Invalid URL"
});
return;
}
var domain = parsed_url.hostname;
var status_id = parsed_url.pathname.split("/");
status_id = status_id[status_id.length - 1];
var query_url = "https://" + domain + "/api/v1/statuses/" + status_id;
fetch(query_url, {
method: "GET",
headers: {
"Content-Type": "application/json"
}
}).then((response) => {
// if not json, error
if (!response.ok) {
res.render("error", {
error: "There was an error retrieving this post."
});
return;
}
response.json().then((data) => {
// if not json, error
if (!data) {
res.render("error", {
error: "There was an error retrieving this post."
});
return;
}
var is_reply = data.in_reply_to_id != null;
var date = new Date(data.created_at);
data.created_at = date.toLocaleString("en-US", {
month: "long",
day: "numeric",
year: "numeric",
hour: "numeric",
minute: "numeric",
second: "numeric",
hour12: true,
}).replace(",", "");
if (is_reply) {
var reply_url = "https://" + domain + "/api/v1/statuses/" + data.in_reply_to_id;
fetch(reply_url, {
method: "GET",
headers: {
"Content-Type": "application/json"
}
}).then((response) => {
response.json().then((reply_data) => {
res.render("mastodon", {
data: data,
reply: reply_data
});
});
}).catch((err) => {
res.render("error", {
error: "There was an error retrieving this post."
});
return;
});
} else {
res.render("mastodon", {
data: data,
reply: null
});
}
}).catch((err) => {
res.render("error", {
error: "There was an error retrieving this post."
});
return;
});
}).catch((err) => {
res.render("error", {
error: "There was an error retrieving this post."
});
return;
});
});
app.route("/hcard").get(async (req, res) => {
var url = req.query.url;
if (!url) {
res.render("error", {
error: "Invalid URL"
});
return;
}
try {
var parsed_url = new URL(url);
} catch (e) {
res.render("error", {
error: "Invalid URL"
});
return;
}
fetch(url, {
method: "GET",
headers: {
"Content-Type": "text/html"
}
}).then((response) => {
response.text().then((data) => {
console.log(data);
options.html = data;
Microformats.get(options, function (err, data) {
// con
console.log(data, err)
if (err) {
res.render("error", {
error: "There was an error parsing this page."
});
return;
}
var hcard = null;
// find hcard
for (var i = 0; i < data.items.length; i++) {
// console.log(data.items[i]);
if (data.items[i].type.includes("h-card")) {
hcard = data.items[i].properties;
break;
}
}
if (!hcard) {
// console.log(hcard);
res.render("error", {
error: "No h-card was found."
});
return;
}
console.log(hcard)
// if org, expand out
if (hcard.org) {
var org_titles = [];
var orgs = [];
for (var i = 0; i < hcard.org.length; i++) {
var org = hcard.org[i].value;
var title = hcard.org[i].properties.name;
orgs.push(org);
org_titles.push(title);
}
// join orgs as string
hcard.title = org_titles.join(",").replace(/,/g, ", ");
hcard.org = orgs.join(",").replace(/,/g, ", ");
}
var vcard = compileVCard(
get(hcard, "family-name", [null])[0],
get(hcard, "given-name", [null])[0],
get(hcard, "additional-name", [null])[0],
get(hcard, "honorific-prefix", [null])[0],
get(hcard, "honorific-suffix", [null])[0],
get(hcard, "name", [null])[0],
get(hcard, "org", [null]),
get(hcard, "title", [null]),
get(hcard, "tel", [null])[0],
get(hcard, "email", [null])[0],
url
)
res.set("Content-Type", "text/plain");
res.send(vcard);
});
});
}).catch((err) => {
res.render("error", {
error: "There was an error retrieving this page."
});
return;
});
});
app.listen(PORT, () => {
console.log(`Server started on port ${PORT}`);
});