debian-mirror-gitlab/lib/gitlab/zentao/client.rb

77 lines
1.8 KiB
Ruby
Raw Normal View History

2021-11-11 11:23:49 +05:30
# frozen_string_literal: true
module Gitlab
module Zentao
class Client
Error = Class.new(StandardError)
ConfigError = Class.new(Error)
attr_reader :integration
def initialize(integration)
raise ConfigError, 'Please check your integration configuration.' unless integration
@integration = integration
end
def ping
2021-12-11 22:18:48 +05:30
response = fetch_product(zentao_product_xid) rescue {}
active = response['deleted'] == '0'
2021-11-11 11:23:49 +05:30
if active
{ success: true }
else
{ success: false, message: 'Not Found' }
end
end
def fetch_product(product_id)
get("products/#{product_id}")
end
def fetch_issues(params = {})
2021-12-11 22:18:48 +05:30
get("products/#{zentao_product_xid}/issues", params)
2021-11-11 11:23:49 +05:30
end
def fetch_issue(issue_id)
2021-12-11 22:18:48 +05:30
raise Gitlab::Zentao::Client::Error, 'invalid issue id' unless issue_id_pattern.match(issue_id)
2021-11-11 11:23:49 +05:30
get("issues/#{issue_id}")
end
private
2021-12-11 22:18:48 +05:30
def issue_id_pattern
/\A\S+-\d+\z/
end
2021-11-11 11:23:49 +05:30
def get(path, params = {})
options = { headers: headers, query: params }
response = Gitlab::HTTP.get(url(path), options)
2021-12-11 22:18:48 +05:30
raise Gitlab::Zentao::Client::Error, 'request error' unless response.success?
2021-11-11 11:23:49 +05:30
Gitlab::Json.parse(response.body)
rescue JSON::ParserError
2021-12-11 22:18:48 +05:30
raise Gitlab::Zentao::Client::Error, 'invalid response format'
2021-11-11 11:23:49 +05:30
end
def url(path)
host = integration.api_url.presence || integration.url
2022-07-16 23:28:13 +05:30
URI.parse(Gitlab::Utils.append_path(host, "api.php/v1/#{path}"))
2021-11-11 11:23:49 +05:30
end
def headers
{
'Content-Type': 'application/json',
'Token': integration.api_token
}
end
def zentao_product_xid
integration.zentao_product_xid
end
end
end
end