2017-09-06 06:39:02 +00:00
|
|
|
# Copyright (C) 2012-2016 Zammad Foundation, http://zammad-foundation.org/
|
|
|
|
|
|
|
|
class Integration::IdoitController < ApplicationController
|
2017-11-23 08:09:44 +00:00
|
|
|
prepend_before_action -> { authentication_check(permission: ['agent.integration.idoit', 'admin.integration.idoit']) }, except: %i[verify query update]
|
2017-09-06 06:39:02 +00:00
|
|
|
prepend_before_action -> { authentication_check(permission: ['admin.integration.idoit']) }, only: [:verify]
|
2017-11-23 08:09:44 +00:00
|
|
|
prepend_before_action -> { authentication_check(permission: ['ticket.agent']) }, only: %i[query update]
|
2017-09-06 06:39:02 +00:00
|
|
|
|
|
|
|
def verify
|
|
|
|
response = ::Idoit.verify(params[:api_token], params[:endpoint], params[:client_id])
|
|
|
|
render json: {
|
|
|
|
result: 'ok',
|
|
|
|
response: response,
|
|
|
|
}
|
|
|
|
rescue => e
|
|
|
|
logger.error e
|
|
|
|
|
|
|
|
render json: {
|
|
|
|
result: 'failed',
|
|
|
|
message: e.message,
|
|
|
|
}
|
|
|
|
end
|
|
|
|
|
|
|
|
def query
|
|
|
|
response = ::Idoit.query(params[:method], params[:filter])
|
|
|
|
render json: {
|
|
|
|
result: 'ok',
|
|
|
|
response: response,
|
|
|
|
}
|
|
|
|
rescue => e
|
|
|
|
logger.error e
|
|
|
|
|
|
|
|
render json: {
|
|
|
|
result: 'failed',
|
|
|
|
message: e.message,
|
|
|
|
}
|
|
|
|
end
|
|
|
|
|
|
|
|
def update
|
|
|
|
params[:object_ids] ||= []
|
|
|
|
ticket = Ticket.find(params[:ticket_id])
|
2018-07-26 14:24:31 +00:00
|
|
|
ticket.with_lock do
|
|
|
|
access!(ticket, 'read')
|
|
|
|
ticket.preferences[:idoit] ||= {}
|
|
|
|
ticket.preferences[:idoit][:object_ids] = Array(params[:object_ids]).uniq
|
|
|
|
ticket.save!
|
|
|
|
end
|
2017-09-06 06:39:02 +00:00
|
|
|
|
|
|
|
render json: {
|
|
|
|
result: 'ok',
|
|
|
|
}
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|