Codebase list ruby-gitlab / 56aea8b lib / gitlab / client / boards.rb
56aea8b

Tree @56aea8b (Download .tar.gz)

boards.rb @56aea8braw · history · blame

# frozen_string_literal: true

class Gitlab::Client
  # Defines methods related to issue boards.
  # @see https://docs.gitlab.com/ce/api/boards.html
  module Boards
    # Gets a list of project's boards.
    #
    # @example
    #   Gitlab.boards(5)
    #   Gitlab.boards({ per_page: 40 })
    #
    # @param  [Integer, String] project The ID or name of a project.
    # @param  [Hash] options A customizable set of options.
    # @option options [Integer] :page The page number.
    # @option options [Integer] :per_page The number of results per page.
    # @return [Array<Gitlab::ObjectifiedHash>]
    def boards(project, options = {})
      get("/projects/#{url_encode project}/boards", query: options)
    end

    # Get a single board.
    #
    # @example
    #   Gitlab.board(5, 1)
    #
    # @param  [Integer, String] project The ID or name of a project.
    # @param  [Integer] id The ID of a board.
    # @return [Gitlab::ObjectifiedHash] Returns information about the board
    def board(project, id)
      get("/projects/#{url_encode project}/boards/#{id}")
    end

    # Creates a new board.
    #
    # @example
    #   Gitlab.create_board(5, 'newboard')
    #
    # @param  [Integer, String] project The ID or name of a project.
    # @param  [String] name The name of the new board.
    # @return [Gitlab::ObjectifiedHash] Information about created board.
    def create_board(project, name)
      body = { name: name }
      post("/projects/#{url_encode project}/boards", body: body)
    end

    # Updates a board.
    #
    # @example
    #   Gitlab.edit_board(5, 1, name: 'new_name')
    #   Gitlab.edit_board(5, 1, name: 'new_name', assignee_id: 1, milestone_id: 1)
    #
    # @param  [Integer, String] project The ID or name of a project.
    # @param  [Integer] id The ID of a board.
    # @param  [Hash] options A customizable set of options.
    # @option options [String] :name(optional) The new name of the board.
    # @option options [Integer] :assignee_id(optional) The assignee the board should be scoped to.
    # @option options [Integer] :milestone_id(optional) The milestone the board should be scoped to.
    # @option options [String] :labels(optional) Comma-separated list of label names which the board should be scoped to.
    # @option options [Integer] :weight(optional) The weight range from 0 to 9, to which the board should be scoped to.
    # @return [Gitlab::ObjectifiedHash] Information about updated board.
    def edit_board(project, id, options = {})
      put("/projects/#{url_encode project}/boards/#{id}", body: options)
    end

    # Deletes a board.
    #
    # @example
    #   Gitlab.delete_board(5, 1)
    #
    # @param  [Integer, String] project The ID or name of a project.
    # @param  [Integer] id The ID of a board.
    # @return [void] This API call returns an empty response body.
    def delete_board(project, id)
      delete("/projects/#{url_encode project}/boards/#{id}")
    end

    # Gets a board lists
    #
    # @example
    #   Gitlab.board_lists(5, 42)
    #
    # @param  [Integer, String] project The ID or name of a project.
    # @param  [Integer] id The ID of a board.
    # @return [Gitlab::ObjectifiedHash]
    def board_lists(project, id)
      get("/projects/#{url_encode project}/boards/#{id}/lists")
    end

    #
    # Gets a single board list
    #
    # @example
    #   Gitlab.board_list(5, 42, 25)
    #
    # @param  [Integer, String] project The ID or name of a project.
    # @param  [Integer] board_id The ID of a board.
    # @param  [Integer] id The ID of a list.
    # @return [Gitlab::ObjectifiedHash]
    def board_list(project, board_id, id)
      get("/projects/#{url_encode project}/boards/#{board_id}/lists/#{id}")
    end

    # Creates a new board list.
    # Only for admins and project owners
    #
    # @example
    #   Gitlab.create_board_list(5, 42, 25)
    #
    # @param  [Integer, String] project The ID or name of a project.
    # @param  [Integer] id The ID of a board.
    # @param  [Integer] label_id The ID of a label.
    # @return [Gitlab::ObjectifiedHash] Information about created list.
    def create_board_list(project, board_id, label_id)
      post("/projects/#{url_encode project}/boards/#{board_id}/lists", body: { label_id: label_id })
    end

    # Updates a board list.
    # Only for admins and project owners
    #
    # @example
    #   Gitlab.edit_board_list(6, 1, 12, 5)
    #
    # @param  [Integer, String] project The ID or name of a project.
    # @param  [Integer] board_id The ID of a board.
    # @param  [Integer] id The ID of a list.
    # @return [Gitlab::ObjectifiedHash] Information about updated board list.
    def edit_board_list(project, board_id, id, position)
      put("/projects/#{url_encode project}/boards/#{board_id}/lists/#{id}", body: { position: position })
    end

    # Deletes  a board list.
    # Only for admins and project owners
    #
    # @example
    #   Gitlab.delete_board_list(3, 42, 32)
    #
    # @param  [Integer, String] project The ID or name of a project.
    # @param  [Integer] board_id The ID of a board.
    # @param  [Integer] id The ID of a list.
    # @return [Gitlab::ObjectifiedHash] Information about deleted board list.
    def delete_board_list(project, board_id, id)
      delete("/projects/#{url_encode project}/boards/#{board_id}/lists/#{id}")
    end
  end
end