@lxdhub/dbsync
Version:
Display, search and copy LXD-images using a web interface.
67 lines • 2.97 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 });
const common_1 = require("@nestjs/common");
const typeorm_1 = require("@nestjs/typeorm");
const db_1 = require("@lxdhub/db");
const typeorm_2 = require("typeorm");
let SyncRunService = class SyncRunService {
constructor(syncRunRepository) {
this.syncRunRepository = syncRunRepository;
}
findOne(id) {
return this.syncRunRepository.findOne({ where: { id } });
}
createSyncRun() {
const syncRun = new db_1.SyncRun();
return this.syncRunRepository.save(syncRun);
}
async startSyncRun(id) {
const syncRun = await this.findOne(id);
syncRun.state = db_1.SyncState.RUNNING;
syncRun.started = Date.now();
await this.syncRunRepository.save(syncRun);
return syncRun;
}
async failSyncRun(id, message) {
const syncRun = await this.findOne(id);
syncRun.state = db_1.SyncState.FAILED;
syncRun.error = message;
syncRun.ended = Date.now();
await this.syncRunRepository.save(syncRun);
return syncRun;
}
async finishSyncRun(id) {
const syncRun = await this.findOne(id);
syncRun.state = db_1.SyncState.SUCCEEDED;
syncRun.ended = Date.now();
await this.syncRunRepository.save(syncRun);
return syncRun;
}
async resetAllSyncStates() {
const currentlyRunningSyncs = await this.getCurrentlyRunningSyncs();
const promises = currentlyRunningSyncs.map(currentlyRunning => this.failSyncRun(currentlyRunning.id, 'Forcefully stopped'));
return Promise.all(promises);
}
getCurrentlyRunningSyncs() {
return this.syncRunRepository.find({ where: { state: db_1.SyncState.RUNNING } });
}
};
SyncRunService = __decorate([
common_1.Injectable(),
__param(0, typeorm_1.InjectRepository(db_1.SyncRun)),
__metadata("design:paramtypes", [typeorm_2.Repository])
], SyncRunService);
exports.SyncRunService = SyncRunService;
//# sourceMappingURL=sync-run.service.js.map