You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
87 lines
2.6 KiB
87 lines
2.6 KiB
2 years ago
|
class MergeRequestsController < ApplicationController
|
||
|
before_action :find_resource, only: %i[update organisations update_organisations remove_merging_organisation]
|
||
|
before_action :authenticate_user!
|
||
|
before_action :authenticate_scope!, except: [:create]
|
||
|
|
||
|
def create
|
||
|
ActiveRecord::Base.transaction do
|
||
|
@merge_request = MergeRequest.create!(merge_request_params.merge(status: :unsubmitted))
|
||
|
MergeRequestOrganisation.create!({ merge_request: @merge_request, merging_organisation: @merge_request.requesting_organisation })
|
||
|
end
|
||
|
redirect_to organisations_merge_request_path(@merge_request)
|
||
|
rescue ActiveRecord::RecordInvalid
|
||
|
render_not_found
|
||
|
end
|
||
|
|
||
|
def organisations
|
||
|
@answer_options = organisations_answer_options
|
||
|
end
|
||
|
|
||
|
def update
|
||
|
if @merge_request.update(merge_request_params)
|
||
|
redirect_to next_page_path
|
||
|
else
|
||
|
render previous_template, status: :unprocessable_entity
|
||
|
end
|
||
|
end
|
||
|
|
||
|
def update_organisations
|
||
|
merge_request_organisation = MergeRequestOrganisation.new(merge_request_organisation_params)
|
||
|
@answer_options = organisations_answer_options
|
||
|
if merge_request_organisation.save
|
||
|
render :organisations
|
||
|
else
|
||
|
render :organisations, status: :unprocessable_entity
|
||
|
end
|
||
|
end
|
||
|
|
||
|
def remove_merging_organisation
|
||
|
MergeRequestOrganisation.find_by(merge_request_organisation_params)&.destroy!
|
||
|
@answer_options = organisations_answer_options
|
||
|
render :organisations
|
||
|
end
|
||
|
|
||
|
private
|
||
|
|
||
|
def organisations_answer_options
|
||
|
answer_options = { "" => "Select an option" }
|
||
|
|
||
|
Organisation.all.pluck(:id, :name).each do |organisation|
|
||
|
answer_options[organisation[0]] = organisation[1]
|
||
|
end
|
||
|
answer_options
|
||
|
end
|
||
|
|
||
|
def merge_request_params
|
||
|
merge_params = params.fetch(:merge_request, {}).permit(:requesting_organisation_id, :other_merging_organisations, :status)
|
||
|
|
||
|
if merge_params[:requesting_organisation_id].present? && (current_user.data_coordinator? || current_user.data_provider?)
|
||
|
merge_params[:requesting_organisation_id] = current_user.organisation.id
|
||
|
end
|
||
|
|
||
|
merge_params
|
||
|
end
|
||
|
|
||
|
def merge_request_organisation_params
|
||
|
{ merge_request: @merge_request, merging_organisation_id: params[:merge_request][:merging_organisation] }
|
||
|
end
|
||
|
|
||
|
def find_resource
|
||
|
@merge_request = MergeRequest.find(params[:id])
|
||
|
end
|
||
|
|
||
|
def next_page_path
|
||
|
absorbing_organisation_merge_request_path(@merge_request)
|
||
|
end
|
||
|
|
||
|
def previous_template
|
||
|
:organisations
|
||
|
end
|
||
|
|
||
|
def authenticate_scope!
|
||
|
if current_user.organisation != @merge_request.requesting_organisation && !current_user.support?
|
||
|
render_not_found
|
||
|
end
|
||
|
end
|
||
|
end
|