aboutsummaryrefslogtreecommitdiffstats
path: root/app/controllers/blog_posts_controller.rb
diff options
context:
space:
mode:
authordjones <dgjones@gmail.com>2010-09-06 16:22:13 +1200
committerdjones <dgjones@gmail.com>2010-09-06 16:22:13 +1200
commitbd50bdb415346329e772a90f26828376a6a1cffb (patch)
tree3722ac255f4b96a0e4adf8ec2493dfbd002ade68 /app/controllers/blog_posts_controller.rb
parent6f342c1314dfbc8a02a2d4276f6ae7b0bc951661 (diff)
downloadrefinerycms-blog-bd50bdb415346329e772a90f26828376a6a1cffb.tar.gz
refinerycms-blog-bd50bdb415346329e772a90f26828376a6a1cffb.tar.bz2
refinerycms-blog-bd50bdb415346329e772a90f26828376a6a1cffb.zip
refactoring the frontend to use more partials, separate out the categories into it's own controller, namespace the blog into it's own folder and create a base blog controller for handling common front end tasks
Diffstat (limited to 'app/controllers/blog_posts_controller.rb')
-rw-r--r--app/controllers/blog_posts_controller.rb62
1 files changed, 0 insertions, 62 deletions
diff --git a/app/controllers/blog_posts_controller.rb b/app/controllers/blog_posts_controller.rb
deleted file mode 100644
index 73b9dfa..0000000
--- a/app/controllers/blog_posts_controller.rb
+++ /dev/null
@@ -1,62 +0,0 @@
-class BlogPostsController < ApplicationController
-
- before_filter :find_all_blog_posts, :find_all_blog_categories
- before_filter :find_page
- before_filter :find_blog_post, :only => [:show, :comment]
-
- def index
- # you can use meta fields from your model instead (e.g. browser_title)
- # by swapping @page for @blogs in the line below:
- present(@page)
- end
-
- def show
- @blog_comment = BlogComment.new
-
- # you can use meta fields from your model instead (e.g. browser_title)
- # by swapping @page for @blogs in the line below:
- 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.show.comments.thank_you_moderated')
- redirect_to blog_post_url(params[:id])
- else
- flash[:notice] = t('blog_posts.show.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
- unless params[:category_id].present?
- @blog_posts = BlogPost.live
- else
- if (category = BlogCategory.find(params[:category_id])).present?
- @blog_posts = category.posts
- else
- error_404
- end
- end
- end
-
- def find_all_blog_categories
- @blog_categories = BlogCategory.all
- end
-
- def find_page
- @page = Page.find_by_link_url("/blog")
- end
-
-end