component-dbs-core
Version:
DTO objects shared among device backend
72 lines • 3.73 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.DeviceMetrics = void 0;
const common_1 = require("@nestjs/common");
const deviceVerification_1 = require("./deviceVerification");
const config_1 = require("../common_services/config");
const dynamodbService_1 = require("../common_services/dynamodb/dynamodbService");
let DeviceMetrics = class DeviceMetrics {
constructor(dynamodbService, envService, deviceVerification) {
this.dynamodbService = dynamodbService;
this.envService = envService;
this.deviceVerification = deviceVerification;
this.getDeviceMetrics = (id, type) => __awaiter(this, void 0, void 0, function* () {
const params = {
TableName: this.envService.deviceTableName,
ExpressionAttributeValues: {
':id': id,
':type': type,
},
ExpressionAttributeNames: {
'#type': 'type',
},
KeyConditionExpression: 'id = :id AND #type = :type',
};
return this.dynamodbService.documentClient.query(params).promise();
});
this.createDeviceMetrics = (input) => __awaiter(this, void 0, void 0, function* () {
const { deviceUuid, activity, metric, timestamp } = input;
if (!(yield this.deviceVerification.isDeviceUuidValid(deviceUuid))) {
throw new Error('Device uuid doesnt exist.');
}
const params = {
TableName: this.envService.deviceTableName,
Item: {
id: deviceUuid,
activity,
metric,
timestamp,
type: `${"metrics" /* metrics */}.${timestamp}`,
},
};
yield this.dynamodbService.documentClient.put(params).promise();
return { id: deviceUuid };
});
}
};
DeviceMetrics = __decorate([
common_1.Injectable(),
__metadata("design:paramtypes", [dynamodbService_1.DynamodbService,
config_1.EnvironmentService,
deviceVerification_1.DeviceVerification])
], DeviceMetrics);
exports.DeviceMetrics = DeviceMetrics;
//# sourceMappingURL=deviceMetrics.js.map