class BlogController < ApplicationController respond_to :html, :xml, :json,:rss layout Spud::Blog.base_layout caches_action :show, :index, :expires => Spud::Blog.config.caching_expires_in, :if => Proc.new{ |c| Spud::Blog.config.caching_enabled && !(c.params[:page] && c.params[:page].to_i > 1) } def index @posts = SpudPost.public_blog_posts(params[:page], Spud::Blog.config.posts_per_page) respond_with @posts end # The sole purpose of this action is to redirect from a POST to an seo-friendly url def filter if !params[:category_url_name].blank? && !params[:archive_date].blank? redirect_to blog_category_archive_path(params[:category_url_name], params[:archive_date]) elsif !params[:category_url_name].blank? redirect_to blog_category_path(params[:category_url_name]) elsif !params[:archive_date].blank? redirect_to blog_archive_path(params[:archive_date]) else redirect_to blog_path end end def category if @post_category = SpudPostCategory.find_by_url_name(params[:category_url_name]) @posts = @post_category.posts_with_children.public_blog_posts(params[:page], Spud::Blog.config.posts_per_page).from_archive(params[:archive_date]) else redirect_to blog_path return end respond_with @posts do |format| format.html { render 'index' } end end def archive @posts = SpudPost.public_blog_posts(params[:page], Spud::Blog.config.posts_per_page).from_archive(params[:archive_date]) respond_with @posts do |format| format.html { render 'index' } end end def show find_post if @post.comments_enabled @comment = SpudPostComment.new(:spud_post_id => params[:id]) end respond_with @post end def create_comment return unless params[:comment_validation].empty? # trap spam bots @post = SpudPost.find(params[:id]) if @post.blank? flash[:error] = "Post not found!" redirect_to blog_path and return false end @comment = @post.comments.new(params[:spud_post_comment]) @comment.approved = true if @comment.save flash[:notice] = 'Your comment has been posted, however it will not appear until it is approved.' expire_action blog_post_url(@post.url_name) end respond_with @comment do |format| format.html { redirect_to blog_post_path(@post.url_name, :anchor => 'spud_post_comment_form') } end end private def find_post @post = SpudPost.find_by_url_name(params[:id]) if @post.blank? || @post.is_private? flash[:error] = "Post not found!" redirect_to blog_path and return false end end end