]> git.immae.eu Git - perso/Immae/Projets/Nodejs/Surfer.git/blame_incremental - server.js
Bump version
[perso/Immae/Projets/Nodejs/Surfer.git] / server.js
... / ...
CommitLineData
1#!/usr/bin/env node
2
3'use strict';
4
5var express = require('express'),
6 morgan = require('morgan'),
7 path = require('path'),
8 fs = require('fs'),
9 compression = require('compression'),
10 session = require('express-session'),
11 bodyParser = require('body-parser'),
12 cookieParser = require('cookie-parser'),
13 lastMile = require('connect-lastmile'),
14 HttpError = require('connect-lastmile').HttpError,
15 HttpSuccess = require('connect-lastmile').HttpSuccess,
16 multipart = require('./src/multipart'),
17 mkdirp = require('mkdirp'),
18 auth = require('./src/auth.js'),
19 webdav = require('webdav-server').v2,
20 files = require('./src/files.js')(path.resolve(__dirname, process.argv[2] || 'files'));
21
22
23const ROOT_FOLDER = path.resolve(__dirname, process.argv[2] || 'files');
24const CONFIG_FILE = path.resolve(__dirname, process.argv[3] || '.config.json');
25
26// Ensure the root folder exists
27mkdirp.sync(ROOT_FOLDER);
28
29var config = {
30 folderListingEnabled: false
31};
32
33function getSettings(req, res, next) {
34 res.send({ folderListingEnabled: !!config.folderListingEnabled });
35}
36
37function setSettings(req, res, next) {
38 if (typeof req.body.folderListingEnabled === 'undefined') return next(new HttpError(400, 'missing folderListingEnabled boolean'));
39
40 config.folderListingEnabled = !!req.body.folderListingEnabled;
41
42 fs.writeFile(CONFIG_FILE, JSON.stringify(config), function (error) {
43 if (error) return next(new HttpError(500, 'unable to save settings'));
44
45 next(new HttpSuccess(201, {}));
46 });
47}
48
49// Load the config file
50try {
51 console.log(`Using config file at: ${CONFIG_FILE}`);
52 config = require(CONFIG_FILE);
53} catch (e) {
54 if (e.code === 'MODULE_NOT_FOUND') console.log(`Config file ${CONFIG_FILE} not found`);
55 else console.log(`Cannot load config file ${CONFIG_FILE}`, e);
56}
57
58if (typeof config.folderListingEnabled === 'undefined') config.folderListingEnabled = true;
59
60// Setup the express server and routes
61var app = express();
62var router = new express.Router();
63
64var webdavServer = new webdav.WebDAVServer({
65 requireAuthentification: true,
66 httpAuthentication: new webdav.HTTPBasicAuthentication(new auth.WebdavUserManager(), 'Cloudron Surfer')
67});
68
69webdavServer.setFileSystem('/', new webdav.PhysicalFileSystem(ROOT_FOLDER), function (success) {
70 if (success) console.log(`Mounting webdav resource from: ${ROOT_FOLDER}`);
71});
72
73var multipart = multipart({ maxFieldsSize: 2 * 1024, limit: '512mb', timeout: 3 * 60 * 1000 });
74
75router.post ('/api/login', auth.login);
76router.post ('/api/logout', auth.verify, auth.logout);
77router.get ('/api/settings', auth.verify, getSettings);
78router.put ('/api/settings', auth.verify, setSettings);
79router.get ('/api/tokens', auth.verify, auth.getTokens);
80router.post ('/api/tokens', auth.verify, auth.createToken);
81router.delete('/api/tokens/:token', auth.verify, auth.delToken);
82router.get ('/api/profile', auth.verify, auth.getProfile);
83router.get ('/api/files/*', auth.verifyIfNeeded, files.get);
84router.post ('/api/files/*', auth.verify, multipart, files.post);
85router.put ('/api/files/*', auth.verify, files.put);
86router.delete('/api/files/*', auth.verify, files.del);
87
88app.use('/api/healthcheck', function (req, res) { res.status(200).send(); });
89app.use(morgan('dev'));
90app.use(compression());
91app.use('/api', bodyParser.json());
92app.use('/api', bodyParser.urlencoded({ extended: false, limit: '100mb' }));
93app.use('/api', cookieParser());
94app.use('/api', session({ secret: 'surfin surfin', resave: false, saveUninitialized: false }));
95app.use(router);
96app.use(webdav.extensions.express('/_webdav', webdavServer));
97app.use('/_admin', express.static(__dirname + '/frontend'));
98app.use('/', express.static(ROOT_FOLDER));
99app.use('/', function welcomePage(req, res, next) {
100 if (config.folderListingEnabled || req.path !== '/') return next();
101 res.status(200).sendFile(path.join(__dirname, '/frontend/welcome.html'));
102});
103app.use('/', function (req, res) {
104 if (!config.folderListingEnabled) return res.status(404).sendFile(__dirname + '/frontend/404.html');
105
106 if (!fs.existsSync(path.join(ROOT_FOLDER, req.path))) return res.status(404).sendFile(__dirname + '/frontend/404.html');
107
108 res.status(200).sendFile(__dirname + '/frontend/public.html');
109});
110app.use(lastMile());
111
112var server = app.listen(3000, function () {
113 var host = server.address().address;
114 var port = server.address().port;
115
116 console.log(`Base path: ${ROOT_FOLDER}`);
117 console.log();
118 console.log(`Listening on http://${host}:${port}`);
119
120 auth.init(config);
121});