Welcome to mirror list, hosted at ThFree Co, Russian Federation.

triggers.rb « api « ci « lib - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 1a82bc8fc8aa2e3183648589096ecf005c6f54b4 (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
module Ci
  module API
    # Build Trigger API
    class Triggers < Grape::API
      resource :projects do
        desc 'Trigger a GitLab CI project build'
        params do
          requires :ref, type: String, desc: 'The commit sha or name of a branch or tag'
          requires :token, type: String, desc: 'The unique token of trigger'
          optional :variables, type: Hash, desc: 'The list of variables to be injected into build'
        end
        post ":id/refs/:ref/trigger" do
          required_attributes! [:token]

          project = Project.find_by(ci_id: params[:id].to_i)
          trigger = Ci::Trigger.find_by_token(params[:token].to_s)
          not_found! unless project && trigger
          unauthorized! unless trigger.project == project

          # validate variables
          variables = params[:variables]
          if variables
            unless variables.is_a?(Hash)
              render_api_error!('variables needs to be a hash', 400)
            end

            unless variables.all? { |key, value| key.is_a?(String) && value.is_a?(String) }
              render_api_error!('variables needs to be a map of key-valued strings', 400)
            end

            # convert variables from Mash to Hash
            variables = variables.to_h
          end

          # create request and trigger builds
          pipeline = Ci::CreatePipelineService.new(project, nil, ref: params[:ref].to_s).
            execute(ignore_skip_ci: true, trigger: trigger, trigger_variables: variables)
          if pipeline
            data = { id: pipeline.trigger_id, variables: pipeline.trigger_variables }
            present data
          else
            errors = 'No builds created'
            render_api_error!(errors, 400)
          end
        end
      end
    end
  end
end