forked from jsonresume/registry-functions
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.js
278 lines (261 loc) · 8.37 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
const functions = require("firebase-functions");
const _ = require("lodash");
const axios = require("axios");
const express = require("express");
const cors = require("cors");
const resumeSchema = require("resume-schema");
const fs = require("fs");
const qr = require("qr-image");
const app = express();
app.use(cors({ origin: true }));
// Import Admin SDK
var admin = require("firebase-admin");
const packages = JSON.parse(fs.readFileSync(__dirname + "/package.json"))
.dependencies;
const themes = _.filter(_.keys(packages), (p) => {
return p.indexOf("theme") !== -1;
});
admin.initializeApp(functions.config().firebase);
var db = admin.database();
const dbs = admin.firestore();
const makeTemplate = (message) => {
const template = fs.readFileSync(__dirname + "/template.html", "utf8");
return template.replace("{MESSAGE}", message);
};
const getTheme = (theme) => {
try {
return require(__dirname + "/node_modules/jsonresume-theme-" + theme);
} catch (e) {
return {
e: e.toString(),
error:
"Theme is not supported please visit -> https://github.com/jsonresume/registry-functions/issues/7",
};
}
};
app.get("/themes", (req, res) => {
res.send(themes);
});
app.get("/theme/:theme", (req, res) => {
const resumeJson = JSON.parse(fs.readFileSync(__dirname + "/resume.json"));
const theme = req.params.theme.toLowerCase();
const themeRenderer = getTheme(theme);
if (themeRenderer.error) {
return res.send(themeRenderer.error + " - " + themeRenderer.e);
}
const resumeHTML = themeRenderer.render(resumeJson, {});
res.send(resumeHTML);
});
app.get("/", (req, res) => {
res.send("Visit jsonresume.org to learn more");
});
app.get("/all", (req, res) => {
const resumesRef = dbs.collection("resumes");
resumesRef
.get()
.then((snapshot) => {
const resumes = [];
snapshot.forEach((doc) => {
resumes.push(doc.id);
console.log(doc.id, "=>", doc.data());
});
return res.send(resumes);
})
.catch((err) => {
console.log("Error getting documents", err);
return [];
});
});
app.post("/theme/:theme", (req, res) => {
console.log("Rendering theme");
const resumeJson = req.body.resume;
var start = new Date();
const theme = req.params.theme.toLowerCase();
const themeRenderer = getTheme(theme);
var end = new Date() - start;
console.info("Execution time getTheme: %dms", end);
if (themeRenderer.error) {
return res.send(themeRenderer.error + " - " + themeRenderer.e);
}
start = new Date();
const resumeHTML = themeRenderer.render(resumeJson, {});
end = new Date() - start;
console.info("Execution time render: %dms", end);
console.log("finished");
res.send(resumeHTML);
});
// THIS IS A WIP TO SUPPORT PUTTING A resume.json in a `resume` repo
app.get("/repo/:username", async (req, res) => {
const username = req.params.username;
if (
[
"favicon.ico",
"competition",
"stats",
"apple-touch-icon.png",
"apple-touch-icon-precomposed.png",
"robots.txt",
].indexOf(username) !== -1
) {
return res.send(null);
}
try {
resumeRes = await axios({
method: "GET",
headers: { "content-type": "application/json" },
url: `https://raw.githubusercontent.com/${username}/resume/master/resume.json`,
});
} catch (e) {
return res.send(
makeTemplate(
"An error occurred, please check that https://github.com/${username}/resume/raw/master/resume.json loads for you. (Your repo name must be 'resume')"
)
);
}
if (!resumeRes.data) {
return res.send(
makeTemplate(
"An error occurred, please check that https://github.com/${username}/resume/raw/master/resume.json loads for you. (Your repo name must be 'resume')"
)
);
}
resumeSchema.validate(resumeRes.data, async (err, report) => {
console.log("validation finished");
if (err) {
console.log(err);
return res.send(
makeTemplate(
"Resume json invalid - " +
JSON.stringify(err) +
" - Please visit https://github.com/jsonresume/registry-functions/issues/27"
)
);
}
const resumesRef = dbs.collection("resumes");
resumesRef.doc(username).set(resumeRes.data);
let theme =
req.query.theme ||
(resumeRes.data.meta && resumeRes.data.meta.theme) ||
"actual";
theme = theme.toLowerCase();
const themeRenderer = getTheme(theme);
if (themeRenderer.error) {
return res.send(themeRenderer.error + " - " + themeRenderer.e);
}
const resumeHTML = themeRenderer.render(resumeRes.data, {});
res.send(resumeHTML);
});
});
app.get("/:username.:ext", async (req, res) => {
const username = req.params.username.split('.')[0]
const parsedFormat = req.params.ext.split('.');
console.log('parsed', req.params.ext, parsedFormat);
console.log('shit', req.params.ext, parsedFormat);
if (parsedFormat[0] === 'png') {
var code = qr.image('https://registry.jsonresume.org/' + username, { type: 'png', ec_level: 'S', size: 60, margin: 1});
res.setHeader('Content-type', 'image/png');
code.pipe(res);
} else {
res.send('Must be in the format of registry.jsonresume.org/thomasdavis.qr.png')
}
});
app.get("/:username", async (req, res) => {
const username = req.params.username;
if (
[
"favicon.ico",
"competition",
"stats",
"apple-touch-icon.png",
"apple-touch-icon-precomposed.png",
"robots.txt",
].indexOf(username) !== -1
) {
return res.send(null);
}
var ref = db.ref();
var usersRef = ref.child("gists/" + username);
usersRef.on("value", async (dataSnapshot) => {
console.log("=======");
console.log(dataSnapshot.val());
let gistId;
if (!dataSnapshot.val() || !dataSnapshot.val().gistId) {
console.log("Fetching gistId");
console.log(`https://api.github.com/users/${req.params.username}/gists`);
let gistData = {};
try {
gistData = await axios.get(
`https://api.github.com/users/${req.params.username}/gists`
);
} catch (e) {
return res.send(makeTemplate("This is not a valid Github username"));
}
if (!gistData.data) {
return res.send(makeTemplate("This is not a valid Github username"));
}
const resumeUrl = _.find(gistData.data, (f) => {
return f.files["resume.json"];
});
if (!resumeUrl) {
return res.send(makeTemplate("You have no gists named resume.json"));
}
gistId = resumeUrl.id;
} else {
console.log("Using cached gistId");
gistId = dataSnapshot.val().gistId;
}
usersRef.set({ gistId: gistId }, () => {});
const fullResumeGistUrl =
`https://gist.githubusercontent.com/${username}/${gistId}/raw?cachebust=` +
new Date().getTime();
console.log(fullResumeGistUrl);
let resumeRes = {};
try {
resumeRes = await axios({
method: "GET",
headers: { "content-type": "application/json" },
url: fullResumeGistUrl,
});
} catch (e) {
// If gist url is invalid, flush the gistid in cache
usersRef.set(null, () => {});
return res.send(
makeTemplate("The gist couldnt load, we flushed the cache so try again")
);
}
if (!resumeRes.data) {
return res.send(makeTemplate("Something went wrong fetching resume"));
}
resumeSchema.validate(resumeRes.data, async (err, report) => {
console.log("validation finished");
if (err) {
console.log(err);
return res.send(
makeTemplate(
"Resume json invalid - " +
JSON.stringify(err) +
" - Please visit https://github.com/jsonresume/registry-functions/issues/27"
)
);
}
const resumesRef = dbs.collection("resumes");
resumesRef.doc(username).set(resumeRes.data);
let theme =
req.query.theme ||
(resumeRes.data.meta && resumeRes.data.meta.theme) ||
"flat";
theme = theme.toLowerCase();
const themeRenderer = getTheme(theme);
if (themeRenderer.error) {
return res.send(themeRenderer.error + " - " + themeRenderer.e);
}
const resumeHTML = themeRenderer.render(resumeRes.data, {});
// if (!resumeHTMLRes.data) {
// res.send("There was an error generatoring your resume");
// }
res.send(resumeHTML);
});
});
});
app.listen(3000);
exports.registry = functions.https.onRequest(app);