2013-04-17 02:08:21 -05:00
|
|
|
class Admin::GroupsController < Admin::AdminController
|
2015-01-05 11:51:45 -06:00
|
|
|
|
2013-05-08 00:20:38 -05:00
|
|
|
def index
|
2014-05-09 03:22:15 -05:00
|
|
|
groups = Group.order(:name)
|
2015-01-05 11:51:45 -06:00
|
|
|
|
2014-05-09 03:22:15 -05:00
|
|
|
if search = params[:search]
|
|
|
|
search = search.to_s
|
2015-01-05 11:51:45 -06:00
|
|
|
groups = groups.where("name ILIKE ?", "%#{search}%")
|
2014-05-09 03:22:15 -05:00
|
|
|
end
|
2015-01-05 11:51:45 -06:00
|
|
|
|
2014-05-09 03:22:15 -05:00
|
|
|
if params[:ignore_automatic].to_s == "true"
|
|
|
|
groups = groups.where(automatic: false)
|
|
|
|
end
|
2015-01-05 11:51:45 -06:00
|
|
|
|
2013-05-09 02:37:34 -05:00
|
|
|
render_serialized(groups, BasicGroupSerializer)
|
2013-05-08 00:20:38 -05:00
|
|
|
end
|
|
|
|
|
2014-04-23 12:25:02 -05:00
|
|
|
def show
|
|
|
|
render nothing: true
|
|
|
|
end
|
|
|
|
|
2015-01-05 11:51:45 -06:00
|
|
|
def create
|
|
|
|
group = Group.new
|
2015-01-23 11:25:43 -06:00
|
|
|
|
2015-01-05 11:51:45 -06:00
|
|
|
group.name = (params[:name] || '').strip
|
2015-04-09 21:17:28 -05:00
|
|
|
save_group(group)
|
2014-11-20 11:29:56 -06:00
|
|
|
end
|
|
|
|
|
2015-01-05 11:51:45 -06:00
|
|
|
def update
|
2015-01-21 13:52:48 -06:00
|
|
|
group = Group.find(params[:id])
|
2013-12-23 08:46:00 -06:00
|
|
|
|
2015-01-23 13:31:48 -06:00
|
|
|
# group rename is ignored for automatic groups
|
|
|
|
group.name = params[:name] if params[:name] && !group.automatic
|
2015-04-09 21:17:28 -05:00
|
|
|
save_group(group)
|
|
|
|
end
|
|
|
|
|
|
|
|
def save_group(group)
|
2015-01-05 11:51:45 -06:00
|
|
|
group.alias_level = params[:alias_level].to_i if params[:alias_level].present?
|
|
|
|
group.visible = params[:visible] == "true"
|
2015-04-09 21:17:28 -05:00
|
|
|
|
|
|
|
group.automatic_membership_email_domains = params[:automatic_membership_email_domains] unless group.automatic
|
|
|
|
group.automatic_membership_retroactive = params[:automatic_membership_retroactive] == "true" unless group.automatic
|
|
|
|
|
|
|
|
group.primary_group = group.automatic ? false : params["primary_group"] == "true"
|
|
|
|
|
|
|
|
title = params[:title] if params[:title].present?
|
|
|
|
group.title = group.automatic ? nil : title
|
2013-12-23 08:46:00 -06:00
|
|
|
|
|
|
|
if group.save
|
2015-01-23 11:25:43 -06:00
|
|
|
render_serialized(group, BasicGroupSerializer)
|
2013-12-23 08:46:00 -06:00
|
|
|
else
|
|
|
|
render_json_error group
|
2013-06-16 21:54:25 -05:00
|
|
|
end
|
2013-05-08 20:33:56 -05:00
|
|
|
end
|
|
|
|
|
2015-01-05 11:51:45 -06:00
|
|
|
def destroy
|
2015-01-21 13:52:48 -06:00
|
|
|
group = Group.find(params[:id])
|
2014-11-20 11:29:56 -06:00
|
|
|
|
2015-01-05 11:51:45 -06:00
|
|
|
if group.automatic
|
|
|
|
can_not_modify_automatic
|
2014-11-20 11:29:56 -06:00
|
|
|
else
|
2015-01-05 11:51:45 -06:00
|
|
|
group.destroy
|
|
|
|
render json: success_json
|
2014-11-20 11:29:56 -06:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2015-01-05 11:51:45 -06:00
|
|
|
def refresh_automatic_groups
|
|
|
|
Group.refresh_automatic_groups!
|
|
|
|
render json: success_json
|
|
|
|
end
|
|
|
|
|
|
|
|
def add_members
|
2015-01-21 13:52:48 -06:00
|
|
|
group = Group.find(params.require(:id))
|
2015-01-05 11:51:45 -06:00
|
|
|
|
|
|
|
return can_not_modify_automatic if group.automatic
|
|
|
|
|
2015-02-25 08:47:45 -06:00
|
|
|
if params[:usernames].present?
|
|
|
|
users = User.where(username: params[:usernames].split(","))
|
|
|
|
elsif params[:user_ids].present?
|
|
|
|
users = User.find(params[:user_ids].split(","))
|
|
|
|
else
|
|
|
|
raise Discourse::InvalidParameters.new('user_ids or usernames must be present')
|
|
|
|
end
|
|
|
|
|
|
|
|
users.each do |user|
|
2015-04-15 03:06:54 -05:00
|
|
|
if !group.users.include?(user)
|
|
|
|
group.add(user)
|
|
|
|
else
|
|
|
|
return render_json_error I18n.t('groups.errors.member_already_exist', username: user.username)
|
|
|
|
end
|
2015-01-05 11:51:45 -06:00
|
|
|
end
|
|
|
|
|
2013-07-23 23:31:15 -05:00
|
|
|
if group.save
|
2015-01-05 11:51:45 -06:00
|
|
|
render json: success_json
|
2013-07-23 23:31:15 -05:00
|
|
|
else
|
2015-01-05 11:51:45 -06:00
|
|
|
render_json_error(group)
|
2013-07-23 23:31:15 -05:00
|
|
|
end
|
2013-05-08 20:33:56 -05:00
|
|
|
end
|
|
|
|
|
2015-01-05 11:51:45 -06:00
|
|
|
def remove_member
|
2015-01-21 13:52:48 -06:00
|
|
|
group = Group.find(params.require(:id))
|
2015-01-05 11:51:45 -06:00
|
|
|
|
|
|
|
return can_not_modify_automatic if group.automatic
|
|
|
|
|
2015-02-25 08:47:45 -06:00
|
|
|
if params[:user_id].present?
|
|
|
|
user = User.find(params[:user_id])
|
|
|
|
elsif params[:username].present?
|
|
|
|
user = User.find_by_username(params[:username])
|
|
|
|
else
|
|
|
|
raise Discourse::InvalidParameters.new('user_id or username must be present')
|
|
|
|
end
|
|
|
|
|
2015-02-08 23:03:09 -06:00
|
|
|
user.primary_group_id = nil if user.primary_group_id == group.id
|
|
|
|
|
2015-02-25 08:47:45 -06:00
|
|
|
group.users.delete(user.id)
|
2015-01-05 11:51:45 -06:00
|
|
|
|
2015-02-08 23:03:09 -06:00
|
|
|
if group.save && user.save
|
2013-07-21 21:37:01 -05:00
|
|
|
render json: success_json
|
2015-01-05 11:51:45 -06:00
|
|
|
else
|
|
|
|
render_json_error(group)
|
2013-06-16 21:54:25 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
protected
|
|
|
|
|
2015-01-05 11:51:45 -06:00
|
|
|
def can_not_modify_automatic
|
|
|
|
render json: {errors: I18n.t('groups.errors.can_not_modify_automatic')}, status: 422
|
|
|
|
end
|
2013-04-17 02:08:21 -05:00
|
|
|
end
|