2014-02-18 18:09:16 -05:00
|
|
|
require "gemnasium/gitlab_service"
|
|
|
|
|
|
|
|
class GemnasiumService < Service
|
2014-09-07 20:54:18 -04:00
|
|
|
prop_accessor :token, :api_key
|
2014-02-18 18:09:16 -05:00
|
|
|
validates :token, :api_key, presence: true, if: :activated?
|
|
|
|
|
|
|
|
def title
|
|
|
|
'Gemnasium'
|
|
|
|
end
|
|
|
|
|
|
|
|
def description
|
|
|
|
'Gemnasium monitors your project dependencies and alerts you about updates and security vulnerabilities.'
|
|
|
|
end
|
|
|
|
|
2016-12-27 07:44:24 -05:00
|
|
|
def self.to_param
|
2014-02-18 18:09:16 -05:00
|
|
|
'gemnasium'
|
|
|
|
end
|
|
|
|
|
|
|
|
def fields
|
|
|
|
[
|
|
|
|
{ type: 'text', name: 'api_key', placeholder: 'Your personal API KEY on gemnasium.com ' },
|
|
|
|
{ type: 'text', name: 'token', placeholder: 'The project\'s slug on gemnasium.com' }
|
|
|
|
]
|
|
|
|
end
|
|
|
|
|
2016-12-27 07:44:24 -05:00
|
|
|
def self.supported_events
|
2015-02-28 11:33:18 -05:00
|
|
|
%w(push)
|
|
|
|
end
|
|
|
|
|
2015-02-20 08:49:26 -05:00
|
|
|
def execute(data)
|
2015-02-28 11:33:18 -05:00
|
|
|
return unless supported_events.include?(data[:object_kind])
|
2015-02-19 00:02:57 -05:00
|
|
|
|
2014-02-18 18:09:16 -05:00
|
|
|
Gemnasium::GitlabService.execute(
|
2015-02-20 08:49:26 -05:00
|
|
|
ref: data[:ref],
|
|
|
|
before: data[:before],
|
|
|
|
after: data[:after],
|
2014-02-18 18:09:16 -05:00
|
|
|
token: token,
|
|
|
|
api_key: api_key,
|
2014-11-05 11:51:08 -05:00
|
|
|
repo: project.repository.path_to_repo
|
2015-12-14 21:53:52 -05:00
|
|
|
)
|
2014-02-18 18:09:16 -05:00
|
|
|
end
|
|
|
|
end
|