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

commit_signature.rb « entities « api « lib - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 9c30c3c59ea44f911fa36035f3f6dead4e8e6b7f (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
# frozen_string_literal: true

module API
  module Entities
    class CommitSignature < Grape::Entity
      expose :signature_type, documentation: { type: 'string', example: 'PGP' }

      expose :signature, merge: true do |commit, options|
        if commit.signature.is_a?(::CommitSignatures::GpgSignature) || commit.raw_commit_from_rugged?
          ::API::Entities::GpgCommitSignature.represent commit_signature(commit), options
        elsif commit.signature.is_a?(::CommitSignatures::X509CommitSignature)
          ::API::Entities::X509Signature.represent commit.signature, options
        elsif commit.signature.is_a?(::CommitSignatures::SshSignature)
          ::API::Entities::SshSignature.represent(commit.signature, options)
        end
      end

      expose :commit_source, documentation: { type: 'string', example: 'gitaly' } do |commit, _|
        commit.raw_commit_from_rugged? ? "rugged" : "gitaly"
      end

      private

      def commit_signature(commit)
        if commit.raw_commit_from_rugged?
          commit.gpg_commit.signature
        else
          commit.signature
        end
      end
    end
  end
end