@zigbang/honeyfarm-master
Version:
## DASH BOARD HoneyFarm Node에 등록 되어 있는 안드로이드 단말을 웹페이지에서 실시간으로 확인 및 사용 할수 있도록 구현된 웹
243 lines (242 loc) • 12.2 kB
JavaScript
;
var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
return c > 3 && r && Object.defineProperty(target, key, r), r;
};
var __metadata = (this && this.__metadata) || function (k, v) {
if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
};
var __param = (this && this.__param) || function (paramIndex, decorator) {
return function (target, key) { decorator(target, key, paramIndex); }
};
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
return new (P || (P = Promise))(function (resolve, reject) {
function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
step((generator = generator.apply(thisArg, _arguments || [])).next());
});
};
var __generator = (this && this.__generator) || function (thisArg, body) {
var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;
return g = { next: verb(0), "throw": verb(1), "return": verb(2) }, typeof Symbol === "function" && (g[Symbol.iterator] = function() { return this; }), g;
function verb(n) { return function (v) { return step([n, v]); }; }
function step(op) {
if (f) throw new TypeError("Generator is already executing.");
while (_) try {
if (f = 1, y && (t = op[0] & 2 ? y["return"] : op[0] ? y["throw"] || ((t = y["return"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t;
if (y = 0, t) op = [op[0] & 2, t.value];
switch (op[0]) {
case 0: case 1: t = op; break;
case 4: _.label++; return { value: op[1], done: false };
case 5: _.label++; y = op[1]; op = [0]; continue;
case 7: op = _.ops.pop(); _.trys.pop(); continue;
default:
if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; }
if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; }
if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; }
if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; }
if (t[2]) _.ops.pop();
_.trys.pop(); continue;
}
op = body.call(thisArg, _);
} catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; }
if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };
}
};
var __importDefault = (this && this.__importDefault) || function (mod) {
return (mod && mod.__esModule) ? mod : { "default": mod };
};
Object.defineProperty(exports, "__esModule", { value: true });
exports.DevicesController = void 0;
var common_1 = require("@nestjs/common");
var SessionRouter_1 = __importDefault(require("../../util/SessionRouter"));
var getConfig_1 = require("../../util/getConfig");
var DevicesController = /** @class */ (function () {
function DevicesController() {
}
DevicesController.prototype.updateDevice = function (req, res) {
return __awaiter(this, void 0, void 0, function () {
var body, clientAddr, addr, deviceResource, updatedResouce;
return __generator(this, function (_a) {
body = req.body;
clientAddr = this.getClientAddr(req);
addr = clientAddr + ":" + body.port;
deviceResource = SessionRouter_1.default.getDeviceResource(addr);
if (!deviceResource) {
console.log("cannot find device resource : ", addr);
}
else {
deviceResource.batteryLevel = body.batteryLevel;
updatedResouce = Object.assign(deviceResource, body);
SessionRouter_1.default.updateDeviceResource(addr, updatedResouce);
}
res.send();
console.log("updateDevice : " + addr, body);
return [2 /*return*/];
});
});
};
DevicesController.prototype.registerDevice = function (req, res) {
return __awaiter(this, void 0, void 0, function () {
var body, clientAddr, addr, deviceConfig, deviceResource;
return __generator(this, function (_a) {
switch (_a.label) {
case 0:
body = req.body;
if (!body.port || !body.platform || !body.version)
throw new common_1.BadRequestException("Malformed data");
clientAddr = this.getClientAddr(req);
addr = clientAddr + ":" + body.port;
return [4 /*yield*/, this.getDeviceConfig(body.udid)];
case 1:
deviceConfig = _a.sent();
deviceResource = {
platform: body.platform,
version: body.version,
status: "FREE",
batteryLevel: body.batteryLevel,
udid: body.udid,
name: body.name ? body.name : deviceConfig.name,
wdaPort: body.wdaPort,
mjpegServerPort: body.mjpegServerPort,
type: body.type,
showInDashboard: deviceConfig.showInDashboard
};
SessionRouter_1.default.updateDeviceResource(addr, deviceResource);
res.send();
console.log("registerDevice : ", addr);
return [2 /*return*/];
}
});
});
};
DevicesController.prototype.deresgisterDevice = function (req, res) {
return __awaiter(this, void 0, void 0, function () {
var body, clientAddr, addr;
return __generator(this, function (_a) {
body = req.body;
if (!body.port)
throw new common_1.BadRequestException("Malformed data");
clientAddr = this.getClientAddr(req);
addr = clientAddr + ":" + body.port;
SessionRouter_1.default.deleteDeviceResource(addr);
res.send();
return [2 /*return*/];
});
});
};
DevicesController.prototype.getDevice = function (req) {
return __awaiter(this, void 0, void 0, function () {
var body, clientAddr, addr, result;
return __generator(this, function (_a) {
body = req.body;
if (!body.port || !body.platform || !body.version)
throw new common_1.BadRequestException("Malformed data");
clientAddr = this.getClientAddr(req);
addr = clientAddr + ":" + body.port;
result = SessionRouter_1.default.findDeviceResource(addr, body.platform, body.version);
return [2 /*return*/, result];
});
});
};
DevicesController.prototype.getDevices = function (req) {
var _a;
var devices = SessionRouter_1.default.lsResource();
if (devices && !((_a = req === null || req === void 0 ? void 0 : req.query) === null || _a === void 0 ? void 0 : _a.all)) {
var testableDevices_1 = {};
Object.entries(devices)
.filter(function (_a) {
var key = _a[0], value = _a[1];
return !value.showInDashboard;
})
.map(function (_a) {
var key = _a[0], value = _a[1];
testableDevices_1[key] = value;
});
return testableDevices_1;
}
else {
return devices;
}
};
DevicesController.prototype.getClientAddr = function (req) {
var _a;
return req.headers["x-forwarded-for"] || ((_a = req.connection.remoteAddress) === null || _a === void 0 ? void 0 : _a.replace("::ffff:", "")) || "";
};
DevicesController.prototype.getDeviceConfig = function (udid) {
return __awaiter(this, void 0, void 0, function () {
var config, devices, _i, devices_1, device, e_1;
return __generator(this, function (_a) {
switch (_a.label) {
case 0:
_a.trys.push([0, 2, , 3]);
return [4 /*yield*/, getConfig_1.FromJson()];
case 1:
config = _a.sent();
if (config && config["devices"]) {
devices = config["devices"];
for (_i = 0, devices_1 = devices; _i < devices_1.length; _i++) {
device = devices_1[_i];
if (device.udid === udid) {
return [2 /*return*/, { name: device.name, showInDashboard: device.showInDashboard ? device.showInDashboard : false }];
}
}
}
return [3 /*break*/, 3];
case 2:
e_1 = _a.sent();
console.log("getDeviceConfig error", e_1);
return [3 /*break*/, 3];
case 3: return [2 /*return*/, { name: udid, showInDashboard: false }];
}
});
});
};
__decorate([
common_1.Put("/update"),
__param(0, common_1.Req()),
__param(1, common_1.Res()),
__metadata("design:type", Function),
__metadata("design:paramtypes", [Object, Object]),
__metadata("design:returntype", Promise)
], DevicesController.prototype, "updateDevice", null);
__decorate([
common_1.Post("/register"),
__param(0, common_1.Req()),
__param(1, common_1.Res()),
__metadata("design:type", Function),
__metadata("design:paramtypes", [Object, Object]),
__metadata("design:returntype", Promise)
], DevicesController.prototype, "registerDevice", null);
__decorate([
common_1.Post("/deregister"),
__param(0, common_1.Req()),
__param(1, common_1.Res()),
__metadata("design:type", Function),
__metadata("design:paramtypes", [Object, Object]),
__metadata("design:returntype", Promise)
], DevicesController.prototype, "deresgisterDevice", null);
__decorate([
common_1.Post("/device"),
__param(0, common_1.Req()),
__metadata("design:type", Function),
__metadata("design:paramtypes", [Object]),
__metadata("design:returntype", Promise)
], DevicesController.prototype, "getDevice", null);
__decorate([
common_1.Get("/devices"),
__param(0, common_1.Req()),
__metadata("design:type", Function),
__metadata("design:paramtypes", [Object]),
__metadata("design:returntype", void 0)
], DevicesController.prototype, "getDevices", null);
DevicesController = __decorate([
common_1.Controller()
], DevicesController);
return DevicesController;
}());
exports.DevicesController = DevicesController;