-
Notifications
You must be signed in to change notification settings - Fork 4
/
worker.rb
executable file
·94 lines (79 loc) · 2.42 KB
/
worker.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
#!/usr/bin/env ruby
require "rubygems"
require "bundler"
Bundler.setup(:default)
%w{ sequel zlib json httpclient atom eventmachine }.each { |lib| require lib }
require 'topics'
DB = Sequel.connect(ENV['DATABASE_URL'] || 'sqlite://webglue.db')
module WebGlue
class Client
include EM::Deferrable
def do_verify(url, query, debug = false)
begin
MyTimer.timeout(Config::GIVEUP) do
res = HTTPClient.get_content(url, query)
raise "do_verify(#{url})" unless res and res == query['hub.challenge']
end
sleep(0.05)
set_deferred_status(:succeeded)
rescue Exception => e
puts e.to_s if debug == true
set_deferred_status(:failed)
end
end
end
class Worker
def self.gen_id
base = rand(100000000).to_s
salt = Time.now.to_s
Zlib.crc32(base + salt).to_s(36)
end
# spawn a new process for every backend to check
def self.verify_all(debug = Config::DEBUG)
subs = DB[:subscriptions].filter(:vmode => 'async', :state => 1)
subs.each do |sub|
url = Topic.to_url(sub[:callback])
topic = DB[:topics].filter(:id => sub[:topic_id]).first
topic = Topic.to_url(topic[:url]) if topic
query = { 'hub.mode' => sub[:vmode],
'hub.topic' => topic,
'hub.lease_seconds' => 0, # still no subscription refreshing support
'hub.challenge' => self.gen_id }
query['hub.verify_token'] = sub[:vtoken] if sub[:vtoken]
EM.spawn do
client = Client.new
client.callback do
DB[:subscriptions].filter(:callback => sub[:callback]).update(:state => 0)
puts "success: #{url}" if debug == true
end
client.errback { puts "fail: #{url}" if debug == true }
client.do_verify(url, query, debug)
end.notify
end
end
# run the check once (for example from a cronjob)
def self.verify
EM.epoll # Only on Linux 2.6.x
EM.run do
self.verify_all(true)
EM.stop
end
end
def self.run
EM.epoll # Only on Linux 2.6.x
EM.run do
# 5 min checks
EM::PeriodicTimer.new(Config::CHECK) do
self.verify_all(false)
end
end
end
end
end
if __FILE__ == $0
trap("INT") { EM.stop }
# one time check (cronjob)
WebGlue::Worker.verify
# continious working
#WebGlue::Worker.run
end