70 lines
1.6 KiB
JavaScript
70 lines
1.6 KiB
JavaScript
import { sequelize } from '../../utils/sequelize.js';
|
|
import { DataTypes } from 'sequelize';
|
|
import { encrypt, decrypt } from '../../utils/encryption.js';
|
|
import crypto from 'crypto';
|
|
|
|
const User = sequelize.define('user', {
|
|
email: {
|
|
type: DataTypes.BLOB,
|
|
allowNull: false,
|
|
unique: true,
|
|
set(value) {
|
|
if (value) {
|
|
this.setDataValue('email', Buffer.from(encrypt(value), 'hex'));
|
|
}
|
|
},
|
|
},
|
|
username: {
|
|
type: DataTypes.STRING,
|
|
allowNull: false,
|
|
unique: true
|
|
},
|
|
password: {
|
|
type: DataTypes.STRING,
|
|
allowNull: false,
|
|
},
|
|
registrationDate: {
|
|
type: DataTypes.DATE,
|
|
allowNull: false,
|
|
defaultValue: DataTypes.NOW
|
|
},
|
|
active: {
|
|
type: DataTypes.BOOLEAN,
|
|
defaultValue: false
|
|
},
|
|
resetToken: {
|
|
type: DataTypes.UUID,
|
|
allowNull: true
|
|
},
|
|
hashedId: {
|
|
type: DataTypes.STRING,
|
|
allowNull: true
|
|
},
|
|
searchable: {
|
|
type: DataTypes.BOOLEAN,
|
|
defaultValue: true
|
|
},
|
|
authCode: {
|
|
type: DataTypes.STRING,
|
|
allowNull: true
|
|
}
|
|
}, {
|
|
tableName: 'user',
|
|
schema: 'community',
|
|
underscored: true,
|
|
hooks: {
|
|
afterCreate: async (user, options) => {
|
|
const hashedId = crypto.createHash('sha256').update(user.id.toString()).digest('hex');
|
|
user.hashedId = hashedId;
|
|
await user.save();
|
|
}
|
|
},
|
|
getterMethods: {
|
|
email() {
|
|
return decrypt(this.getDataValue('email').toString('hex'));
|
|
}
|
|
}
|
|
});
|
|
|
|
export default User;
|