forked from yegor256/0pdd
-
Notifications
You must be signed in to change notification settings - Fork 0
/
0pdd.rb
520 lines (486 loc) · 14.3 KB
/
0pdd.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
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
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
# Copyright (c) 2016-2022 Yegor Bugayenko
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the 'Software'), to deal
# in the Software without restriction, including without limitation the rights
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
# copies of the Software, and to permit persons to whom the Software is
# furnished to do so, subject to the following conditions:
#
# The above copyright notice and this permission notice shall be included in all
# copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
# SOFTWARE.
$stdout.sync = true
require 'mail'
require 'haml'
require 'json'
require 'ostruct'
require 'sinatra'
require 'sinatra/cookies'
require 'sass'
require 'raven'
require 'octokit'
require 'tmpdir'
require 'glogin'
require_relative 'version'
require_relative 'objects/log'
require_relative 'objects/dynamo'
require_relative 'objects/git_repo'
require_relative 'objects/user_error'
require_relative 'objects/vcs/github'
require_relative 'objects/vcs/gitlab'
require_relative 'objects/clients/github'
require_relative 'objects/clients/gitlab'
require_relative 'objects/jobs/job'
require_relative 'objects/jobs/job_detached'
require_relative 'objects/jobs/job_emailed'
require_relative 'objects/jobs/job_recorded'
require_relative 'objects/jobs/job_starred'
require_relative 'objects/jobs/job_commiterrors'
require_relative 'objects/tickets/tickets'
require_relative 'objects/tickets/tagged_tickets'
require_relative 'objects/tickets/emailed_tickets'
require_relative 'objects/tickets/logged_tickets'
require_relative 'objects/tickets/commit_tickets'
require_relative 'objects/tickets/sentry_tickets'
require_relative 'objects/tickets/milestone_tickets'
require_relative 'objects/storage/s3'
require_relative 'objects/storage/safe_storage'
require_relative 'objects/storage/sync_storage'
require_relative 'objects/storage/logged_storage'
require_relative 'objects/storage/versioned_storage'
require_relative 'objects/storage/upgraded_storage'
require_relative 'objects/storage/cached_storage'
require_relative 'objects/storage/once_storage'
require_relative 'objects/invitations/github_invitations'
require_relative 'test/fake_storage'
configure do
Haml::Options.defaults[:format] = :xhtml
config = if ENV['RACK_ENV'] == 'test'
{
'testing' => true,
'github' => {
'token' => '--the-token--',
'client_id' => '?',
'client_secret' => '?'
},
'gitlab' => {
'token' => '--the-token--',
'client_id' => '?',
'client_secret' => '?'
},
'jira' => {
'token' => '--the-token--',
'client_id' => '?',
'client_secret' => '?'
},
'sentry' => '',
's3' => {
'region' => '?',
'bucket' => '?',
'key' => '?',
'secret' => '?'
},
'id_rsa' => ''
}
else
config = YAML.safe_load(File.open(File.join(File.dirname(__FILE__), 'config.yml')))
raise 'Missing configuration file config.yml' if config.nil?
config
end
if ENV['RACK_ENV'] != 'test'
Raven.configure do |c|
c.dsn = config['sentry']
c.release = VERSION
end
end
set :config, config
if config['smtp']
Mail.defaults do
delivery_method(
:smtp,
address: config['smtp']['host'],
port: config['smtp']['port'],
user_name: config['smtp']['user'],
password: config['smtp']['password'],
domain: '0pdd.com',
enable_starttls_auto: true
)
end
end
set :server_settings, timeout: 25
set :github, Github.new(config).client
set :gitlab, GitlabClient.new(config).client
set :dynamo, Dynamo.new(config).aws
set :glogin, GLogin::Auth.new(
config['github']['client_id'],
config['github']['client_secret'],
'https://www.0pdd.com/github-callback'
)
set :ruby_version, Exec.new('ruby -e "print RUBY_VERSION"').run
set :git_version, Exec.new('git --version | cut -d" " -f 3').run
set :temp_dir, Dir.mktmpdir('0pdd')
end
before '/*' do
@locals = {
ver: VERSION,
login_link: settings.glogin.login_uri
}
if cookies[:glogin]
begin
@locals[:user] = GLogin::Cookie::Closed.new(
cookies[:glogin],
settings.config['github']['encryption_secret']
).to_user
rescue OpenSSL::Cipher::CipherError
@locals.delete(:user)
end
end
end
get '/github-callback' do
code = params[:code]
redirect('/') if code.nil?
cookies[:glogin] = GLogin::Cookie::Open.new(
settings.glogin.user(code),
settings.config['github']['encryption_secret']
).to_s
redirect to('/')
end
get '/logout' do
cookies.delete(:glogin)
redirect to('/')
end
get '/' do
projects = Exec.new(
"(sort /tmp/0pdd-done.txt 2>/dev/null || echo '')\
| uniq"
).run.split("\n").reject(&:empty?)
haml :index, layout: :layout, locals: merged(
title: '0pdd',
ruby_version: settings.ruby_version,
git_version: settings.git_version,
remaining: settings.github.rate_limit.remaining,
tail: projects.last(10).reverse,
total_projects: projects.length
)
end
get '/robots.txt' do
'User-agent: *
Disallow: /snapshot'
end
get '/version' do
VERSION
end
get '/invitation' do
repo = repo_name(params[:repo])
ghi = GithubInvitations.new(settings.github)
invitations = ghi.accept_single_invitation(repo)
return invitations.join('\n') unless invitations.empty?
"Could not find invitation for @#{repo}. It is either invitation already
accepted OR 0pdd is not added as a collaborator"
end
get '/p' do
vcs = vcs_name(params[:vcs])
name = repo_name(params[:name])
xml = storage(name, vcs).load
Nokogiri::XSLT(File.read('assets/xsl/puzzles.xsl')).transform(
xml,
[
'version', "'#{VERSION}'",
'project', "'#{name}'",
'length', xml.to_s.length.to_s
]
).to_s
end
# @todo #41:30min Let's add GZIP compression to this output, since
# most XML files are rather big and it would be beneficial to see
# them compressed in the browser.
get '/xml' do
content_type 'text/xml'
vcs = vcs_name(params[:vcs])
storage(repo_name(params[:name]), vcs).load.to_s
end
get '/log' do
vcs = vcs_name(params[:vcs])
repo = repo_name(params[:name])
haml :log, layout: :layout, locals: merged(
title: repo,
repo: repo,
log: Log.new(settings.dynamo, repo, vcs),
since: params[:since] ? params[:since].to_i : Time.now.to_i + 1
)
end
get '/snapshot' do
content_type 'text/xml'
master = params[:branch]
vcs = vcs_name(params[:vcs])
name = repo_name(params[:name])
uri = "[email protected]:#{name}.git"
uri = "[email protected]:#{name}.git" if vcs == 'gitlab'
begin
repo = GitRepo.new(
uri: uri,
name: name,
id_rsa: settings.config['id_rsa'],
dir: settings.temp_dir,
master: master || 'master'
)
repo.push
xml = repo.xml
xml.xpath('//processing-instruction("xml-stylesheet")').remove
xml.to_s
rescue Exec::Error => e
error 400, "Could not get snapshot for #{name}: #{e.message}"
end
end
get '/log-item' do
vcs = vcs_name(params[:vcs])
repo = repo_name(params[:repo])
tag = params[:tag]
error 404 if tag.nil?
log = Log.new(settings.dynamo, repo, vcs)
error 404 unless log.exists(tag)
haml :item, layout: :layout, locals: merged(
title: tag,
repo: repo,
item: log.get(tag)
)
end
get '/log-delete' do
redirect '/' if @locals[:user].nil? || @locals[:user][:login] != 'yegor256'
repo = repo_name(params[:name])
vcs = vcs_name(params[:vcs])
Log.new(settings.dynamo, repo, vcs).delete(params[:time].to_i, params[:tag])
redirect "/log?name=#{repo}"
end
get '/svg' do
response.headers['Cache-Control'] = 'no-cache, private'
content_type 'image/svg+xml'
name = repo_name(params[:name])
vcs = vcs_name(params[:vcs])
Nokogiri::XSLT(File.read('assets/xsl/svg.xsl')).transform(
storage(name, vcs).load, ['project', "'#{name}'"]
).to_s
end
get '/ping-github' do
content_type 'text/plain'
gh = settings.github
return if gh.rate_limit.remaining < 1000
invitations = GithubInvitations.new(gh)
invitations.accept
invitations.accept_orgs
msgs = gh.notifications.map do |n|
reason = n['reason']
repo = n['repository']['full_name']
puts "GitHub notification in #{repo}: #{reason} #{n['updated_at']} #{n['subject']['type']}"
if reason == 'mention'
issue = n['subject']['url'].gsub(%r{^.+/issues/}, '').to_i
comment = n['subject']['latest_comment_url'].gsub(%r{^.+/comments/}, '').to_i
begin
json = gh.issue_comment(repo, comment)
body = json['body']
if body.start_with?("@#{gh.login}") && json['user']['login'] != gh.login
gh.add_comment(
repo,
issue,
"> #{body.gsub(/\s+/, ' ').gsub(/^(.{100,}?).*$/m, '\1...')}\n\n\
I see you're talking to me, but I can't reply since I'm not a chat bot."
)
puts "Replied to #{repo}##{issue}"
end
rescue Octokit::NotFound
next
end
end
gh.mark_notifications_as_read(last_read_at: n['last_read_at'])
"#{repo}: #{reason}"
end
"#{msgs.join("\n")}\n"
end
get '/hook/github' do
'This URL expects POST requests from GitHub
WebHook: https://developer.github.com/webhooks/'
end
post '/hook/github' do
is_from_github = request.env['HTTP_USER_AGENT']&.start_with?('GitHub-Hookshot')
is_push_event = request.env['HTTP_X_GITHUB_EVENT'] == 'push'
unless is_from_github && is_push_event
return [
400,
'Please, only register push events from GitHub webhook'
]
end
request.body.rewind
json = JSON.parse(
case request.content_type
when 'application/x-www-form-urlencoded'
params[:payload]
when 'application/json'
request.body.read
else
raise "Invalid content-type: \"#{request.content_type}\""
end
)
github = GithubRepo.new(settings.github, json, settings.config)
return [400, "No access to #{github.repo.name}"] unless github.exists?
unless ENV['RACK_ENV'] == 'test'
process_request(github)
puts "GitHub hook from #{github.repo.name}"
end
"Thanks #{github.repo.name}"
end
get '/hook/gitlab' do
'This URL expects POST requests from Gitlab
WebHook: https://docs.gitlab.com/ee/user/project/integrations/webhooks.html'
end
post '/hook/gitlab' do
is_from_gitlab = request.env['HTTP_USER_AGENT'].start_with?('GitLab')
is_push_event = request.env['HTTP_X_GITLAB_EVENT'] == 'Push Hook'
unless is_from_gitlab && is_push_event
return [
400,
'Please, only register push events from Gitlab webhook'
]
end
request.body.rewind
json = JSON.parse(
case request.content_type
when 'application/x-www-form-urlencoded'
params[:payload]
when 'application/json'
request.body.read
else
raise "Invalid content-type: \"#{request.content_type}\""
end
)
gitlab = GitlabRepo.new(settings.gitlab, json, settings.config)
return [400, "No access to #{gitlab.repo.name}"] unless gitlab.exists?
unless ENV['RACK_ENV'] == 'test'
process_request(gitlab)
puts "Gitlab hook from #{gitlab.repo.name}"
end
"Thanks #{gitlab.repo.name}"
end
get '/css/*.css' do
content_type 'text/css', charset: 'utf-8'
file = params[:splat].first
sass file.to_sym, views: "#{settings.root}/assets/sass"
end
get '/puzzles.xsd' do
content_type 'application/xml', charset: 'utf-8'
File.read('assets/xsd/puzzles.xsd')
end
not_found do
status 404
content_type 'text/html', charset: 'utf-8'
haml :not_found, layout: :layout, locals: merged(
title: 'Page not found'
)
end
error do
status 503
e = env['sinatra.error']
Raven.capture_exception(e) unless e.is_a?(UserError)
haml(
:error,
layout: :layout,
locals: merged(
title: 'error',
error: "#{e.message}\n\t#{e.backtrace.join("\n\t")}"
)
)
end
private
def repo_name(name)
error 404 if name.nil?
error 404 unless name =~ %r{^[a-zA-Z0-9\-_]+/[a-zA-Z0-9\-_.]+$}
name.strip
end
def vcs_name(name)
return 'github' if name.nil?
name.strip.downcase
end
def merged(hash)
out = @locals.merge(hash)
out[:local_assigns] = out
out
end
def storage(repo, vcs)
file_name = vcs == 'github' ? repo : "#{vcs}-#{repo}"
SyncStorage.new(
UpgradedStorage.new(
SafeStorage.new(
OnceStorage.new(
CachedStorage.new(
VersionedStorage.new(
if ENV['RACK_ENV'] == 'test'
FakeStorage.new
else
LoggedStorage.new(
S3.new(
"#{file_name}.xml",
settings.config['s3']['bucket'],
settings.config['s3']['region'],
settings.config['s3']['key'],
settings.config['s3']['secret']
),
Log.new(settings.dynamo, repo, vcs)
)
end,
VERSION
),
File.join('/tmp/0pdd-xml-cache', file_name)
)
)
),
VERSION
)
)
end
def process_request(vcs)
JobDetached.new(
vcs,
JobCommitErrors.new(
vcs,
JobEmailed.new(
vcs,
JobRecorded.new(
vcs,
JobStarred.new(
vcs,
Job.new(
vcs,
storage(vcs.repo.name, vcs.name),
SentryTickets.new(
EmailedTickets.new(
vcs,
CommitTickets.new(
vcs,
TaggedTickets.new(
vcs,
LoggedTickets.new(
vcs,
Log.new(settings.dynamo, vcs.repo.name, vcs.name),
MilestoneTickets.new(
vcs,
Tickets.new(vcs)
)
)
)
)
)
)
)
)
)
)
)
).proceed
end