84 lines
2.6 KiB
Elixir
84 lines
2.6 KiB
Elixir
defmodule CanneryWeb.ExportController do
|
|
use CanneryWeb, :controller
|
|
alias Cannery.{ActivityLog, Ammo, Containers}
|
|
|
|
def export(%{assigns: %{current_user: current_user}} = conn, %{"mode" => "json"}) do
|
|
types = Ammo.list_types(current_user)
|
|
|
|
used_counts =
|
|
ActivityLog.get_grouped_used_counts(current_user, types: types, group_by: :type_id)
|
|
|
|
round_counts = Ammo.get_grouped_round_count(current_user, types: types, group_by: :type_id)
|
|
pack_counts = Ammo.get_grouped_packs_count(current_user, types: types, group_by: :type_id)
|
|
|
|
total_pack_counts =
|
|
Ammo.get_grouped_packs_count(current_user,
|
|
types: types,
|
|
group_by: :type_id,
|
|
show_used: true
|
|
)
|
|
|
|
average_costs = Ammo.get_average_costs(types, current_user)
|
|
|
|
types =
|
|
types
|
|
|> Enum.map(fn %{id: type_id} = type ->
|
|
type
|
|
|> Jason.encode!()
|
|
|> Jason.decode!()
|
|
|> Map.merge(%{
|
|
"average_cost" => Map.get(average_costs, type_id),
|
|
"round_count" => Map.get(round_counts, type_id, 0),
|
|
"used_count" => Map.get(used_counts, type_id, 0),
|
|
"pack_count" => Map.get(pack_counts, type_id, 0),
|
|
"total_pack_count" => Map.get(total_pack_counts, type_id, 0)
|
|
})
|
|
end)
|
|
|
|
packs = Ammo.list_packs(current_user, show_used: true)
|
|
|
|
used_counts =
|
|
ActivityLog.get_grouped_used_counts(current_user, packs: packs, group_by: :pack_id)
|
|
|
|
original_counts = packs |> Ammo.get_original_counts(current_user)
|
|
cprs = packs |> Ammo.get_cprs(current_user)
|
|
percentages_remaining = packs |> Ammo.get_percentages_remaining(current_user)
|
|
|
|
packs =
|
|
packs
|
|
|> Enum.map(fn %{id: pack_id} = pack ->
|
|
pack
|
|
|> Jason.encode!()
|
|
|> Jason.decode!()
|
|
|> Map.merge(%{
|
|
"used_count" => Map.get(used_counts, pack_id),
|
|
"percentage_remaining" => Map.fetch!(percentages_remaining, pack_id),
|
|
"original_count" => Map.get(original_counts, pack_id),
|
|
"cpr" => Map.get(cprs, pack_id)
|
|
})
|
|
end)
|
|
|
|
shot_records = ActivityLog.list_shot_records(current_user)
|
|
|
|
containers =
|
|
Containers.list_containers(current_user)
|
|
|> Enum.map(fn container ->
|
|
container
|
|
|> Jason.encode!()
|
|
|> Jason.decode!()
|
|
|> Map.merge(%{
|
|
"pack_count" => Ammo.get_packs_count(current_user, container_id: container.id),
|
|
"round_count" => Ammo.get_round_count(current_user, container_id: container.id)
|
|
})
|
|
end)
|
|
|
|
json(conn, %{
|
|
user: current_user,
|
|
types: types,
|
|
packs: packs,
|
|
shot_records: shot_records,
|
|
containers: containers
|
|
})
|
|
end
|
|
end
|