2018-04-25 17:41:20 +00:00
|
|
|
'use strict';
|
|
|
|
|
|
|
|
var Devices = module.exports;
|
2018-08-21 02:58:04 +00:00
|
|
|
Devices.addPort = function (store, serverport, newDevice) {
|
|
|
|
// TODO make special
|
|
|
|
return Devices.add(store, serverport, newDevice, true);
|
|
|
|
};
|
|
|
|
Devices.add = function (store, servername, newDevice, isPort) {
|
|
|
|
if (isPort) {
|
|
|
|
if (!store._ports) { store._ports = {}; }
|
2018-08-20 19:45:13 +00:00
|
|
|
}
|
|
|
|
|
2018-08-21 02:58:04 +00:00
|
|
|
// add domain (also handles ports at the moment)
|
|
|
|
if (!store._domains) { store._domains = {}; }
|
|
|
|
if (!store._domains[servername]) { store._domains[servername] = []; }
|
|
|
|
store._domains[servername].push(newDevice);
|
|
|
|
|
|
|
|
// add device
|
2018-08-20 19:45:13 +00:00
|
|
|
// TODO only use a device id
|
|
|
|
var devId = newDevice.id || servername;
|
2018-08-21 02:58:04 +00:00
|
|
|
if (!store._devices) { store._devices = {}; }
|
2018-08-20 19:45:13 +00:00
|
|
|
if (!store._devices[devId]) {
|
|
|
|
store._devices[devId] = newDevice;
|
2018-08-21 02:58:04 +00:00
|
|
|
if (!store._devices[devId].domainsMap) { store._devices[devId].domainsMap = {}; }
|
|
|
|
if (!store._devices[devId].domainsMap[servername]) { store._devices[devId].domainsMap[servername] = true; }
|
2018-08-20 19:45:13 +00:00
|
|
|
}
|
|
|
|
};
|
|
|
|
Devices.alias = function (store, servername, alias) {
|
|
|
|
if (!store._domains[servername]) {
|
|
|
|
store._domains[servername] = [];
|
|
|
|
}
|
|
|
|
if (!store._domains[servername]._primary) {
|
|
|
|
store._domains[servername]._primary = servername;
|
|
|
|
}
|
|
|
|
if (!store._domains[servername].aliases) {
|
|
|
|
store._domains[servername].aliases = {};
|
|
|
|
}
|
|
|
|
store._domains[alias] = store._domains[servername];
|
|
|
|
store._domains[servername].aliases[alias] = true;
|
2018-04-25 17:41:20 +00:00
|
|
|
};
|
|
|
|
Devices.remove = function (store, servername, device) {
|
2018-08-20 19:45:13 +00:00
|
|
|
// Check if this domain has an active device
|
|
|
|
var devices = store._domains[servername] || [];
|
2018-04-25 17:41:20 +00:00
|
|
|
var index = devices.indexOf(device);
|
|
|
|
|
|
|
|
if (index < 0) {
|
|
|
|
console.warn('attempted to remove non-present device', device.deviceId, 'from', servername);
|
|
|
|
return null;
|
|
|
|
}
|
2018-08-20 19:45:13 +00:00
|
|
|
|
|
|
|
// unlink this domain from this device
|
2018-08-21 02:58:04 +00:00
|
|
|
var domainsMap = store._devices[devices[index].id || servername].domainsMap;
|
|
|
|
delete domainsMap[servername];
|
2018-08-20 19:45:13 +00:00
|
|
|
/*
|
|
|
|
// remove device if no domains remain
|
|
|
|
// nevermind, a device can hang around in limbo for a bit
|
|
|
|
if (!Object.keys(domains).length) {
|
|
|
|
delete store._devices[devices[index].id || servername];
|
|
|
|
}
|
|
|
|
*/
|
|
|
|
|
|
|
|
// unlink this device from this domain
|
2018-04-25 17:41:20 +00:00
|
|
|
return devices.splice(index, 1)[0];
|
|
|
|
};
|
2018-08-20 19:45:13 +00:00
|
|
|
Devices.close = function (store, device) {
|
|
|
|
var dev = store._devices[device.id];
|
|
|
|
var id = device.id;
|
|
|
|
// because we're actually using names rather than don't have reliable deviceIds yet
|
|
|
|
if (!dev) {
|
|
|
|
Object.keys(store._devices[device.id]).some(function (key) {
|
|
|
|
if (store._devices[key].socketId === device.socketId) {
|
|
|
|
id = key;
|
|
|
|
delete store._devices[key];
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
// TODO double check that all domains are removed
|
|
|
|
if (id) { delete store._devices[id]; }
|
|
|
|
};
|
2018-08-21 02:58:04 +00:00
|
|
|
Devices.bySocket = function (store, socketId) {
|
|
|
|
var dev;
|
|
|
|
Object.keys(store._devices).some(function (k) {
|
|
|
|
if (store._devices[k].socketId === socketId) {
|
|
|
|
dev = store._devices[k];
|
|
|
|
return dev;
|
|
|
|
}
|
|
|
|
});
|
|
|
|
return dev;
|
|
|
|
};
|
2018-04-25 17:41:20 +00:00
|
|
|
Devices.list = function (store, servername) {
|
2018-08-21 02:58:04 +00:00
|
|
|
console.log('[dontkeepme] servername', servername);
|
2018-08-20 19:45:13 +00:00
|
|
|
// efficient lookup first
|
|
|
|
if (store._domains[servername] && store._domains[servername].length) {
|
2018-08-21 02:58:04 +00:00
|
|
|
// aliases have ._primary which is the name of the original
|
2018-08-20 19:45:13 +00:00
|
|
|
return store._domains[servername]._primary && store._domains[store._domains[servername]._primary] || store._domains[servername];
|
2018-04-25 17:41:20 +00:00
|
|
|
}
|
|
|
|
// There wasn't an exact match so check any of the wildcard domains, sorted longest
|
|
|
|
// first so the one with the biggest natural match with be found first.
|
|
|
|
var deviceList = [];
|
2018-08-20 19:45:13 +00:00
|
|
|
Object.keys(store._domains).filter(function (pattern) {
|
|
|
|
return pattern[0] === '*' && store._domains[pattern].length;
|
2018-04-25 17:41:20 +00:00
|
|
|
}).sort(function (a, b) {
|
|
|
|
return b.length - a.length;
|
|
|
|
}).some(function (pattern) {
|
|
|
|
var subPiece = pattern.slice(1);
|
|
|
|
if (subPiece === servername.slice(-subPiece.length)) {
|
2018-08-20 19:45:13 +00:00
|
|
|
console.log('[Devices.list] "'+servername+'" matches "'+pattern+'"');
|
|
|
|
deviceList = store._domains[pattern];
|
|
|
|
|
|
|
|
// Devices.alias(store, '*.example.com', 'sub.example.com'
|
|
|
|
// '*.example.com' retrieves a reference to 'example.com'
|
|
|
|
// and this reference then also referenced by 'sub.example.com'
|
|
|
|
// Hence this O(n) check is replaced with the O(1) check above
|
|
|
|
Devices.alias(store, pattern, servername);
|
2018-04-25 17:41:20 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
return deviceList;
|
|
|
|
};
|
2018-08-20 19:45:13 +00:00
|
|
|
/*
|
|
|
|
Devices.active = function (store, id) {
|
|
|
|
var dev = store._devices[id];
|
|
|
|
return !!dev;
|
|
|
|
};
|
|
|
|
*/
|
2018-04-25 17:41:20 +00:00
|
|
|
Devices.exist = function (store, servername) {
|
|
|
|
return !!(Devices.list(store, servername).length);
|
|
|
|
};
|
|
|
|
Devices.next = function (store, servername) {
|
|
|
|
var devices = Devices.list(store, servername);
|
|
|
|
var device;
|
|
|
|
|
|
|
|
if (devices._index >= devices.length) {
|
|
|
|
devices._index = 0;
|
|
|
|
}
|
|
|
|
device = devices[devices._index || 0];
|
|
|
|
devices._index = (devices._index || 0) + 1;
|
|
|
|
|
|
|
|
return device;
|
|
|
|
};
|