Vulcan/packages/vulcan-posts/lib/schema.js

238 lines
4.7 KiB
JavaScript

import Users from 'meteor/vulcan:users';
import Posts from './collection.js';
/**
* @summary Posts config namespace
* @type {Object}
*/
const formGroups = {
admin: {
name: "admin",
order: 2
}
};
/**
* @summary Posts schema
* @type {Object}
*/
const schema = {
/**
ID
*/
_id: {
type: String,
optional: true,
viewableBy: ['guests'],
},
/**
Timetstamp of post creation
*/
createdAt: {
type: Date,
optional: true,
viewableBy: ['admins'],
autoValue: (documentOrModifier) => {
if (documentOrModifier && !documentOrModifier.$set) return new Date() // if this is an insert, set createdAt to current timestamp
}
},
/**
Timestamp of post first appearing on the site (i.e. being approved)
*/
postedAt: {
type: Date,
optional: true,
viewableBy: ['guests'],
insertableBy: ['admins'],
editableBy: ['admins'],
control: "datetime",
group: formGroups.admin
},
/**
URL
*/
url: {
type: String,
optional: true,
max: 500,
viewableBy: ['guests'],
insertableBy: ['members'],
editableBy: ['members'],
control: "text",
order: 10
},
/**
Title
*/
title: {
type: String,
optional: false,
max: 500,
viewableBy: ['guests'],
insertableBy: ['members'],
editableBy: ['members'],
control: "text",
order: 20
},
/**
Slug
*/
slug: {
type: String,
optional: true,
viewableBy: ['guests'],
},
/**
Post body (markdown)
*/
body: {
type: String,
optional: true,
max: 3000,
viewableBy: ['guests'],
insertableBy: ['members'],
editableBy: ['members'],
control: "textarea",
order: 30
},
/**
HTML version of the post body
*/
htmlBody: {
type: String,
optional: true,
viewableBy: ['guests'],
},
/**
Post Excerpt
*/
excerpt: {
type: String,
optional: true,
viewableBy: ['guests'],
},
/**
Count of how many times the post's page was viewed
*/
viewCount: {
type: Number,
optional: true,
viewableBy: ['admins'],
defaultValue: 0
},
/**
Timestamp of the last comment
*/
lastCommentedAt: {
type: Date,
optional: true,
viewableBy: ['guests'],
},
/**
Count of how many times the post's link was clicked
*/
clickCount: {
type: Number,
optional: true,
viewableBy: ['admins'],
defaultValue: 0
},
/**
The post's status. One of pending (`1`), approved (`2`), or deleted (`3`)
*/
status: {
type: Number,
optional: true,
viewableBy: ['guests'],
insertableBy: ['admins'],
editableBy: ['admins'],
control: "select",
autoValue(documentOrModifier) {
// provide a default value if this is an insert operation and status field is not set in the document
if (documentOrModifier && !documentOrModifier.$set && documentOrModifier.userId && !documentOrModifier.status) {
const user = Users.findOne(documentOrModifier.userId);
return Posts.getDefaultStatus(user);
}
},
form: {
noselect: true,
options: Posts.statuses,
group: 'admin'
},
group: formGroups.admin
},
/**
Whether a post is scheduled in the future or not
*/
isFuture: {
type: Boolean,
optional: true,
viewableBy: ['guests'],
},
/**
Whether the post is sticky (pinned to the top of posts lists)
*/
sticky: {
type: Boolean,
optional: true,
defaultValue: false,
viewableBy: ['guests'],
insertableBy: ['admins'],
editableBy: ['admins'],
control: "checkbox",
group: formGroups.admin
},
/**
Whether the post is inactive. Inactive posts see their score recalculated less often
*/
inactive: {
type: Boolean,
optional: true,
defaultValue: false
},
/**
Save info for later spam checking on a post. We will use this for the akismet package
*/
userIP: {
type: String,
optional: true,
viewableBy: ['admins'],
},
userAgent: {
type: String,
optional: true,
viewableBy: ['admins'],
},
referrer: {
type: String,
optional: true,
viewableBy: ['admins'],
},
/**
The post author's name
*/
author: {
type: String,
optional: true,
viewableBy: ['guests'],
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)
}
},
/**
The post author's `_id`.
*/
userId: {
type: String,
optional: true,
control: "select",
viewableBy: ['guests'],
insertableBy: ['members'],
hidden: true,
resolveAs: 'user: User',
}
};
export default schema;