2018-12-05 23:21:45 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2016-06-02 11:05:42 +05:30
|
|
|
class Projects::GroupLinksController < Projects::ApplicationController
|
|
|
|
layout 'project_settings'
|
|
|
|
before_action :authorize_admin_project!
|
2016-11-03 12:29:30 +05:30
|
|
|
before_action :authorize_admin_project_member!, only: [:update]
|
2016-06-02 11:05:42 +05:30
|
|
|
|
|
|
|
def index
|
2017-08-17 22:00:37 +05:30
|
|
|
redirect_to namespace_project_settings_members_path
|
2016-06-02 11:05:42 +05:30
|
|
|
end
|
|
|
|
|
|
|
|
def create
|
2016-11-03 12:29:30 +05:30
|
|
|
group = Group.find(params[:link_group_id]) if params[:link_group_id].present?
|
|
|
|
|
|
|
|
if group
|
2019-03-13 22:55:13 +05:30
|
|
|
result = Projects::GroupLinks::CreateService.new(project, current_user, group_link_create_params).execute(group)
|
|
|
|
return render_404 if result[:http_status] == 404
|
2016-06-02 11:05:42 +05:30
|
|
|
|
2019-03-13 22:55:13 +05:30
|
|
|
flash[:alert] = result[:message] if result[:http_status] == 409
|
2016-11-03 12:29:30 +05:30
|
|
|
else
|
|
|
|
flash[:alert] = 'Please select a group.'
|
|
|
|
end
|
2016-06-02 11:05:42 +05:30
|
|
|
|
2017-09-10 17:25:29 +05:30
|
|
|
redirect_to project_project_members_path(project)
|
2016-06-02 11:05:42 +05:30
|
|
|
end
|
|
|
|
|
2016-11-03 12:29:30 +05:30
|
|
|
def update
|
|
|
|
@group_link = @project.project_group_links.find(params[:id])
|
|
|
|
|
2018-11-18 11:00:15 +05:30
|
|
|
@group_link.update(group_link_params)
|
2016-11-03 12:29:30 +05:30
|
|
|
end
|
|
|
|
|
2016-06-02 11:05:42 +05:30
|
|
|
def destroy
|
2018-03-17 18:26:18 +05:30
|
|
|
group_link = project.project_group_links.find(params[:id])
|
|
|
|
|
|
|
|
::Projects::GroupLinks::DestroyService.new(project, current_user).execute(group_link)
|
2016-06-02 11:05:42 +05:30
|
|
|
|
2016-11-03 12:29:30 +05:30
|
|
|
respond_to do |format|
|
|
|
|
format.html do
|
2018-11-18 11:00:15 +05:30
|
|
|
redirect_to project_project_members_path(project), status: :found
|
2016-11-03 12:29:30 +05:30
|
|
|
end
|
|
|
|
format.js { head :ok }
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
protected
|
|
|
|
|
|
|
|
def group_link_params
|
|
|
|
params.require(:group_link).permit(:group_access, :expires_at)
|
2016-06-02 11:05:42 +05:30
|
|
|
end
|
2018-03-17 18:26:18 +05:30
|
|
|
|
|
|
|
def group_link_create_params
|
|
|
|
params.permit(:link_group_access, :expires_at)
|
|
|
|
end
|
2016-06-02 11:05:42 +05:30
|
|
|
end
|