aboutsummaryrefslogtreecommitdiffstats
path: root/app/controllers/blog/posts_controller.rb
blob: a0340b7229037e478e5eb5c326bb9cc21f93faae (plain) (blame)
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
class Blog::PostsController < BlogController

  before_filter :find_all_blog_posts
  before_filter :find_blog_post, :only => [:show, :comment]
  
  def index
    respond_to do |format|
      format.html
      format.rss
    end
  end
  
  def show
    @blog_comment = BlogComment.new
    present(@page)
  end

  def comment
    if (@blog_comment = @blog_post.comments.create(params[:blog_comment])).valid?
      if BlogComment::Moderation.enabled?
        flash[:notice] = t('blog.posts.comments.thank_you_moderated')
        redirect_to blog_post_url(params[:id])
      else
        flash[:notice] = t('blog.posts.comments.thank_you')
        redirect_to blog_post_url(params[:id],
                                  :anchor => "comment-#{@blog_comment.to_param}")
      end
    else
      render :action => 'show'
    end
  end

protected

  def find_blog_post
    @blog_post = BlogPost.live.find(params[:id])
  end

  def find_all_blog_posts
    @blog_posts = BlogPost.live
  end

end