mirror of
https://github.com/Akif9748/akf-forum.git
synced 2024-11-01 03:25:04 +03:00
36 lines
841 B
JavaScript
36 lines
841 B
JavaScript
const mongoose = require("mongoose")
|
|
const UserModel = require("./User");
|
|
|
|
const schema = new mongoose.Schema({
|
|
id: { type: String, unique: true },
|
|
|
|
threadID: String,
|
|
author: UserModel.schema, // user-model
|
|
|
|
content: String,
|
|
time: { type: Date, default: Date.now },
|
|
deleted: { type: Boolean, default: false },
|
|
edited: { type: Boolean, default: false },
|
|
react: {
|
|
like: [Number],
|
|
dislike: [Number]
|
|
}
|
|
})
|
|
|
|
schema.virtual('authorID').get(function () { return this.author?.id; });
|
|
|
|
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 = id => model.findOne({ id });
|
|
|
|
module.exports = model;
|
|
|