Class: Refinery::Blog::PostsController

Inherits:
BlogController
  • Object
show all
Defined in:
app/controllers/refinery/blog/posts_controller.rb

Instance Method Summary collapse

Instance Method Details

#archiveObject



58
59
60
61
62
63
64
65
66
67
68
69
70
71
# File 'app/controllers/refinery/blog/posts_controller.rb', line 58

def archive
  if params[:month].present?
    date = "#{params[:month]}/#{params[:year]}"
    @archive_date = Time.parse(date)
    @date_title = @archive_date.strftime('%B %Y')
    @posts = Post.live.by_archive(@archive_date).page(params[:page])
  else
    date = "01/#{params[:year]}"
    @archive_date = Time.parse(date)
    @date_title = @archive_date.strftime('%Y')
    @posts = Post.live.by_year(@archive_date).page(params[:page])
  end
  respond_with (@posts)
end

#canonical?Boolean

Returns:

  • (Boolean)


79
80
81
# File 'app/controllers/refinery/blog/posts_controller.rb', line 79

def canonical?
  ::Refinery.i18n_enabled? && ::Refinery::I18n.default_frontend_locale != ::Refinery::I18n.current_frontend_locale
end

#commentObject



35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
# File 'app/controllers/refinery/blog/posts_controller.rb', line 35

def comment
  if (@comment = @post.comments.create(params[:comment])).valid?
    if Comment::Moderation.enabled? or @comment.ham?
      begin
        CommentMailer.notification(@comment, request).deliver
      rescue
        logger.warn "There was an error delivering a blog comment notification.\n#{$!}\n"
      end
    end

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

#indexObject



13
14
15
16
17
18
19
20
# File 'app/controllers/refinery/blog/posts_controller.rb', line 13

def index
  # Rss feeders are greedy. Let's give them every blog post instead of paginating.
  (@posts = Post.live.includes(:comments, :categories).all) if request.format.rss?
  respond_with (@posts) do |format|
    format.html
    format.rss
  end
end

#showObject



22
23
24
25
26
27
28
29
30
31
32
33
# File 'app/controllers/refinery/blog/posts_controller.rb', line 22

def show
  @comment = Comment.new

  @canonical = url_for(:locale => ::Refinery::I18n.default_frontend_locale) if canonical?
  
  @post.increment!(:access_count, 1)

  respond_with (@post) do |format|
    format.html { present(@post) }
    format.js { render :partial => 'post', :layout => false }
  end
end

#taggedObject



73
74
75
76
77
# File 'app/controllers/refinery/blog/posts_controller.rb', line 73

def tagged
  @tag = ActsAsTaggableOn::Tag.find(params[:tag_id])
  @tag_name = @tag.name
  @posts = Post.tagged_with(@tag_name).page(params[:page])
end