summaryrefslogtreecommitdiff
path: root/app/controllers/concerns/multiple_boards_actions.rb
blob: 95a6800f55c944812e740c93a0d91581f8007713 (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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
# frozen_string_literal: true

module MultipleBoardsActions
  include Gitlab::Utils::StrongMemoize
  extend ActiveSupport::Concern

  included do
    include BoardsActions

    before_action :redirect_to_recent_board, only: [:index]
    before_action :authenticate_user!, only: [:recent]
    before_action :authorize_create_board!, only: [:create]
    before_action :authorize_admin_board!, only: [:create, :update, :destroy]
  end

  def recent
    recent_visits = ::Boards::VisitsFinder.new(parent, current_user).latest(4)
    recent_boards = recent_visits.map(&:board)

    render json: serialize_as_json(recent_boards)
  end

  def create
    board = Boards::CreateService.new(parent, current_user, board_params).execute

    respond_to do |format|
      format.json do
        if board.persisted?
          extra_json = { board_path: board_path(board) }
          render json: serialize_as_json(board).merge(extra_json)
        else
          render json: board.errors, status: :unprocessable_entity
        end
      end
    end
  end

  def update
    service = Boards::UpdateService.new(parent, current_user, board_params)

    respond_to do |format|
      format.json do
        if service.execute(board)
          extra_json = { board_path: board_path(board) }
          render json: serialize_as_json(board).merge(extra_json)
        else
          render json: board.errors, status: :unprocessable_entity
        end
      end
    end
  end

  def destroy
    service = Boards::DestroyService.new(parent, current_user)
    service.execute(board)

    respond_to do |format|
      format.json { head :ok }
      format.html { redirect_to boards_path, status: :found }
    end
  end

  private

  def redirect_to_recent_board
    return if request.format.json? || !parent.multiple_issue_boards_available? || !latest_visited_board

    redirect_to board_path(latest_visited_board.board)
  end

  def latest_visited_board
    @latest_visited_board ||= Boards::VisitsFinder.new(parent, current_user).latest
  end

  def authorize_create_board!
    check_multiple_group_issue_boards_available! if group?
  end

  def authorize_admin_board!
    return render_404 unless can?(current_user, :admin_board, parent)
  end

  def serializer
    BoardSerializer.new(current_user: current_user)
  end

  def serialize_as_json(resource)
    serializer.represent(resource, serializer: 'board', include_full_project_path: board.group_board?)
  end
end