var express = require('express'); var path = require('path'); var favicon = require('serve-favicon'); var logger = require('morgan'); var cookieParser = require('cookie-parser'); var bodyParser = require('body-parser'); var fs = require('fs'); var engines = require('consolidate') var handlebars = require('handlebars'); var bibtexParse = require('bibtex-parse-js'); // note that this is the same env variables of the docker project, // but you still need the .env file in both locations because everything is dockerized!!! require('dotenv').config(); const port = process.env.PORT || 3000; var MongoClient = require('mongodb').MongoClient; var url = 'mongodb://' + process.env.USER + ':' + process.env.PASSWORD + '@mongo:27017/portfolio?authSource=admin'; var dbName = "portfolio"; var assert = require('assert'); var client = MongoClient.connect(url, function (err, client) { assert.equal(null, err); console.log("Connected successfully to server"); // This runs on startup, which means bibtex entries are only updated when the server is restarted db = client.db(dbName); var pubdata = fs.readFileSync( path.join(__dirname, 'public/bibtex/bibtex.bib'), 'utf8'); var pubs = bibtexParse.toJSON(pubdata); //pubs.sort(function(a, b){return a.entryTags.year-b.EntryTags.year}) // Create the collection db.collection('publications').remove(); db.collection('publications').insert(pubs); client }); // close client when app closes const cleanup = (event) => { // SIGINT is sent for example when you Ctrl+C a running process from the command line. client.close(); // Close MongodDB Connection when Process ends process.exit(); // Exit with default success-code '0'. } process.on('SIGINT', cleanup); process.on('SIGTERM', cleanup); var routes = require('./routes/index'); var app = express(); // view engine setup app.set('views', path.join(__dirname, 'views')); app.set('view engine', 'jade'); app.set("view options", { layout: true }); app.engine('.template', engines.handlebars); // uncomment after placing your favicon in /public //app.use(favicon(__dirname + '/public/favicon.ico')); app.use(logger('dev')); app.use(bodyParser.json()); app.use(bodyParser.urlencoded({ extended: false })); app.use(bodyParser()); app.use(cookieParser()); // change first argument here to be on subdirectory app.use('/legacy', express.static(path.join(__dirname, 'public'))); // Make our db accessible to our router app.use(function(req,res,next){ req.db = db; next(); }); // change first argument here to be on subdirectory app.use('/legacy/', routes); // catch 404 and forward to error handler app.use(function(req, res, next) { var err = new Error('Not Found'); err.status = 404; next(err); }); // development error handler // will print stacktrace if (app.get('env') === 'development') { app.use(function(err, req, res, next) { res.status(err.status || 500); res.render('error', { message: err.message, error: err }); }); } // production error handler // no stacktraces leaked to user app.use(function(err, req, res, next) { res.status(err.status || 500); res.render('error', { message: err.message, error: {} }); }); var server = app.listen(port); module.exports = app;