12.3 Iteration G3: Downloading an eBook 12.1 Iteration G1: Capturing an Order
Demonstrate various respond_to/format options, as well as "through" relations and basic authentication.
Define a "who_bought" member action
edit app/controllers/products_controller.rb
def who_bought
@product = Product.find(params[:id])
@latest_order = @product.orders.order(:updated_at).last
if stale?(@latest_order)
respond_to do |format|
format.atom
end
end
end
Define an Atom view (using the Atom builder)
edit app/views/products/who_bought.atom.builder
atom_feed do |feed|
feed.title "Who bought #{@product.title}"
feed.updated @latest_order.try(:updated_at)
@product.orders.each do |order|
feed.entry(order) do |entry|
entry.title "Order #{order.id}"
entry.summary type: 'xhtml' do |xhtml|
xhtml.p "Shipped to #{order.address}"
xhtml.table do
xhtml.tr do
xhtml.th 'Product'
xhtml.th 'Quantity'
xhtml.th 'Total Price'
end
order.line_items.each do |item|
xhtml.tr do
xhtml.td item.product.title
xhtml.td item.quantity
xhtml.td number_to_currency item.total_price
end
end
xhtml.tr do
xhtml.th 'total', colspan: 2
xhtml.th number_to_currency \
order.line_items.map(&:total_price).sum
end
end
xhtml.p "Paid by #{order.pay_type}"
end
entry.author do |author|
author.name order.name
author.email order.email
end
end
end
end
Add "orders" to the Product class
edit app/models/product.rb
class Product < ActiveRecord::Base
has_many :line_items
has_many :orders, through: :line_items
#...
end
Add to the routes
edit config/routes.rb
Fetch the Atom feed
curl --max-time 15 --silent --user dave:secret http://localhost:3000/products/2/who_bought.atom
<?xml version="1.0" encoding="UTF-8"?>
<feed xml:lang="en-US" xmlns="http://www.w3.org/2005/Atom">
<id>tag:localhost,2005:/products/2/who_bought</id>
<link rel="alternate" type="text/html" href="http://localhost:3000"/>
<link rel="self" type="application/atom+xml" href="http://localhost:3000/products/2/who_bought.atom"/>
<title>Who bought CoffeeScript</title>
<updated>2016-03-06T17:41:35Z</updated>
<entry>
<id>tag:localhost,2005:Order/1</id>
<published>2016-03-06T17:41:35Z</published>
<updated>2016-03-06T17:41:35Z</updated>
<link rel="alternate" type="text/html" href="http://localhost:3000/orders/1"/>
<title>Order 1</title>
<summary type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<p>Shipped to 123 Main St</p>
<table>
<tr>
<th>Product</th>
<th>Quantity</th>
<th>Total Price</th>
</tr>
<tr>
<td>CoffeeScript</td>
<td>1</td>
<td>$36.00</td>
</tr>
<tr>
<th colspan="2">total</th>
<th>$36.00</th>
</tr>
</table>
<p>Paid by Check</p>
</div>
</summary>
<author>
<name>Dave Thomas</name>
<email>customer@example.com</email>
</author>
</entry>
</feed>
Look at the headers
curl --max-time 15 --silent --dump - --output /dev/null --user dave:secret http://localhost:3000/products/2/who_bought.atom
HTTP/1.1 200 OK
X-Frame-Options: SAMEORIGIN
X-Xss-Protection: 1; mode=block
X-Content-Type-Options: nosniff
Etag: "3c159b21b1fff22d209a3206cf86ca69"
Last-Modified: Sun, 06 Mar 2016 17:41:35 GMT
Content-Type: application/atom+xml; charset=utf-8
Cache-Control: max-age=0, private, must-revalidate
X-Request-Id: 7dba2bbd-4c60-4463-9a73-6d4450643446
X-Runtime: 0.008327
Server: WEBrick/1.3.1 (Ruby/2.1.5/2014-11-13)
Date: Sun, 06 Mar 2016 17:41:36 GMT
Content-Length: 1324
Connection: Keep-Alive
curl --max-time 15 --silent --dump - --output /dev/null --user dave:secret http://localhost:3000/products/2/who_bought.atom -H 'If-None-Match: "3c159b21b1fff22d209a3206cf86ca69"'
HTTP/1.1 304 Not Modified
X-Frame-Options: SAMEORIGIN
X-Xss-Protection: 1; mode=block
X-Content-Type-Options: nosniff
Etag: "3c159b21b1fff22d209a3206cf86ca69"
Last-Modified: Sun, 06 Mar 2016 17:41:35 GMT
Cache-Control: max-age=0, private, must-revalidate
X-Request-Id: 6bf80ff3-9e32-4438-b37f-ee428a0c284c
X-Runtime: 0.003459
Server: WEBrick/1.3.1 (Ruby/2.1.5/2014-11-13)
Date: Sun, 06 Mar 2016 17:41:36 GMT
Connection: Keep-Alive
curl --max-time 15 --silent --dump - --output /dev/null --user dave:secret http://localhost:3000/products/2/who_bought.atom -H 'If-Modified-Since: Sun, 06 Mar 2016 17:41:35 GMT'
HTTP/1.1 304 Not Modified
X-Frame-Options: SAMEORIGIN
X-Xss-Protection: 1; mode=block
X-Content-Type-Options: nosniff
Etag: "3c159b21b1fff22d209a3206cf86ca69"
Last-Modified: Sun, 06 Mar 2016 17:41:35 GMT
Cache-Control: max-age=0, private, must-revalidate
X-Request-Id: 6d3f322b-eace-449f-82ef-8a858dcf07b3
X-Runtime: 0.004088
Server: WEBrick/1.3.1 (Ruby/2.1.5/2014-11-13)
Date: Sun, 06 Mar 2016 17:41:36 GMT
Connection: Keep-Alive
12.3 Iteration G3: Downloading an eBook 12.1 Iteration G1: Capturing an Order