aboutsummaryrefslogtreecommitdiffstats
path: root/app/controllers/blog_posts_controller.rb
blob: 7ddb7b896398f52304f765d1bbbc08b8d4a4d76d (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
class BlogPostsController < ApplicationController

  before_filter :find_all_blog_posts, :find_all_blog_categories
  before_filter :find_page

  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_post = BlogPost.live.find(params[:id])

    # 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

protected

  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