summaryrefslogtreecommitdiff
path: root/app/models/integrations/packagist.rb
blob: b597bd11175b36567938cd6f54307b80ec49bbbe (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
# frozen_string_literal: true

module Integrations
  class Packagist < Integration
    prop_accessor :username, :token, :server

    validates :username, presence: true, if: :activated?
    validates :token, presence: true, if: :activated?

    default_value_for :push_events, true
    default_value_for :tag_push_events, true

    after_save :compose_service_hook, if: :activated?

    def title
      'Packagist'
    end

    def description
      s_('Integrations|Update your Packagist projects.')
    end

    def self.to_param
      'packagist'
    end

    def fields
      [
        { type: 'text', name: 'username', placeholder: '', required: true },
        { type: 'text', name: 'token', placeholder: '', required: true },
        { type: 'text', name: 'server', placeholder: 'https://packagist.org', required: false }
      ]
    end

    def self.supported_events
      %w(push merge_request tag_push)
    end

    def execute(data)
      return unless supported_events.include?(data[:object_kind])

      service_hook.execute(data)
    end

    def test(data)
      begin
        result = execute(data)
        return { success: false, result: result[:message] } if result[:http_status] != 202
      rescue StandardError => error
        return { success: false, result: error }
      end

      { success: true, result: result[:message] }
    end

    def compose_service_hook
      hook = service_hook || build_service_hook
      hook.url = hook_url
      hook.save
    end

    def hook_url
      base_url = server.presence || 'https://packagist.org'
      "#{base_url}/api/update-package?username=#{username}&apiToken=#{token}"
    end
  end
end