2013-04-17 15:08:21 +08:00
|
|
|
class Admin::GroupsController < Admin::AdminController
|
2013-05-08 13:20:38 +08:00
|
|
|
def index
|
2014-05-09 16:22:15 +08:00
|
|
|
groups = Group.order(:name)
|
|
|
|
if search = params[:search]
|
|
|
|
search = search.to_s
|
|
|
|
groups = groups.where("name ilike ?", "%#{search}%")
|
|
|
|
end
|
|
|
|
if params[:ignore_automatic].to_s == "true"
|
|
|
|
groups = groups.where(automatic: false)
|
|
|
|
end
|
2013-05-09 15:37:34 +08:00
|
|
|
render_serialized(groups, BasicGroupSerializer)
|
2013-05-08 13:20:38 +08:00
|
|
|
end
|
|
|
|
|
2014-04-24 01:25:02 +08:00
|
|
|
def show
|
|
|
|
render nothing: true
|
|
|
|
end
|
|
|
|
|
2013-05-08 13:20:38 +08:00
|
|
|
def refresh_automatic_groups
|
|
|
|
Group.refresh_automatic_groups!
|
2013-07-27 07:46:42 +08:00
|
|
|
render json: success_json
|
2013-05-08 13:20:38 +08:00
|
|
|
end
|
|
|
|
|
2013-05-09 09:33:56 +08:00
|
|
|
def update
|
|
|
|
group = Group.find(params[:id].to_i)
|
2013-12-23 22:46:00 +08:00
|
|
|
|
2014-08-18 12:40:54 +08:00
|
|
|
group.alias_level = params[:group][:alias_level].to_i if params[:group][:alias_level].present?
|
|
|
|
|
2013-06-17 10:54:25 +08:00
|
|
|
if group.automatic
|
2013-12-23 22:46:00 +08:00
|
|
|
# we can only change the alias level on automatic groups
|
2013-06-17 10:54:25 +08:00
|
|
|
else
|
|
|
|
group.usernames = params[:group][:usernames]
|
2013-06-17 11:43:06 +08:00
|
|
|
group.name = params[:group][:name] if params[:group][:name]
|
2013-12-23 22:46:00 +08:00
|
|
|
end
|
2014-04-23 04:43:46 +08:00
|
|
|
group.visible = params[:group][:visible] == "true"
|
2013-12-23 22:46:00 +08:00
|
|
|
|
|
|
|
if group.save
|
|
|
|
render json: success_json
|
|
|
|
else
|
|
|
|
render_json_error group
|
2013-06-17 10:54:25 +08:00
|
|
|
end
|
2013-05-09 09:33:56 +08:00
|
|
|
end
|
|
|
|
|
|
|
|
def create
|
|
|
|
group = Group.new
|
2014-04-24 01:25:02 +08:00
|
|
|
group.name = (params[:group][:name] || '').strip
|
2013-05-09 09:33:56 +08:00
|
|
|
group.usernames = params[:group][:usernames] if params[:group][:usernames]
|
2014-04-23 04:43:46 +08:00
|
|
|
group.visible = params[:group][:visible] == "true"
|
2013-07-24 12:31:15 +08:00
|
|
|
if group.save
|
|
|
|
render_serialized(group, BasicGroupSerializer)
|
|
|
|
else
|
|
|
|
render_json_error group
|
|
|
|
end
|
2013-05-09 09:33:56 +08:00
|
|
|
end
|
|
|
|
|
|
|
|
def destroy
|
|
|
|
group = Group.find(params[:id].to_i)
|
2013-06-17 10:54:25 +08:00
|
|
|
if group.automatic
|
|
|
|
can_not_modify_automatic
|
|
|
|
else
|
|
|
|
group.destroy
|
2013-07-22 10:37:01 +08:00
|
|
|
render json: success_json
|
2013-06-17 10:54:25 +08:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
protected
|
|
|
|
|
|
|
|
def can_not_modify_automatic
|
|
|
|
render json: {errors: I18n.t('groups.errors.can_not_modify_automatic')}, status: 422
|
2013-05-09 09:33:56 +08:00
|
|
|
end
|
2013-04-17 15:08:21 +08:00
|
|
|
end
|