forked from mkellsy/homebridge-ui
-
Notifications
You must be signed in to change notification settings - Fork 3
/
index.js
executable file
·115 lines (89 loc) · 2.91 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
var fs = require("fs");
var path = require("path");
var chalk = require("chalk");
var Service;
var Characteristic;
module.exports = function (service) {
hb = {
service: service,
config: service.user.configPath(),
auth: path.join(service.user.storagePath(), "auth.json")
};
if (!fs.existsSync(hb.auth)) {
fs.appendFileSync(hb.auth, JSON.stringify([{
"id": 1,
"username": "admin",
"password": "admin",
"name": "Administrator",
"admin": true
}], null, 4));
}
var auth = require(hb.auth);
var modified = false;
for (var i = 0; i < auth.length; i++) {
if (auth[i].id == 1 && !auth[i].admin) {
auth[i].admin = true;
modified = true;
}
}
if (modified) {
fs.writeFileSync(hb.auth, JSON.stringify(auth, null, 4));
}
Service = service.hap.Service;
Characteristic = service.hap.Characteristic;
service.registerPlatform("homebridge-config-ui", "config", HttpServer);
}
function HttpServer(log, config) {
var app = require("./app");
var debug = require("debug")("express:server");
var http = require("http");
hb.log = config.log || "/var/log/homebridge.stdout.log";
hb.error_log = config.error_log || "/var/log/homebridge.stderr.log";
hb.restart = config.restart || "/usr/local/bin/supervisorctl restart homebridge";
hb.temp = config.temp || "/sys/class/thermal/thermal_zone0/temp";
hb.base = config.base || "/usr/local/lib/node_modules";
app.set("port", config.port);
app.set("log", log);
var server = http.createServer(app);
server.listen(config.port);
server.on("error", onError);
server.on("listening", onListening);
function normalizePort(val) {
var port = parseInt(val, 10);
if (isNaN(port)) {
return val;
}
if (port >= 0) {
return port;
}
return false;
}
function onError(error) {
if (error.syscall !== "listen") {
throw error;
}
var bind = typeof config.port === "string" ? "Pipe " + config.port : "Port " + config.port;
switch (error.code) {
case "EACCES":
console.error(bind + " requires elevated privileges");
process.exit(1);
break;
case "EADDRINUSE":
console.error(bind + " is already in use");
process.exit(1);
break;
default:
throw error;
}
}
function onListening() {
var addr = server.address();
var bind = typeof addr === "string" ? "pipe " + addr : "port " + addr.port;
var msg = "Console is listening on " + bind + ".";
app.get("log")(msg);
}
}
HttpServer.prototype.accessories = function (callback) {
this.accessories = [];
callback(this.accessories);
}