Files
node_task_2/models/credential.js
T

209 lines
5.5 KiB
JavaScript
Raw Normal View History

2022-04-11 06:32:47 +02:00
/*Powered By: Manaknightdigital Inc. https://manaknightdigital.com/ Year: 2021*/
/**
* credential Model
* @copyright 2021 Manaknightdigital Inc.
* @link https://manaknightdigital.com
* @license Proprietary Software licensing
* @author Ryan Wong
*
*/
const moment = require("moment");
const bcrypt = require('bcryptjs');
const { Op } = require("sequelize");
const { intersection } = require('lodash');
const coreModel = require('./../core/models');
module.exports = (sequelize, DataTypes) => {
const Credential = sequelize.define(
"credential",
{
id: {
type: DataTypes.INTEGER,
primaryKey: true,
autoIncrement: true,
},
oauth: DataTypes.STRING,
email: DataTypes.STRING,
password: DataTypes.STRING,
user_id: DataTypes.INTEGER,
type: DataTypes.INTEGER,
verify: DataTypes.INTEGER,
status: DataTypes.INTEGER,
two_factor_authentication: DataTypes.INTEGER,
force_password_change: DataTypes.BOOLEAN,
created_at: DataTypes.DATEONLY,
updated_at: DataTypes.DATE,
},
{
timestamps: true,
freezeTableName: true,
tableName: "credential",
},
{
underscoredAll: false,
underscored: false,
}
);
coreModel.call(this, Credential);
Credential._preCreateProcessing = function (data) {
if(!data.status) data.status = 1;
if(!data.two_factor_authentication) data.two_factor_authentication = 0;
return data;
};
Credential._postCreateProcessing = function (data) {
return data;
};
Credential._customCountingConditions = function (data) {
return data;
};
Credential._filterAllowKeys = function (data) {
let cleanData = {};
let allowedFields = Credential.allowFields();
allowedFields.push(Credential._primaryKey());
for (const key in data) {
if (allowedFields.includes(key)) {
cleanData[key] = data[key];
}
}
return cleanData;
};
Credential.timeDefaultMapping = function () {
let results = [];
for (let i = 0; i < 24; i++) {
for (let j = 0; j < 60; j++) {
let hour = i < 10 ? "0".i : i;
let min = j < 10 ? "0".j : j;
results[i * 60 + j] = `${hour}:${min}`;
}
}
return results;
};
Credential.associate = function(models) {
Credential.belongsTo(models.user, {
foreignKey: "user_id",
as: "user",
constraints: false,
}) };
Credential.verify_mapping = function (verify) {
const mapping = {"0":"Not verified","1":"Verified"}
if (arguments.length === 0) return mapping;
else return mapping[verify];
};
Credential.status_mapping = function (status) {
const mapping = {"0":"Inactive","1":"Active","2":"Suspend"}
if (arguments.length === 0) return mapping;
else return mapping[status];
};
Credential.type_mapping = function (type) {
const mapping = {"0":"normal","1":"facebook","2":"google","3":"twitter"}
if (arguments.length === 0) return mapping;
else return mapping[type];
};
Credential.two_factor_authentication_mapping = function (two_factor_authentication) {
const mapping = {"0":"No","1":"Yes"}
if (arguments.length === 0) return mapping;
else return mapping[two_factor_authentication];
};
Credential.allowFields = function () {
return ['id','oauth','email','password','user_id','type','verify','status','two_factor_authentication','force_password_change',];
};
Credential.labels = function () {
return ['ID','ID','Email','Password','User','Type','Verified','Status','Two factor authentication','',];
};
Credential.validationRules = function () {
return [
['id', 'ID', ''],
['oauth', 'ID', ''],
['email', 'Email', 'required|valid_email'],
['password', 'Password', 'required'],
['user_id', 'User', ''],
['type', 'Type', 'required'],
['verify', 'Verified', 'required'],
['status', 'Status', 'required'],
['two_factor_authentication', 'Two factor authentication', ''],
['force_password_change', '', ''],
];
};
Credential.validationEditRules = function () {
return [
['id', 'ID', ''],
['oauth', 'ID', ''],
['email', 'Email', 'required|valid_email'],
['password', 'Password', ''],
['user_id', 'User', ''],
['type', 'Type', 'required'],
['verify', 'Verified', 'required'],
['status', 'Status', 'required'],
['two_factor_authentication', 'Two factor authentication', ''],
['force_password_change', '', ''],
];
};
Credential.get_user_paginated = function(db, where = {}, ...rest) {
return Credential.getPaginated(...rest, [{
model: db.user,
where: where,
required: Object.keys(where).length > 0 ? true : false,
as: "user",
}])
}
Credential.get_credential_user = (id, db) => {
return Credential.findByPk(id,
{
include: [
{
model: db.user,
required: false,
as: "user",
}
]
});
};
// ex
Credential.intersection = function (fields) {
if (fields) {
return intersection(
[
'id','oauth','email','password','user_id','type','verify','status','two_factor_authentication','force_password_change','created_at','updated_at',
],
Object.keys(fields),
);
} else return [];
};
return Credential;
};