2013-02-05 14:16:51 -05:00
|
|
|
require_dependency 'category_serializer'
|
|
|
|
|
|
|
|
class CategoriesController < ApplicationController
|
|
|
|
|
|
|
|
before_filter :ensure_logged_in, except: [:index, :show]
|
2013-04-18 17:07:06 -04:00
|
|
|
before_filter :fetch_category, only: [:show, :update, :destroy]
|
2013-04-26 13:10:41 -04:00
|
|
|
skip_before_filter :check_xhr, only: [:index]
|
2013-02-05 14:16:51 -05:00
|
|
|
|
|
|
|
def index
|
2013-09-11 15:33:05 -04:00
|
|
|
@description = SiteSetting.site_description
|
|
|
|
|
2013-10-17 02:44:56 -04:00
|
|
|
options = {}
|
2013-12-11 15:23:41 -05:00
|
|
|
options[:latest_posts] = params[:latest_posts] || SiteSetting.category_featured_topics
|
2014-07-02 15:10:39 -04:00
|
|
|
options[:parent_category_id] = params[:parent_category_id]
|
2013-10-17 02:44:56 -04:00
|
|
|
|
2014-07-02 15:10:39 -04:00
|
|
|
@list = CategoryList.new(guardian, options)
|
2013-05-28 21:15:30 -04:00
|
|
|
@list.draft_key = Draft::NEW_TOPIC
|
|
|
|
@list.draft_sequence = DraftSequence.current(current_user, Draft::NEW_TOPIC)
|
|
|
|
@list.draft = Draft.get(current_user, @list.draft_key, @list.draft_sequence) if current_user
|
|
|
|
|
2013-04-11 02:24:08 -04:00
|
|
|
discourse_expires_in 1.minute
|
2013-05-28 14:54:00 -04:00
|
|
|
|
|
|
|
store_preloaded("categories_list", MultiJson.dump(CategoryListSerializer.new(@list, scope: guardian)))
|
2013-04-26 13:10:41 -04:00
|
|
|
respond_to do |format|
|
|
|
|
format.html { render }
|
|
|
|
format.json { render_serialized(@list, CategoryListSerializer) }
|
|
|
|
end
|
2013-02-05 14:16:51 -05:00
|
|
|
end
|
2013-02-07 10:45:24 -05:00
|
|
|
|
2014-06-27 15:35:25 -04:00
|
|
|
def upload
|
|
|
|
params.require(:image_type)
|
|
|
|
guardian.ensure_can_create!(Category)
|
|
|
|
|
|
|
|
file = params[:file] || params[:files].first
|
|
|
|
upload = Upload.create_for(current_user.id, file.tempfile, file.original_filename, File.size(file.tempfile))
|
|
|
|
if upload.errors.blank?
|
|
|
|
render json: { url: upload.url, width: upload.width, height: upload.height }
|
|
|
|
else
|
|
|
|
render status: 422, text: upload.errors.full_messages
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2013-10-21 00:24:37 -04:00
|
|
|
def move
|
2013-10-21 00:33:42 -04:00
|
|
|
guardian.ensure_can_create!(Category)
|
|
|
|
|
2013-10-21 00:24:37 -04:00
|
|
|
params.require("category_id")
|
|
|
|
params.require("position")
|
|
|
|
|
|
|
|
if category = Category.find(params["category_id"])
|
|
|
|
category.move_to(params["position"].to_i)
|
|
|
|
render json: success_json
|
|
|
|
else
|
|
|
|
render status: 500, json: failed_json
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2013-02-05 14:16:51 -05:00
|
|
|
def show
|
2014-03-05 17:21:55 -05:00
|
|
|
if Category.topic_create_allowed(guardian).where(id: @category.id).exists?
|
|
|
|
@category.permission = CategoryGroup.permission_types[:full]
|
|
|
|
end
|
2013-02-05 14:16:51 -05:00
|
|
|
render_serialized(@category, CategorySerializer)
|
|
|
|
end
|
|
|
|
|
|
|
|
def create
|
|
|
|
guardian.ensure_can_create!(Category)
|
|
|
|
|
2014-05-16 11:33:44 -04:00
|
|
|
position = category_params.delete(:position)
|
|
|
|
|
2013-02-05 14:16:51 -05:00
|
|
|
@category = Category.create(category_params.merge(user: current_user))
|
|
|
|
return render_json_error(@category) unless @category.save
|
2013-02-07 10:45:24 -05:00
|
|
|
|
2014-05-16 11:33:44 -04:00
|
|
|
@category.move_to(position.to_i) if position
|
2013-02-05 14:16:51 -05:00
|
|
|
render_serialized(@category, CategorySerializer)
|
|
|
|
end
|
|
|
|
|
|
|
|
def update
|
|
|
|
guardian.ensure_can_edit!(@category)
|
2013-10-21 02:17:40 -04:00
|
|
|
json_result(@category, serializer: CategorySerializer) { |cat|
|
2014-05-16 11:33:44 -04:00
|
|
|
cat.move_to(category_params[:position].to_i) if category_params[:position]
|
2014-03-04 18:42:05 -05:00
|
|
|
if category_params.key? :email_in and category_params[:email_in].length == 0
|
|
|
|
# properly null the value so the database constrain doesn't catch us
|
|
|
|
category_params[:email_in] = nil
|
|
|
|
end
|
2013-10-21 02:21:16 -04:00
|
|
|
category_params.delete(:position)
|
|
|
|
cat.update_attributes(category_params)
|
2013-10-21 02:17:40 -04:00
|
|
|
}
|
2013-02-05 14:16:51 -05:00
|
|
|
end
|
|
|
|
|
2014-04-17 05:17:39 -04:00
|
|
|
def set_notifications
|
|
|
|
category_id = params[:category_id].to_i
|
|
|
|
notification_level = params[:notification_level].to_i
|
|
|
|
|
|
|
|
CategoryUser.set_notification_level_for_category(current_user, notification_level , category_id)
|
|
|
|
render json: success_json
|
|
|
|
end
|
|
|
|
|
2013-02-05 14:16:51 -05:00
|
|
|
def destroy
|
2013-04-18 17:07:06 -04:00
|
|
|
guardian.ensure_can_delete!(@category)
|
|
|
|
@category.destroy
|
2013-10-21 00:24:37 -04:00
|
|
|
|
|
|
|
render json: success_json
|
2013-02-05 14:16:51 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
2013-03-26 18:06:21 -04:00
|
|
|
def required_param_keys
|
2013-03-14 09:16:57 -04:00
|
|
|
[:name, :color, :text_color]
|
2013-02-05 14:16:51 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
def category_params
|
2013-10-21 02:17:40 -04:00
|
|
|
@category_params ||= begin
|
|
|
|
required_param_keys.each do |key|
|
|
|
|
params.require(key)
|
|
|
|
end
|
2013-06-05 02:45:25 -04:00
|
|
|
|
2013-10-21 02:17:40 -04:00
|
|
|
if p = params[:permissions]
|
|
|
|
p.each do |k,v|
|
|
|
|
p[k] = v.to_i
|
|
|
|
end
|
2013-07-16 01:44:07 -04:00
|
|
|
end
|
|
|
|
|
2014-07-09 22:01:46 -04:00
|
|
|
params.permit(*required_param_keys,
|
|
|
|
:position,
|
|
|
|
:email_in,
|
|
|
|
:email_in_allow_strangers,
|
|
|
|
:parent_category_id,
|
|
|
|
:auto_close_hours,
|
|
|
|
:logo_url,
|
|
|
|
:background_url,
|
|
|
|
:allow_badges,
|
|
|
|
:permissions => [*p.try(:keys)])
|
2013-10-21 02:17:40 -04:00
|
|
|
end
|
2013-02-05 14:16:51 -05:00
|
|
|
end
|
2013-04-18 17:07:06 -04:00
|
|
|
|
|
|
|
def fetch_category
|
2014-05-06 09:41:59 -04:00
|
|
|
@category = Category.find_by(slug: params[:id]) || Category.find_by(id: params[:id].to_i)
|
2013-04-18 17:07:06 -04:00
|
|
|
end
|
2013-02-05 14:16:51 -05:00
|
|
|
end
|