This repository was archived by the owner on May 10, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 118
/
Copy pathhandler.rb
81 lines (65 loc) · 1.95 KB
/
handler.rb
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
require 'active_support/core_ext/object/blank'
require 'travis/support/logging'
require 'travis/support/instrumentation'
require 'travis/support/exceptions/handling'
require 'travis/api'
require 'travis/event/config'
require 'travis/model/build'
module Travis
module Event
class Handler
require 'travis/event/handler/metrics'
require 'travis/event/handler/trail'
include Logging
extend Instrumentation, Exceptions::Handling
class << self
def notify(event, object, data = {})
payload = Api.data(object, for: 'event', version: 'v0', params: data) if object.is_a?(Build)
handler = new(event, object, data, payload)
handler.notify if handler.handle?
end
end
attr_reader :event, :object, :data, :payload
def initialize(event, object, data = {}, payload = {})
@event = event
@object = object
@data = data
@payload = payload
end
def notify
handle
end
# TODO disable instrumentation in tests
instrument :notify
rescues :notify, from: Exception
private
def config
# TODO: we should decrypt things in tasks, not in event handler,
# secure_key should be passed to the task and then it should
# decrypt the values, which task needs
@config ||= Config.new(payload, secure_key)
end
def repository
@repository ||= payload['repository']
end
def job
@job ||= payload['job']
end
def build
@build ||= payload['build']
end
def request
@request ||= payload['request']
end
def commit
@commit ||= payload['commit']
end
def secure_key
object.respond_to?(:repository) ? object.repository.key : nil
end
def pull_request?
build['pull_request']
end
end
end
end