1
|
import 'zone.js/dist/zone-node';
|
2
|
import 'reflect-metadata';
|
3
|
import { renderModuleFactory } from '@angular/platform-server';
|
4
|
import { enableProdMode } from '@angular/core';
|
5
|
|
6
|
import * as express from 'express';
|
7
|
import { join } from 'path';
|
8
|
import { readFileSync } from 'fs';
|
9
|
|
10
|
// Faster server renders w/ Prod mode (dev mode never needed)
|
11
|
enableProdMode();
|
12
|
|
13
|
// Express server
|
14
|
const app = express();
|
15
|
|
16
|
const PORT = process.env.PORT || 4000;
|
17
|
const DIST_FOLDER = join(process.cwd(), 'dist');
|
18
|
|
19
|
// Our index.html we'll use as our template
|
20
|
const template = readFileSync(join(DIST_FOLDER, 'browser', 'index.html')).toString();
|
21
|
|
22
|
// * NOTE :: leave this as require() since this file is built Dynamically from webpack
|
23
|
const { AppServerModuleNgFactory, LAZY_MODULE_MAP } = require('./dist/server/main');
|
24
|
|
25
|
// Express Engine
|
26
|
import {ngExpressEngine, RenderOptions} from '@nguniversal/express-engine';
|
27
|
// Import module map for lazy loading
|
28
|
import { provideModuleMap } from '@nguniversal/module-map-ngfactory-loader';
|
29
|
import {REQUEST, RESPONSE} from "@nguniversal/express-engine/tokens";
|
30
|
import {isArray} from "util";
|
31
|
|
32
|
// Our Universal express-engine (found @ https://github.com/angular/universal/tree/master/modules/express-engine)
|
33
|
// app.engine('html', ngExpressEngine({
|
34
|
// bootstrap: AppServerModuleNgFactory,
|
35
|
// providers: [
|
36
|
// { provide: 'request', useFactory: () => options.req, deps: [] },
|
37
|
// provideModuleMap(LAZY_MODULE_MAP)
|
38
|
// ]
|
39
|
// }));
|
40
|
|
41
|
// be able to get request and get domain from there
|
42
|
|
43
|
app.engine('html', (_, options: any, callback) => {
|
44
|
const opts = {
|
45
|
document: template,
|
46
|
url: options.req.url,
|
47
|
extraProviders: [
|
48
|
provideModuleMap(LAZY_MODULE_MAP),
|
49
|
{
|
50
|
provide: REQUEST,
|
51
|
useValue: options.req
|
52
|
},
|
53
|
{
|
54
|
provide: RESPONSE,
|
55
|
useValue: options.req.res,
|
56
|
},
|
57
|
]
|
58
|
};
|
59
|
|
60
|
renderModuleFactory(AppServerModuleNgFactory, opts)
|
61
|
.then(html => callback(null, html)
|
62
|
);
|
63
|
});
|
64
|
|
65
|
app.set('view engine', 'html');
|
66
|
app.set('views', join(DIST_FOLDER, 'browser'));
|
67
|
// Allow frames from specific domains
|
68
|
app.use(function (req, res, next) {
|
69
|
var XFRAME_WHITELIST = [ 'http://scoobydoo.di.uoa.gr:5000/customize-layout', 'https://beta.admin.connect.openaire.eu/customize-layout','https://admin.connect.openaire.eu/customize-layout' ];
|
70
|
let referer: string;
|
71
|
if(req.headers.referer){
|
72
|
referer = isArray(req.headers.referer)?req.headers.referer[0]:(<string>req.headers.referer);
|
73
|
referer = referer.split("?")[0];
|
74
|
}
|
75
|
if ( referer && (XFRAME_WHITELIST.indexOf(referer) != -1 || referer.indexOf(".d4science.org") != -1)) {
|
76
|
// res.header('X-FRAME-OPTIONS', 'allow from ' +req.headers.referer);
|
77
|
}else {
|
78
|
res.header('X-FRAME-OPTIONS', 'SAMEORIGIN');
|
79
|
}
|
80
|
next();
|
81
|
});
|
82
|
// - Serve sitemap based on the host -
|
83
|
app.get('/sitemap.xml', (req, res) => {
|
84
|
let host = req.get("host").split(":")[0];
|
85
|
let connectLinks= ["/","/about/learn-how","/about/learn-in-depth", "/about/faq","/search/find/communities"];
|
86
|
let communityLinks= ["/","/search/find/research-outcomes?size=20","/search/advanced/research-outcomes?size=20","/participate/deposit/learn-how","/organizations", "/content"];
|
87
|
let sitemap = "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n" +
|
88
|
"<urlset xmlns=\"http://www.sitemaps.org/schemas/sitemap/0.9\" xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\" xsi:schemaLocation=\"http://www.sitemaps.org/schemas/sitemap/0.9 http://www.sitemaps.org/schemas/sitemap/0.9/sitemap.xsd\">";
|
89
|
let urlPre = "<url>\n" +
|
90
|
" <loc>";
|
91
|
let urlSuf = "</loc>\n" +
|
92
|
" </url>";
|
93
|
for(let link of (host.indexOf("connect.openaire.eu") == -1 ?communityLinks:connectLinks)){
|
94
|
sitemap += urlPre + "https://" + host + link + urlSuf;
|
95
|
}
|
96
|
sitemap += "\n</urlset>";
|
97
|
res.setHeader('content-type', 'application/xml');
|
98
|
res.send( sitemap);
|
99
|
});
|
100
|
app.get('/robots.txt', (req, res) => {
|
101
|
let host = req.get("host").split(":")[0];
|
102
|
let robots = "";
|
103
|
if(host.indexOf(".openaire.eu") != -1 && host.indexOf("beta.") == -1 ){
|
104
|
//link to disallow
|
105
|
let connectLinks= ["/about/*","/search/find/communities"];
|
106
|
let communityLinks= ["/search/advanced/*","/participate/*",
|
107
|
"/search/project",'/search/result', '/search/publication', '/search/dataset','/search/software','/search/other','/search/dataprovider','/search/organization','/project-report',
|
108
|
'/search/find/publications','/search/find/datasets','/search/find/software','/search/find/other','/search/find/projects','/search/find/dataproviders','/search/find/research-outcomes'
|
109
|
|
110
|
];
|
111
|
|
112
|
robots = "User-Agent: *\n"+
|
113
|
"Crawl-delay: 30\n" +
|
114
|
"Sitemap: /sitemap.xml\n";
|
115
|
for(let link of (host.indexOf("connect.openaire.eu") == -1 ?connectLinks:communityLinks)){
|
116
|
robots += "Disallow: " + link + "\n";
|
117
|
}
|
118
|
}else{
|
119
|
robots = "User-Agent: *\n" +
|
120
|
"Disallow: /\n"
|
121
|
}
|
122
|
res.setHeader('content-type', 'text/plain');
|
123
|
res.send( robots);
|
124
|
});
|
125
|
|
126
|
/* - Example Express Rest API endpoints -
|
127
|
app.get('/api/**', (req, res) => { });
|
128
|
*/
|
129
|
|
130
|
// Server static files from /browser
|
131
|
app.get('*.*', express.static(join(DIST_FOLDER, 'browser'), {
|
132
|
maxAge: '1y'
|
133
|
}));
|
134
|
|
135
|
// ALl regular routes use the Universal engine
|
136
|
app.get('*', (req, res) => {
|
137
|
res.render('index', { req });
|
138
|
});
|
139
|
|
140
|
// Start up the Node server
|
141
|
app.listen(PORT, () => {
|
142
|
console.log(`Node Express server listening on http://localhost:${PORT}`);
|
143
|
});
|