-
Notifications
You must be signed in to change notification settings - Fork 16
/
index.js
111 lines (99 loc) · 3.9 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
111
'use strict';
const CACHE = require('./cache');
const path = require('path');
const fs = require('fs');
const express = require('express');
const nunjucks = require('nunjucks');
const basePath = process.env.BASE_PATH || '/';
const rootPath = path.resolve(__dirname, './dist/budgetkey-app-search');
const app = express();
app.use(basePath, express.static(rootPath, {
index: false,
maxAge: '1d',
}));
nunjucks.configure(rootPath, {
autoescape: true,
express: app
});
app.set('port', process.env.PORT || 8000);
app.get(basePath + '*', function(req, res) {
let injectedScript = '';
// set language
var lang = typeof(req.query.lang) !== "undefined" ? req.query.lang : 'he';
injectedScript += `BUDGETKEY_LANG=${JSON.stringify(lang)};`;
var theme = typeof(req.query.theme) !== "undefined" ? req.query.theme : 'budgetkey';
var themeFileName = `theme.${theme}.${lang}.json`;
let themeJson = null;
if (themeFileName) {
// try the themes root directory first - this allows mount multiple themes in a single shared docker volume
if (fs.existsSync(path.resolve('/themes', themeFileName))) {
themeJson = JSON.parse(fs.readFileSync(path.resolve('/themes', themeFileName)));
// fallback to local file - for local development / testing
} else if (fs.existsSync(path.resolve(__dirname, themeFileName))) {
themeJson = JSON.parse(fs.readFileSync(path.resolve(__dirname, themeFileName)));
}
if (themeJson) {
for (var key in themeJson) {
injectedScript += `${key}=${JSON.stringify(themeJson[key])};`;
}
injectedScript += `BUDGETKEY_THEME_ID=${JSON.stringify(req.query.theme)};`;
}
}
injectedScript += `CACHE=${JSON.stringify(CACHE)};`
var siteName = (themeJson && themeJson.BUDGETKEY_APP_GENERIC_ITEM_THEME) ?
themeJson.BUDGETKEY_APP_GENERIC_ITEM_THEME.siteName :
'מפתח התקציב';
var title = siteName + ' - חיפוש';
var term = req.query.q;
var kind = req.query.dd;
if (term) {
if (!kind) {
kind = 'all';
}
if (kind == 'all') {
kind = 'כל מה שקשור ל';
} else if (kind == 'entities') {
kind = 'ארגונים הקשורים ל';
} else if (kind == 'associations') {
kind = 'עמותות וחל״צ הקשורות ל';
} else if (kind == 'procurement') {
kind = 'התקשרויות ומכרזים הקשורים ל';
} else if (kind == 'tenders') {
kind = 'מכרזים הקשורים ל';
} else if (kind == 'central-tenders') {
kind = 'מכרזים מרכזיים הקשורים ל';
} else if (kind == 'office-tenders') {
kind = 'מכרזים משרדיים הקשורים ל';
} else if (kind == 'exemptions') {
kind = 'פטורים ממכרז הקשורים ל';
} else if (kind == 'contracts') {
kind = 'התקשרויות רכש הקשורות ל';
} else if (kind == 'supports') {
kind = 'תמיכות הקשורות ל';
} else if (kind == 'budget') {
kind = 'סעיפי תקציב הקשורים ל';
} else if (kind == 'national-budget-changes') {
kind = 'העברות תקציביות הקשורות ל';
} else if (kind == 'field-of-activity-reports') {
kind = 'תחומי פעילות הקשורים ל';
} else if (kind == 'district-reports') {
kind = 'מחוזות הקשורים ל';
} else if (kind == 'people') {
kind = 'אזכורים של השם';
} else if (kind == 'gov_decisions') {
kind = 'החלטות ממשלה הקשורות ל';
} else if (kind == 'activities') {
kind = 'שירותים ופרויקטים הקשורים ל';
}
title += ' ' + kind + term
}
res.render('index.html', {
injectedScript: injectedScript,
base: basePath,
title: title,
authServerUrl: process.env.AUTH_SERVER_URL
});
});
app.listen(app.get('port'), function() {
console.log('Listening port ' + app.get('port'));
});