mirror of https://github.com/requarks/wiki
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
43 lines
906 B
43 lines
906 B
import { Model } from 'objection'
|
|
|
|
/**
|
|
* Hook model
|
|
*/
|
|
export class Hook extends Model {
|
|
static get tableName () { return 'hooks' }
|
|
|
|
static get jsonAttributes () {
|
|
return ['events']
|
|
}
|
|
|
|
$beforeUpdate () {
|
|
this.updatedAt = new Date()
|
|
}
|
|
|
|
static async createHook (data) {
|
|
return WIKI.db.hooks.query().insertAndFetch({
|
|
name: data.name,
|
|
events: data.events,
|
|
url: data.url,
|
|
includeMetadata: data.includeMetadata,
|
|
includeContent: data.includeContent,
|
|
acceptUntrusted: data.acceptUntrusted,
|
|
authHeader: data.authHeader,
|
|
state: 'pending',
|
|
lastErrorMessage: null
|
|
})
|
|
}
|
|
|
|
static async updateHook (id, patch) {
|
|
return WIKI.db.hooks.query().findById(id).patch({
|
|
...patch,
|
|
state: 'pending',
|
|
lastErrorMessage: null
|
|
})
|
|
}
|
|
|
|
static async deleteHook (id) {
|
|
return WIKI.db.hooks.query().deleteById(id)
|
|
}
|
|
}
|