UNPKG

@unicoderns/cerberus

Version:

Auth secure library

83 lines 4.51 kB
"use strict"; //////////////////////////////////////////////////////////////////////////////////////////// // The MIT License (MIT) // // // // Copyright (C) 2018 Unicoderns S.A. - info@unicoderns.com - unicoderns.com // // // // Permission is hereby granted, free of charge, to any person obtaining a copy // // of this software and associated documentation files (the "Software"), to deal // // in the Software without restriction, including without limitation the rights // // to use, copy, modify, merge, publish, distribute, sublicense, and/or sell // // copies of the Software, and to permit persons to whom the Software is // // furnished to do so, subject to the following conditions: // // // // The above copyright notice and this permission notice shall be included in all // // copies or substantial portions of the Software. // // // // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR // // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, // // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE // // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER // // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, // // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE // // SOFTWARE. // //////////////////////////////////////////////////////////////////////////////////////////// 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 __importStar = (this && this.__importStar) || function (mod) { if (mod && mod.__esModule) return mod; var result = {}; if (mod != null) for (var k in mod) if (Object.hasOwnProperty.call(mod, k)) result[k] = mod[k]; result["default"] = mod; return result; }; Object.defineProperty(exports, "__esModule", { value: true }); const usersModel = __importStar(require("./usersModel")); const orm_1 = require("@unicoderns/orm"); /** * User Model */ class Sessions extends orm_1.Model { constructor() { super(...arguments); this.id = new orm_1.Datatypes().ID(); this.created = new orm_1.Datatypes().TIMESTAMP({ notNull: true, default: orm_1.Defaults.Timestamp.CURRENT_TIMESTAMP }); this.ip = new orm_1.Datatypes().VARCHAR({ size: 39, notNull: true }); // ToDo: Specify the localField looks redundant this.user = new orm_1.Datatypes().FOREIGNKEY("user", "id", new usersModel.Users(this.DB), { notNull: true, unique: true }); } } __decorate([ orm_1.field(), __metadata("design:type", Object) ], Sessions.prototype, "id", void 0); __decorate([ orm_1.field(), __metadata("design:type", Object) ], Sessions.prototype, "created", void 0); __decorate([ orm_1.field(), __metadata("design:type", Object) ], Sessions.prototype, "ip", void 0); __decorate([ orm_1.field(), __metadata("design:type", Object) ], Sessions.prototype, "user", void 0); exports.Sessions = Sessions; //# sourceMappingURL=sessionsModel.js.map