2014-06-30 22:16:26 -04:00
|
|
|
mongoose = require 'mongoose'
|
|
|
|
plugins = require '../plugins/plugins'
|
2015-03-21 21:49:32 -04:00
|
|
|
config = require '../../server_config'
|
2014-01-03 13:32:13 -05:00
|
|
|
|
2015-03-21 21:49:32 -04:00
|
|
|
ArticleSchema = new mongoose.Schema(body: String, {strict: false,read:config.mongo.readpref})
|
2014-01-03 13:32:13 -05:00
|
|
|
|
2015-01-27 13:02:47 -05:00
|
|
|
ArticleSchema.index(
|
|
|
|
{
|
|
|
|
index: 1
|
|
|
|
_fts: 'text'
|
|
|
|
_ftsx: 1
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: 'search index'
|
|
|
|
sparse: true
|
|
|
|
weights: {body: 1, name: 1}
|
|
|
|
default_language: 'english'
|
|
|
|
'language_override': 'searchLanguage'
|
|
|
|
'textIndexVersion': 2
|
|
|
|
})
|
|
|
|
ArticleSchema.index(
|
|
|
|
{
|
|
|
|
original: 1
|
|
|
|
'version.major': -1
|
|
|
|
'version.minor': -1
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: 'version index'
|
|
|
|
unique: true
|
|
|
|
})
|
|
|
|
ArticleSchema.index({slug: 1}, {name: 'slug index', sparse: true, unique: true})
|
|
|
|
|
2014-01-03 13:32:13 -05:00
|
|
|
ArticleSchema.plugin(plugins.NamedPlugin)
|
|
|
|
ArticleSchema.plugin(plugins.VersionedPlugin)
|
|
|
|
ArticleSchema.plugin(plugins.SearchablePlugin, {searchable: ['body', 'name']})
|
2015-03-07 19:30:25 -05:00
|
|
|
ArticleSchema.plugin(plugins.TranslationCoveragePlugin)
|
2014-04-08 22:26:19 -04:00
|
|
|
ArticleSchema.plugin(plugins.PatchablePlugin)
|
2014-01-03 13:32:13 -05:00
|
|
|
|
|
|
|
module.exports = mongoose.model('article', ArticleSchema)
|