mirror of
https://github.com/Akif9748/akf-forum.git
synced 2024-11-01 11:25:04 +03:00
46 lines
No EOL
1.1 KiB
JavaScript
46 lines
No EOL
1.1 KiB
JavaScript
const mongoose = require("mongoose");
|
|
const cache = require("./cache");
|
|
const { limits } = require("../config.json");
|
|
|
|
const schema = new mongoose.Schema({
|
|
id: { type: String, unique: true },
|
|
authorID: {
|
|
type: String, get(v) { return v || this.author?.id }
|
|
},
|
|
author: {
|
|
type: Object, set(v) {
|
|
this.authorID = v.id;
|
|
return v;
|
|
}
|
|
},
|
|
threadID: String,
|
|
content: { type: String, maxlength: limits.message },
|
|
oldContents: [String],
|
|
time: { type: Date, default: Date.now },
|
|
deleted: { type: Boolean, default: false },
|
|
edited: { type: Boolean, default: false },
|
|
react: {
|
|
like: [String],
|
|
dislike: [String]
|
|
}
|
|
})
|
|
|
|
schema.methods.get_author = cache.getAuthor
|
|
|
|
schema.methods.takeId = async function () {
|
|
this.id = String(await model.count() || 0);
|
|
return this;
|
|
}
|
|
|
|
schema.methods.getLink = function (id = this.id) {
|
|
return "/messages/" + id;
|
|
}
|
|
|
|
const model = mongoose.model('message', schema);
|
|
|
|
model.get = async id => {
|
|
const message = await model.findOne({ id })
|
|
return await message.get_author();
|
|
};
|
|
|
|
module.exports = model; |