-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathtopLevelV2.js
55 lines (49 loc) · 2.34 KB
/
topLevelV2.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
// Imports
const defaultLog = require('winston').loggers.get('default');
const Actions = require('../helpers/actions');
// Constants
/* put any needed const variables here */
// Vars
/* put any needed local variables here */
// functions
/* put any needed local functions here */
// Exports
// OPTIONS
exports.topLevelOptions = function (args, res) {
res.status(200).send();
};
// GET (Public, getPin)
exports.getTopLevel = async function (args, res) {
defaultLog.debug('>>> {GET} /');
try {
let topLevelData = {
title: 'EPIC API v2',
description: 'The EPIC application RESTful service, for accessing EPIC projects and documents',
version: '1.0.0',
links:
[
{ rel: 'self', title: 'API Top Level', method: 'GET', href: '/api/v2/' },
{ rel: 'fetch', title: 'Public Projects List', method: 'GET', href: '/api/v2/Public/Projects' },
{ rel: 'fetch', title: 'Public Documents List', method: 'GET', href: '/api/v2/Public/Documents' },
{ rel: 'create', title: 'Public Documents Create', method: 'POST', href: '/api/v2/Public/Documents' }
]
};
// secure links
if (Object.prototype.hasOwnProperty.call(args.swagger.params, 'auth_payload') && args.swagger.params.auth_payload.preferred_username !== 'public') {
topLevelData.links.push({ rel: 'fetch', title: 'Secure Projects List', method: 'GET', href: '/api/v2/Projects' });
topLevelData.links.push({ rel: 'create', title: 'Secure Projects Create', method: 'POST', href: '/api/v2/Projects' });
topLevelData.links.push({ rel: 'fetch', title: 'Secure Documents List', method: 'GET', href: '/api/v2/Documents' });
topLevelData.links.push({ rel: 'create', title: 'Secure Documents Create', method: 'POST', href: '/api/v2/Documents' });
/* Endpoints without a bindable link (we don't return PIN or MEMBER(user) resources yet)
{ rel: 'self', title: 'API Top Level', method: 'GET', href: '/api/v2/' },
{ rel: 'fetch', title: 'Public Projects List', method: 'GET', href: '/api/v2/Public/Projects' },
]*/
}
Actions.sendResponseV2(res, 200, topLevelData);
} catch (e) {
defaultLog.error('### Error in {GET} / :', e);
return Actions.sendResponseV2(res, 500, { code: '500', message: 'Internal Server Error', self: 'Api/v2/' });
} finally {
defaultLog.debug('<<< {GET} /');
}
};