Class: Admin::Blog::PostsController

Inherits:
Admin::BaseController
  • Object
show all
Defined in:
app/controllers/admin/blog/posts_controller.rb

Instance Method Summary collapse

Instance Method Details

#createObject



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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
# File 'app/controllers/admin/blog/posts_controller.rb', line 21

def create
  # if the position field exists, set this object as last object, given the conditions of this class.
  if BlogPost.column_names.include?("position")
    params[:blog_post].merge!({
      :position => ((BlogPost.maximum(:position, :conditions => "")||-1) + 1)
    })
  end
  
  if BlogPost.column_names.include?("user_id")
    params[:blog_post].merge!({
      :user_id => current_user.id
    })
  end

  if (@blog_post = BlogPost.create(params[:blog_post])).valid?
    (request.xhr? ? flash.now : flash).notice = t(
      'refinery.crudify.created',
      :what => "'#{@blog_post.title}'"
    )

    unless from_dialog?
      unless params[:continue_editing] =~ /true|on|1/
        redirect_back_or_default(admin_blog_posts_url)
      else
        unless request.xhr?
          redirect_to :back
        else
          render :partial => "/shared/message"
        end
      end
    else
      render :text => "<script>parent.window.location = '#{admin_blog_posts_url}';</script>"
    end
  else
    unless request.xhr?
      render :action => 'new'
    else
      render :partial => "/shared/admin/error_messages",
             :locals => {
               :object => @blog_post,
               :include_object_name => true
             }
    end
  end
end

#tagsObject



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

def tags
  @tags = BlogPost.tag_counts_on(:tags).where(
    ["tags.name LIKE ?", "%#{params[:term].to_s.downcase}%"]
  ).map { |tag| {:id => tag.id, :value => tag.name}}
  render :json => @tags.flatten
end

#uncategorizedObject



7
8
9
10
11
12
# File 'app/controllers/admin/blog/posts_controller.rb', line 7

def uncategorized
  @blog_posts = BlogPost.uncategorized.paginate({
    :page => params[:page],
    :per_page => BlogPost.per_page
  })
end