Project

General

Profile

Hacking Workbench » History » Version 10

Tom Clegg, 06/11/2014 11:10 PM

1 1 Tom Clegg
h1. Hacking Workbench
2
3
{{toc}}
4
5
h2. Source tree layout
6
7
Everything is in @/apps/workbench@.
8
9
Key pieces to know about before going much further:
10
11
|/|Usual Rails project layout|
12
|/app/controllers/application_controller.rb|Controller superclass with authentication setup, error handling, and generic CRUD actions|
13
|/app/controllers/*.rb|Actions other than generic CRUD (users#activity, jobs#generate_provenance, ...)|
14
|/app/models/arvados_base.rb|Default Arvados model behavior and ActiveRecord-like accessors and introspection features|
15
|/app/models/arvados_resource_list.rb|ActiveRelation-like class (what you get from Model.where() etc.)|
16
17
h2. Unlike a typical Rails project...
18
19 7 Peter Amstutz
* ActiveRecord in Workbench doesn't talk to the database directly, but instead queries the Arvados API as REST client.
20
* The Arvados query API is somewhat limited and doesn't accept SQL statements, so Workbench has to work harder to get what it needs.
21 1 Tom Clegg
* Workbench itself only has the privileges of the Workbench user: when making Arvados API calls, it uses the API token provided by the user.
22
23
h2. Unlike what you might expect...
24
25
* Workbench doesn't use the Ruby SDK. It uses a sort of baked-in Rails SDK.
26
** TODO: move it out of Workbench into a gem.
27
** TODO: use the Ruby SDK under the hood.
28
29
h2. Running in development mode
30
31 2 Misha Zatsman
h3. SSL certificates
32
33 4 Tom Clegg
You can get started quickly with SSL by generating a self-signed certificate:
34 1 Tom Clegg
35
 openssl req -new -x509 -nodes -out ~/self-signed.pem -keyout ~/self-signed.key -days 3650 -subj '/CN=arvados.example.com'
36
37
Alternatively, download a set from the bottom of the [[API server]] page.
38 2 Misha Zatsman
39
h3. Download and configure
40 1 Tom Clegg
41 2 Misha Zatsman
Follow "these instructions":http://doc.arvados.org/install/install-workbench-app.html to download the source and configure your workbench instance.
42 3 Misha Zatsman
43 4 Tom Clegg
h3. Start the server
44 1 Tom Clegg
45 4 Tom Clegg
Save something like the following at @~/bin/workbench@, make it executable[1], make sure @~/bin@ is in your path[2]:
46 1 Tom Clegg
47
 #!/bin/sh
48
set -e
49
cd ~/arvados/apps/workbench
50
export RAILS_ENV=development
51 5 Tom Clegg
bundle install --path=vendor/bundle
52 4 Tom Clegg
exec bundle exec passenger start -p 3031 --ssl --ssl-certificate ~/self-signed.pem --ssl-certificate-key ~/self-signed.key
53 1 Tom Clegg
54
The first time you run the above it will take a while to install all the ruby gems. In particular @Installing nokogiri@ takes a while
55
56
Once you see:
57
58
 =============== Phusion Passenger Standalone web server started ===============
59
60
You can visit your server at:
61
62 4 Tom Clegg
 @https://{ip-or-host}:3031/@
63
64 6 Misha Zatsman
You can kill your server with @ctrl-C@ but if you get disconnected from the terminal, it will continue running. You can kill it by running
65
66
 @ps x |grep nginx |grep master@
67
68
And then
69
70
 @kill ####@
71
72
Replacing #### with the number in the left column returned by ps
73
74 4 Tom Clegg
fn1. @chmod +x ~/bin/workbench@
75
76
fn2. In Debian systems, the default .profile adds ~/bin to your path, but only if it exists when you log in. If you just created ~/bin, doing @exec bash -login@ or @source .profile@ should make ~/bin appear in your path.
77
78
h2. Running tests
79
80
The test suite brings up an API server in test mode, and runs browser tests with Firefox.
81
82
Make sure API server has its dependencies in place.
83
84
<pre>
85 5 Tom Clegg
(cd ../../services/api && RAILS_ENV=test bundle install --path=vendor/bundle)
86 4 Tom Clegg
</pre>
87
88
Install headless testing tools.
89
90
<pre>
91
sudo apt-get install xvfb iceweasel
92
</pre>
93
94
(Install firefox instead of iceweasel if you're not using Debian.)
95
96 10 Tom Clegg
Install phantomjs. (See http://phantomjs.org/download.html for latest version.)
97
98
<pre>
99
wget -P /tmp https://bitbucket.org/ariya/phantomjs/downloads/phantomjs-1.9.7-linux-x86_64.tar.bz2
100
sudo tar -C /usr/local -xjf /tmp/phantomjs-1.9.7-linux-x86_64.tar.bz2
101
sudo ln -s ../phantomjs-1.9.7-linux-x86_64/bin/phantomjs /usr/local/bin/
102
</pre>
103
104 4 Tom Clegg
Run the test suite.
105
106
<pre>
107
RAILS_ENV=test bundle exec rake test
108 1 Tom Clegg
</pre>
109 9 Tom Clegg
110
To aid debugging, when an integration test fails (or skips) a screenshot is automatically saved in @arvados/apps/workbench/tmp/workbench-fail-1.png@, etc.
111
112 1 Tom Clegg
h2. Loading state from API into models
113
114
If your model makes an API call that returns the new state of an object, load the new attributes into the local model with @private_reload@:
115
116
<pre><code class="ruby">
117
  api_response = $arvados_api_client.api(...)
118
  private_reload api_response
119
</code></pre>
120
121
h2. Features
122
123
h3. Authentication
124
125
ApplicationController uses an around_filter to make sure the user is logged in, redirect to Arvados to complete the login procedure if not, and store the user's API token in Thread.current[:arvados_api_token] if so.
126
127
The @current_user@ helper returns User.current if the user is logged in, otherwise nil. (Generally, only special pages like "welcome" and "error" get displayed to users who aren't logged in.)
128
129
h3. Default filter behavior
130
131
@before_filter :find_object_by_uuid@
132
133
* This is enabled by default, @except :index, :create@.
134
* It renames the @:id@ param to @:uuid@. (The Rails default routing rules use @:id@ to accept params in path components, but @params[:uuid]@ makes more sense everywhere else in our code.)
135
* If you define a collection method (where there's no point looking up an object with the :id supplied in the request), skip this.
136
137
<pre><code class="ruby">
138
  skip_before_filter :find_object_by_uuid, only: [:action_that_takes_no_uuid_param]
139
</code></pre>
140
141
h3. Error handling
142
143
ApplicationController has a render_error method that shows a standard error page. (It's not very good, but it's better than a default Rails stack trace.)
144
145
In a controller you get there like this
146
147
<pre><code class="ruby">
148
  @errors = ['I could not achieve what you wanted.']
149
  render_error status: 500
150
</code></pre>
151
152
You can also do this, anywhere
153
154
<pre><code class="ruby">
155
  raise 'My spoon is too big.'
156
</code></pre>
157
158
The @render_error@ method sends JSON or HTML to the client according to the Accept header in the request (it sends JSON if JavaScript was requested), so reasonable things happen whether or not the request is AJAX.
159
160
h2. Development patterns
161
162
h3. Add a model
163
164
Currently, when the API provides a new model, we need to generate a corresponding model in Workbench: it's not smart enough to pick up the list of models from the API server's discovery document.
165
166
_(Need to fill in details here)_
167
# @rails generate model ....@
168
# Delete migration
169 8 Peter Amstutz
# Change base class to ArvadosBase
170
# @rails generate controller ...@ 
171 1 Tom Clegg
172
Model _attributes_, on the other hand, are populated automatically.
173
174
h3. Add a configuration knob
175
176
Same situation as API server. See [[Hacking API Server]].
177
178
h3. Add an API method
179
180
Workbench is not yet smart enough to look in the discovery document for supported API methods. You need to add a method to the appropriate model class before you can use it in the Workbench app.
181
182
h3. Writing tests
183
184
(TODO)
185
186
h3. AJAX using Rails UJS (remote:true with JavaScript response)
187
188
This pattern is the best way to make a button/link that invokes an asynchronous action on the Workbench server side, i.e., before/without navigating away from the current page.
189
190
# Add <code class="ruby">remote: true</code> to a link or button. This makes Rails put a <code class="html">data-remote="true"</code> attribute in the HTML element. Say, in @app/views/fizz_buzzes/index.html.erb@:
191
<pre><code class="ruby">
192
<%= link_to "Blurfl", blurfl_fizz_buzz_url(id: @object.uuid), {class: 'btn btn-primary', remote: true} %>
193
</code></pre>
194
# Ensure the targeted action responds appropriately to both "js" and "html" requests. At minimum:
195
<pre><code class="ruby">
196
class FizzBuzzesController
197
  #...
198
  def blurfl
199
    @howmany = 1
200
    #...
201
    respond_to do |format|
202
      format.js
203
      format.html
204
    end
205
  end
206
end
207
</code></pre>
208
# The @html@ view is used if this is a normal page load (presumably this means the client has turned off JS).
209
#* @app/views/fizz_buzz/blurfl.html.erb@
210
<pre><code>
211
<p>I am <%= @howmany %></p>
212
</code></pre>
213
# The @js@ view is used if this is an AJAX request. It renders as JavaScript code which will be executed in the browser. Say, in @app/views/fizz_buzz/blurfl.js.erb@:
214
<pre><code class="javascript">
215
window.alert('I am <%= @howmany %>');
216
</code></pre>
217
# The browser opens an alert box:
218
<pre>
219
I am 1
220
</pre>
221
# A common task is to render a partial and use it to update part of the page. Say the partial is in @app/views/fizz_buzz/_latest_news.html.erb@:
222
<pre><code class="javascript">
223
var new_content = "<%= escape_javascript(render partial: 'latest_news') %>";
224
if ($('div#latest-news').html() != new_content)
225
   $('div#latest-news').html(new_content);
226
</code></pre>
227
228
*TODO: error handling*
229
230
h3. AJAX invoked from custom JavaScript (JSON response)
231
232
(and error handling)
233
234
h3. Add JavaScript triggers and fancy behavior
235
236
Some guidelines for implementing stuff nicely in JavaScript:
237
* Don't rely on the DOM being loaded before your script is loaded.
238
** If you need to inspect/alter the DOM as soon as it's loaded, make a setup function that fires on "document ready" and "ajax:complete".
239
** jQuery's delegated event pattern can help keep your code clean. See http://api.jquery.com/on/
240
<pre><code class="javascript">
241
// worse:
242
$('table.fizzbuzzer tr').
243
    on('mouseover', function(e, xhr) {
244
        console.log("This only works if the table exists when this setup script is executed.");
245
    });
246
// better:
247
$(document).
248
    on('mouseover', 'table.fizzbuzzer tr', function(e, xhr) {
249
        console.log("This works even if the table appears (or has the fizzbuzzer class added) later.");
250
    });
251
</code></pre>
252
253
* If your code really only makes sense for a particular view, rather than embedding @<script>@ tags in the middle of the page,
254
** use this:
255
<pre><code class="ruby">
256
<% content_for :js do %>
257
console.log("hurray, this goes in HEAD");
258
<% end %>
259
</code></pre>
260
** or, if your code should run after [most of] the DOM is loaded:
261
<pre><code class="ruby">
262
<% content_for :footer_js do %>
263
console.log("hurray, this runs at the bottom of the BODY element in the default layout.");
264
<% end %>
265
</code></pre>
266
267
* Don't just write JavaScript on the @fizz_buzzes/blurfl@ page and rely on the fact that the only @table@ element on the page is the one you want to attach your special behavior to. Instead, add a class to the table, and use a jQuery selector to attach special behavior to it.
268
** In @app/views/fizz_buzzes/blurfl.html.erb@
269
<pre>
270
<table class="fizzbuzzer">
271
 <tr>
272
  <td>fizz</td><td>buzz</td>
273
 </tr>
274
</table>
275
</pre>
276
** In @app/assets/javascripts/fizz_buzzes.js@
277
<pre><code class="javascript">
278
<% content_for :js do %>
279
$(document).on('mouseover', 'table.fizzbuzzer tr', function() {
280
    console.log('buzz');
281
});
282
<% end %>
283
</code></pre>
284
** Advantage: You can reuse the special behavior in other tables/pages/classes
285
** Advantage: The JavaScript can get compiled, minified, cached in the browser, etc., instead of being rendered with every page view
286
** Advantage: The JavaScript code is available regardless of how the content got into the DOM (regular page view, partial update with AJAX)
287
288
h3. Invoking selected-things picker
289
290
(TODO)
291
292
h3. Tabs/panes on index & show pages
293
294
(TODO)
295
296
h3. User notifications
297
298
(TODO)
299
300
h3. Customizing breadcrumbs
301
302
(TODO)
303
304
h3. Making a page accessible before login
305
306
(TODO)
307
308
h3. Making a page accessible to non-active users
309
310
(TODO)