summaryrefslogtreecommitdiff
path: root/lib/ci/api/entities.rb
blob: 31f66dd5a58c01c6688930e684922c9492b63526 (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
91
92
93
module Ci
  module API
    module Entities
      class Commit < Grape::Entity
        expose :id, :sha, :project_id, :created_at
        expose :status, :finished_at, :duration
        expose :git_commit_message, :git_author_name, :git_author_email
      end

      class CommitWithBuilds < Commit
        expose :builds
      end

      class ArtifactFile < Grape::Entity
        expose :filename, :size
      end

      class BuildOptions < Grape::Entity
        expose :image
        expose :services
        expose :artifacts
        expose :cache
        expose :dependencies
        expose :after_script
      end

      class Build < Grape::Entity
        expose :id, :ref, :tag, :sha, :status
        expose :name, :token, :stage
        expose :project_id
        expose :project_name
        expose :artifacts_file, using: ArtifactFile, if: ->(build, _) { build.artifacts? }
      end

      class BuildCredentials < Grape::Entity
        expose :type, :url, :username, :password
      end

      class BuildDetails < Build
        expose :commands
        expose :repo_url
        expose :before_sha
        expose :allow_git_fetch
        expose :token
        expose :artifacts_expire_at, if: ->(build, _) { build.artifacts? }

        expose :options do |model|
          # This part ensures that output of old API is still the same after adding support
          # for extended docker configuration options, used by new API
          #
          # I'm leaving this here, not in the model, because it should be removed at the same time
          # when old API will be removed (planned for August 2017).
          model.options.dup.tap do |options|
            options[:image] = options[:image][:name] if options[:image].is_a?(Hash)
            options[:services]&.map! do |service|
              if service.is_a?(Hash)
                service[:name]
              else
                service
              end
            end
          end
        end

        expose :timeout do |model|
          model.timeout
        end

        expose :variables
        expose :depends_on_builds, using: Build

        expose :credentials, using: BuildCredentials
      end

      class Runner < Grape::Entity
        expose :id, :token
      end

      class RunnerProject < Grape::Entity
        expose :id, :project_id, :runner_id
      end

      class WebHook < Grape::Entity
        expose :id, :project_id, :url
      end

      class TriggerRequest < Grape::Entity
        expose :id, :variables
        expose :pipeline, using: Commit, as: :commit
      end
    end
  end
end