blob: 1606cba6495f7606ccc505f065210c9beb64bd2b [file] [log] [blame]
// Licensed to the Apache Software Foundation (ASF) under one or more contributor
// license agreements; and to You under the Apache License, Version 2.0.
'use strict'
const Resources = require('./resources')
const messages = require('./messages')
const names = require('./names')
class Rules extends Resources {
constructor (client) {
super(client)
this.resource = 'rules'
this.identifiers.push('ruleName')
}
list (options) {
options = options || {}
options.qs = this.qs(options, ['skip', 'limit'])
return super.list(options)
}
invoke () {
throw new Error(`Operation (invoke) not supported for rule resource.`)
}
create (options) {
options.qs = this.qs(options, ['overwrite'])
options.body = this.rule_body(options)
return super.create(options)
}
rule_body (options) {
options = options || {}
if (!options.hasOwnProperty('action')) {
throw new Error(messages.MISSING_RULE_ACTION_ERROR)
}
if (!options.hasOwnProperty('trigger')) {
throw new Error(messages.MISSING_RULE_TRIGGER_ERROR)
}
return {action: this.convert_to_fqn(options.action, options.namespace), trigger: this.convert_to_fqn(options.trigger, options.namespace)}
}
enable (options) {
options = options || {}
options.params = { status: 'active' }
return super.invoke(options)
}
disable (options) {
options = options || {}
options.params = { status: 'inactive' }
return super.invoke(options)
}
convert_to_fqn (identifier, namespace) {
if (identifier.startsWith('/')) return identifier
const ns = namespace || this.client.options.namespace || names.default_namespace()
return `/${ns}/${identifier}`
}
}
module.exports = Rules