2016-07-01 16:03:53 +02:00
|
|
|
const mongoose = require('mongoose')
|
|
|
|
|
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
|
|
|
|
const OAuthClientSchema = mongoose.Schema({
|
|
|
|
clientSecret: String,
|
|
|
|
grants: Array,
|
|
|
|
redirectUris: Array
|
|
|
|
})
|
|
|
|
|
|
|
|
OAuthClientSchema.path('clientSecret').required(true)
|
|
|
|
|
|
|
|
OAuthClientSchema.statics = {
|
2016-10-02 12:19:02 +02:00
|
|
|
getByIdAndSecret,
|
|
|
|
list,
|
|
|
|
loadFirstClient
|
2016-07-01 16:03:53 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
mongoose.model('OAuthClient', OAuthClientSchema)
|
|
|
|
|
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
|
|
|
|
function list (callback) {
|
|
|
|
return this.find(callback)
|
|
|
|
}
|
|
|
|
|
|
|
|
function loadFirstClient (callback) {
|
|
|
|
return this.findOne({}, callback)
|
|
|
|
}
|
|
|
|
|
2016-07-20 16:23:58 +02:00
|
|
|
function getByIdAndSecret (id, clientSecret) {
|
2016-07-27 21:15:07 +02:00
|
|
|
return this.findOne({ _id: id, clientSecret: clientSecret }).exec()
|
2016-07-01 16:03:53 +02:00
|
|
|
}
|