gitlab-org--gitlab-foss/app/controllers/projects/group_links_controller.rb

64 lines
1.7 KiB
Ruby

# frozen_string_literal: true
class Projects::GroupLinksController < Projects::ApplicationController
layout 'project_settings'
before_action :authorize_admin_project!
before_action :authorize_admin_project_member!, only: [:update]
feature_category :subgroups
def create
group = Group.find(params[:link_group_id]) if params[:link_group_id].present?
if group
result = Projects::GroupLinks::CreateService.new(project, current_user, group_link_create_params).execute(group)
return render_404 if result[:http_status] == 404
flash[:alert] = result[:message] if result[:http_status] == 409
else
flash[:alert] = _('Please select a group.')
end
redirect_to project_project_members_path(project)
end
def update
group_link = @project.project_group_links.find(params[:id])
Projects::GroupLinks::UpdateService.new(group_link).execute(group_link_params)
if group_link.expires?
render json: {
expires_in: helpers.distance_of_time_in_words_to_now(group_link.expires_at),
expires_soon: group_link.expires_soon?
}
else
render json: {}
end
end
def destroy
group_link = project.project_group_links.find(params[:id])
::Projects::GroupLinks::DestroyService.new(project, current_user).execute(group_link)
respond_to do |format|
format.html do
redirect_to project_project_members_path(project), status: :found
end
format.js { head :ok }
end
end
protected
def group_link_params
params.require(:group_link).permit(:group_access, :expires_at)
end
def group_link_create_params
params.permit(:link_group_access, :expires_at)
end
end
Projects::GroupLinksController.prepend_mod_with('Projects::GroupLinksController')