2018-06-13 01:02:41 -04:00
- page_title _('Bitbucket import')
- header_title _('Projects'), root_path
2016-08-22 15:02:48 -04:00
2015-02-17 10:59:50 -05:00
%h3.page-title
%i.fa.fa-bitbucket
2018-06-13 01:02:41 -04:00
= _('Import projects from Bitbucket')
2015-02-17 10:59:50 -05:00
2015-08-07 04:02:01 -04:00
- if @repos.any?
%p.light
2018-06-13 01:02:41 -04:00
= _('Select projects you want to import.')
2015-08-07 04:02:01 -04:00
%hr
%p
- if @incompatible_repos.any?
2016-08-22 15:02:48 -04:00
= button_tag class: 'btn btn-import btn-success js-import-all' do
2018-06-13 01:02:41 -04:00
= _('Import all compatible projects')
2016-08-22 15:02:48 -04:00
= icon('spinner spin', class: 'loading-icon')
2015-08-07 04:02:01 -04:00
- else
2016-11-11 17:44:31 -05:00
= button_tag class: 'btn btn-import btn-success js-import-all' do
2018-06-13 01:02:41 -04:00
= _('Import all projects')
2016-08-22 15:02:48 -04:00
= icon('spinner spin', class: 'loading-icon')
2015-08-07 04:02:01 -04:00
2016-04-11 13:27:34 -04:00
.table-responsive
2015-10-19 05:19:45 -04:00
%table.table.import-jobs
2016-04-11 13:27:34 -04:00
%colgroup.import-jobs-from-col
%colgroup.import-jobs-to-col
%colgroup.import-jobs-status-col
2015-10-19 05:19:45 -04:00
%thead
%tr
2018-06-13 01:02:41 -04:00
%th= _('From Bitbucket')
%th= _('To GitLab')
%th= _('Status')
2015-10-19 05:19:45 -04:00
%tbody
- @already_added_projects.each do |project|
2016-12-26 05:47:16 -05:00
%tr{ id: "project_#{project.id}", class: "#{project_status_css_class(project.import_status)}" }
2015-10-19 05:19:45 -04:00
%td
2017-03-15 17:21:48 -04:00
= link_to project.import_source, "https://bitbucket.org/#{project.import_source}", target: '_blank', rel: 'noopener noreferrer'
2015-10-19 05:19:45 -04:00
%td
2017-07-21 20:37:22 -04:00
= link_to project.full_path, [project.namespace.becomes(Namespace), project]
2015-10-19 05:19:45 -04:00
%td.job-status
2018-11-27 04:41:27 -05:00
- case project.import_status
- when 'finished'
2015-10-19 05:19:45 -04:00
%span
%i.fa.fa-check
2018-06-13 01:02:41 -04:00
= _('done')
2018-11-27 04:41:27 -05:00
- when 'started'
2015-10-19 05:19:45 -04:00
%i.fa.fa-spinner.fa-spin
2018-06-13 01:02:41 -04:00
= _('started')
2015-10-19 05:19:45 -04:00
- else
= project.human_import_status_name
2015-02-17 10:59:50 -05:00
2015-10-19 05:19:45 -04:00
- @repos.each do |repo|
2016-12-26 05:47:16 -05:00
%tr{ id: "repo_#{repo.owner}___#{repo.slug}" }
2015-10-19 05:19:45 -04:00
%td
2017-03-15 17:21:48 -04:00
= link_to repo.full_name, "https://bitbucket.org/#{repo.full_name}", target: '_blank', rel: 'noopener noreferrer'
2015-10-19 05:19:45 -04:00
%td.import-target
2016-11-11 17:44:31 -05:00
%fieldset.row
.input-group
2018-04-12 16:49:37 -04:00
.project-path.input-group-prepend
2018-04-12 18:55:40 -04:00
- if current_user.can_select_namespace?
- selected = params[:namespace_id] || :current_user
- opts = current_user.can_create_group? ? { extra_group: Group.new(name: repo.owner, path: repo.owner) } : {}
= select_tag :namespace_id, namespaces_options(selected, opts.merge({ display_path: true })), { class: 'input-group-text select2 js-select-namespace', tabindex: 1 }
- else
= text_field_tag :path, current_user.namespace_path, class: "input-group-text input-large form-control", tabindex: 1, disabled: true
2018-04-12 16:32:55 -04:00
%span.input-group-prepend
.input-group-text /
2018-08-23 18:21:06 -04:00
= text_field_tag :path, sanitize_project_name(repo.slug), class: "input-mini form-control", tabindex: 2, autofocus: true, required: true
2015-10-19 05:19:45 -04:00
%td.import-actions.job-status
2016-08-22 15:02:48 -04:00
= button_tag class: 'btn btn-import js-add-to-import' do
2018-06-13 01:02:41 -04:00
= _('Import')
2016-08-22 15:02:48 -04:00
= icon('spinner spin', class: 'loading-icon')
2015-10-19 05:19:45 -04:00
- @incompatible_repos.each do |repo|
2016-12-26 05:47:16 -05:00
%tr{ id: "repo_#{repo.owner}___#{repo.slug}" }
2015-10-19 05:19:45 -04:00
%td
2017-03-15 17:21:48 -04:00
= link_to repo.full_name, "https://bitbucket.org/#{repo.full_name}", target: '_blank', rel: 'noopener noreferrer'
2015-10-19 05:19:45 -04:00
%td.import-target
%td.import-actions-job-status
2018-06-13 01:02:41 -04:00
= label_tag _('Incompatible Project'), nil, class: 'label badge-danger'
2015-08-07 04:02:01 -04:00
- if @incompatible_repos.any?
%p
2018-06-13 01:02:41 -04:00
= _("One or more of your Bitbucket projects cannot be imported into GitLab directly because they use Subversion or Mercurial for version control, rather than Git.")
- link_to_git = link_to(_('Git'), 'https://www.atlassian.com/git/tutorials/migrating-overview')
- link_to_import_flow = link_to(_('import flow'), status_import_bitbucket_path)
= _("Please convert them to %{link_to_git}, and go through the %{link_to_import_flow} again.").html_safe % { link_to_git: link_to_git, link_to_import_flow: link_to_import_flow }
2015-08-07 04:02:01 -04:00
2016-07-15 12:20:29 -04:00
.js-importer-status{ data: { jobs_import_path: "#{jobs_import_bitbucket_path}", import_path: "#{import_bitbucket_path}" } }