-
Notifications
You must be signed in to change notification settings - Fork 67
/
Copy pathhooks.nit
147 lines (131 loc) · 4.17 KB
/
hooks.nit
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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
# This file is part of NIT ( http://www.nitlanguage.org ).
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
# Github hook event listening with `nitcorn`.
#
# Usage:
#
# ~~~
# import github::hooks
#
# # A simple hook listener that print received events in stdout.
# class LogHookListener
# super HookListener
#
# # Use double dispatch to implement log behavior.
# redef fun apply_event(event) do event.log_event(self)
# end
#
# redef class GithubEvent
# # Log this event.
# #
# # Do nothing by default.
# fun log_event(l: LogHookListener) do end
# end
#
# redef class CommitCommentEvent
#
# redef fun log_event(l) do
# print "new comment on commit {comment.commit_id}"
# end
# end
#
# var api = new GithubAPI(get_github_oauth)
# var listener = new LogHookListener(api, "127.0.0.1", 8080)
# # listener.listen # uncomment to start listening
# ~~~
module hooks
import events
import nitcorn
# A nitcorn listener for Github hooks.
abstract class HookListener
# Api client used to perform Github API requests.
var api: GithubAPI
# Host to listen.
var host: String
# Port to listen.
var port: Int
# VirtualHost listened
private var vh: VirtualHost is noinit
init do
vh = new VirtualHost("{host}:{port}")
vh.routes.add new Route("/", new HookAction(self))
end
# Verbosity level (0: quiet, 1: debug).
# Default: 0
var verbosity = 0
# Print `message` if `lvl` <= `verbosity`
fun message(lvl: Int, message: String) do
if lvl <= verbosity then print message
end
# Start listening and responding to event.
fun listen do
message(1, "Hook listening on {host}:{port}")
var factory = new HttpFactory.and_libevent
factory.config.virtual_hosts.add vh
factory.run
end
# How to build events from received json objects.
fun event_factory(kind: String, json: String): nullable GithubEvent do
if kind == "commit_comment" then
return api.deserialize(json).as(CommitCommentEvent)
else if kind == "create" then
return api.deserialize(json).as(CreateEvent)
else if kind == "delete" then
return api.deserialize(json).as(DeleteEvent)
else if kind == "deployment" then
return api.deserialize(json).as(DeploymentEvent)
else if kind == "deployment_status" then
return api.deserialize(json).as(DeploymentStatusEvent)
else if kind == "fork" then
return api.deserialize(json).as(ForkEvent)
else if kind == "issues" then
return api.deserialize(json).as(IssuesEvent)
else if kind == "issue_comment" then
return api.deserialize(json).as(IssueCommentEvent)
else if kind == "member" then
return api.deserialize(json).as(MemberEvent)
else if kind == "pull_request" then
return api.deserialize(json).as(PullRequestEvent)
else if kind == "pull_request_review_comment" then
return api.deserialize(json).as(PullRequestPullCommentEvent)
else if kind == "push" then
return api.deserialize(json).as(PushEvent)
else if kind == "status" then
return api.deserialize(json).as(StatusEvent)
end
return null
end
# What to do when we receive an event from a hook?
fun apply_event(event: GithubEvent) is abstract
end
# A nitcorn action dedicated to GitHub hook listening.
private class HookAction
super Action
# Listener that contains this action.
#
# The `listener` is used for its `event_factory` method
# and the `apply_event`.
var listener: HookListener
# Parse hook request then call `listener.apply_event`.
redef fun answer(request, uri) do
# get event type
var kind = request.header.get_or_null("X-GitHub-Event")
if kind == null then return new HttpResponse(403)
# parse event
var event = listener.event_factory(kind, request.body)
if event == null then return new HttpResponse(403)
listener.apply_event(event)
return new HttpResponse(200)
end
end