summaryrefslogtreecommitdiff
path: root/lib/api/entities/tag.rb
blob: 5047258dd97a79d0aa52023f128a202c01533933 (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
# frozen_string_literal: true

module API
  module Entities
    class Tag < Grape::Entity
      include RequestAwareEntity

      expose :name, documentation: { type: 'string', example: 'v1.0.0' }
      expose :message, documentation: { type: 'string', example: 'Release v1.0.0' }
      expose :target, documentation: { type: 'string', example: '2695effb5807a22ff3d138d593fd856244e155e7' }

      expose :commit, using: Entities::Commit do |repo_tag, options|
        options[:project].repository.commit(repo_tag.dereferenced_target)
      end

      # rubocop: disable CodeReuse/ActiveRecord
      expose :release, using: Entities::TagRelease, if: ->(*) { can_read_release? } do |repo_tag, options|
        options[:project].releases.find_by(tag: repo_tag.name)
      end
      # rubocop: enable CodeReuse/ActiveRecord

      expose :protected, documentation: { type: 'boolean', example: true } do |repo_tag, options|
        ::ProtectedTag.protected?(options[:project], repo_tag.name)
      end

      def can_read_release?
        can?(options[:current_user], :read_release, options[:project])
      end
    end
  end
end