tprompter
Version:
```bash $ ask anything ```
75 lines (74 loc) • 3.54 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); }
};
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());
});
};
import { Inject, Service } from 'typedi';
import { PathsToken } from '../di/tokens.js';
import { IO } from '../utils/IO.js';
import { join } from 'path';
let ArchiveService = class ArchiveService {
constructor(paths, io) {
this.paths = paths;
this.io = io;
this.counter = 0;
}
getArchiveFolder() {
return __awaiter(this, void 0, void 0, function* () {
const folder = join(this.paths.data, 'archive');
yield this.io.mkdirRecursive(folder);
return folder;
});
}
save(record) {
return __awaiter(this, void 0, void 0, function* () {
const folder = yield this.getArchiveFolder();
const unixTimestamp = Date.now();
const name = [unixTimestamp, process.pid, this.counter++].join('-');
const path = join(folder, `${name}.json`);
const content = JSON.stringify(Object.assign(Object.assign({}, record), { createdAt: new Date().toISOString() }), undefined, 2);
yield this.io.writeFile(path, content);
});
}
list() {
return __awaiter(this, void 0, void 0, function* () {
const folder = yield this.getArchiveFolder();
const files = yield this.io.fileList(folder, '.json');
files.sort();
const records = [];
for (const file of files) {
const content = yield this.io.readFile(join(folder, file));
records.push(JSON.parse(content));
}
return records;
});
}
fromTheEnd(n) {
return __awaiter(this, void 0, void 0, function* () {
const records = yield this.list();
return records[records.length - n - 1] || null;
});
}
};
ArchiveService = __decorate([
Service(),
__param(0, Inject(PathsToken)),
__metadata("design:paramtypes", [Object, IO])
], ArchiveService);
export { ArchiveService };