-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
132 lines (123 loc) · 4.55 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
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
'use strict';
const express = require('express');
const nunjucks = require('nunjucks');
const request = require("request");
const bodyParser = require('body-parser');
const sgMail = require('@sendgrid/mail')
sgMail.setApiKey(process.env.SENDGRID_API_KEY)
const app = express();
const rootDir = './dist/';
const externalUrl = 'https://yodaat.org';
const apiServer = 'https://api.yodaat.org';
const CONFS = [
['/ar/', 'ar/'],
['/en/', 'en/'],
['/', 'he/'],
];
const TITLE = 'יודעת هي تعرف she knows';
const TITLE_LANGS = {
'he/': 'מרכז ידע בנושא נשים ומגדר בישראל',
'en/': 'Israel\'s Knowledge Center on Women and Gender',
'ar/': 'مركز للمعرفة والنساء والجندر في إسرائيل'
}
const ITEM_LANGS = {
'he/': 'מרכז ידע נשים ומגדר',
'en/': 'Knowledge Center on Women and Gender',
'ar/': 'مركز للمعرفة والنساء والجندر'
}
const TAG_LANGS = {
'he/': 'מרכז ידע בנושא נשים ומגדר בישראל - פרסומים, ארגונים ומידע הקשורים ל',
'en/': 'Israel\'s Knowledge Center on Women and Gender - Publications, organizations and information on ',
'ar/': 'مركز المعلومات حول النساء والجندر في اسرائيل - إصدارات، منظمات ومعلومات '
}
nunjucks.configure(rootDir, {
autoescape: true,
express: app
});
app.set('port', process.env.PORT || 8000);
app.get('/sitemap.xml', function(req, res) {
res.status(301).redirect('https://api.yodaat.org/data/sitemap.xml')
});
app.use('/contact', bodyParser.json())
.post('/contact', function(req, res) {
const msg = {
to: '[email protected]',
from: '[email protected]',
subject: req.body.subject,
text: req.body.body,
html: '<div style="direction:rtl">' + req.body.body.split('\n').join('<br/>') + '</div>',
};
console.log(msg);
sgMail
.send(msg)
.then(() => {
res.status(200).json({sent: true});
})
.catch((error) => {
res.status(200).json({sent: false, error: '' + error});
});
});
for (const conf of CONFS) {
const _rootDir = `${rootDir}${conf[1]}`;
console.log(conf[0],'->',_rootDir);
app.use(conf[0], express.static(_rootDir, {
index: false,
maxAge: '1d',
}));
}
for (const conf of CONFS) {
const _rootDir = `${rootDir}${conf[1]}`;
const langPrefix = conf[0];
const title = TITLE_LANGS[conf[1]];
const item_title = ITEM_LANGS[conf[1]];
const tag_title = TAG_LANGS[conf[1]];
app.route(langPrefix + '*')
.get(function(req, res) {
const item_prefix = `${langPrefix}item`;
const tag_prefix = `${langPrefix}search?tag=`;
if (req.originalUrl.startsWith(item_prefix)) {
const doc_id = req.path.slice(item_prefix.length + 1);
request({
url: apiServer + '/get/' + doc_id,
json: true
}, function (error, response, body) {
console.log(error, response, body);
if (response.statusCode === 200 && body !== null && body.value) {
body = body.value;
let image_url='https://yodaat.org/assets/social-preview.png';
if (doc_id.startsWith('dataset/')) {
image_url = `https://api.yodaat.org/data${langPrefix}${doc_id}-share.png`;
}
res.render(`${conf[1]}index.html`, {
lang: conf[1].slice(0, 2),
title: item_title + ' - ' + (body.org_name || body.title || body.chart_title),
image_url: image_url,
description: title + ' - ' + (body.objective || body.notes || body.chart_abstract),
url: `${externalUrl}${req.originalUrl}`
})
}
});
} else if (req.originalUrl.startsWith(tag_prefix)) {
const tag = req.query.itag || req.query.tag;
const image_url='https://yodaat.org/assets/social-preview.png';
res.render(`${conf[1]}index.html`, {
lang: conf[1].slice(0, 2),
title: title + ' - ' + tag,
image_url: image_url,
description: tag_title + tag,
url: `${externalUrl}${req.originalUrl}`
});
} else {
res.render(`${conf[1]}index.html`, {
lang: conf[1].slice(0, 2),
title: TITLE,
image_url: 'https://yodaat.org/assets/social-preview.png',
description: title,
url: `${externalUrl}${req.originalUrl}`
});
}
});
}
app.listen(app.get('port'), function() {
console.log('Listening port ' + app.get('port'));
});