Skip to content

Commit b300d11

Browse files
committed
Update to new version of Getting Started Guide - much more Railsish and works on beta 3
1 parent e6d92a6 commit b300d11

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

41 files changed

+578
-280
lines changed
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
11
class ApplicationController < ActionController::Base
22
protect_from_forgery
3+
4+
private
5+
6+
def authenticate
7+
authenticate_or_request_with_http_basic do |user_name, password|
8+
user_name == 'admin' && password == 'password'
9+
end
10+
end
311
end
+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
class CommentsController < ApplicationController
2+
3+
before_filter :authenticate, :only => [:destroy]
4+
5+
def create
6+
@post = Post.find(params[:post_id])
7+
@comment = @post.comments.create(params[:comment])
8+
redirect_to post_path(@post)
9+
end
10+
11+
def destroy
12+
@post = Post.find(params[:post_id])
13+
@comment = @post.comments.find(params[:id])
14+
@comment.destroy
15+
redirect_to post_path(@post)
16+
end
17+
18+
end

app/controllers/home_controller.rb

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
class HomeController < ApplicationController
2+
def index
3+
end
4+
5+
end

app/controllers/posts_controller.rb

+91
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,91 @@
1+
class PostsController < ApplicationController
2+
3+
before_filter :authenticate, :except => [:index, :show]
4+
5+
# GET /posts
6+
# GET /posts.xml
7+
def index
8+
@posts = Post.all
9+
10+
respond_to do |format|
11+
format.html # index.html.erb
12+
format.xml { render :xml => @posts }
13+
end
14+
end
15+
16+
# GET /posts/1
17+
# GET /posts/1.xml
18+
def show
19+
@post = Post.find(params[:id])
20+
21+
respond_to do |format|
22+
format.html # show.html.erb
23+
format.xml { render :xml => @post }
24+
end
25+
end
26+
27+
# GET /posts/new
28+
# GET /posts/new.xml
29+
def new
30+
@post = Post.new
31+
32+
respond_to do |format|
33+
format.html # new.html.erb
34+
format.xml { render :xml => @post }
35+
end
36+
end
37+
38+
# GET /posts/1/edit
39+
def edit
40+
@post = Post.find(params[:id])
41+
end
42+
43+
# POST /posts
44+
# POST /posts.xml
45+
def create
46+
@post = Post.new(params[:post])
47+
48+
respond_to do |format|
49+
if @post.save
50+
format.html { redirect_to(@post,
51+
:notice => 'Post was successfully created.') }
52+
format.xml { render :xml => @post,
53+
:status => :created, :location => @post }
54+
else
55+
format.html { render :action => "new" }
56+
format.xml { render :xml => @post.errors,
57+
:status => :unprocessable_entity }
58+
end
59+
end
60+
end
61+
62+
# PUT /posts/1
63+
# PUT /posts/1.xml
64+
def update
65+
@post = Post.find(params[:id])
66+
67+
respond_to do |format|
68+
if @post.update_attributes(params[:post])
69+
format.html { redirect_to(@post,
70+
:notice => 'Post was successfully updated.') }
71+
format.xml { head :ok }
72+
else
73+
format.html { render :action => "edit" }
74+
format.xml { render :xml => @post.errors,
75+
:status => :unprocessable_entity }
76+
end
77+
end
78+
end
79+
80+
# DELETE /posts/1
81+
# DELETE /posts/1.xml
82+
def destroy
83+
@post = Post.find(params[:id])
84+
@post.destroy
85+
86+
respond_to do |format|
87+
format.html { redirect_to(posts_url) }
88+
format.xml { head :ok }
89+
end
90+
end
91+
end

app/helpers/comments_helper.rb

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
module CommentsHelper
2+
end

app/helpers/home_helper.rb

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
module HomeHelper
2+
end

app/helpers/posts_helper.rb

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
module PostsHelper
2+
def join_tags(post)
3+
post.tags.map { |t| t.name }.join(", ")
4+
end
5+
end

app/models/comment.rb

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
class Comment < ActiveRecord::Base
2+
belongs_to :post
3+
end

