589b2db06c
This sets up all the basics for importing Phabricator tasks into GitLab issues. To import all tasks from a Phabricator instance into GitLab, we'll import all of them into a new project that will have its repository disabled. The import is hooked into a regular ProjectImport setup, but similar to the GitHub parallel importer takes care of all the imports itself. In this iteration, we're importing each page of tasks in a separate sidekiq job. The first thing we do when requesting a new page of tasks is schedule the next page to be imported. But to avoid deadlocks, we only allow a single job per worker type to run at the same time. For now we're only importing basic Issue information, this should be extended to richer information.
72 lines
1.8 KiB
Ruby
72 lines
1.8 KiB
Ruby
# Alias import callbacks under the /users/auth endpoint so that
|
|
# the OAuth2 callback URL can be restricted under http://example.com/users/auth
|
|
# instead of http://example.com.
|
|
Devise.omniauth_providers.map(&:downcase).each do |provider|
|
|
next if provider == 'ldapmain'
|
|
|
|
get "/users/auth/-/import/#{provider}/callback", to: "import/#{provider}#callback", as: "users_import_#{provider}_callback"
|
|
end
|
|
|
|
namespace :import do
|
|
resource :github, only: [:create, :new], controller: :github do
|
|
post :personal_access_token
|
|
get :status
|
|
get :callback
|
|
get :realtime_changes
|
|
end
|
|
|
|
resource :gitea, only: [:create, :new], controller: :gitea do
|
|
post :personal_access_token
|
|
get :status
|
|
get :realtime_changes
|
|
end
|
|
|
|
resource :gitlab, only: [:create], controller: :gitlab do
|
|
get :status
|
|
get :callback
|
|
get :jobs
|
|
end
|
|
|
|
resource :bitbucket, only: [:create], controller: :bitbucket do
|
|
get :status
|
|
get :callback
|
|
get :jobs
|
|
end
|
|
|
|
resource :bitbucket_server, only: [:create, :new], controller: :bitbucket_server do
|
|
post :configure
|
|
get :status
|
|
get :callback
|
|
get :jobs
|
|
end
|
|
|
|
resource :google_code, only: [:create, :new], controller: :google_code do
|
|
get :status
|
|
post :callback
|
|
get :jobs
|
|
|
|
get :new_user_map, path: :user_map
|
|
post :create_user_map, path: :user_map
|
|
end
|
|
|
|
resource :fogbugz, only: [:create, :new], controller: :fogbugz do
|
|
get :status
|
|
post :callback
|
|
get :jobs
|
|
|
|
get :new_user_map, path: :user_map
|
|
post :create_user_map, path: :user_map
|
|
end
|
|
|
|
resource :gitlab_project, only: [:create, :new] do
|
|
post :create
|
|
end
|
|
|
|
resource :manifest, only: [:create, :new], controller: :manifest do
|
|
get :status
|
|
get :jobs
|
|
post :upload
|
|
end
|
|
|
|
resource :phabricator, only: [:create, :new], controller: :phabricator
|
|
end
|