summaryrefslogtreecommitdiff
path: root/app/models/project_services/packagist_service.rb
blob: f68a0c1a3c38dff80910c03aff2f9de6f5b51014 (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
class PackagistService < Service
  include HTTParty

  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
    'Update your project on Packagist, the main Composer repository'
  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.present? ? server : 'https://packagist.org'
    "#{base_url}/api/update-package?username=#{username}&apiToken=#{token}"
  end
end