2015-02-17 10:59:50 -05:00
|
|
|
module Gitlab
|
|
|
|
module BitbucketImport
|
|
|
|
class Importer
|
|
|
|
attr_reader :project, :client
|
|
|
|
|
|
|
|
def initialize(project)
|
|
|
|
@project = project
|
2015-08-07 03:06:20 -04:00
|
|
|
import_data = project.import_data.try(:data)
|
|
|
|
bb_session = import_data["bb_session"] if import_data
|
|
|
|
@client = Client.new(bb_session["bitbucket_access_token"],
|
|
|
|
bb_session["bitbucket_access_token_secret"])
|
2015-02-17 10:59:50 -05:00
|
|
|
@formatter = Gitlab::ImportFormatter.new
|
|
|
|
end
|
|
|
|
|
|
|
|
def execute
|
|
|
|
project_identifier = project.import_source
|
|
|
|
|
|
|
|
return true unless client.project(project_identifier)["has_issues"]
|
|
|
|
|
|
|
|
#Issues && Comments
|
|
|
|
issues = client.issues(project_identifier)
|
2015-08-07 03:06:20 -04:00
|
|
|
|
2015-08-31 20:03:09 -04:00
|
|
|
issues.each do |issue|
|
|
|
|
body = ''
|
|
|
|
reporter = nil
|
|
|
|
author = 'Anonymous'
|
|
|
|
|
|
|
|
if issue["reported_by"] && issue["reported_by"]["username"]
|
|
|
|
reporter = issue["reported_by"]["username"]
|
|
|
|
author = reporter
|
|
|
|
end
|
|
|
|
|
|
|
|
body = @formatter.author_line(author)
|
|
|
|
body += issue["content"]
|
2015-08-07 03:06:20 -04:00
|
|
|
|
2015-02-17 10:59:50 -05:00
|
|
|
comments = client.issue_comments(project_identifier, issue["local_id"])
|
2015-08-07 03:06:20 -04:00
|
|
|
|
2015-02-17 10:59:50 -05:00
|
|
|
if comments.any?
|
|
|
|
body += @formatter.comments_header
|
|
|
|
end
|
|
|
|
|
|
|
|
comments.each do |comment|
|
2015-08-31 20:03:09 -04:00
|
|
|
author = 'Anonymous'
|
|
|
|
|
|
|
|
if comment["author_info"] && comment["author_info"]["username"]
|
|
|
|
author = comment["author_info"]["username"]
|
|
|
|
end
|
|
|
|
|
|
|
|
body += @formatter.comment(author, comment["utc_created_on"], comment["content"])
|
2015-02-17 10:59:50 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
project.issues.create!(
|
2015-08-07 03:06:20 -04:00
|
|
|
description: body,
|
2015-02-17 10:59:50 -05:00
|
|
|
title: issue["title"],
|
|
|
|
state: %w(resolved invalid duplicate wontfix).include?(issue["status"]) ? 'closed' : 'opened',
|
2015-08-31 20:03:09 -04:00
|
|
|
author_id: gl_user_id(project, reporter)
|
2015-02-17 10:59:50 -05:00
|
|
|
)
|
|
|
|
end
|
2015-08-07 03:06:20 -04:00
|
|
|
|
2015-02-17 10:59:50 -05:00
|
|
|
true
|
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def gl_user_id(project, bitbucket_id)
|
2015-08-31 20:03:09 -04:00
|
|
|
if bitbucket_id
|
|
|
|
user = User.joins(:identities).find_by("identities.extern_uid = ? AND identities.provider = 'bitbucket'", bitbucket_id.to_s)
|
|
|
|
(user && user.id) || project.creator_id
|
|
|
|
else
|
|
|
|
project.creator_id
|
|
|
|
end
|
|
|
|
end
|
2015-02-17 10:59:50 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|