commit_statuses.rb 2.9 KB
Newer Older
K
Kamil Trzcinski 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
require 'mime/types'

module API
  # Project commit statuses API
  class CommitStatus < Grape::API
    resource :projects do
      before { authenticate! }

      # Get a commit's statuses
      #
      # Parameters:
      #   id (required) - The ID of a project
      #   sha (required) - The commit hash
      #   ref (optional) - The ref
      #   stage (optional) - The stage
      #   name (optional) - The name
      #   all (optional) - Show all statuses, default: false
      # Examples:
      #   GET /projects/:id/repository/commits/:sha/statuses
      get ':id/repository/commits/:sha/statuses' do
21
        authorize! :read_commit_status, user_project
K
Kamil Trzcinski 已提交
22 23 24 25 26 27
        sha = params[:sha]
        ci_commit = user_project.ci_commit(sha)
        not_found! 'Commit' unless ci_commit
        statuses = ci_commit.statuses
        statuses = statuses.latest unless parse_boolean(params[:all])
        statuses = statuses.where(ref: params[:ref]) if params[:ref].present?
K
Kamil Trzcinski 已提交
28
        statuses = statuses.where(stage: params[:stage]) if params[:stage].present?
K
Kamil Trzcinski 已提交
29 30 31 32 33 34 35 36 37 38 39 40 41 42 43
        statuses = statuses.where(name: params[:name]) if params[:name].present?
        present paginate(statuses), with: Entities::CommitStatus
      end

      # Post status to commit
      #
      # Parameters:
      #   id (required) - The ID of a project
      #   sha (required) - The commit hash
      #   ref (optional) - The ref
      #   state (required) - The state of the status. Can be: pending, running, success, error or failure
      #   target_url (optional) - The target URL to associate with this status
      #   description (optional) - A short description of the status
      #   name or context (optional) - A string label to differentiate this status from the status of other systems. Default: "default"
      # Examples:
K
Kamil Trzcinski 已提交
44
      #   POST /projects/:id/statuses/:sha
K
Kamil Trzcinski 已提交
45
      post ':id/statuses/:sha' do
K
Kamil Trzcinski 已提交
46
        authorize! :create_commit_status, user_project
K
Kamil Trzcinski 已提交
47 48 49 50 51 52 53 54 55
        required_attributes! [:state]
        attrs = attributes_for_keys [:ref, :target_url, :description, :context, :name]
        commit = @project.commit(params[:sha])
        not_found! 'Commit' unless commit

        ci_commit = @project.ensure_ci_commit(commit.sha)

        name = params[:name] || params[:context]
        status = GenericCommitStatus.running_or_pending.find_by(commit: ci_commit, name: name, ref: params[:ref])
K
Kamil Trzcinski 已提交
56
        status ||= GenericCommitStatus.new(project: @project, commit: ci_commit, user: current_user)
K
Kamil Trzcinski 已提交
57 58 59
        status.update(attrs)

        case params[:state].to_s
K
Kamil Trzcinski 已提交
60 61 62 63 64 65 66 67 68 69
        when 'running'
          status.run
        when 'success'
          status.success
        when 'failed'
          status.drop
        when 'canceled'
          status.cancel
        else
          status.status = params[:state].to_s
K
Kamil Trzcinski 已提交
70 71 72 73 74 75 76 77 78 79 80
        end

        if status.save
          present status, with: Entities::CommitStatus
        else
          render_validation_error!(status)
        end
      end
    end
  end
end