Software: Apache/2.4.41 (Ubuntu). PHP/8.0.30 uname -a: Linux apirnd 5.4.0-204-generic #224-Ubuntu SMP Thu Dec 5 13:38:28 UTC 2024 x86_64 uid=33(www-data) gid=33(www-data) groups=33(www-data) Safe-mode: OFF (not secure) /usr/local/lib/node_modules/homebridge-config-ui-x/dist/modules/status/ drwxr-xr-x | |
| Viewing file: Select action/file-type: "use strict";
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);
};
Object.defineProperty(exports, "__esModule", { value: true });
exports.StatusGateway = void 0;
const common_1 = require("@nestjs/common");
const websockets_1 = require("@nestjs/websockets");
const plugins_service_1 = require("../plugins/plugins.service");
const status_service_1 = require("./status.service");
const ws_guard_1 = require("../../core/auth/guards/ws.guard");
let StatusGateway = class StatusGateway {
constructor(statusService, pluginsService) {
this.statusService = statusService;
this.pluginsService = pluginsService;
}
async getDashboardLayout(client, payload) {
try {
return await this.statusService.getDashboardLayout();
}
catch (e) {
return new websockets_1.WsException(e.message);
}
}
async setDashboardLayout(client, payload) {
try {
return await this.statusService.setDashboardLayout(payload);
}
catch (e) {
return new websockets_1.WsException(e.message);
}
}
async homebridgeVersionCheck(client, payload) {
try {
return await this.pluginsService.getHomebridgePackage();
}
catch (e) {
return new websockets_1.WsException(e.message);
}
}
async npmVersionCheck(client, payload) {
try {
return await this.pluginsService.getNpmPackage();
}
catch (e) {
return new websockets_1.WsException(e.message);
}
}
async nodeJsVersionCheck(client, payload) {
try {
return await this.statusService.getNodeJsVersionInfo();
}
catch (e) {
return new websockets_1.WsException(e.message);
}
}
async getOutOfDatePlugins(client, payload) {
try {
return await this.pluginsService.getOutOfDatePlugins();
}
catch (e) {
return new websockets_1.WsException(e.message);
}
}
async getHomebridgeServerInfo(client, payload) {
try {
return await this.statusService.getHomebridgeServerInfo();
}
catch (e) {
return new websockets_1.WsException(e.message);
}
}
async getServerCpuInfo(client, payload) {
try {
return await this.statusService.getServerCpuInfo();
}
catch (e) {
return new websockets_1.WsException(e.message);
}
}
async getServerMemoryInfo(client, payload) {
try {
return await this.statusService.getServerMemoryInfo();
}
catch (e) {
return new websockets_1.WsException(e.message);
}
}
async getServerUptimeInfo(client, payload) {
try {
return await this.statusService.getServerUptimeInfo();
}
catch (e) {
return new websockets_1.WsException(e.message);
}
}
async getHomebridgePairingPin(client, payload) {
try {
return await this.statusService.getHomebridgePairingPin();
}
catch (e) {
return new websockets_1.WsException(e.message);
}
}
async getHomebridgeStatus(client, payload) {
try {
return await this.statusService.getHomebridgeStatus();
}
catch (e) {
return new websockets_1.WsException(e.message);
}
}
async serverStatus(client, payload) {
this.statusService.watchStats(client);
}
async getChildBridges(client, payload) {
try {
return await this.statusService.getChildBridges();
}
catch (e) {
return new websockets_1.WsException(e.message);
}
}
async watchChildBridgeStatus(client, payload) {
this.statusService.watchChildBridgeStatus(client);
}
};
__decorate([
(0, websockets_1.SubscribeMessage)('get-dashboard-layout'),
__metadata("design:type", Function),
__metadata("design:paramtypes", [Object, Object]),
__metadata("design:returntype", Promise)
], StatusGateway.prototype, "getDashboardLayout", null);
__decorate([
(0, websockets_1.SubscribeMessage)('set-dashboard-layout'),
__metadata("design:type", Function),
__metadata("design:paramtypes", [Object, Object]),
__metadata("design:returntype", Promise)
], StatusGateway.prototype, "setDashboardLayout", null);
__decorate([
(0, websockets_1.SubscribeMessage)('homebridge-version-check'),
__metadata("design:type", Function),
__metadata("design:paramtypes", [Object, Object]),
__metadata("design:returntype", Promise)
], StatusGateway.prototype, "homebridgeVersionCheck", null);
__decorate([
(0, websockets_1.SubscribeMessage)('npm-version-check'),
__metadata("design:type", Function),
__metadata("design:paramtypes", [Object, Object]),
__metadata("design:returntype", Promise)
], StatusGateway.prototype, "npmVersionCheck", null);
__decorate([
(0, websockets_1.SubscribeMessage)('nodejs-version-check'),
__metadata("design:type", Function),
__metadata("design:paramtypes", [Object, Object]),
__metadata("design:returntype", Promise)
], StatusGateway.prototype, "nodeJsVersionCheck", null);
__decorate([
(0, websockets_1.SubscribeMessage)('get-out-of-date-plugins'),
__metadata("design:type", Function),
__metadata("design:paramtypes", [Object, Object]),
__metadata("design:returntype", Promise)
], StatusGateway.prototype, "getOutOfDatePlugins", null);
__decorate([
(0, websockets_1.SubscribeMessage)('get-homebridge-server-info'),
__metadata("design:type", Function),
__metadata("design:paramtypes", [Object, Object]),
__metadata("design:returntype", Promise)
], StatusGateway.prototype, "getHomebridgeServerInfo", null);
__decorate([
(0, websockets_1.SubscribeMessage)('get-server-cpu-info'),
__metadata("design:type", Function),
__metadata("design:paramtypes", [Object, Object]),
__metadata("design:returntype", Promise)
], StatusGateway.prototype, "getServerCpuInfo", null);
__decorate([
(0, websockets_1.SubscribeMessage)('get-server-memory-info'),
__metadata("design:type", Function),
__metadata("design:paramtypes", [Object, Object]),
__metadata("design:returntype", Promise)
], StatusGateway.prototype, "getServerMemoryInfo", null);
__decorate([
(0, websockets_1.SubscribeMessage)('get-server-uptime-info'),
__metadata("design:type", Function),
__metadata("design:paramtypes", [Object, Object]),
__metadata("design:returntype", Promise)
], StatusGateway.prototype, "getServerUptimeInfo", null);
__decorate([
(0, websockets_1.SubscribeMessage)('get-homebridge-pairing-pin'),
__metadata("design:type", Function),
__metadata("design:paramtypes", [Object, Object]),
__metadata("design:returntype", Promise)
], StatusGateway.prototype, "getHomebridgePairingPin", null);
__decorate([
(0, websockets_1.SubscribeMessage)('get-homebridge-status'),
__metadata("design:type", Function),
__metadata("design:paramtypes", [Object, Object]),
__metadata("design:returntype", Promise)
], StatusGateway.prototype, "getHomebridgeStatus", null);
__decorate([
(0, websockets_1.SubscribeMessage)('monitor-server-status'),
__metadata("design:type", Function),
__metadata("design:paramtypes", [Object, Object]),
__metadata("design:returntype", Promise)
], StatusGateway.prototype, "serverStatus", null);
__decorate([
(0, websockets_1.SubscribeMessage)('get-homebridge-child-bridge-status'),
__metadata("design:type", Function),
__metadata("design:paramtypes", [Object, Object]),
__metadata("design:returntype", Promise)
], StatusGateway.prototype, "getChildBridges", null);
__decorate([
(0, websockets_1.SubscribeMessage)('monitor-child-bridge-status'),
__metadata("design:type", Function),
__metadata("design:paramtypes", [Object, Object]),
__metadata("design:returntype", Promise)
], StatusGateway.prototype, "watchChildBridgeStatus", null);
StatusGateway = __decorate([
(0, common_1.UseGuards)(ws_guard_1.WsGuard),
(0, websockets_1.WebSocketGateway)({
namespace: 'status', allowEIO3: true, cors: {
origin: ['http://localhost:8080', 'http://localhost:4200'],
credentials: true
}
}),
__metadata("design:paramtypes", [status_service_1.StatusService,
plugins_service_1.PluginsService])
], StatusGateway);
exports.StatusGateway = StatusGateway;
//# sourceMappingURL=status.gateway.js.map |
:: Command execute :: | |
--[ c99shell v. 2.5 [PHP 8 Update] [24.05.2025] | Generation time: 0.0053 ]-- |