aboutsummaryrefslogtreecommitdiffstats
path: root/app/controllers/refinery/admin/blog
diff options
context:
space:
mode:
Diffstat (limited to 'app/controllers/refinery/admin/blog')
-rw-r--r--app/controllers/refinery/admin/blog/categories_controller.rb13
-rw-r--r--app/controllers/refinery/admin/blog/comments_controller.rb42
-rw-r--r--app/controllers/refinery/admin/blog/posts_controller.rb99
-rw-r--r--app/controllers/refinery/admin/blog/settings_controller.rb55
4 files changed, 209 insertions, 0 deletions
diff --git a/app/controllers/refinery/admin/blog/categories_controller.rb b/app/controllers/refinery/admin/blog/categories_controller.rb
new file mode 100644
index 0000000..7196e8f
--- /dev/null
+++ b/app/controllers/refinery/admin/blog/categories_controller.rb
@@ -0,0 +1,13 @@
+module Refinery
+ module Admin
+ module Blog
+ class CategoriesController < ::Admin::BaseController
+
+ crudify :'refinery/blog_category',
+ :title_attribute => :title,
+ :order => 'title ASC'
+
+ end
+ end
+ end
+end
diff --git a/app/controllers/refinery/admin/blog/comments_controller.rb b/app/controllers/refinery/admin/blog/comments_controller.rb
new file mode 100644
index 0000000..9f78caa
--- /dev/null
+++ b/app/controllers/refinery/admin/blog/comments_controller.rb
@@ -0,0 +1,42 @@
+module Refinery
+ module Admin
+ module Blog
+ class CommentsController < ::Admin::BaseController
+
+ crudify :'refinery/blog_comment',
+ :title_attribute => :name,
+ :order => 'published_at DESC'
+
+ def index
+ @blog_comments = Refinery::BlogComment.unmoderated
+ render :action => 'index'
+ end
+
+ def approved
+ unless params[:id].present?
+ @blog_comments = Refinery::BlogComment.approved
+ render :action => 'index'
+ else
+ @blog_comment = Refinery::BlogComment.find(params[:id])
+ @blog_comment.approve!
+ flash[:notice] = t('approved', :scope => 'admin.blog.comments', :author => @blog_comment.name)
+ redirect_to :action => params[:return_to] || 'index'
+ end
+ end
+
+ def rejected
+ unless params[:id].present?
+ @blog_comments = Refinery::BlogComment.rejected
+ render :action => 'index'
+ else
+ @blog_comment = Refinery::BlogComment.find(params[:id])
+ @blog_comment.reject!
+ flash[:notice] = t('rejected', :scope => 'admin.blog.comments', :author => @blog_comment.name)
+ redirect_to :action => params[:return_to] || 'index'
+ end
+ end
+
+ end
+ end
+ end
+end
diff --git a/app/controllers/refinery/admin/blog/posts_controller.rb b/app/controllers/refinery/admin/blog/posts_controller.rb
new file mode 100644
index 0000000..a934a15
--- /dev/null
+++ b/app/controllers/refinery/admin/blog/posts_controller.rb
@@ -0,0 +1,99 @@
+module Refinery
+ module Admin
+ module Blog
+ class PostsController < ::Admin::BaseController
+
+
+ crudify :'refinery/blog_post',
+ :title_attribute => :title,
+ :order => 'published_at DESC'
+
+ def uncategorized
+ @blog_posts = Refinery::BlogPost.uncategorized.paginate({
+ :page => params[:page],
+ :per_page => Refinery::BlogPost.per_page
+ })
+ end
+
+ def tags
+ op = case ActiveRecord::Base.connection.adapter_name.downcase
+ when 'postgresql'
+ '~*'
+ else
+ 'LIKE'
+ end
+ wildcard = case ActiveRecord::Base.connection.adapter_name.downcase
+ when 'postgresql'
+ '.*'
+ else
+ '%'
+ end
+ @tags = Refinery::BlogPost.tag_counts_on(:tags).where(
+ ["tags.name #{op} ?", "#{wildcard}#{params[:term].to_s.downcase}#{wildcard}"]
+ ).map { |tag| {:id => tag.id, :value => tag.name}}
+ render :json => @tags.flatten
+ end
+
+ def create
+ # if the position field exists, set this object as last object, given the conditions of this class.
+ if Refinery::BlogPost.column_names.include?("position")
+ params[:blog_post].merge!({
+ :position => ((Refinery::BlogPost.maximum(:position, :conditions => "")||-1) + 1)
+ })
+ end
+
+ if Refinery::BlogPost.column_names.include?("user_id")
+ params[:blog_post].merge!({
+ :user_id => current_user.id
+ })
+ end
+
+ if (@blog_post = Refinery::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
+
+ before_filter :find_all_categories,
+ :only => [:new, :edit, :create, :update]
+
+ before_filter :check_category_ids, :only => :update
+
+ protected
+ def find_all_categories
+ @blog_categories = Refinery::BlogCategory.find(:all)
+ end
+
+ def check_category_ids
+ params[:blog_post][:category_ids] ||= []
+ end
+ end
+ end
+ end
+end
diff --git a/app/controllers/refinery/admin/blog/settings_controller.rb b/app/controllers/refinery/admin/blog/settings_controller.rb
new file mode 100644
index 0000000..469a1dc
--- /dev/null
+++ b/app/controllers/refinery/admin/blog/settings_controller.rb
@@ -0,0 +1,55 @@
+module Refinery
+ module Admin
+ module Blog
+ class SettingsController < ::Admin::BaseController
+
+ def notification_recipients
+ @recipients = Refinery::BlogComment::Notification.recipients
+
+ if request.post?
+ Refinery::BlogComment::Notification.recipients = params[:recipients]
+ flash[:notice] = t('updated', :scope => 'admin.blog.settings.notification_recipients',
+ :recipients => Refinery::BlogComment::Notification.recipients)
+ unless request.xhr? or from_dialog?
+ redirect_back_or_default(admin_blog_posts_path)
+ else
+ render :text => "<script type='text/javascript'>parent.window.location = '#{admin_blog_posts_path}';</script>",
+ :layout => false
+ end
+ end
+ end
+
+ def moderation
+ enabled = Refinery::BlogComment::Moderation.toggle!
+ unless request.xhr?
+ redirect_back_or_default(admin_blog_posts_path)
+ else
+ render :json => {:enabled => enabled},
+ :layout => false
+ end
+ end
+
+ def comments
+ enabled = Refinery::BlogComment.toggle!
+ unless request.xhr?
+ redirect_back_or_default(admin_blog_posts_path)
+ else
+ render :json => {:enabled => enabled},
+ :layout => false
+ end
+ end
+
+ def teasers
+ enabled = Refinery::BlogPost.teaser_enabled_toggle!
+ unless request.xhr?
+ redirect_back_or_default(admin_blog_posts_path)
+ else
+ render :json => {:enabled => enabled},
+ :layout => false
+ end
+ end
+
+ end
+ end
+ end
+end