mirror of
https://github.com/vale981/Vulcan
synced 2025-03-10 12:36:39 -04:00
198 lines
4.5 KiB
JavaScript
198 lines
4.5 KiB
JavaScript
import Telescope from 'meteor/nova:lib';
|
|
import Users from 'meteor/nova:users';
|
|
import mutations from './mutations.js';
|
|
|
|
|
|
// check if user can create a new comment
|
|
const canInsert = user => Users.canDo(user, "comments.new");
|
|
|
|
// check if user can edit a comment
|
|
const canEdit = mutations.edit.check;
|
|
|
|
// check if user can edit *all* comments
|
|
const canEditAll = user => Users.canDo(user, "comments.edit.all"); // we don't use the mutations.edit check here, to be changed later with ability to give options to mutations.edit.check?
|
|
|
|
const alwaysPublic = user => true;
|
|
|
|
/**
|
|
* @summary Comments schema
|
|
* @type {Object}
|
|
*/
|
|
const schema = {
|
|
/**
|
|
ID
|
|
*/
|
|
_id: {
|
|
type: String,
|
|
optional: true,
|
|
publish: true,
|
|
viewableIf: alwaysPublic,
|
|
},
|
|
/**
|
|
The `_id` of the parent comment, if there is one
|
|
*/
|
|
parentCommentId: {
|
|
type: String,
|
|
// regEx: SimpleSchema.RegEx.Id,
|
|
max: 500,
|
|
viewableIf: alwaysPublic,
|
|
insertableIf: canInsert,
|
|
optional: true,
|
|
publish: true,
|
|
resolveAs: 'parentComment: Comment',
|
|
hidden: true // never show this
|
|
},
|
|
/**
|
|
The `_id` of the top-level parent comment, if there is one
|
|
*/
|
|
topLevelCommentId: {
|
|
type: String,
|
|
// regEx: SimpleSchema.RegEx.Id,
|
|
max: 500,
|
|
viewableIf: alwaysPublic,
|
|
insertableIf: canInsert,
|
|
optional: true,
|
|
publish: true,
|
|
resolveAs: 'topLevelComment: Comment',
|
|
hidden: true // never show this
|
|
},
|
|
/**
|
|
The timestamp of comment creation
|
|
*/
|
|
createdAt: {
|
|
type: Date,
|
|
optional: true,
|
|
publish: false,
|
|
viewableIf: canEditAll,
|
|
autoValue: (documentOrModifier) => {
|
|
if (documentOrModifier && !documentOrModifier.$set) return new Date() // if this is an insert, set createdAt to current timestamp
|
|
}
|
|
},
|
|
/**
|
|
The timestamp of the comment being posted. For now, comments are always created and posted at the same time
|
|
*/
|
|
postedAt: {
|
|
type: Date,
|
|
optional: true,
|
|
publish: true,
|
|
viewableIf: alwaysPublic,
|
|
autoValue: (documentOrModifier) => {
|
|
if (documentOrModifier && !documentOrModifier.$set) return new Date() // if this is an insert, set createdAt to current timestamp
|
|
}
|
|
},
|
|
/**
|
|
The comment body (Markdown)
|
|
*/
|
|
body: {
|
|
type: String,
|
|
max: 3000,
|
|
viewableIf: alwaysPublic,
|
|
insertableIf: canInsert,
|
|
editableIf: canEdit,
|
|
publish: true,
|
|
control: "textarea"
|
|
},
|
|
/**
|
|
The HTML version of the comment body
|
|
*/
|
|
htmlBody: {
|
|
type: String,
|
|
optional: true,
|
|
publish: true,
|
|
viewableIf: alwaysPublic,
|
|
},
|
|
/**
|
|
The comment author's name
|
|
*/
|
|
author: {
|
|
type: String,
|
|
optional: true,
|
|
publish: true,
|
|
viewableIf: alwaysPublic,
|
|
autoValue: (documentOrModifier) => {
|
|
// if userId is changing, change the author name too
|
|
const userId = documentOrModifier.userId || documentOrModifier.$set && documentOrModifier.$set.userId
|
|
if (userId) return Users.getDisplayNameById(userId)
|
|
}
|
|
},
|
|
/**
|
|
Whether the comment is inactive. Inactive comments' scores gets recalculated less often
|
|
*/
|
|
inactive: {
|
|
type: Boolean,
|
|
optional: true,
|
|
publish: true,
|
|
viewableIf: alwaysPublic,
|
|
},
|
|
/**
|
|
The post's `_id`
|
|
*/
|
|
postId: {
|
|
type: String,
|
|
optional: true,
|
|
publish: true,
|
|
viewableIf: alwaysPublic,
|
|
insertableIf: canInsert,
|
|
// regEx: SimpleSchema.RegEx.Id,
|
|
max: 500,
|
|
resolveAs: 'post: Post',
|
|
hidden: true // never show this
|
|
},
|
|
/**
|
|
The comment author's `_id`
|
|
*/
|
|
userId: {
|
|
type: String,
|
|
optional: true,
|
|
publish: true,
|
|
viewableIf: alwaysPublic,
|
|
insertableIf: canInsert,
|
|
hidden: true,
|
|
resolveAs: 'user: User',
|
|
// join: {
|
|
// joinAs: "user",
|
|
// collection: () => Users
|
|
// },
|
|
},
|
|
/**
|
|
Whether the comment is deleted. Delete comments' content doesn't appear on the site.
|
|
*/
|
|
isDeleted: {
|
|
type: Boolean,
|
|
optional: true,
|
|
publish: true,
|
|
viewableIf: alwaysPublic,
|
|
},
|
|
userIP: {
|
|
type: String,
|
|
optional: true,
|
|
publish: false,
|
|
viewableIf: canEditAll,
|
|
},
|
|
userAgent: {
|
|
type: String,
|
|
optional: true,
|
|
publish: false,
|
|
viewableIf: canEditAll,
|
|
},
|
|
referrer: {
|
|
type: String,
|
|
optional: true,
|
|
publish: false,
|
|
viewableIf: canEditAll,
|
|
}
|
|
};
|
|
|
|
export default schema;
|
|
|
|
// todo: move to nova:notifications
|
|
// if (typeof Telescope.notifications !== "undefined") {
|
|
// Comments.addField({
|
|
// fieldName: 'disableNotifications',
|
|
// fieldSchema: {
|
|
// type: Boolean,
|
|
// optional: true,
|
|
// hidden: true // never show this
|
|
// }
|
|
// });
|
|
// }
|