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