1
|
|
|
<?php |
2
|
|
|
|
3
|
|
|
/** |
4
|
|
|
* Setting some often needed namespace prefixes |
5
|
|
|
*/ |
6
|
|
|
EasyRdf\RdfNamespace::set('skosmos', 'http://purl.org/net/skosmos#'); |
7
|
|
|
EasyRdf\RdfNamespace::set('skosext', 'http://purl.org/finnonto/schema/skosext#'); |
8
|
|
|
EasyRdf\RdfNamespace::delete('geo'); |
9
|
|
|
EasyRdf\RdfNamespace::set('wgs84', 'http://www.w3.org/2003/01/geo/wgs84_pos#'); |
10
|
|
|
EasyRdf\RdfNamespace::set('isothes', 'http://purl.org/iso25964/skos-thes#'); |
11
|
|
|
EasyRdf\RdfNamespace::set('mads', 'http://www.loc.gov/mads/rdf/v1#'); |
12
|
|
|
EasyRdf\RdfNamespace::set('wd', 'http://www.wikidata.org/entity/'); |
13
|
|
|
EasyRdf\RdfNamespace::set('wdt', 'http://www.wikidata.org/prop/direct/'); |
14
|
|
|
|
15
|
|
|
/** |
16
|
|
|
* GlobalConfig provides access to the Skosmos configuration in config.ttl. |
17
|
|
|
*/ |
18
|
|
|
class GlobalConfig extends BaseConfig |
19
|
|
|
{ |
20
|
|
|
/** Cache reference */ |
21
|
|
|
private $cache; |
22
|
|
|
/** Location of the configuration file. Used for caching. */ |
23
|
|
|
private $filePath; |
24
|
|
|
/** Namespaces from vocabularies configuration file. */ |
25
|
|
|
private $namespaces; |
26
|
|
|
/** EasyRdf\Graph graph */ |
27
|
|
|
private $graph; |
28
|
|
|
/** |
29
|
|
|
* @var int the time the config file was last modified |
30
|
|
|
*/ |
31
|
|
|
private $configModifiedTime = null; |
32
|
|
|
|
33
|
|
|
public function __construct(Model $model, string $config_name='../../config.ttl') |
34
|
|
|
{ |
35
|
|
|
$this->cache = new Cache(); |
36
|
|
|
$this->filePath = realpath(dirname(__FILE__) . "/" . $config_name); |
37
|
|
|
if (!file_exists($this->filePath)) { |
38
|
|
|
throw new Exception('config.ttl file is missing, please provide one.'); |
39
|
|
|
} |
40
|
|
|
$resource = $this->initializeConfig(); |
41
|
|
|
parent::__construct($model, $resource); |
42
|
|
|
} |
43
|
|
|
|
44
|
|
|
public function getCache() |
45
|
|
|
{ |
46
|
|
|
return $this->cache; |
47
|
|
|
} |
48
|
|
|
|
49
|
|
|
/** |
50
|
|
|
* @return int the time the config file was last modified |
51
|
|
|
*/ |
52
|
|
|
public function getConfigModifiedTime() |
53
|
|
|
{ |
54
|
|
|
return $this->configModifiedTime; |
55
|
|
|
} |
56
|
|
|
|
57
|
|
|
/** |
58
|
|
|
* Initialize configuration, reading the configuration file from the disk, |
59
|
|
|
* and creating the graph and resources objects. Uses a cache if available, |
60
|
|
|
* in order to avoid re-loading the complete configuration on each request. |
61
|
|
|
*/ |
62
|
|
|
private function initializeConfig(): EasyRdf\Resource |
63
|
|
|
{ |
64
|
|
|
// retrieve last modified time for config file (filemtime returns int|bool!) |
65
|
|
|
$configModifiedTime = filemtime($this->filePath); |
66
|
|
|
if (!is_bool($configModifiedTime)) { |
|
|
|
|
67
|
|
|
$this->configModifiedTime = $configModifiedTime; |
68
|
|
|
} |
69
|
|
|
// use APC user cache to store parsed config.ttl configuration |
70
|
|
|
if ($this->cache->isAvailable() && !is_null($this->configModifiedTime)) { |
71
|
|
|
// @codeCoverageIgnoreStart |
72
|
|
|
$key = realpath($this->filePath) . ", " . $this->configModifiedTime; |
73
|
|
|
$nskey = "namespaces of " . $key; |
74
|
|
|
$this->graph = $this->cache->fetch($key); |
75
|
|
|
$this->namespaces = $this->cache->fetch($nskey); |
76
|
|
|
if ($this->graph === false || $this->namespaces === false) { // was not found in cache |
77
|
|
|
$this->parseConfig($this->filePath); |
78
|
|
|
$this->cache->store($key, $this->graph); |
79
|
|
|
$this->cache->store($nskey, $this->namespaces); |
80
|
|
|
} |
81
|
|
|
// @codeCoverageIgnoreEnd |
82
|
|
|
} else { // APC not available, parse on every request |
83
|
|
|
$this->parseConfig($this->filePath); |
84
|
|
|
} |
85
|
|
|
$this->initializeNamespaces(); |
86
|
|
|
|
87
|
|
|
$configResources = $this->graph->allOfType("skosmos:Configuration"); |
88
|
|
|
if (is_null($configResources) || !is_array($configResources) || count($configResources) !== 1) { |
|
|
|
|
89
|
|
|
throw new Exception("config.ttl must have exactly one skosmos:Configuration"); |
90
|
|
|
} |
91
|
|
|
return $configResources[0]; |
92
|
|
|
} |
93
|
|
|
|
94
|
|
|
/** |
95
|
|
|
* Parses configuration from the config.ttl file |
96
|
|
|
* @param string $filename path to config.ttl file |
97
|
|
|
* @throws \EasyRdf\Exception |
98
|
|
|
*/ |
99
|
|
|
private function parseConfig($filename) |
100
|
|
|
{ |
101
|
|
|
$this->graph = new EasyRdf\Graph(); |
102
|
|
|
$parser = new SkosmosTurtleParser(); |
103
|
|
|
$parser->parse($this->graph, file_get_contents($filename), 'turtle', $filename); |
104
|
|
|
$this->namespaces = $parser->getNamespaces(); |
105
|
|
|
} |
106
|
|
|
|
107
|
|
|
/** |
108
|
|
|
* Returns the graph created after parsing the configuration file. |
109
|
|
|
* @return \EasyRdf\Graph |
110
|
|
|
*/ |
111
|
|
|
public function getGraph() |
112
|
|
|
{ |
113
|
|
|
return $this->graph; |
114
|
|
|
} |
115
|
|
|
|
116
|
|
|
/** |
117
|
|
|
* Registers RDF namespaces from the config.ttl file for use by EasyRdf (e.g. serializing) |
118
|
|
|
*/ |
119
|
|
|
private function initializeNamespaces() |
120
|
|
|
{ |
121
|
|
|
foreach ($this->namespaces as $prefix => $fullUri) { |
122
|
|
|
if ($prefix != '' && EasyRdf\RdfNamespace::get($prefix) === null) { // if not already defined |
123
|
|
|
EasyRdf\RdfNamespace::set($prefix, $fullUri); |
124
|
|
|
} |
125
|
|
|
} |
126
|
|
|
} |
127
|
|
|
|
128
|
|
|
/** |
129
|
|
|
* Returns the UI languages specified in the configuration or defaults to |
130
|
|
|
* only show English |
131
|
|
|
* @return array |
132
|
|
|
*/ |
133
|
|
|
public function getLanguages() |
134
|
|
|
{ |
135
|
|
|
$languageResources = $this->getResource()->getResource('skosmos:languages'); |
136
|
|
|
if (!is_null($languageResources) && !empty($languageResources)) { |
137
|
|
|
$languages = array(); |
138
|
|
|
foreach ($languageResources as $languageResource) { |
139
|
|
|
/** @var \EasyRdf\Literal $languageName */ |
140
|
|
|
$languageName = $languageResource->getLiteral('rdfs:label'); |
141
|
|
|
/** @var \EasyRdf\Literal $languageValue */ |
142
|
|
|
$languageValue = $languageResource->getLiteral('rdf:value'); |
143
|
|
|
if ($languageName && $languageValue) { |
144
|
|
|
$languages[$languageName->getValue()] = $languageValue->getValue(); |
145
|
|
|
} |
146
|
|
|
} |
147
|
|
|
return $languages; |
148
|
|
|
} else { |
149
|
|
|
return array('en' => 'en_GB.utf8'); |
150
|
|
|
} |
151
|
|
|
} |
152
|
|
|
|
153
|
|
|
/** |
154
|
|
|
* Returns the external HTTP request timeout in seconds or the default value |
155
|
|
|
* of 5 seconds if not specified in the configuration. |
156
|
|
|
* @return integer |
157
|
|
|
*/ |
158
|
|
|
public function getHttpTimeout() |
159
|
|
|
{ |
160
|
|
|
return $this->getLiteral('skosmos:httpTimeout', 5); |
|
|
|
|
161
|
|
|
} |
162
|
|
|
|
163
|
|
|
/** |
164
|
|
|
* Returns the SPARQL HTTP request timeout in seconds or the default value |
165
|
|
|
* of 20 seconds if not specified in the configuration. |
166
|
|
|
* @return integer |
167
|
|
|
*/ |
168
|
|
|
public function getSparqlTimeout() |
169
|
|
|
{ |
170
|
|
|
return $this->getLiteral('skosmos:sparqlTimeout', 20); |
|
|
|
|
171
|
|
|
} |
172
|
|
|
|
173
|
|
|
/** |
174
|
|
|
* Returns the sparql endpoint address defined in the configuration. If |
175
|
|
|
* not then defaulting to http://localhost:3030/ds/sparql |
176
|
|
|
* @return string |
177
|
|
|
*/ |
178
|
|
|
public function getDefaultEndpoint() |
179
|
|
|
{ |
180
|
|
|
$endpoint = $this->resource->get('skosmos:sparqlEndpoint'); |
181
|
|
|
if ($endpoint) { |
182
|
|
|
return $endpoint->getUri(); |
183
|
|
|
} elseif (getenv('SKOSMOS_SPARQL_ENDPOINT')) { |
184
|
|
|
return getenv('SKOSMOS_SPARQL_ENDPOINT'); |
185
|
|
|
} else { |
186
|
|
|
return 'http://localhost:3030/ds/sparql'; |
187
|
|
|
} |
188
|
|
|
} |
189
|
|
|
|
190
|
|
|
/** |
191
|
|
|
* Returns the maximum number of items to return in transitive queries if defined |
192
|
|
|
* in the configuration or the default value of 1000. |
193
|
|
|
* @return integer |
194
|
|
|
*/ |
195
|
|
|
public function getDefaultTransitiveLimit() |
196
|
|
|
{ |
197
|
|
|
return $this->getLiteral('skosmos:transitiveLimit', 1000); |
|
|
|
|
198
|
|
|
} |
199
|
|
|
|
200
|
|
|
/** |
201
|
|
|
* Returns the maximum number of items to load at a time if defined |
202
|
|
|
* in the configuration or the default value of 20. |
203
|
|
|
* @return integer |
204
|
|
|
*/ |
205
|
|
|
public function getSearchResultsSize() |
206
|
|
|
{ |
207
|
|
|
return $this->getLiteral('skosmos:searchResultsSize', 20); |
|
|
|
|
208
|
|
|
} |
209
|
|
|
|
210
|
|
|
/** |
211
|
|
|
* Returns the configured location for the twig template cache and if not |
212
|
|
|
* defined defaults to "/tmp/skosmos-template-cache" |
213
|
|
|
* @return string |
214
|
|
|
*/ |
215
|
|
|
public function getTemplateCache() |
216
|
|
|
{ |
217
|
|
|
return $this->getLiteral('skosmos:templateCache', '/tmp/skosmos-template-cache'); |
218
|
|
|
} |
219
|
|
|
|
220
|
|
|
/** |
221
|
|
|
* Returns the defined sparql-query extension eg. "JenaText" or |
222
|
|
|
* if not defined falling back to SPARQL 1.1 |
223
|
|
|
* @return string |
224
|
|
|
*/ |
225
|
|
|
public function getDefaultSparqlDialect() |
226
|
|
|
{ |
227
|
|
|
return $this->getLiteral('skosmos:sparqlDialect', 'Generic'); |
228
|
|
|
} |
229
|
|
|
|
230
|
|
|
/** |
231
|
|
|
* Returns the feedback address defined in the configuration. |
232
|
|
|
* @return string |
233
|
|
|
*/ |
234
|
|
|
public function getFeedbackAddress() |
235
|
|
|
{ |
236
|
|
|
return $this->getLiteral('skosmos:feedbackAddress', null); |
237
|
|
|
} |
238
|
|
|
|
239
|
|
|
/** |
240
|
|
|
* Returns the feedback sender address defined in the configuration. |
241
|
|
|
* @return string |
242
|
|
|
*/ |
243
|
|
|
public function getFeedbackSender() |
244
|
|
|
{ |
245
|
|
|
return $this->getLiteral('skosmos:feedbackSender', null); |
246
|
|
|
} |
247
|
|
|
|
248
|
|
|
/** |
249
|
|
|
* Returns the feedback envelope sender address defined in the configuration. |
250
|
|
|
* @return string |
251
|
|
|
*/ |
252
|
|
|
public function getFeedbackEnvelopeSender() |
253
|
|
|
{ |
254
|
|
|
return $this->getLiteral('skosmos:feedbackEnvelopeSender', null); |
255
|
|
|
} |
256
|
|
|
|
257
|
|
|
/** |
258
|
|
|
* Returns true if exception logging has been configured. |
259
|
|
|
* @return boolean |
260
|
|
|
*/ |
261
|
|
|
public function getLogCaughtExceptions() |
262
|
|
|
{ |
263
|
|
|
return $this->getBoolean('skosmos:logCaughtExceptions', false); |
264
|
|
|
} |
265
|
|
|
|
266
|
|
|
/** |
267
|
|
|
* Returns true if browser console logging has been enabled, |
268
|
|
|
* @return boolean |
269
|
|
|
*/ |
270
|
|
|
public function getLoggingBrowserConsole() |
271
|
|
|
{ |
272
|
|
|
return $this->getBoolean('skosmos:logBrowserConsole', false); |
273
|
|
|
} |
274
|
|
|
|
275
|
|
|
/** |
276
|
|
|
* Returns the name of a log file if configured, or NULL otherwise. |
277
|
|
|
* @return string |
278
|
|
|
*/ |
279
|
|
|
public function getLoggingFilename() |
280
|
|
|
{ |
281
|
|
|
return $this->getLiteral('skosmos:logFileName', null); |
282
|
|
|
} |
283
|
|
|
|
284
|
|
|
/** |
285
|
|
|
* @return string |
286
|
|
|
*/ |
287
|
|
|
public function getServiceName() |
288
|
|
|
{ |
289
|
|
|
return $this->getLiteral('skosmos:serviceName', 'Skosmos'); |
290
|
|
|
} |
291
|
|
|
|
292
|
|
|
/** |
293
|
|
|
* Returns the long version of the service name in the requested language. |
294
|
|
|
* @return string the long name of the service |
295
|
|
|
*/ |
296
|
|
|
public function getServiceNameLong($lang) |
297
|
|
|
{ |
298
|
|
|
$val = $this->getLiteral('skosmos:serviceNameLong', false, $lang); |
|
|
|
|
299
|
|
|
|
300
|
|
|
if ($val === false) { |
|
|
|
|
301
|
|
|
// fall back to short service name if not configured |
302
|
|
|
return $this->getServiceName(); |
303
|
|
|
} |
304
|
|
|
|
305
|
|
|
return $val; |
306
|
|
|
} |
307
|
|
|
|
308
|
|
|
/** |
309
|
|
|
* @return string |
310
|
|
|
*/ |
311
|
|
|
public function getCustomCss() |
312
|
|
|
{ |
313
|
|
|
return $this->getLiteral('skosmos:customCss', null); |
314
|
|
|
} |
315
|
|
|
|
316
|
|
|
/** |
317
|
|
|
* @return boolean |
318
|
|
|
*/ |
319
|
|
|
public function getUiLanguageDropdown() |
320
|
|
|
{ |
321
|
|
|
return $this->getBoolean('skosmos:uiLanguageDropdown', false); |
322
|
|
|
} |
323
|
|
|
|
324
|
|
|
/** |
325
|
|
|
* @return string |
326
|
|
|
*/ |
327
|
|
|
public function getBaseHref() |
328
|
|
|
{ |
329
|
|
|
return $this->getLiteral('skosmos:baseHref', null); |
330
|
|
|
} |
331
|
|
|
|
332
|
|
|
/** |
333
|
|
|
* @return array |
334
|
|
|
*/ |
335
|
|
|
public function getGlobalPlugins() |
336
|
|
|
{ |
337
|
|
|
$globalPlugins = array(); |
338
|
|
|
$globalPluginsResource = $this->getResource()->getResource("skosmos:globalPlugins"); |
339
|
|
|
if ($globalPluginsResource) { |
|
|
|
|
340
|
|
|
foreach ($globalPluginsResource as $resource) { |
341
|
|
|
$globalPlugins[] = $resource->getValue(); |
342
|
|
|
} |
343
|
|
|
} |
344
|
|
|
return $globalPlugins; |
345
|
|
|
} |
346
|
|
|
|
347
|
|
|
/** |
348
|
|
|
* @return boolean |
349
|
|
|
*/ |
350
|
|
|
public function getHoneypotEnabled() |
351
|
|
|
{ |
352
|
|
|
return $this->getBoolean('skosmos:uiHoneypotEnabled', true); |
353
|
|
|
} |
354
|
|
|
|
355
|
|
|
/** |
356
|
|
|
* @return integer |
357
|
|
|
*/ |
358
|
|
|
public function getHoneypotTime() |
359
|
|
|
{ |
360
|
|
|
return $this->getLiteral('skosmos:uiHoneypotTime', 5); |
|
|
|
|
361
|
|
|
} |
362
|
|
|
|
363
|
|
|
/** |
364
|
|
|
* @return boolean |
365
|
|
|
*/ |
366
|
|
|
public function getCollationEnabled() |
367
|
|
|
{ |
368
|
|
|
return $this->getBoolean('skosmos:sparqlCollationEnabled', false); |
369
|
|
|
} |
370
|
|
|
} |
371
|
|
|
|