2021-02-03 16:09:17 -05:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2019-01-22 12:38:08 -05:00
|
|
|
# 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.
|
2019-02-01 16:18:41 -05:00
|
|
|
Devise.omniauth_providers.map(&:downcase).each do |provider|
|
2019-01-22 12:38:08 -05:00
|
|
|
next if provider == 'ldapmain'
|
|
|
|
|
|
|
|
get "/users/auth/-/import/#{provider}/callback", to: "import/#{provider}#callback", as: "users_import_#{provider}_callback"
|
|
|
|
end
|
|
|
|
|
2016-10-05 08:21:27 -04:00
|
|
|
namespace :import do
|
2020-08-07 17:10:07 -04:00
|
|
|
resources :available_namespaces, only: [:index], controller: :available_namespaces
|
|
|
|
|
2016-10-05 08:21:27 -04:00
|
|
|
resource :github, only: [:create, :new], controller: :github do
|
|
|
|
post :personal_access_token
|
|
|
|
get :status
|
|
|
|
get :callback
|
2018-11-07 11:44:21 -05:00
|
|
|
get :realtime_changes
|
2016-10-05 08:21:27 -04:00
|
|
|
end
|
|
|
|
|
2016-12-15 11:31:14 -05:00
|
|
|
resource :gitea, only: [:create, :new], controller: :gitea do
|
2016-10-17 11:58:57 -04:00
|
|
|
post :personal_access_token
|
|
|
|
get :status
|
2018-11-07 11:44:21 -05:00
|
|
|
get :realtime_changes
|
2016-10-17 11:58:57 -04:00
|
|
|
end
|
|
|
|
|
2016-10-05 08:21:27 -04:00
|
|
|
resource :gitlab, only: [:create], controller: :gitlab do
|
|
|
|
get :status
|
|
|
|
get :callback
|
2020-06-15 11:08:20 -04:00
|
|
|
get :realtime_changes
|
2016-10-05 08:21:27 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
resource :bitbucket, only: [:create], controller: :bitbucket do
|
|
|
|
get :status
|
|
|
|
get :callback
|
2020-06-15 11:08:20 -04:00
|
|
|
get :realtime_changes
|
2016-10-05 08:21:27 -04:00
|
|
|
end
|
|
|
|
|
2018-06-25 16:06:10 -04:00
|
|
|
resource :bitbucket_server, only: [:create, :new], controller: :bitbucket_server do
|
|
|
|
post :configure
|
|
|
|
get :status
|
|
|
|
get :callback
|
2020-06-15 11:08:20 -04:00
|
|
|
get :realtime_changes
|
2018-06-25 16:06:10 -04:00
|
|
|
end
|
|
|
|
|
2016-10-05 08:21:27 -04:00
|
|
|
resource :fogbugz, only: [:create, :new], controller: :fogbugz do
|
|
|
|
get :status
|
|
|
|
post :callback
|
2020-06-15 11:08:20 -04:00
|
|
|
get :realtime_changes
|
2016-10-05 08:21:27 -04:00
|
|
|
|
|
|
|
get :new_user_map, path: :user_map
|
|
|
|
post :create_user_map, path: :user_map
|
|
|
|
end
|
|
|
|
|
|
|
|
resource :gitlab_project, only: [:create, :new] do
|
|
|
|
post :create
|
2020-03-10 14:08:17 -04:00
|
|
|
post :authorize
|
2016-10-05 08:21:27 -04:00
|
|
|
end
|
2018-07-02 05:16:24 -04:00
|
|
|
|
2020-05-21 05:08:04 -04:00
|
|
|
resource :gitlab_group, only: [:create] do
|
|
|
|
post :authorize
|
|
|
|
end
|
|
|
|
|
2020-10-23 11:08:42 -04:00
|
|
|
resource :bulk_imports, only: [:create] do
|
2020-09-29 14:09:52 -04:00
|
|
|
post :configure
|
|
|
|
get :status
|
2021-01-11 13:10:43 -05:00
|
|
|
get :realtime_changes
|
2020-09-29 14:09:52 -04:00
|
|
|
end
|
|
|
|
|
2018-07-02 05:16:24 -04:00
|
|
|
resource :manifest, only: [:create, :new], controller: :manifest do
|
|
|
|
get :status
|
2020-08-18 20:10:34 -04:00
|
|
|
get :realtime_changes
|
2018-07-02 05:16:24 -04:00
|
|
|
post :upload
|
|
|
|
end
|
2019-04-23 10:27:01 -04:00
|
|
|
|
|
|
|
resource :phabricator, only: [:create, :new], controller: :phabricator
|
2016-10-05 08:21:27 -04:00
|
|
|
end
|