2015-09-09 14:46:06 +02:00
|
|
|
|
|
|
|
module DataTable
|
|
|
|
extend ActiveSupport::Concern
|
|
|
|
|
|
|
|
def apply_filter(user, params)
|
2015-09-09 21:09:07 +02:00
|
|
|
params = sanitize_params(params)
|
|
|
|
selection_to_json(user, params[:draw], user.transactions)
|
2015-09-09 14:46:06 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
2015-09-09 21:09:07 +02:00
|
|
|
def sanitize_params(params)
|
|
|
|
# Parsing according to https://datatables.net/manual/server-side
|
|
|
|
clean = {
|
|
|
|
draw: params.require(:draw).to_i,
|
|
|
|
start: params.require(:start).to_i,
|
|
|
|
length: params.require(:length).to_i,
|
|
|
|
columns: Hash.new
|
|
|
|
}
|
|
|
|
params.require(:columns).each do |i, column|
|
|
|
|
type, value = column.require(:search)[:value].split(':')
|
|
|
|
h = clean[:columns][column.require(:data).to_sym] = {
|
|
|
|
name: column[:name],
|
|
|
|
searchable: column[:searchable] == 'true',
|
|
|
|
orderable: column[:orderable] == 'true',
|
|
|
|
type: type
|
|
|
|
}
|
|
|
|
if type == 'number-range'
|
|
|
|
h[:lower], h[:upper] = value.split('~').map &:to_i
|
|
|
|
elsif type == 'date-range'
|
|
|
|
h[:lower], h[:upper] = value.split('~').map &:to_datetime
|
|
|
|
else
|
|
|
|
h[:value] = value
|
2015-09-09 17:14:06 +02:00
|
|
|
end
|
|
|
|
end
|
2015-09-09 21:09:07 +02:00
|
|
|
return clean
|
2015-09-09 17:14:06 +02:00
|
|
|
end
|
|
|
|
|
2015-09-09 21:09:07 +02:00
|
|
|
def selection_to_json(user, draw, selection)
|
|
|
|
selection = selection.to_a
|
|
|
|
{
|
|
|
|
draw: draw,
|
|
|
|
recordsTotal: user.transactions.count,
|
|
|
|
recordsFiltered: selection.count,
|
|
|
|
data: selection.map { |transaction| {
|
2015-09-09 20:00:47 +02:00
|
|
|
time: transaction.created_at,
|
2015-09-09 14:46:06 +02:00
|
|
|
amount: transaction.signed_amount_for(user),
|
2015-09-09 20:00:47 +02:00
|
|
|
peer: transaction.peer_of(user).try(:name),
|
2015-09-09 18:17:55 +02:00
|
|
|
issuer: transaction.issuer.name,
|
2015-09-09 14:46:06 +02:00
|
|
|
message: transaction.message,
|
2015-09-09 21:09:07 +02:00
|
|
|
}}
|
2015-09-09 14:46:06 +02:00
|
|
|
}
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|