mirror of
https://github.com/Akif9748/akf-forum.git
synced 2024-10-31 19:25:04 +03:00
32 lines
No EOL
1,010 B
JavaScript
32 lines
No EOL
1,010 B
JavaScript
const mongoose = require("mongoose")
|
|
const { def_theme } = require("../config.json");
|
|
const schema = new mongoose.Schema({
|
|
id: { type: String },
|
|
|
|
name: String,
|
|
avatar: { type: String, default: "/images/avatars/default.jpg" },
|
|
time: { type: Date, default: Date.now },
|
|
deleted: { type: Boolean, default: false },
|
|
edited: { type: Boolean, default: false },
|
|
about: { type: String, default: "" },
|
|
admin: { type: Boolean, default: false },
|
|
theme: { type: String, default: def_theme },
|
|
lastSeen: { type: Date, default: Date.now, select: false },
|
|
hideLastSeen: { type: Boolean, default: false },
|
|
ips: { type: [String], select: false }
|
|
});
|
|
|
|
schema.methods.takeId = async function () {
|
|
this.id = String(await model.count() || 0);
|
|
return this;
|
|
}
|
|
|
|
schema.methods.getLink = function (id = this.id) {
|
|
return "/users/" + id;
|
|
}
|
|
|
|
const model = mongoose.model('user', schema);
|
|
|
|
model.get = (id, select) => model.findOne({ id }).select(select);
|
|
|
|
module.exports = model; |