aboutsummaryrefslogtreecommitdiffstats
path: root/app/decorators/controllers/refinery/pages_controller_decorator.rb
blob: 0d9a96670e0579dc36d951cefcbd6fd4b558fe29 (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
44
45
46
ApplicationController.class_eval do
  include Refinery::Blog::ControllerHelper

  before_filter :populate_sidebars
  before_filter :populate_home_page, :only => [:home]

  protected

    def populate_sidebars
      @sidebar_modules = []

      Refinery::Blog::Category.all.each do |c|
        @sidebar_modules << SidebarBlogCategory.new(c)
      end

      #
      # The blog categories and tags are listed in the right sidebar
      # on every page.
      #
      find_all_blog_categories
      #find_tags
      calc_tags
    end

    def populate_home_page
      @posts = Refinery::Blog::Post
               .live
               .includes(:comments, :categories)
               .where(:refinery_blog_categories => { :sidebar_position => 0 })
               .page(params[:page])
    end

    def calc_tags
      # Limit the number of tags to show:
      # This should show the 50 most popular tags from the past 30 days.
      # I think this is a fair compromise between most popular and recent.

      opts = {
        :order => 'count DESC',
        :start_at => 30.days.ago,
        :limit => 50
      }

      @tags = Refinery::Blog::Post.tag_counts_on(:tags, opts)
    end
end