| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192 |
- // Objection Docs:
- // http://vincit.github.io/objection.js/
- import bcrypt from "bcrypt";
- import { Model } from "objection";
- import db from "../db.js";
- import { convertBoolFieldsToInt, convertIntFieldsToBool } from "../lib/helpers.js";
- import now from "./now_helper.js";
- import User from "./user.js";
- Model.knex(db);
- const boolFields = ["is_deleted"];
- function encryptPassword() {
- if (this.type === "password" && this.secret) {
- return bcrypt.hash(this.secret, 13).then((hash) => {
- this.secret = hash;
- });
- }
- return null;
- }
- class Auth extends Model {
- $beforeInsert(queryContext) {
- this.created_on = now();
- this.modified_on = now();
- // Default for meta
- if (typeof this.meta === "undefined") {
- this.meta = {};
- }
- return encryptPassword.apply(this, queryContext);
- }
- $beforeUpdate(queryContext) {
- this.modified_on = now();
- return encryptPassword.apply(this, queryContext);
- }
- $parseDatabaseJson(json) {
- const thisJson = super.$parseDatabaseJson(json);
- return convertIntFieldsToBool(thisJson, boolFields);
- }
- $formatDatabaseJson(json) {
- const thisJson = convertBoolFieldsToInt(json, boolFields);
- return super.$formatDatabaseJson(thisJson);
- }
- /**
- * Verify a plain password against the encrypted password
- *
- * @param {String} password
- * @returns {Promise}
- */
- verifyPassword(password) {
- return bcrypt.compare(password, this.secret);
- }
- static get name() {
- return "Auth";
- }
- static get tableName() {
- return "auth";
- }
- static get jsonAttributes() {
- return ["meta"];
- }
- static get relationMappings() {
- return {
- user: {
- relation: Model.HasOneRelation,
- modelClass: User,
- join: {
- from: "auth.user_id",
- to: "user.id",
- },
- filter: {
- is_deleted: 0,
- },
- },
- };
- }
- }
- export default Auth;
|