Files
nginx-proxy-manager/backend/models/user.js
Jamie Curnow a12553fec7 Convert backend to ESM
- About 5 years overdue
- Remove eslint, use bomejs instead
2025-09-03 13:59:40 +10:00

66 lines
1.2 KiB
JavaScript

// Objection Docs:
// http://vincit.github.io/objection.js/
import { Model } from "objection";
import db from "../db.js";
import { convertBoolFieldsToInt, convertIntFieldsToBool } from "../lib/helpers.js";
import now from "./now_helper.js";
import UserPermission from "./user_permission.js";
Model.knex(db);
const boolFields = ["is_deleted", "is_disabled"];
class User extends Model {
$beforeInsert() {
this.created_on = now();
this.modified_on = now();
// Default for roles
if (typeof this.roles === "undefined") {
this.roles = [];
}
}
$beforeUpdate() {
this.modified_on = now();
}
$parseDatabaseJson(json) {
const thisJson = super.$parseDatabaseJson(json);
return convertIntFieldsToBool(thisJson, boolFields);
}
$formatDatabaseJson(json) {
const thisJson = convertBoolFieldsToInt(json, boolFields);
return super.$formatDatabaseJson(thisJson);
}
static get name() {
return "User";
}
static get tableName() {
return "user";
}
static get jsonAttributes() {
return ["roles"];
}
static get relationMappings() {
return {
permissions: {
relation: Model.HasOneRelation,
modelClass: UserPermission,
join: {
from: "user.id",
to: "user_permission.user_id",
},
},
};
}
}
export default User;