summaryrefslogtreecommitdiff
path: root/app/controllers/groups/group_links_controller.rb
blob: 7965311c5f1d7a66912bfe86242b6774db4fced6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
# frozen_string_literal: true

class Groups::GroupLinksController < Groups::ApplicationController
  before_action :check_feature_flag!
  before_action :authorize_admin_group!

  def create
    shared_with_group = Group.find(params[:shared_with_group_id]) if params[:shared_with_group_id].present?

    if shared_with_group
      result = Groups::GroupLinks::CreateService
                 .new(shared_with_group, current_user, group_link_create_params)
                 .execute(group)

      return render_404 if result[:http_status] == 404

      flash[:alert] = result[:message] if result[:status] == :error
    else
      flash[:alert] = _('Please select a group.')
    end

    redirect_to group_group_members_path(group)
  end

  private

  def group_link_create_params
    params.permit(:shared_group_access, :expires_at)
  end

  def check_feature_flag!
    render_404 unless Feature.enabled?(:share_group_with_group)
  end
end