-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathindex.js
110 lines (97 loc) · 3.25 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
// @ts-check
import { dirname } from 'node:path'
import { fileURLToPath } from 'node:url'
import { resolve } from 'import-meta-resolve'
import fastifyStatic from '@fastify/static'
const currentDir = dirname(fileURLToPath(import.meta.url))
/** @type {import('trifid-core/types').TrifidPlugin} */
const factory = async (trifid) => {
const { config, server, render } = trifid
const {
template,
endpointUrl,
acceptBlankNodes: acceptBlankNodesConfig,
dataLabelProperty: dataLabelPropertyConfig,
schemaLabelProperty: schemaLabelPropertyConfig,
language: languageConfig,
languages: languagesConfig,
} = config
const view = !template ? `${currentDir}/views/graph-explorer.hbs` : template
// Serve static files for graph-explorer
const distPath = resolve('graph-explorer/dist/', import.meta.url)
server.register(fastifyStatic, {
root: distPath.replace(/^file:\/\//, ''),
prefix: '/graph-explorer/assets/',
decorateReply: false,
})
server.register(fastifyStatic, {
root: `${currentDir}/static/`,
prefix: '/graph-explorer/static/',
decorateReply: false,
})
const endpoint = endpointUrl || '/query'
const acceptBlankNodes = !!acceptBlankNodesConfig
const dataLabelProperty = dataLabelPropertyConfig || 'rdfs:label'
const schemaLabelProperty = schemaLabelPropertyConfig || 'rdfs:label'
const language = languageConfig || 'en'
const languages = languagesConfig || [
{ code: 'en', label: 'English' },
{ code: 'de', label: 'German' },
{ code: 'fr', label: 'French' },
{ code: 'it', label: 'Italian' },
]
return {
defaultConfiguration: async () => {
return {
methods: ['GET'],
paths: [
'/graph-explorer',
'/graph-explorer/',
],
}
},
routeHandler: async () => {
/**
* Route handler.
* @param {import('fastify').FastifyRequest & { session: Map<string, any> }} request Request.
* @param {import('fastify').FastifyReply} reply Reply.
*/
const handler = async (request, reply) => {
let requestPort = ''
if (request.port) {
requestPort = `:${request.port}`
}
const fullUrl = `${request.protocol}://${request.hostname}${requestPort}${request.url}`
const fullUrlObject = new URL(fullUrl)
const fullUrlPathname = fullUrlObject.pathname
// Enforce trailing slash
if (fullUrlPathname.slice(-1) !== '/') {
reply.redirect(`${fullUrlPathname}/`)
return reply
}
const content = await render(
request,
view,
{
// Just forward all the config as a string
graphExplorerConfig: JSON.stringify({
// Read SPARQL endpoint URL from configuration and resolve with the current full URL
endpointUrl: new URL(endpoint, fullUrl).href,
// All other configured options
acceptBlankNodes,
dataLabelProperty,
schemaLabelProperty,
language,
languages,
}).replace(/'/g, "\\'"),
},
{ title: 'Graph Explorer' },
)
reply.type('text/html').send(content)
return reply
}
return handler
},
}
}
export default factory