summaryrefslogtreecommitdiff
path: root/lib/gitlab/bitbucket_import/importer.rb
Commit message (Collapse)AuthorAgeFilesLines
* Use Project#full_name instead of name_with_namespaceDmitriy Zaporozhets2018-03-071-1/+1
| | | | Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
* Fix bitbucket wiki import with hashed storage enabledNick Thomas2017-11-201-2/+2
|
* Move line code generation into Gitlab::Gitconflict-resolution-refactorAlejandro Rodríguez2017-10-121-1/+1
| | | | Having a distinct class just for that was a bit overkill
* Create a Gitlab::Git submodule for conlict-related filesAlejandro Rodríguez2017-10-121-1/+1
| | | | Rename classes to (hopefully) clearer names while we're doing that.
* Move Gitlab::Diff::LineCode to module Gitlab::GitAlejandro Rodríguez2017-10-121-1/+1
|
* Expand truncated Bitbucket pull request source/target SHA if possibleDouwe Maan2017-09-251-2/+7
|
* Rename many path_with_namespace -> full_pathGabriel Mazetto2017-08-011-1/+1
|
* [BB Importer] Save the error trace and the whole raw documentbb_save_traceValery Sizov2017-04-111-2/+2
|
* Labels support color names in backendDongqing Hu2017-03-291-2/+7
|
* Add Wiki import to BB importerValery Sizov2016-12-191-0/+13
|
* Fix import issues methodDouglas Barbosa Alexandre2016-12-161-4/+4
|
* Fix rubucop offensesbitbucket-oauth2Douglas Barbosa Alexandre2016-12-161-27/+27
|
* BB importer: Adressed more review commentsValery Sizov2016-12-161-15/+19
|
* BB importer: address review commentValery Sizov2016-12-161-6/+4
|
* BB importer: Milestone importerValery Sizov2016-12-161-0/+2
|
* BB importer: More advanced error handlingValery Sizov2016-12-141-33/+47
|
* BB importer: Refactoring user importing logic[ci skip]Valery Sizov2016-12-141-10/+10
|
* BB importer: Adding created_by only when used is not found[ci skip]Valery Sizov2016-12-131-6/+17
|
* Fix specsValery Sizov2016-12-091-5/+1
|
* Fix rubocop[ci skip]Valery Sizov2016-12-091-4/+4
|
* BitBucket importer: import issues with labelsValery Sizov2016-12-071-0/+22
|
* BitBucket refactoring. Iteration 3Valery Sizov2016-12-071-3/+3
|
* BitBuckpet importer. Refactoring. Iteration 2Valery Sizov2016-12-071-0/+7
|
* Apply review comments. Iteration 1Valery Sizov2016-12-071-1/+1
|
* Fix importing PRs with not existing branchesValery Sizov2016-12-061-2/+2
|
* Fix inline comment importing for 1:1 diff typeValery Sizov2016-12-051-7/+19
|
* Fix spec for Bitbucket importerStan Hu2016-11-211-3/+3
|
* Fix Bitbucket importer spec to pass with 2.0 APIStan Hu2016-11-211-7/+0
|
* Rubocop fixesStan Hu2016-11-211-1/+1
|
* Import pull request commentsStan Hu2016-11-211-1/+69
|
* Fix typos in pull requests failing to importStan Hu2016-11-211-3/+3
|
* Import opened pull request from BitbucketDouglas Barbosa Alexandre2016-11-211-0/+31
|
* Refactoring Bitbucket importer to use the new OAuth2 clientDouglas Barbosa Alexandre2016-11-211-41/+33
|
* Rename `gl_user_id` to `gitlab_user_id` in importer classesAndrew Smith2016-09-081-2/+2
|
* refactored code based on feedback plus fixed a couple of other issuesJames Lopez2016-03-281-1/+8
|
* first round of fixes and spec fixesJames Lopez2016-03-221-18/+1
|
* update bitbucket importerJames Lopez2016-03-221-5/+12
|
* Fix bug where Bitbucket `closed` issues were imported as `opened`iurisilvio/gitlab-ce-bitbucket_closedIuri de Silvio2016-03-071-1/+1
|
* Wrap errors on GitHub importer to raise Projects::ImportService::ErrorDouglas Barbosa Alexandre2016-01-261-0/+2
|
* Move Gitlab::BitbucketImport::KeyDeleter to it's own importerDouglas Barbosa Alexandre2016-01-261-18/+29
|
* Fix bug where only the first 15 Bitbucket issues would be imported.Stan Hu2015-09-011-7/+27
| | | | Also fix a number of issues where author/reporter names were not available.
* Remove user OAuth tokens stored in database for Bitbucket, GitHub, and GitLabStan Hu2015-08-231-6/+9
| | | | | | | | | | | | | | | | | | | | | | | and request them each session. Pass these tokens to the project import data. This prevents the need to encrypt these tokens and clear them in case they expire or get revoked. For example, if you deleted and re-created OAuth2 keys for Bitbucket, you would get an Error 500 with no way to recover: ``` Started GET "/import/bitbucket/status" for x.x.x.x at 2015-08-07 05:24:10 +0000 Processing by Import::BitbucketController#status as HTML Completed 500 Internal Server Error in 607ms (ActiveRecord: 2.3ms) NameError (uninitialized constant Import::BitbucketController::Unauthorized): app/controllers/import/bitbucket_controller.rb:77:in `rescue in go_to_bitbucket_for_permissions' app/controllers/import/bitbucket_controller.rb:74:in `go_to_bitbucket_for_permissions' app/controllers/import/bitbucket_controller.rb:86:in `bitbucket_unauthorized' ``` Closes #1871
* Add Bitbucket importer.Douwe Maan2015-02-241-0/+52