mirror of
https://github.com/codeninjasllc/codecombat.git
synced 2024-11-24 08:08:15 -05:00
43 lines
1.2 KiB
CoffeeScript
43 lines
1.2 KiB
CoffeeScript
mongoose = require 'mongoose'
|
|
plugins = require '../plugins/plugins'
|
|
config = require '../../server_config'
|
|
|
|
ArticleSchema = new mongoose.Schema(body: String, {strict: false,read:config.mongo.readpref})
|
|
|
|
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})
|
|
|
|
ArticleSchema.plugin(plugins.NamedPlugin)
|
|
ArticleSchema.plugin(plugins.VersionedPlugin)
|
|
ArticleSchema.plugin(plugins.SearchablePlugin, {searchable: ['body', 'name']})
|
|
ArticleSchema.plugin(plugins.TranslationCoveragePlugin)
|
|
ArticleSchema.plugin(plugins.PatchablePlugin)
|
|
|
|
ArticleSchema.postEditableProperties = []
|
|
ArticleSchema.editableProperties = ['body', 'name', 'i18n', 'i18nCoverage']
|
|
ArticleSchema.jsonSchema = require '../../app/schemas/models/article'
|
|
|
|
module.exports = mongoose.model('article', ArticleSchema)
|