mirror of
https://github.com/codeninjasllc/codecombat.git
synced 2024-11-24 08:08:15 -05:00
8e33b6b534
NEVER. AGAIN
36 lines
1.4 KiB
CoffeeScript
36 lines
1.4 KiB
CoffeeScript
mongoose = require('mongoose')
|
|
jsonschema = require('../../app/schemas/models/achievement')
|
|
log = require 'winston'
|
|
|
|
# `pre` and `post` are not called for update operations executed directly on the database,
|
|
# including `Model.update`,`.findByIdAndUpdate`,`.findOneAndUpdate`, `.findOneAndRemove`,and `.findByIdAndRemove`.order
|
|
# to utilize `pre` or `post` middleware, you should `find()` the document, and call the `init`, `validate`, `save`,
|
|
# or `remove` functions on the document. See [explanation](http://github.com/LearnBoost/mongoose/issues/964).
|
|
|
|
AchievementSchema = new mongoose.Schema({
|
|
userField: String
|
|
}, {strict: false})
|
|
|
|
AchievementSchema.methods.objectifyQuery = () ->
|
|
try
|
|
@set('query', JSON.parse(@get('query'))) if typeof @get('query') == "string"
|
|
catch error
|
|
log.error "Couldn't convert query string to object because of #{error}"
|
|
@set('query', {})
|
|
|
|
AchievementSchema.methods.stringifyQuery = () ->
|
|
@set('query', JSON.stringify(@get('query'))) if typeof @get('query') != "string"
|
|
|
|
AchievementSchema.post('init', (doc) -> doc.objectifyQuery())
|
|
|
|
AchievementSchema.pre('save', (next) ->
|
|
@stringifyQuery()
|
|
next()
|
|
)
|
|
|
|
module.exports = Achievement = mongoose.model('Achievement', AchievementSchema)
|
|
|
|
plugins = require('../plugins/plugins')
|
|
|
|
AchievementSchema.plugin(plugins.NamedPlugin)
|
|
AchievementSchema.plugin(plugins.SearchablePlugin, {searchable: ['name']})
|