trabajo-afectivo/app/controllers/integration/idoit_controller.rb

52 lines
1.3 KiB
Ruby
Raw Normal View History

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])
access!(ticket, 'read')
ticket.preferences[:idoit] ||= {}
ticket.preferences[:idoit][:object_ids] = Array(params[:object_ids]).uniq
2017-09-06 06:39:02 +00:00
ticket.save!
render json: {
result: 'ok',
}
end
end