2015-08-05 00:41:43 +00:00
|
|
|
"use strict";
|
|
|
|
|
|
|
|
var mongoose = require("mongoose");
|
|
|
|
var Schema = mongoose.Schema;
|
|
|
|
|
|
|
|
var messageSchema = new Schema({
|
|
|
|
author: {
|
|
|
|
username: { type: String, required: true },
|
|
|
|
avatar: String
|
|
|
|
},
|
|
|
|
content: { type: String, required: true },
|
2015-08-07 00:47:23 +00:00
|
|
|
createdAt: { type: Date, default: Date.now, required: true },
|
|
|
|
deleted: { type: Boolean, default: false }
|
2015-08-05 00:41:43 +00:00
|
|
|
});
|
|
|
|
|
2015-08-07 00:47:23 +00:00
|
|
|
messageSchema.index({ createdAt: -1 });
|
|
|
|
messageSchema.index({ deleted: 1, createdAt: -1 });
|
2015-08-07 00:06:40 +00:00
|
|
|
|
|
|
|
// Instance Methods
|
2015-08-05 00:41:43 +00:00
|
|
|
|
2015-08-10 23:56:53 +00:00
|
|
|
messageSchema.methods.toJson = () => {
|
2015-08-05 00:41:43 +00:00
|
|
|
return {
|
|
|
|
id: this.id,
|
|
|
|
author: this.author,
|
|
|
|
content: this.content,
|
|
|
|
createdAt: this.createdAt
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2015-08-10 23:56:53 +00:00
|
|
|
messageSchema.statics.list = (options, callback) => {
|
|
|
|
return this.find({deleted: false})
|
|
|
|
.sort({createdAt: -1})
|
|
|
|
.limit(30)
|
|
|
|
.exec((error, messages) => {
|
|
|
|
if (error) return callback(error);
|
|
|
|
return callback(null, messages.reverse());
|
|
|
|
});
|
2015-08-07 00:06:40 +00:00
|
|
|
};
|
|
|
|
|
2015-08-05 00:41:43 +00:00
|
|
|
module.exports = mongoose.model('message', messageSchema);
|