-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.js
179 lines (151 loc) · 4.2 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
const { URL } = require('url');
const { send, json } = require('micro');
const { PORT = 4000 } = process.env;
const http = require('http');
const { JSDOM } = require('jsdom');
const stripIndent = require('strip-indent');
const { UP_STAGE, TIMBER_API_KEY } = process.env;
if (UP_STAGE === 'production') {
const timber = require('timber');
const transport = new timber.transports.HTTPS(TIMBER_API_KEY);
timber.install(transport);
}
/*
* Services
*/
const fromGeniusKitchen = require('services/genius-kitchen');
const fromJamie = require('services/jamie-oliver');
const fromSchema = require('services/schema');
const fromWashingtonPost = require('services/washington-post');
const fromWPRM = require('services/wordpress-recipe-maker');
const fromWPUR = require('services/wordpress-ultimate-recipe');
/*
* Utilities
*/
const getCanonicalUrl = require('utils/getCanonicalUrl');
const withCors = res => {
res.setHeader('Access-Control-Allow-Origin', '*');
res.setHeader('Access-Control-Allow-Methods', ['POST', 'OPTIONS']);
res.setHeader('Access-Control-Allow-Headers', [
'Content-Type',
'Authorization',
]);
return res;
};
http
.createServer(async (req, res) => {
if (req.method === 'OPTIONS') {
return send(withCors(res), 200);
}
// Parse request body
const data = await json(req).catch(e => {
console.error(e);
return {
error: 'Request contains invalid JSON',
};
});
// If request body is not valid, throw error
if (data.error) {
return send(res, 422, {
message: data.error,
});
}
// Get url from body
const { url } = data;
// If no url was supplied, throw error
if (!url) {
return send(withCors(res), 422, {
message: 'Could not find `url` in request body.',
});
}
// Construct DOM
const dom = await JSDOM.fromURL(url).catch(e => {
console.error(e);
return {
error: 'Could not constructor DOM from url',
};
});
// If something went wrong while creating the DOM, throw error
if (dom.error) {
return send(withCors(res), 422, {
message: dom.error,
});
}
// Get canonical URL and remove hash and query string
const canonicalUrl = new URL(getCanonicalUrl(dom.window.document) || url);
canonicalUrl.hash = '';
canonicalUrl.search = '';
const genericProperties = {
url: canonicalUrl.toString(),
hostname: canonicalUrl.hostname,
};
/*
* Jamie Oliver
*/
if (url.includes('jamieoliver.com')) {
return send(withCors(res), 200, {
...genericProperties,
...fromJamie(dom.window.document),
});
}
/*
* Washington Post
*/
if (url.includes('washingtonpost.com')) {
return send(withCors(res), 200, {
...genericProperties,
...fromWashingtonPost(dom.window.document),
});
}
/*
* Genius Kitchen
*/
if (url.includes('geniuskitchen.com')) {
return send(withCors(res), 200, {
...genericProperties,
...fromGeniusKitchen(dom.window.document),
});
}
/*
* Wordpress Recipe Maker
*/
const isWPRM = dom.window.document.querySelector('.wprm-recipe-container');
if (isWPRM) {
return send(withCors(res), 200, {
...genericProperties,
...fromWPRM(dom.window.document),
});
}
/*
* Wordpress Ultimate Recipe
*/
const isWPUR = dom.window.document.querySelector('.wpurp-container');
if (isWPUR) {
return send(withCors(res), 200, {
...genericProperties,
...fromWPUR(dom.window.document),
});
}
/*
* Recipe schema
*/
const hasSchema = dom.window.document.querySelector(
'[itemtype$="schema.org/Recipe"], [itemtype$="data-vocabulary.org/Recipe"]',
);
if (hasSchema) {
return send(withCors(res), 200, {
...genericProperties,
...fromSchema(dom.window.document),
});
}
/*
* Error: recipe not found on page
*/
console.log(
`Could not parse recipe on hostname ${genericProperties.hostname}`,
);
return send(withCors(res), 404, {
message: 'Couldn’t find a recipe on page.',
});
})
.listen(PORT);