@unicoderns/cerberus
Version:
Auth secure library
125 lines • 5.72 kB
JavaScript
"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 orm_1 = require("@unicoderns/orm");
const timezones = __importStar(require("../static/timezoneModel"));
/**
* User Model
*/
class Users 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.username = new orm_1.Datatypes().VARCHAR({
size: 45,
unique: true
});
this.email = new orm_1.Datatypes().VARCHAR({
notNull: true,
size: 45,
unique: true
});
this.password = new orm_1.Datatypes().CHAR({
notNull: true,
size: 60
});
this.firstName = new orm_1.Datatypes().VARCHAR({
size: 45
});
this.lastName = new orm_1.Datatypes().VARCHAR({
size: 45
});
this.timezone = new orm_1.Datatypes().STATICKEY(timezones);
this.admin = new orm_1.Datatypes().BOOL();
this.verified = new orm_1.Datatypes().BOOL();
this.active = new orm_1.Datatypes().BOOL();
}
}
__decorate([
orm_1.field(),
__metadata("design:type", Object)
], Users.prototype, "id", void 0);
__decorate([
orm_1.field(),
__metadata("design:type", Object)
], Users.prototype, "created", void 0);
__decorate([
orm_1.field(),
__metadata("design:type", Object)
], Users.prototype, "username", void 0);
__decorate([
orm_1.field(),
__metadata("design:type", Object)
], Users.prototype, "email", void 0);
__decorate([
orm_1.secret(),
__metadata("design:type", Object)
], Users.prototype, "password", void 0);
__decorate([
orm_1.field(),
__metadata("design:type", Object)
], Users.prototype, "firstName", void 0);
__decorate([
orm_1.field(),
__metadata("design:type", Object)
], Users.prototype, "lastName", void 0);
__decorate([
orm_1.field(),
__metadata("design:type", Object)
], Users.prototype, "timezone", void 0);
__decorate([
orm_1.field(),
__metadata("design:type", Object)
], Users.prototype, "admin", void 0);
__decorate([
orm_1.field(),
__metadata("design:type", Object)
], Users.prototype, "verified", void 0);
__decorate([
orm_1.field(),
__metadata("design:type", Object)
], Users.prototype, "active", void 0);
exports.Users = Users;
//# sourceMappingURL=usersModel.js.map