Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Tatuya Kamada
gitlab-ce
Commits
317b0209
Commit
317b0209
authored
Aug 22, 2016
by
Douglas Barbosa Alexandre
Committed by
Stan Hu
Nov 21, 2016
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Refactoring Bitbucket importer to use the new OAuth2 client
parent
3c756b83
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
33 additions
and
41 deletions
+33
-41
lib/gitlab/bitbucket_import/importer.rb
lib/gitlab/bitbucket_import/importer.rb
+33
-41
No files found.
lib/gitlab/bitbucket_import/importer.rb
View file @
317b0209
...
...
@@ -5,18 +5,14 @@ module Gitlab
def
initialize
(
project
)
@project
=
project
@client
=
Client
.
from_project
(
@project
)
@client
=
Bitbucket
::
Client
.
new
(
project
.
import_data
.
credentials
)
@formatter
=
Gitlab
::
ImportFormatter
.
new
end
def
execute
import_issues
if
has_issues?
import_issues
true
rescue
ActiveRecord
::
RecordInvalid
=>
e
raise
Projects
::
ImportService
::
Error
.
new
,
e
.
message
ensure
Gitlab
::
BitbucketImport
::
KeyDeleter
.
new
(
project
).
execute
end
private
...
...
@@ -30,44 +26,40 @@ module Gitlab
end
end
def
identifier
project
.
import_source
end
def
has_issues?
client
.
project
(
identifier
)[
"has_issues"
]
def
repo
@repo
||=
client
.
repo
(
project
.
import_source
)
end
def
import_issues
issues
=
client
.
issues
(
identifier
)
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"
]
comments
=
client
.
issue_comments
(
identifier
,
issue
[
"local_id"
])
if
comments
.
any?
body
+=
@formatter
.
comments_header
end
comments
.
each
do
|
comment
|
author
=
'Anonymous'
return
unless
repo
.
has_issues?
client
.
issues
(
repo
).
each
do
|
issue
|
description
=
@formatter
.
author_line
(
issue
.
author
)
description
+=
issue
.
description
issue
=
project
.
issues
.
create
(
iid:
issue
.
iid
,
title:
issue
.
title
,
description:
description
,
state:
issue
.
state
,
author_id:
gl_user_id
(
project
,
issue
.
author
),
created_at:
issue
.
created_at
,
updated_at:
issue
.
updated_at
)
if
comment
[
"author_info"
]
&&
comment
[
"author_info"
][
"username"
]
author
=
comment
[
"author_info"
][
"username"
]
if
issue
.
persisted?
client
.
issue_comments
(
repo
,
issue
.
iid
).
each
do
|
comment
|
note
=
@formatter
.
author_line
(
comment
.
author
)
note
+=
comment
.
note
issue
.
notes
.
create!
(
project:
project
,
note:
note
,
author_id:
gl_user_id
(
project
,
comment
.
author
),
created_at:
comment
.
created_at
,
updated_at:
comment
.
updated_at
)
end
body
+=
@formatter
.
comment
(
author
,
comment
[
"utc_created_on"
],
comment
[
"content"
])
end
project
.
issues
.
create!
(
...
...
@@ -77,8 +69,8 @@ module Gitlab
author_id:
gitlab_user_id
(
project
,
reporter
)
)
end
rescue
ActiveRecord
::
RecordInvalid
=>
e
raise
Projects
::
ImportService
::
Error
,
e
.
message
rescue
ActiveRecord
::
RecordInvalid
nil
end
end
end
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment