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

55 lines
1.1 KiB
Ruby

# Copyright (C) 2012-2021 Zammad Foundation, http://zammad-foundation.org/
class Integration::GitHubController < ApplicationController
prepend_before_action { authentication_check && authorize! }
def verify
github = ::GitHub.new(params[:endpoint], params[:api_token])
github.verify!
render json: {
result: 'ok',
}
rescue => e
logger.error e
render json: {
result: 'failed',
message: e.message,
}
end
def query
config = Setting.get('github_config')
github = ::GitHub.new(config['endpoint'], config['api_token'])
render json: {
result: 'ok',
response: github.issues_by_urls(params[:links]),
}
rescue => e
logger.error e
render json: {
result: 'failed',
message: e.message,
}
end
def update
ticket = Ticket.find(params[:ticket_id])
ticket.with_lock do
authorize!(ticket, :show?)
ticket.preferences[:github] ||= {}
ticket.preferences[:github][:issue_links] = Array(params[:issue_links]).uniq
ticket.save!
end
render json: {
result: 'ok',
}
end
end