-
Notifications
You must be signed in to change notification settings - Fork 4
/
content-api.js
371 lines (340 loc) · 10.5 KB
/
content-api.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
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
'use strict';
const { find, filter, get, getOr, head, map, sortBy } = require('lodash/fp');
const { pick } = require('lodash');
const request = require('request-promise-native');
const querystring = require('querystring');
const logger = require('./logger').child({
service: 'content-api'
});
const getAttrs = response => get('data.attributes')(response);
const mapAttrs = response => map('attributes')(response.data);
const { sanitiseUrlPath } = require('./urls');
let { CONTENT_API_URL } = require('./secrets');
function fetch(urlPath, options) {
logger.debug(
`Fetching ${CONTENT_API_URL}${urlPath}${
options && options.qs ? '?' + querystring.stringify(options.qs) : ''
}`
);
const defaults = {
url: `${CONTENT_API_URL}${urlPath}`,
json: true
};
const params = Object.assign({}, defaults, options);
return request(params);
}
/**
* Fetch all locales for a given url path
* Usage:
* ```
* fetchAllLocales(reqLocale => {
* return `/v1/${reqLocale}/funding-programmes`
* }).then(responses => ...)
* ```
*/
function fetchAllLocales(toUrlPathFn, options = {}) {
const urlPaths = ['en', 'cy'].map(toUrlPathFn);
const promises = urlPaths.map(urlPath => fetch(urlPath, options));
return Promise.all(promises);
}
/**
* Adds the preview parameters to the request
* (if accessed via the preview domain)
*/
function addPreviewParams(requestParams = {}, params = {}) {
const globalParams = pick(requestParams, [
'social',
'x-craft-live-preview',
'x-craft-preview',
'token'
]);
return Object.assign({}, globalParams, params);
}
/**
* Merge welsh by property name
* Merge welsh results where available matched by a given property
* Usage:
* ```
* mergeWelshBy('slug')(currentLocale, enResults, cyResults)
* ```
*/
function mergeWelshBy(propName) {
return function(currentLocale, enResults, cyResults) {
if (currentLocale === 'en') {
return enResults;
} else {
return map(enItem => {
const findCy = find(
cyItem => cyItem[propName] === enItem[propName]
);
return findCy(cyResults) || enItem;
})(enResults);
}
};
}
function filterBySlugs(list, slugs) {
const matches = filter(result => slugs.indexOf(result.slug) !== -1)(list);
return sortBy(item => slugs.indexOf(item.slug))(matches);
}
/**
* Build pagination
* Translate content API pagination into an object for use in views
*/
function _buildPagination(paginationMeta, currentQuery = {}) {
if (paginationMeta && paginationMeta.total_pages > 1) {
const currentPage = paginationMeta.current_page;
const totalPages = paginationMeta.total_pages;
const prevLink = `?${querystring.stringify({
...currentQuery,
...{ page: currentPage - 1 }
})}`;
const nextLink = `?${querystring.stringify({
...currentQuery,
...{ page: currentPage + 1 }
})}`;
return {
count: paginationMeta.count,
total: paginationMeta.total,
perPage: paginationMeta.per_page,
currentPage: currentPage,
totalPages: totalPages,
prevLink: currentPage > 1 ? prevLink : null,
nextLink: currentPage < totalPages ? nextLink : null
};
}
}
/***********************************************
* API Methods
***********************************************/
function getRoutes() {
return fetch('/v1/list-routes').then(mapAttrs);
}
function getAliasForLocale({ locale, urlPath }) {
return fetch(`/v1/${locale}/aliases`)
.then(mapAttrs)
.then(matches => {
const findAlias = find(
alias => alias.from.toLowerCase() === urlPath.toLowerCase()
);
return findAlias(matches);
});
}
function getAlias(urlPath) {
const getOrHomepage = getOr('/', 'to');
return getAliasForLocale({
locale: 'en',
urlPath: urlPath
}).then(enMatch => {
if (enMatch) {
return getOrHomepage(enMatch);
} else {
return getAliasForLocale({
locale: 'cy',
urlPath: urlPath
}).then(cyMatch => (cyMatch ? getOrHomepage(cyMatch) : null));
}
});
}
function getHeroImage({ locale, slug }) {
return fetch(`/v1/${locale}/hero-image/${slug}`).then(
response => response.data.attributes
);
}
function getHomepage({ locale }) {
return fetch(`/v1/${locale}/homepage`).then(
response => response.data.attributes
);
}
/**
* Get updates
* @param options
* @property {string} options.locale
* @property {string} [options.type]
* @property {string} [options.date]
* @property {string} [options.slug]
* @property {object} [options.query]
* @property {object} [options.requestParams]
*/
function getUpdates({
locale,
type = null,
date = null,
slug = null,
query = {},
requestParams = {}
}) {
if (slug) {
return fetch(`/v1/${locale}/updates/${type}/${date}/${slug}`, {
qs: addPreviewParams(requestParams, { ...query })
}).then(response => {
return {
meta: response.meta,
result: response.data.attributes
};
});
} else {
return fetch(`/v1/${locale}/updates/${type || ''}`, {
qs: addPreviewParams(requestParams, {
...query,
...{ 'page-limit': 10 }
})
}).then(response => {
return {
meta: response.meta,
result: mapAttrs(response),
pagination: _buildPagination(response.meta.pagination, query)
};
});
}
}
function getFundingProgrammes({
locale,
page = 1,
pageLimit = 100,
showAll = false
}) {
return fetchAllLocales(reqLocale => `/v2/${reqLocale}/funding-programmes`, {
qs: { 'page': page, 'page-limit': pageLimit, 'all': showAll === true }
}).then(responses => {
const [enResults, cyResults] = responses.map(mapAttrs);
return {
meta: head(responses).meta,
result: mergeWelshBy('slug')(locale, enResults, cyResults)
};
});
}
function getRecentFundingProgrammes({ locale, limit = 3 }) {
return fetch(`/v2/${locale}/funding-programmes`, {
qs: { 'page': 1, 'page-limit': limit, 'newest': true }
}).then(response => {
return {
meta: response.meta,
result: mapAttrs(response)
};
});
}
function getFundingProgramme({ locale, slug, query = {}, requestParams = {} }) {
return fetch(`/v2/${locale}/funding-programmes/${slug}`, {
qs: addPreviewParams(requestParams, { ...query })
}).then(response => get('data.attributes')(response));
}
function getResearch({
locale,
slug = null,
query = {},
requestParams = {},
type = null
}) {
if (slug) {
return fetch(`/v1/${locale}/research/${slug}`, {
qs: addPreviewParams(requestParams, { ...query })
}).then(getAttrs);
} else {
let path = `/v1/${locale}/research`;
if (type) {
path += `/${type}`;
}
return fetch(path, {
qs: addPreviewParams(requestParams, { ...query })
}).then(response => {
return {
meta: response.meta,
result: mapAttrs(response),
pagination: _buildPagination(response.meta.pagination, query)
};
});
}
}
function getStrategicProgrammes({
locale,
slug = null,
query = {},
requestParams = {}
}) {
if (slug) {
return fetch(`/v1/${locale}/strategic-programmes/${slug}`, {
qs: addPreviewParams(requestParams, { ...query })
}).then(response => get('data.attributes')(response));
} else {
return fetchAllLocales(
reqLocale => `/v1/${reqLocale}/strategic-programmes`
).then(responses => {
const [enResults, cyResults] = responses.map(mapAttrs);
return mergeWelshBy('urlPath')(locale, enResults, cyResults);
});
}
}
function getListingPage({ locale, path, query = {}, requestParams = {} }) {
const sanitisedPath = sanitiseUrlPath(path);
return fetch(`/v1/${locale}/listing`, {
qs: addPreviewParams(requestParams, {
...query,
...{ path: sanitisedPath }
})
}).then(response => {
const attributes = response.data.map(item => item.attributes);
return attributes.find(_ => _.path === sanitisedPath);
});
}
function getFlexibleContent({ locale, path, query = {}, requestParams = {} }) {
const sanitisedPath = sanitiseUrlPath(path);
return fetch(`/v1/${locale}/flexible-content`, {
qs: addPreviewParams(requestParams, {
...query,
...{ path: sanitisedPath }
})
}).then(response => response.data.attributes);
}
function getProjectStory({ locale, grantId, query = {}, requestParams = {} }) {
return fetch(`/v1/${locale}/project-stories/${grantId}`, {
qs: addPreviewParams(requestParams, { ...query })
}).then(getAttrs);
}
function getProjectStories({ locale, slugs = [] }) {
return fetchAllLocales(
reqLocale => `/v1/${reqLocale}/project-stories`
).then(responses => {
const [enResults, cyResults] = responses.map(mapAttrs);
const results = mergeWelshBy('slug')(locale, enResults, cyResults);
return slugs.length > 0 ? filterBySlugs(results, slugs) : results;
});
}
function getOurPeople({ locale, requestParams = {} }) {
return fetch(`/v1/${locale}/our-people`, {
qs: addPreviewParams(requestParams)
}).then(mapAttrs);
}
function getDataStats({ locale, query = {}, requestParams = {} }) {
return fetch(`/v1/${locale}/data`, {
qs: addPreviewParams(requestParams, { ...query })
}).then(response => response.data.attributes);
}
function getMerchandise({ locale, showAll = false } = {}) {
let params = {};
if (showAll) {
params.all = 'true';
}
return fetch(`/v1/${locale}/merchandise`, { qs: params }).then(mapAttrs);
}
module.exports = {
// Exported for tests
_buildPagination,
// API methods
getAlias,
getProjectStory,
getProjectStories,
getDataStats,
getFlexibleContent,
getFundingProgramme,
getFundingProgrammes,
getRecentFundingProgrammes,
getHeroImage,
getHomepage,
getListingPage,
getMerchandise,
getOurPeople,
getResearch,
getRoutes,
getStrategicProgrammes,
getUpdates
};