2018-12-05 23:21:45 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2015-04-26 12:48:37 +05:30
|
|
|
class Projects::ImportsController < Projects::ApplicationController
|
2016-06-02 11:05:42 +05:30
|
|
|
include ContinueParams
|
|
|
|
|
2015-04-26 12:48:37 +05:30
|
|
|
# Authorize
|
2015-09-11 14:41:01 +05:30
|
|
|
before_action :authorize_admin_project!
|
2016-02-05 20:25:01 +05:30
|
|
|
before_action :require_no_repo, only: [:new, :create]
|
|
|
|
before_action :redirect_if_progress, only: [:new, :create]
|
2016-04-02 18:10:28 +05:30
|
|
|
before_action :redirect_if_no_import, only: :show
|
2015-04-26 12:48:37 +05:30
|
|
|
|
|
|
|
def new
|
|
|
|
end
|
|
|
|
|
|
|
|
def create
|
2019-02-15 15:39:39 +05:30
|
|
|
if @project.update(import_params)
|
|
|
|
@project.import_state.reload.schedule
|
2015-04-26 12:48:37 +05:30
|
|
|
end
|
|
|
|
|
2017-09-10 17:25:29 +05:30
|
|
|
redirect_to project_import_path(@project)
|
2015-04-26 12:48:37 +05:30
|
|
|
end
|
|
|
|
|
|
|
|
def show
|
2016-02-05 20:25:01 +05:30
|
|
|
if @project.import_finished?
|
2019-02-15 15:39:39 +05:30
|
|
|
if continue_params&.key?(:to)
|
2016-01-14 18:37:52 +05:30
|
|
|
redirect_to continue_params[:to], notice: continue_params[:notice]
|
2015-04-26 12:48:37 +05:30
|
|
|
else
|
2017-09-10 17:25:29 +05:30
|
|
|
redirect_to project_path(@project), notice: finished_notice
|
2015-04-26 12:48:37 +05:30
|
|
|
end
|
2016-01-14 18:37:52 +05:30
|
|
|
elsif @project.import_failed?
|
2017-09-10 17:25:29 +05:30
|
|
|
redirect_to new_project_import_path(@project)
|
2016-01-14 18:37:52 +05:30
|
|
|
else
|
|
|
|
if continue_params && continue_params[:notice_now]
|
|
|
|
flash.now[:notice] = continue_params[:notice_now]
|
|
|
|
end
|
2016-02-05 20:25:01 +05:30
|
|
|
|
2016-01-14 18:37:52 +05:30
|
|
|
# Render
|
2015-04-26 12:48:37 +05:30
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
2016-02-05 20:25:01 +05:30
|
|
|
def finished_notice
|
|
|
|
if @project.forked?
|
2019-05-30 16:15:17 +05:30
|
|
|
'The project was successfully forked.'
|
2016-02-05 20:25:01 +05:30
|
|
|
else
|
2019-05-30 16:15:17 +05:30
|
|
|
'The project was successfully imported.'
|
2016-02-05 20:25:01 +05:30
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2015-04-26 12:48:37 +05:30
|
|
|
def require_no_repo
|
2016-02-05 20:25:01 +05:30
|
|
|
if @project.repository_exists?
|
2017-09-10 17:25:29 +05:30
|
|
|
redirect_to project_path(@project)
|
2015-04-26 12:48:37 +05:30
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def redirect_if_progress
|
|
|
|
if @project.import_in_progress?
|
2017-09-10 17:25:29 +05:30
|
|
|
redirect_to project_import_path(@project)
|
2016-04-02 18:10:28 +05:30
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def redirect_if_no_import
|
|
|
|
if @project.repository_exists? && @project.no_import?
|
2017-09-10 17:25:29 +05:30
|
|
|
redirect_to project_path(@project)
|
2015-04-26 12:48:37 +05:30
|
|
|
end
|
|
|
|
end
|
2019-02-15 15:39:39 +05:30
|
|
|
|
|
|
|
def import_params_attributes
|
|
|
|
[:import_url]
|
|
|
|
end
|
|
|
|
|
|
|
|
def import_params
|
|
|
|
params.require(:project).permit(import_params_attributes)
|
|
|
|
end
|
2015-04-26 12:48:37 +05:30
|
|
|
end
|