summaryrefslogtreecommitdiff
path: root/app/models/integrations/harbor.rb
blob: 4c76e418886ae296bf0c62012cd5fab618ae19c6 (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
94
95
96
97
98
99
100
101
102
103
104
# frozen_string_literal: true

module Integrations
  class Harbor < Integration
    prop_accessor :url, :project_name, :username, :password

    validates :url, public_url: true, presence: true, if: :activated?
    validates :project_name, presence: true, if: :activated?
    validates :username, presence: true, if: :activated?
    validates :password, format: { with: ::Ci::Maskable::REGEX }, if: :activated?

    before_validation :reset_username_and_password

    def title
      'Harbor'
    end

    def description
      s_("HarborIntegration|Use Harbor as this project's container registry.")
    end

    def help
      s_("HarborIntegration|After the Harbor integration is activated, global variables ‘$HARBOR_USERNAME’, ‘$HARBOR_PASSWORD’, ‘$HARBOR_URL’ and ‘$HARBOR_PROJECT’ will be created for CI/CD use.")
    end

    class << self
      def to_param
        name.demodulize.downcase
      end

      def supported_events
        []
      end

      def supported_event_actions
        []
      end
    end

    def test(*_args)
      client.ping
    end

    def fields
      [
        {
          type: 'text',
          name: 'url',
          title: s_('HarborIntegration|Harbor URL'),
          placeholder: 'https://demo.goharbor.io',
          help: s_('HarborIntegration|Base URL of the Harbor instance.'),
          required: true
        },
        {
          type: 'text',
          name: 'project_name',
          title: s_('HarborIntegration|Harbor project name'),
          help: s_('HarborIntegration|The name of the project in Harbor.')
        },
        {
          type: 'text',
          name: 'username',
          title: s_('HarborIntegration|Harbor username'),
          required: true
        },
        {
          type: 'text',
          name: 'password',
          title: s_('HarborIntegration|Harbor password'),
          non_empty_password_title: s_('HarborIntegration|Enter Harbor password'),
          non_empty_password_help: s_('HarborIntegration|Password for your Harbor username.'),
          required: true
        }
      ]
    end

    def ci_variables
      return [] unless activated?

      [
        { key: 'HARBOR_URL', value: url },
        { key: 'HARBOR_PROJECT', value: project_name },
        { key: 'HARBOR_USERNAME', value: username },
        { key: 'HARBOR_PASSWORD', value: password, public: false, masked: true }
      ]
    end

    private

    def client
      @client ||= ::Gitlab::Harbor::Client.new(self)
    end

    def reset_username_and_password
      if url_changed? && !password_touched?
        self.password = nil
      end

      if url_changed? && !username_touched?
        self.username = nil
      end
    end
  end
end