@checkfirst/nestjs-outlook
Version:
An opinionated NestJS module for Microsoft Outlook integration that provides easy access to Microsoft Graph API for emails, calendars, and more.
60 lines • 2.78 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.MicrosoftCsrfTokenRepository = void 0;
const common_1 = require("@nestjs/common");
const typeorm_1 = require("@nestjs/typeorm");
const typeorm_2 = require("typeorm");
const csrf_token_entity_1 = require("../entities/csrf-token.entity");
let MicrosoftCsrfTokenRepository = class MicrosoftCsrfTokenRepository {
constructor(repository) {
this.repository = repository;
}
async saveToken(token, userId, expiresInMs) {
const expires = new Date(Date.now() + expiresInMs);
const csrfToken = new csrf_token_entity_1.MicrosoftCsrfToken();
csrfToken.token = token;
csrfToken.userId = userId.toString();
csrfToken.expires = expires;
return this.repository.save(csrfToken);
}
async findAndValidateToken(token) {
if (!token) {
return null;
}
const csrfToken = await this.repository.findOne({
where: { token },
});
if (!csrfToken) {
return null;
}
if (csrfToken.expires < new Date()) {
await this.repository.delete(csrfToken.id);
return null;
}
await this.repository.delete(csrfToken.id);
return csrfToken;
}
async cleanupExpiredTokens() {
const now = new Date();
await this.repository.delete({ expires: (0, typeorm_2.LessThan)(now) });
}
};
exports.MicrosoftCsrfTokenRepository = MicrosoftCsrfTokenRepository;
exports.MicrosoftCsrfTokenRepository = MicrosoftCsrfTokenRepository = __decorate([
(0, common_1.Injectable)(),
__param(0, (0, typeorm_1.InjectRepository)(csrf_token_entity_1.MicrosoftCsrfToken)),
__metadata("design:paramtypes", [typeorm_2.Repository])
], MicrosoftCsrfTokenRepository);
//# sourceMappingURL=microsoft-csrf-token.repository.js.map