mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-11-28 22:43:30 +03:00
53 lines
1.4 KiB
JavaScript
53 lines
1.4 KiB
JavaScript
|
var ghostBookshelf = require('./base'),
|
||
|
User = require('./user'),
|
||
|
Client = require('./client'),
|
||
|
|
||
|
Accesstoken,
|
||
|
Accesstokens;
|
||
|
|
||
|
Accesstoken = ghostBookshelf.Model.extend({
|
||
|
|
||
|
tableName: 'accesstokens',
|
||
|
|
||
|
user: function () {
|
||
|
return this.belongsTo(User);
|
||
|
},
|
||
|
|
||
|
client: function () {
|
||
|
return this.belongsTo(Client);
|
||
|
},
|
||
|
|
||
|
// override for base function since we don't have
|
||
|
// a created_by field for sessions
|
||
|
creating: function (newObj, attr, options) {
|
||
|
/*jshint unused:false*/
|
||
|
},
|
||
|
|
||
|
// override for base function since we don't have
|
||
|
// a updated_by field for sessions
|
||
|
saving: function (newObj, attr, options) {
|
||
|
/*jshint unused:false*/
|
||
|
// Remove any properties which don't belong on the model
|
||
|
this.attributes = this.pick(this.permittedAttributes());
|
||
|
}
|
||
|
|
||
|
}, {
|
||
|
destroyAllExpired: function (options) {
|
||
|
options = this.filterOptions(options, 'destroyAll');
|
||
|
return ghostBookshelf.Collection.forge([], {model: this})
|
||
|
.query('where', 'expires', '<', Date.now())
|
||
|
.fetch()
|
||
|
.then(function (collection) {
|
||
|
collection.invokeThen('destroy', options);
|
||
|
});
|
||
|
}
|
||
|
});
|
||
|
|
||
|
Accesstokens = ghostBookshelf.Collection.extend({
|
||
|
model: Accesstoken
|
||
|
});
|
||
|
|
||
|
module.exports = {
|
||
|
Accesstoken: Accesstoken,
|
||
|
Accesstokens: Accesstokens
|
||
|
};
|