component-dbs-core
Version:
DTO objects shared among device backend
73 lines • 4.12 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 __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());
});
};
Object.defineProperty(exports, "__esModule", { value: true });
exports.DeviceVerification = void 0;
const common_1 = require("@nestjs/common");
const config_1 = require("../common_services/config");
const deviceDb_1 = require("./deviceDb");
const dynamodbService_1 = require("../common_services/dynamodb/dynamodbService");
let DeviceVerification = class DeviceVerification {
constructor(dynamodbService, envService) {
this.dynamodbService = dynamodbService;
this.envService = envService;
this.isDeviceUuidValid = (uuid) => __awaiter(this, void 0, void 0, function* () {
const items = yield this.deviceDb.getDeviceByUuid(uuid);
return items.Items ? items.Items.length > 0 : false;
});
this.isDeviceTokenValid = (uuid, accessToken, refreshToken, idToken) => __awaiter(this, void 0, void 0, function* () {
const items = yield this.deviceDb.findDeviceByTokens(uuid, accessToken, refreshToken, idToken);
if (items.Items && items.Items.length === 1) {
const deviceStatus = items.Items[0].status;
if (deviceStatus !== 'INACTIVE' && deviceStatus !== 'DISABLED') {
return true;
}
return false;
}
return false;
});
this.isDevicePinValid = (pin, deviceUuid) => __awaiter(this, void 0, void 0, function* () {
const items = yield this.deviceDb.findDeviceByPin(pin, deviceUuid);
if (items.Items && items.Items.length === 1) {
return true;
}
return false;
});
this.checkAccessToken = (accessToken) => __awaiter(this, void 0, void 0, function* () {
// TODO: need to update this logic
const output = yield this.deviceDb.findEntityUuidByAccessToken(accessToken);
console.log('get entity uuid', output);
if (output.Items && output.Items.length > 0) {
const { entityUuid } = output.Items[0];
if (entityUuid) {
return;
}
}
throw new Error('Invalid access token.');
});
this.deviceDb = new deviceDb_1.DeviceDb(this.envService.deviceTableName, this.envService.modelSerialGsi, this.dynamodbService.documentClient, this.envService.accessTokenGsi);
}
};
DeviceVerification = __decorate([
common_1.Injectable(),
__metadata("design:paramtypes", [dynamodbService_1.DynamodbService,
config_1.EnvironmentService])
], DeviceVerification);
exports.DeviceVerification = DeviceVerification;
//# sourceMappingURL=deviceVerification.js.map