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

create_service.rb « tags « services « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 8a7b98ab944ecc0f7555ef388d540c8883e13027 (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 Tags
  class CreateService < BaseService
    def execute(tag_name, target, message)
      valid_tag = Gitlab::GitRefValidator.validate(tag_name)
      return error('Tag name invalid', 400) unless valid_tag

      repository = project.repository
      message = message&.strip

      new_tag = nil

      begin
        new_tag = repository.add_tag(current_user, tag_name, target, message)
      rescue Gitlab::Git::Repository::TagExistsError
        return error("Tag #{tag_name} already exists", 409)
      rescue Gitlab::Git::PreReceiveError => ex
        return error(ex.message)
      end

      if new_tag
        repository.expire_tags_cache

        success.merge(tag: new_tag)
      else
        error("Target #{target} is invalid", 400)
      end
    end
  end
end