Spaces:
Running
Running
File size: 1,472 Bytes
97f53b4 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 |
const mongoose = require('mongoose');
const Profile = require('./user');
const postSchema = new mongoose.Schema(
{
user: {
type: mongoose.Schema.Types.ObjectId,
ref: 'User',
},
createdAt: {
type: Date,
default: Date.now,
},
profile: {
type: mongoose.Schema.Types.ObjectId,
ref: 'User',
},
caption: {
type: String,
trim: true,
},
location: {
type: String,
},
likes: [
{
type: mongoose.Schema.Types.ObjectId,
ref: 'User',
},
],
image: String,
// comment: {
// type: mongoose.Schema.Types.ObjectId,
// ref: 'Comment',
// },
},
{
toJSON: { virtuals: true },
toObject: { virtuals: true },
}
);
postSchema.set('toObject', { virtuals: true });
postSchema.set('toJSON', { virtuals: true });
postSchema.virtual('commentsPost', {
ref: 'Comment',
localField: '_id',
foreignField: 'post',
});
postSchema.methods.getProfileId = async function (id) {
const { _id } = await Profile.findOne({ unique_id: id });
return _id;
};
// //Todo
// postSchema.pre(/^find/, function (next) {
// this.find().populate('commentsPost');
// next();
// });
const Post = mongoose.model('PostTest', postSchema);
module.exports = Post;
|