-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.js
84 lines (81 loc) · 2.91 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
const express = require('express');
const shacl = require('./shaclService/shacl');
const morgan = require('morgan');
const got = require('got');
const app = express();
app.use(morgan('combined'));
app.use(function(req, res, next) {
res.header("Access-Control-Allow-Origin", "*");
res.header("Access-Control-Allow-Headers", "Origin, X-Requested-With, Content-Type, Accept");
next();
});
// Enable NPM Package in the frontend
app.use('/lib/schema-org-adapter.min.js', express.static(__dirname + '/node_modules/schema-org-adapter/dist/schema-org-adapter.min.js')); // Sdo library
app.use(express.static('public'));
/* API endpoints for frontend */
// Get the default DS-List
app.get('/api/list/', async(req, res) => {
try {
const response = await got('https://semantify.it/list/wS4r3c9hQ?representation=lean', {
headers: {
'Accept': 'application/json',
'Content-Type': 'application/json; charset=utf-8',
}
});
res.status(200).send(response.body);
} catch (error) {
console.log(error);
res.status(400).send({"error": "could not find the standard list"});
}
});
// Get a specific DS-List by its UID
app.get('/api/list/:uid', async(req, res) => {
try {
const response = await got('https://semantify.it/list/'+req.params.uid+'?representation=lean', {
headers: {
'Accept': 'application/json',
'Content-Type': 'application/json; charset=utf-8',
}
});
res.status(200).send(response.body);
} catch (error) {
res.status(400).send({"error": "could not find a DS-List with the given UID."});
}
});
// Get a specific DS by its UID
app.get('/api/ds/:uid', async(req, res) => {
try {
const response = await got('https://semantify.it/ds/' + req.params.uid, {
headers: {
'Accept': 'application/json',
'Content-Type': 'application/json; charset=utf-8',
}
});
res.status(200).send(response.body);
} catch (error) {
res.status(400).send({"error": "could not find a DS with the given UID."});
}
});
/* Frontend Routes */
// RAW content for Domain Specifications
app.get('/shacl/:uid', async(req, res) => {
try {
const response = await got('https://semantify.it/ds/' + req.params.uid, {
headers: {
'Accept': 'application/json',
'Content-Type': 'application/json; charset=utf-8',
}
});
let ds = JSON.parse(response.body);
shacl.makeDSPretty(ds["@graph"][0]);
res.status(200).send(ds);
} catch (e) {
console.log(e);
}
});
// Any other route is handled by the frontend
app.get('/*', (req, res) => {
res.sendFile(__dirname + '/public/index.html');
});
app.listen(process.env.PORT || 8080,
() => console.log(`Listening on port ${process.env.PORT || 8080}!`));