2016-03-11 12:37:46 -05:00
|
|
|
class Projects::GroupLinksController < Projects::ApplicationController
|
|
|
|
layout 'project_settings'
|
|
|
|
before_action :authorize_admin_project!
|
2016-10-04 09:40:03 -04:00
|
|
|
before_action :authorize_admin_project_member!, only: [:update]
|
2016-03-11 12:37:46 -05:00
|
|
|
|
|
|
|
def index
|
2016-12-23 17:29:00 -05:00
|
|
|
redirect_to namespace_project_settings_members_path
|
2016-03-11 12:37:46 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
def create
|
2016-09-01 13:23:39 -04:00
|
|
|
group = Group.find(params[:link_group_id]) if params[:link_group_id].present?
|
|
|
|
|
|
|
|
if group
|
|
|
|
return render_404 unless can?(current_user, :read_group, group)
|
2017-11-14 04:02:39 -05:00
|
|
|
|
2017-11-01 10:08:18 -04:00
|
|
|
Projects::GroupLinks::CreateService.new(project, current_user, group_link_create_params).execute(group)
|
2016-09-01 13:23:39 -04:00
|
|
|
else
|
|
|
|
flash[:alert] = 'Please select a group.'
|
|
|
|
end
|
2016-03-11 12:37:46 -05:00
|
|
|
|
2017-07-07 10:40:41 -04:00
|
|
|
redirect_to project_project_members_path(project)
|
2016-03-11 12:37:46 -05:00
|
|
|
end
|
|
|
|
|
2016-09-01 08:48:20 -04:00
|
|
|
def update
|
|
|
|
@group_link = @project.project_group_links.find(params[:id])
|
|
|
|
|
|
|
|
@group_link.update_attributes(group_link_params)
|
|
|
|
end
|
|
|
|
|
2016-03-11 12:37:46 -05:00
|
|
|
def destroy
|
2017-11-01 10:08:18 -04:00
|
|
|
group_link = project.project_group_links.find(params[:id])
|
|
|
|
|
|
|
|
::Projects::GroupLinks::DestroyService.new(project, current_user).execute(group_link)
|
2016-03-11 12:37:46 -05:00
|
|
|
|
2016-09-06 11:20:20 -04:00
|
|
|
respond_to do |format|
|
|
|
|
format.html do
|
2017-07-07 10:40:41 -04:00
|
|
|
redirect_to project_project_members_path(project), status: 302
|
2016-09-06 11:20:20 -04:00
|
|
|
end
|
|
|
|
format.js { head :ok }
|
|
|
|
end
|
2016-03-11 12:37:46 -05:00
|
|
|
end
|
2016-09-01 08:48:20 -04:00
|
|
|
|
|
|
|
protected
|
|
|
|
|
|
|
|
def group_link_params
|
|
|
|
params.require(:group_link).permit(:group_access, :expires_at)
|
|
|
|
end
|
2017-11-01 10:08:18 -04:00
|
|
|
|
|
|
|
def group_link_create_params
|
|
|
|
params.permit(:link_group_access, :expires_at)
|
|
|
|
end
|
2016-03-11 12:37:46 -05:00
|
|
|
end
|