homebridge-config-ui-x
Version:
A web based management, configuration and control platform for Homebridge.
93 lines • 4.34 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); }
};
Object.defineProperty(exports, "__esModule", { value: true });
exports.AuthController = void 0;
const common_1 = require("@nestjs/common");
const passport_1 = require("@nestjs/passport");
const swagger_1 = require("@nestjs/swagger");
const config_service_1 = require("../config/config.service");
const auth_dto_1 = require("./auth.dto");
const auth_service_1 = require("./auth.service");
const custom_guard_1 = require("./guards/custom.guard");
let AuthController = class AuthController {
constructor(authService, configService) {
this.authService = authService;
this.configService = configService;
}
signIn(body) {
return this.authService.signIn(body.username, body.password, body.otp);
}
getSettings(req) {
return this.configService.uiSettings(req.user);
}
getCustomWallpaper() {
return this.configService.streamCustomWallpaper();
}
getToken() {
return this.authService.generateNoAuthToken();
}
checkAuth() {
return { status: 'OK' };
}
};
exports.AuthController = AuthController;
__decorate([
(0, swagger_1.ApiOperation)({ summary: 'Exchange a username and password for an authentication token.' }),
(0, common_1.Post)('login'),
__param(0, (0, common_1.Body)()),
__metadata("design:type", Function),
__metadata("design:paramtypes", [auth_dto_1.AuthDto]),
__metadata("design:returntype", void 0)
], AuthController.prototype, "signIn", null);
__decorate([
(0, common_1.Get)('/settings'),
(0, swagger_1.ApiOperation)({ summary: 'Return settings required to load the UI before authentication.' }),
(0, common_1.UseGuards)(custom_guard_1.CustomGuard),
__param(0, (0, common_1.Request)()),
__metadata("design:type", Function),
__metadata("design:paramtypes", [Object]),
__metadata("design:returntype", void 0)
], AuthController.prototype, "getSettings", null);
__decorate([
(0, swagger_1.ApiExcludeEndpoint)(),
(0, common_1.Get)('/wallpaper/:hash'),
(0, common_1.Header)('Content-Type', 'image/jpeg'),
(0, common_1.Header)('Cache-Control', 'public,max-age=31536000,immutable'),
__metadata("design:type", Function),
__metadata("design:paramtypes", []),
__metadata("design:returntype", void 0)
], AuthController.prototype, "getCustomWallpaper", null);
__decorate([
(0, swagger_1.ApiOperation)({ summary: 'This method can be used to obtain an access token ONLY when authentication has been disabled.' }),
(0, common_1.Post)('/noauth'),
__metadata("design:type", Function),
__metadata("design:paramtypes", []),
__metadata("design:returntype", void 0)
], AuthController.prototype, "getToken", null);
__decorate([
(0, swagger_1.ApiBearerAuth)(),
(0, swagger_1.ApiOperation)({ summary: 'Check to see if an authentication token is still valid.' }),
(0, common_1.UseGuards)((0, passport_1.AuthGuard)()),
(0, common_1.Get)('/check'),
__metadata("design:type", Function),
__metadata("design:paramtypes", []),
__metadata("design:returntype", void 0)
], AuthController.prototype, "checkAuth", null);
exports.AuthController = AuthController = __decorate([
(0, swagger_1.ApiTags)('Authentication'),
(0, common_1.Controller)('auth'),
__metadata("design:paramtypes", [auth_service_1.AuthService,
config_service_1.ConfigService])
], AuthController);
//# sourceMappingURL=auth.controller.js.map
;