2015-01-27 18:37:19 -05:00
|
|
|
module Gitlab
|
|
|
|
module GitlabImport
|
|
|
|
class Client
|
|
|
|
attr_reader :client, :api
|
|
|
|
|
|
|
|
PER_PAGE = 100
|
|
|
|
|
|
|
|
def initialize(access_token)
|
|
|
|
@client = ::OAuth2::Client.new(
|
|
|
|
config.app_id,
|
|
|
|
config.app_secret,
|
2015-02-17 10:59:50 -05:00
|
|
|
gitlab_options
|
2015-01-27 18:37:19 -05:00
|
|
|
)
|
|
|
|
|
|
|
|
if access_token
|
2015-02-02 20:01:07 -05:00
|
|
|
@api = OAuth2::AccessToken.from_hash(@client, access_token: access_token)
|
2015-01-27 18:37:19 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def authorize_url(redirect_uri)
|
|
|
|
client.auth_code.authorize_url({
|
|
|
|
redirect_uri: redirect_uri,
|
|
|
|
scope: "api"
|
|
|
|
})
|
|
|
|
end
|
|
|
|
|
|
|
|
def get_token(code, redirect_uri)
|
|
|
|
client.auth_code.get_token(code, redirect_uri: redirect_uri).token
|
|
|
|
end
|
|
|
|
|
2015-03-31 10:34:13 -04:00
|
|
|
def user
|
|
|
|
api.get("/api/v3/user").parsed
|
|
|
|
end
|
|
|
|
|
2015-01-27 18:37:19 -05:00
|
|
|
def issues(project_identifier)
|
|
|
|
lazy_page_iterator(PER_PAGE) do |page|
|
|
|
|
api.get("/api/v3/projects/#{project_identifier}/issues?per_page=#{PER_PAGE}&page=#{page}").parsed
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def issue_comments(project_identifier, issue_id)
|
|
|
|
lazy_page_iterator(PER_PAGE) do |page|
|
|
|
|
api.get("/api/v3/projects/#{project_identifier}/issues/#{issue_id}/notes?per_page=#{PER_PAGE}&page=#{page}").parsed
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def project(id)
|
|
|
|
api.get("/api/v3/projects/#{id}").parsed
|
|
|
|
end
|
|
|
|
|
|
|
|
def projects
|
|
|
|
lazy_page_iterator(PER_PAGE) do |page|
|
|
|
|
api.get("/api/v3/projects?per_page=#{PER_PAGE}&page=#{page}").parsed
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def lazy_page_iterator(per_page)
|
|
|
|
Enumerator.new do |y|
|
|
|
|
page = 1
|
|
|
|
loop do
|
|
|
|
items = yield(page)
|
|
|
|
items.each do |item|
|
|
|
|
y << item
|
|
|
|
end
|
|
|
|
break if items.empty? || items.size < per_page
|
|
|
|
page += 1
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def config
|
2015-02-02 20:01:07 -05:00
|
|
|
Gitlab.config.omniauth.providers.find{|provider| provider.name == "gitlab"}
|
2015-01-27 18:37:19 -05:00
|
|
|
end
|
|
|
|
|
2015-02-17 10:59:50 -05:00
|
|
|
def gitlab_options
|
2015-11-30 09:12:31 -05:00
|
|
|
OmniAuth::Strategies::GitLab.default_options[:client_options].to_h.symbolize_keys
|
2015-01-27 18:37:19 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|