Created by Tim McEwan, @tjmcewan
Goal
The goal of this tutorial is to create a coffee listing application without the magic of Rails. You will hopefully gain a greater understanding of the underlying principles involved in programming web applications, and gain a greater appreciation for some of the things Rails does for you.
This tutorial uses Sinatra as a tool to demonstrate some basic web principles. Sinatra is a small framework for creating web applications in Ruby with minimal effort. You can find a list of things built with Sinatra here.
0.Install Sinatra » “Hello World”
Let’s start off by getting Sinatra running.
In your terminal, install the gem:
gem install sinatra
1.“Hello World”
Create a file called app.rb
and paste the following into Sublime Text:
require "sinatra"
get "/" do
"Hello world!"
end
And back in your terminal, run with:
ruby app.rb
View your current site at: http://localhost:4567
Hit ctrl-c
at your command prompt to stop your app. (Just like for your Rails app!)
2.Reload your files
Sinatra doesn’t reload your code changes for you like Rails does, so let’s add an extension to Sinatra to get this functionality. In the console:
gem install sinatra-contrib
And in app.rb
(in Sublime Text), after the require "sinatra" line
, add:
require "sinatra/reloader"
Now start up your app again with:
ruby app.rb
Everything should look the same as it did before, but now you can change the files and your site should reload the files. Give it a try! Change the “Hello world!” text to something else (maybe “I love Ruby!”) and refresh your browser.
If you get stuck, make sure your app.rb looks like this one.
3.Web Inspector » Request Headers
In your browser, open up your web console. (For most browsers, this can be accessed by right clicking something on the page and choosing “Inspect Element”.) I recommend you use Chrome for this; if you are using Chrome, you’re looking for the ‘Network’ tab.
Refresh your browser, then click on the ‘localhost’ line in the web inspector, then in the Headers tab, click ‘view source’. You should see something similar to this:
GET / HTTP/1.1
Host: localhost:4567
Connection: keep-alive
Cache-Control: max-age=0
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8
User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/33.0.1750.70 Safari/537.36
Accept-Encoding: gzip,deflate,sdch
Accept-Language: en-US,en;q=0.8
Coach: Explain what HTTP headers are and they mean.
The important part to note is the first line GET / HTTP/1.1
- this is what a “GET” request for a server’s “root URL” looks like. You can also see this in Sinatra’s log output, in the terminal window.
Note: If Sinatra says it has “backup from WEBrick”, Ruby’s built-in webserver, then you may see multiple GET requests each time you refresh. Only one request is actually being issued, you can safely ignore the other.
4. HTML Form » Get Parameters
To get our coffees into our app, we’ll need an HTML form to send through which coffee we want and how much it costs. Replace your get "/"
from above with this:
get "/" do
"""
<html>
<body>
<form action='/' method='get'>
What: <input name='what'>
Cost: <input name='cost'>
<button type='submit'>add coffee</button>
</form>
<!-- coffees go here -->
</body>
</html>
"""
end
Hint: triple quotes in Ruby will preserve new lines.
For simplicty, this form sends the information to the same URL (“/”). Refresh your browser and you should see the form you just created.
Now let’s see what the browser sends to the server when you submit the form. Put some text into the form and click the ‘add coffee’ button. Check out the request headers in the Network tab and you should see something like this:
GET /?what=flat+white&cost=3.50 HTTP/1.1
Coach: Talk about where the parameter names come from and what the question mark is doing.
If it’s not quite working, make sure your code looks like this code.
5. Store coffees » Global Variable
So our form is sending the coffee info to our app, but we’re not doing anything with it yet. We should save the coffee information before we send the HTML form to the browser. For simplicity, let’s just store the coffee details in a variable. So that they’ll be available between requests, we’ll need to use a global variable. This is a drastically simplified version of what Rails calls the Model layer.
Add this to your app.rb
somewhere (convention says it should be near the top, under the require
lines):
$coffees = []
This creates an empty array when your app first starts up.
Hint: This global variable won’t be around for very long - it will be reset to the empty array each time the server restarts. Because we’re using Sinatra’s reloader, this will be every time you save your app.rb
file. Don’t worry though, it will suit our purposes nicely.
Now you’ll need to get the information into that $coffees
array when the request is received. When you fill in your form and click the submit button, Sinatra grabs the information out of the URL and makes it available as a Hash called params
.
Have a go at adding the coffee params to the $coffees variable yourself, but first replace <!-- coffees go here -->
in your form with:
#{ $coffees.inspect }
This will display the $coffees
variable in the HTML in your browser so we can tell if the information is being stored.
You should do the same with params.inspect
, to see how the parameters are stored.
Hint: If you get stuck, try Ruby’s Array documentation first. If you’re still stuck, check here.
If you’re storing your params correctly, you should be able to refresh the browser and see that a new hash gets added to the $coffees
array each time.
6. Template Method
That big string in our get
route is making it a bit hard to see what our app does, so let’s move it to its own method. Copy the HTML form out of your get
route and paste it into a method called template
. Like so:
def template
# put your HTML form string here
end
Hint: The part you copy should include the triple quotes.
Then replace the form from your get
route with a simple call to the template method, like so:
get "/" do
$coffees << params
template
end
This will also make it easier to re-use the form, should we ever need to.
Hint: Check here if something went awry.
7. Remove Get
As you saw in the store coffees section, if you refresh your browser, your app adds the information into the $coffees
global repeatedly. This is because we’re storing the params from the URL each time our get
route is requested.
This is a good point to mention that GET
requests should not do things that change the state of the system - it’s too easy for unintended side-effects to occur. Things that are meant to be stored in the system or manipulate something should be sent via a POST
request.
So armed with that knowledge, let’s change our form’s method to post
:
- Locate the section in the form that specifies the method as
get
and change it topost
. - Now refresh your browser and submit a new coffee.
Uh oh! Welcome to Sinatra’s lovely error page, if you haven’t encountered it yet today. The message at the bottom should say this:
Try this:
post '/' do
"Hello World"
end
This is Sinatra’s way of telling you that the route you requested doesn’t exist. You may also know this as HTTP error number 404: page not found.
8. Add Post
Let’s add our post
route into Sinatra (don’t remove the get one!):
- Grab the “Hello world”
post
route from Sinatra’s 404 page and put it after ourget
route. (Hint: Do not copy from above; this page uses smart quotes & will break your code.) - Replace the “Hello world” with a call to our
template
method. (Hint: Don’t remove the call totemplate
from ourget
route.) - Now move the line that stores the coffee params over from the
get
route (ensure this goes above the call totemplate
).
As usual, you can check your progress over here.
Now if you refresh the page after submitting a coffee, you should see a warning from your browser that it needs to resubmit the form in order to load the page:
This is a much better situation than before - this will prompt us to think about the consequences and we will probably avoid inadvertantly adding the same coffee multiple times.
Do you think it would stop non-technical users from refreshing the page? Instead of worrying about the answer to that, let’s just make it so we don’t have to. We can do better!
9. Add a Redirect
The fundamental issue is that our application sends back a proper HTML response when a POST
request is issued and this represents the page’s location. When you refresh the page, you’re asking the browser to re-request this location and the only way it knows how to get to that location is to send that POST
request (which often changes the system, so isn’t what we want).
The way to fix this is to not send a proper HTML response back. Instead of the call to our template
method, we redirect the browser to another location.
In Sinatra, it looks like this:
redirect "/"
Try first, then check it here.
This sends back a special redirect response (HTTP 303) with a location
header that specifies where the browser should go:
HTTP/1.1 303 See Other
<…>
Location: http://localhost:4567/
To see this in action, have a look in Chrome’s Web Inspector (Network tab) and send your app a coffee:
The first line shows the browser submitting the form via the POST
request method. The response it receives is an HTTP 303, containing the Location
header. It then issues a GET
request for that location (which corresponds to our root URL, “/”) and renders the response it gets from there - which is our HTML template.
Now you can refresh all you want and all you’re doing is requesting using GET
, not POST
. Your browser doesn’t have to submit the form any more to display that page.
This is the end of the tutorial - you’ve done an excellent job!
Thanks for playing!
Additional Guides
If you were fast and would like to continue on, you can try:
- rendering our coffee list in proper HTML LUCY-TODO