mirror of
https://github.com/MichMich/MagicMirror.git
synced 2025-06-27 19:53:36 +00:00
58 lines
1.8 KiB
JavaScript
58 lines
1.8 KiB
JavaScript
/* Magic Mirror
|
|
* Server
|
|
*
|
|
* By Michael Teeuw http://michaelteeuw.nl
|
|
* MIT Licensed.
|
|
*/
|
|
|
|
var express = require("express");
|
|
var app = require("express")();
|
|
var server = require("http").Server(app);
|
|
var io = require("socket.io")(server);
|
|
var path = require("path");
|
|
var ipfilter = require("express-ipfilter").IpFilter;
|
|
var fs = require("fs");
|
|
var helmet = require("helmet");
|
|
|
|
var Server = function(config, callback) {
|
|
console.log("Starting server op port " + config.port + " ... ");
|
|
|
|
server.listen(config.port, config.address ? config.address : null);
|
|
|
|
app.use(function(req, res, next) {
|
|
var result = ipfilter(config.ipWhitelist, {mode: "allow", log: false})(req, res, function(err) {
|
|
if (err === undefined) {
|
|
return next();
|
|
}
|
|
console.log(err.message);
|
|
res.status(403).send("This device is not allowed to access your mirror. <br> Please check your config.js or config.js.sample to change this.");
|
|
});
|
|
});
|
|
app.use(helmet());
|
|
|
|
app.use("/js", express.static(__dirname));
|
|
app.use("/config", express.static(path.resolve(__dirname + "/../config")));
|
|
app.use("/css", express.static(path.resolve(__dirname + "/../css")));
|
|
app.use("/fonts", express.static(path.resolve(__dirname + "/../fonts")));
|
|
app.use("/modules", express.static(path.resolve(__dirname + "/../modules")));
|
|
app.use("/vendor", express.static(path.resolve(__dirname + "/../vendor")));
|
|
app.use("/translations", express.static(path.resolve(__dirname + "/../translations")));
|
|
|
|
app.get("/version", function(req,res) {
|
|
res.send(global.version);
|
|
});
|
|
|
|
app.get("/", function(req, res) {
|
|
var html = fs.readFileSync(path.resolve(__dirname + "/../index.html"), {encoding: "utf8"});
|
|
html = html.replace("#VERSION#", global.version);
|
|
|
|
res.send(html);
|
|
});
|
|
|
|
if (typeof callback === "function") {
|
|
callback(app, io);
|
|
}
|
|
};
|
|
|
|
module.exports = Server;
|