2020-02-09 10:37:21 +00:00
|
|
|
const Model = require('flitter-orm/src/model/Model')
|
|
|
|
const uuid = require('uuid/v4')
|
|
|
|
|
|
|
|
/*
|
|
|
|
* FileGroup Model
|
|
|
|
* -------------------------------------------------------------
|
|
|
|
* Put some description here!
|
|
|
|
*/
|
|
|
|
class FileGroup extends Model {
|
|
|
|
static get schema() {
|
|
|
|
// Return a flitter-orm schema here.
|
|
|
|
return {
|
|
|
|
NodeId: String,
|
|
|
|
PageId: String,
|
|
|
|
FileIds: [String],
|
|
|
|
UUID: {type: String, default: () => uuid()}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
accessible_by(user, mode = 'view') {
|
|
|
|
return user.can(`files:${this.UUID}:${mode}`)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Static and instance methods can go here
|
2020-10-14 18:59:25 +00:00
|
|
|
get page() {
|
|
|
|
const Page = require('./Page.model')
|
|
|
|
return this.belongs_to_one(Page, 'PageId', 'UUID')
|
|
|
|
}
|
2020-02-09 10:37:21 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
module.exports = exports = FileGroup
|