app/models/post.rb

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
class Post < ActiveRecord::Base
2+
validates :name, :presence => true
3+
validates :title, :presence => true,
4+
:length => { :minimum => 5 }
5+
6+
has_many :comments, :dependent => :destroy
7+
has_many :tags
8+
9+
accepts_nested_attributes_for :tags, :allow_destroy => :true,
10+
:reject_if => proc { |attrs| attrs.all? { |k, v| v.blank? } }
11+
12+
end

app/models/tag.rb

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
class Tag < ActiveRecord::Base
2+
belongs_to :post
3+
end

app/views/comments/_comment.html.erb

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
<p>
2+
<b>Commenter:</b>
3+
<%= comment.commenter %>
4+
</p>
5+
6+
<p>
7+
<b>Comment:</b>
8+
<%= comment.body %>
9+
</p>
10+
11+
<p>
12+
<%= link_to 'Destroy Comment', [comment.post, comment],
13+
:confirm => 'Are you sure?',
14+
:method => :delete %>
15+
</p>

app/views/comments/_form.html.erb

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
<% form_for([@post, @post.comments.build]) do |f| %>
2+
<%= f.error_messages %>
3+
4+
<div class="field">
5+
<%= f.label :commenter %><br />
6+
<%= f.text_field :commenter %>
7+
</div>
8+
<div class="field">
9+
<%= f.label :body %><br />
10+
<%= f.text_area :body %>
11+
</div>
12+
<div class="actions">
13+
<%= f.submit %>
14+
</div>
15+
<% end %>

app/views/home/index.html.erb

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
<h1>Hello, Rails!</h1>
2+
<%= link_to "My Blog", posts_path %>

app/views/layouts/posts.html.erb

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
<!DOCTYPE html>
2+
<html>
3+
<head>
4+
<title>Posts: <%= controller.action_name %></title>
5+
<%= stylesheet_link_tag 'scaffold' %>
6+
<%= javascript_include_tag :defaults %>
7+
<%= csrf_meta_tag %>
8+
</head>
9+
<body style="background: #EEEEEE;">
10+
11+
<p class="notice"><%= notice %></p>
12+
13+
<%= yield %>
14+
15+
</body>
16+
</html>

app/views/posts/_form.html.erb

+23
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
<% @post.tags.build %>
2+
<% form_for(@post) do |post_form| %>
3+
<%= post_form.error_messages %>
4+
5+
<div class="field">
6+
<%= post_form.label :name %><br />
7+
<%= post_form.text_field :name %>
8+
</div>
9+
<div class="field">
10+
<%= post_form.label :title %><br />
11+
<%= post_form.text_field :title %>
12+
</div>
13+
<div class="field">
14+
<%= post_form.label :content %><br />
15+
<%= post_form.text_area :content %>
16+
</div>
17+
<h2>Tags</h2>
18+
<%= render :partial => 'tags/form',
19+
:locals => {:form => post_form} %>
20+
<div class="actions">
21+
<%= post_form.submit %>
22+
</div>
23+
<% end %>

app/views/posts/edit.html.erb

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
<h1>Editing post</h1>
2+
3+
<%= render 'form' %>
4+
5+
<%= link_to 'Show', @post %> |
6+
<%= link_to 'Back', posts_path %>

app/views/posts/index.html.erb

+27
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
<h1>Listing posts</h1>
2+
3+
<table>
4+
<tr>
5+
<th>Name</th>
6+
<th>Title</th>
7+
<th>Content</th>
8+
<th></th>
9+
<th></th>
10+
<th></th>
11+
</tr>
12+
13+
<% @posts.each do |post| %>
14+
<tr>
15+
<td><%= post.name %></td>
16+
<td><%= post.title %></td>
17+
<td><%= post.content %></td>
18+
<td><%= link_to 'Show', post %></td>
19+
<td><%= link_to 'Edit', edit_post_path(post) %></td>
20+
<td><%= link_to 'Destroy', post, :confirm => 'Are you sure?', :method => :delete %></td>
21+
</tr>
22+
<% end %>
23+
</table>
24+
25+
<br />
26+
27+
<%= link_to 'New post', new_post_path %>

app/views/posts/new.html.erb

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
<h1>New post</h1>
2+
3+
<%= render 'form' %>
4+
5+
<%= link_to 'Back', posts_path %>

