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
|
require 'em-http'
require 'json'
module Nickserver; module Couch
class FetchKey
include EM::Deferrable
def initialize(options={})
@timeout = 5
end
def get(uid)
uid = uid.split('@').first # TEMPORARY HACK FOR NOW. in the future
# the database should be able to be searchable by full address
couch_request(uid)
self
end
protected
#
# curl http://localhost:5984/users/_design/User/_view/pgp_key_by_handle?key=%22bla%22\&reduce=false
#
def couch_request(uid)
query = {"reduce" => "false", "key" => "\"#{uid}\""}
request = EventMachine::HttpRequest.new("#{FetchKey.couch_url}/#{FetchKey.couch_view}").get(:timeout => @timeout, :query => query)
request.callback {|http|
if http.response_header.status != 200
self.fail http.response_header.status, 'Unknown Error'
else
self.succeed parse_key_from_response(uid, http.response)
end
}.errback {|http|
self.fail 0, http.error
}
end
def parse_key_from_response(uid, response)
json = JSON.load(response)
if json["offset"] == 0
self.fail 404, "Not Found"
else
return json["rows"].first["value"]
end
rescue Exception
self.fail 0, "Error parsing CouchDB reply"
end
def self.couch_view
"_design/User/_view/pgp_key_by_handle"
end
def self.couch_url
if Config.couch_user
['http://', Config.couch_user, ':', Config.couch_password, '@', Config.couch_host, ':', Config.couch_port, '/', Config.couch_database].join
else
['http://', Config.couch_host, ':', Config.couch_port, '/', Config.couch_database].join
end
end
end
end; end
|