2019-05-02 18:17:27 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2013-10-21 14:49:51 -04:00
|
|
|
class Admin::ScreenedIpAddressesController < Admin::AdminController
|
|
|
|
|
2017-08-31 00:06:56 -04:00
|
|
|
before_action :fetch_screened_ip_address, only: [:update, :destroy]
|
2013-10-22 16:30:30 -04:00
|
|
|
|
2013-10-21 14:49:51 -04:00
|
|
|
def index
|
2015-02-10 13:38:59 -05:00
|
|
|
filter = params[:filter]
|
|
|
|
filter = IPAddr.handle_wildcards(filter)
|
|
|
|
|
|
|
|
screened_ip_addresses = ScreenedIpAddress
|
2022-01-11 02:16:51 -05:00
|
|
|
screened_ip_addresses = screened_ip_addresses.where("cidr :filter >>= ip_address OR ip_address >>= cidr :filter", filter: filter) if filter.present?
|
2015-02-10 13:38:59 -05:00
|
|
|
screened_ip_addresses = screened_ip_addresses.limit(200).order('match_count desc')
|
|
|
|
|
|
|
|
begin
|
|
|
|
screened_ip_addresses = screened_ip_addresses.to_a
|
|
|
|
rescue ActiveRecord::StatementInvalid
|
|
|
|
# postgresql throws a PG::InvalidTextRepresentation exception when filter isn't a valid cidr expression
|
|
|
|
screened_ip_addresses = []
|
|
|
|
end
|
|
|
|
|
2013-10-22 16:30:30 -04:00
|
|
|
render_serialized(screened_ip_addresses, ScreenedIpAddressSerializer)
|
|
|
|
end
|
|
|
|
|
2013-10-24 17:18:10 -04:00
|
|
|
def create
|
|
|
|
screened_ip_address = ScreenedIpAddress.new(allowed_params)
|
|
|
|
if screened_ip_address.save
|
|
|
|
render_serialized(screened_ip_address, ScreenedIpAddressSerializer)
|
|
|
|
else
|
|
|
|
render_json_error(screened_ip_address)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2013-10-22 16:30:30 -04:00
|
|
|
def update
|
2019-04-29 03:32:25 -04:00
|
|
|
if @screened_ip_address.update(allowed_params)
|
2018-08-20 11:37:30 -04:00
|
|
|
render_serialized(@screened_ip_address, ScreenedIpAddressSerializer)
|
2013-10-22 16:30:30 -04:00
|
|
|
else
|
|
|
|
render_json_error(@screened_ip_address)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def destroy
|
|
|
|
@screened_ip_address.destroy
|
|
|
|
render json: success_json
|
2013-10-21 14:49:51 -04:00
|
|
|
end
|
|
|
|
|
2013-10-22 16:30:30 -04:00
|
|
|
private
|
|
|
|
|
|
|
|
def allowed_params
|
|
|
|
params.require(:ip_address)
|
|
|
|
params.permit(:ip_address, :action_name)
|
|
|
|
end
|
|
|
|
|
|
|
|
def fetch_screened_ip_address
|
|
|
|
@screened_ip_address = ScreenedIpAddress.find(params[:id])
|
|
|
|
end
|
|
|
|
|
2013-10-21 14:49:51 -04:00
|
|
|
end
|