blob: c8f3b3118102af15ba0cf03677b3806c6e74f393 (
plain)
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
|
#!/System/Library/Frameworks/Ruby.framework/Versions/Current/usr/bin/ruby
## brew server: Run a local webserver for browsing available and installed brews.
# Note: this external command is ruby, but set up as a shell script, so that it gets exec'd.
# This is required for sinatra's run-loop to take over.
$:.unshift(ENV['HOMEBREW_LIBRARY_PATH'])
require 'global'
require 'formula'
require 'cmd/search'
require 'rubygems'
begin
require 'sinatra'
rescue LoadError
onoe 'Sinatra required but not found'
puts 'To install: /usr/bin/gem install sinatra'
exit 1
end
require 'cgi'
def link_to_formula name
"<a href=\"/formula/#{CGI.escape(name)}\">#{name}</a>"
end
def css_style; <<-CSS
<link href="/bootstrap.min.css" rel="stylesheet"/>
<style>
.container {
text-align: center;
}
dl {
text-align: left;
width: 500px;
margin: 0 auto;
}
table.table {
width: 500px;
margin: 0 auto;
}
</style>
CSS
end
def search_form; <<-EOS
<form action="/search" class="form-search">
<div class="input-append">
<input id="search" name="q" type="text" class="input-large">
<button class="btn btn-medium" type="submit"><i class="icon-search"></i> Search</button>
</div>
</form>
EOS
end
def html_page(title)
body = <<-HTML
<!DOCTYPE html>
<html>
<head>
<title>#{title}</title>
#{css_style}
</head>
<body>
<div class="container">
<div id="header">
<h1><a href="/">Homebrew</a></h1>
<p id="subtitle" class="lead"><strong>The missing package manager for OS X</strong></p>
</div>
<div id="informations">
HTML
yield body
body << <<-HTML
</div>
</div>
</body>
</html>
HTML
body
end
get '/' do
html_page("Homebrew Menu") do |s|
s << <<-HTML
<div class="row">
<div class="span12"><div class="row">#{search_form}</div></div>
</div>
<div class="row">
<div class="span12"><p id="installed"><a class="btn btn-primary" href="/installed">Show installed packages</a></p></div>
</div>
<div class="row">
<ul>
HTML
Formula.names do |name|
s << "<li>#{link_to_formula(name)}</li>"
end
s << <<-HTML
</ul>
</div>
HTML
end
end
get '/search' do
q = params['q']
results = Homebrew.search_formulae(q)
html_page("Results") do |s|
s << <<-HTML
<div class="row">
<div class="span12">
<div class="row">#{search_form}</div>
</div>
</div>
<div class="row">
<div class="span12">
<div class="row"><h4>Searched for “#{q}”:</h4></div>
</div>
</div>
<div class="row">
<div class="span12">
<div class="row"> <table class="table"><tr><th>Name</th></tr>
HTML
results.each do |name|
s << "<tr><td>#{link_to_formula(name)}</td></tr>"
end
s << <<-HTML
</table>
</div>
</div>
</div>
HTML
end
end
get '/formula/:name' do
f = Formula.factory(params[:name])
installed = <<-EOS
<dt>Installed at</dt>
<dd><a href=\"file://#{f.prefix}\">#{f.prefix}</a></dd>
EOS
html_page("Formula: #{f.name}") do |s|
s << <<-HTML
<h1>#{f.name}</h1>
<dl class="dl-horizontal">
<dt>Version</dt>
<dd>#{f.version}</dd>
<dt>Homepage</dt>
<dd><a href="#{f.homepage}">#{f.homepage}</a></dd>
<dt>Download</dt>
<dd><a href="#{f.url}">#{f.url}</a></dd>
#{installed if f.installed?}
HTML
unless f.deps.empty?
s << <<-HTML
<dt>Depends on</td>
HTML
f.deps.each do |dep|
s << "<dd>#{link_to_formula(dep.name)}</dd>"
end
end
used_by = Formula.select { |ff| ff.deps.include?(f) }.map(&:name).flatten.uniq.sort
unless used_by.empty?
s << <<-HTML
<dt>Used by</td>
HTML
used_by.each do |name|
s << "<dd>#{link_to_formula(name)}</dd>"
end
end
s << <<-HTML
</dl>
HTML
end
end
get '/installed' do
html_page("Installed Formulae") do |s|
s << <<-HTML
<h3>Installed Formulae:</h3>
<table class="table"><tr><th>Name</th><th>Version</th></tr>
HTML
Formula.installed.each do |f|
s << "<tr><td>#{link_to_formula(f.name)}</td><td>#{f.version}</td></tr>"
end
s << <<-HTML
</table>
HTML
end
end
puts "View our tasting menu at http://localhost:4567/\nUse \"Control-C\" to exit.\n\n"
|