-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathserver.rb
84 lines (72 loc) · 2.06 KB
/
server.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
# server.rb
require "cuba"
require "rack/protection"
require "json"
require 'rest-client'
require "useragent"
require "securerandom"
def get_key(kf)
STDERR.puts "getting key \"#{kf}\""
kb_uri = "https://keybase.io/_/api/1.0/user/lookup.json?fields=public_keys&key_fingerprint=#{kf}"
user_response = RestClient.get(kb_uri)
data = JSON.parse(user_response.body)
if data['them'].count == 0
STDERR.puts 'Error: no results'
return nil
elsif data['them'].count > 1
STDERR.puts 'Error: more than one result returned'
return nil
end
public_keys = data['them'].first['public_keys'].select do |k,v|
v.class == Hash && v["key_fingerprint"] == kf.downcase
end
if public_keys.count == 0
STDERR.puts 'Error: no public keys'
elsif public_keys.count > 1
STDERR.puts 'Error: more than one public key'
end
# in case we're looking for non-primary key
public_key = public_keys.flatten.select do |k|
k.class == Hash && k['key_fingerprint'] == kf.downcase
end
public_key_data = public_key.first['bundle']
return public_key_data
end
def cli?(user_agent)
return true if UserAgent.parse(user_agent).browser =~ /(wget)|(curl)/i
return false
end
def pre_wrap(string)
return "<pre>#{string}</pre>"
end
def auto_wrap(results)
return cli?(req.user_agent) ? results + "\n" : pre_wrap(results)
end
Cuba.define do
on get do
# /favicon.ico
on "favicon.ico" do
res.status = 404
res.write "#### 404 ####"
res.finish
end
on root do
results = 'try "/pks/lookup?op=get&options=mr&search=0x"'
res.write cli?(req.user_agent) ? results + "\n" : pre_wrap(results)
end
on "pks/lookup" do
q = env['QUERY_STRING'].split('&').map{|k| k.split('=') }.to_h
search = q['search'] || nil
op = q['op'] || nil
if search.nil? || search.empty?
res.status = 404
results = "No search field in queryString"
else
user_key = get_key(search[/(?<=^0x).*/])
res.status = 404 if user_key.nil?
results = user_key
end
res.write results
end
end
end