app/views/posts/show.html.erb

+30
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
<p>
2+
<b>Name:</b>
3+
<%= @post.name %>
4+
</p>
5+
6+
<p>
7+
<b>Title:</b>
8+
<%= @post.title %>
9+
</p>
10+
11+
<p>
12+
<b>Content:</b>
13+
<%= @post.content %>
14+
</p>
15+
16+
<p>
17+
<b>Tags:</b>
18+
<%= join_tags(@post) %>
19+
</p>
20+
21+
<h2>Comments</h2>
22+
<%= render :partial => "comments/comment",
23+
:collection => @post.comments %>
24+
25+
<h2>Add a comment:</h2>
26+
<%= render "comments/form" %>
27+
28+
29+
<%= link_to 'Edit Post', edit_post_path(@post) %> |
30+
<%= link_to 'Back to Posts', posts_path %> |

app/views/tags/_form.html.erb

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
<% form.fields_for :tags do |tag_form| %>
2+
<div class="field">
3+
<%= tag_form.label :name, 'Tag:' %>
4+
<%= tag_form.text_field :name %>
5+
</div>
6+
<% unless tag_form.object.nil? || tag_form.object.new_record? %>
7+
<div class="field">
8+
<%= tag_form.label :_destroy, 'Remove:' %>
9+
<%= tag_form.check_box :_destroy %>
10+
</div>
11+
<% end %>
12+
<% end %>

config/initializers/cookie_verification_secret.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,4 @@
44
# If you change this key, all old signed cookies will become invalid!
55
# Make sure the secret is at least 30 characters and all random,
66
# no regular words or you'll be exposed to dictionary attacks.
7-
ActionController::Base.cookie_verifier_secret = 'b49646ea6d739eaf732c9977a35fae4928c719ce02bf81adec251b6e0301d6866083a9ea329af9dc04d35bf73c742a6e1febd947fbb0a4a8a0d57e17c9e5aa31'
7+
ActionController::Base.cookie_verifier_secret = 'f33f6335d4833a906db65431f40791d2c7e035d13144e746091e5b13fa3b45092e9fff4f923f4b7b8744ec5e4e683a4c3323a31055a7ce6e450d0e5175f13e30'

config/initializers/session_store.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
# no regular words or you'll be exposed to dictionary attacks.
77
ActionController::Base.session = {
88
:key => '_blog_session',
9-
:secret => 'fbb4abe4b094181f81debf66995a0b7780ff1a3e51057b2844f62edd3dd4ea90c7f5e4c2bead86d1994e5b83432622c33f45719573544204348e6bc47514d851'
9+
:secret => '5a6015623c2ac0bcc7f2f63e72d826daeca73cb7865b055ffbc7e353b8e4a70e71543078efe7c5386822495ad3a444e5200bbebc7320ea47e7b28af663c60ff1'
1010
}
1111

1212
# Use the database for sessions instead of the cookie-based default,

config/routes.rb

+6
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,10 @@
11
Blog::Application.routes.draw do |map|
2+
resources :posts do
3+
resources :comments
4+
end
5+
6+
root :to => "home#index"
7+
28
# The priority is based upon order of creation:
39
# first created -> highest priority.
410

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
class CreatePosts < ActiveRecord::Migration
2+
def self.up
3+
create_table :posts do |t|
4+
t.string :name
5+
t.string :title
6+
t.text :content
7+
8+
t.timestamps
9+
end
10+
end
11+
12+
def self.down
13+
drop_table :posts
14+
end
15+
end
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
class CreateComments < ActiveRecord::Migration
2+
def self.up
3+
create_table :comments do |t|
4+
t.string :commenter
5+
t.text :body
6+
t.references :post
7+
8+
t.timestamps
9+
end
10+
end
11+
12+
def self.down
13+
drop_table :comments
14+
end
15+
end
+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
class CreateTags < ActiveRecord::Migration
2+
def self.up
3+
create_table :tags do |t|
4+
t.string :name
5+
t.references :post
6+
7+
t.timestamps
8+
end
9+
end
10+
11+
def self.down
12+
drop_table :tags
13+
end
14+
end

0 commit comments

Comments
 (0)