File size: 5,598 Bytes
6778ee0 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 | defmodule PlausibleWeb.E2EController do
use Plausible
on_ee do
use PlausibleWeb, :controller
@event_types Map.new(
[
:event,
:imported_visitors,
:imported_sources,
:imported_pages,
:imported_entry_pages,
:imported_exit_pages,
:imported_locations,
:imported_devices,
:imported_browsers,
:imported_operating_systems
],
fn type ->
{Atom.to_string(type), type}
end
)
def populate_stats(conn, %{"domain" => domain, "events" => events}) do
site = Plausible.Repo.get_by!(Plausible.Site, domain: domain)
events =
events
|> Enum.map(&deserialize/1)
|> Enum.map(&build/1)
|> maybe_set_import_id(site)
time_fun = fn event ->
if Map.has_key?(event, :timestamp) do
event.timestamp
else
NaiveDateTime.new!(event.date, ~T[00:00:00])
end
end
{stats_start_time, stats_start_date} =
case Enum.min_by(events, time_fun, NaiveDateTime) do
%{date: d} ->
{NaiveDateTime.new!(d, ~T[00:00:00]), d}
%{timestamp: ts} ->
{ts, NaiveDateTime.to_date(ts)}
end
site
|> Plausible.Site.set_native_stats_start_at(stats_start_time)
|> Plausible.Site.set_stats_start_date(stats_start_date)
|> Plausible.Repo.update!()
populate(events, site)
send_resp(conn, 200, Jason.encode!(%{"ok" => true}))
end
def create_goal(conn, %{"domain" => domain} = params) do
site = Plausible.Repo.get_by!(Plausible.Site, domain: domain)
case Plausible.Goals.create(site, params) do
{:ok, _} ->
send_resp(conn, 200, Jason.encode!(%{"ok" => true}))
{:error, changeset} ->
unique_errors =
Ecto.Changeset.traverse_errors(changeset, fn {_msg, opts} ->
opts[:constraint] == :unique
end)
# Ignore duplicate goal errors because site installation might
# create goals before this is called via tracker script configuration
# update.
if unique_errors[:display_name] || unique_errors[:event_name] do
send_resp(conn, 200, Jason.encode!(%{"ok" => true}))
else
send_resp(conn, 422, Jason.encode!(%{"error" => inspect(changeset)}))
end
end
end
def create_funnel(conn, %{"domain" => domain, "name" => name, "steps" => steps}) do
site = Plausible.Repo.get_by!(Plausible.Site, domain: domain)
steps =
Enum.map(steps, fn step ->
goal = get_goal(site, step)
%{"goal_id" => goal.id}
end)
{:ok, _} = Plausible.Funnels.create(site, name, steps)
send_resp(conn, 200, Jason.encode!(%{"ok" => true}))
end
defp get_goal(site, name) do
Plausible.Repo.get_by!(Plausible.Goal, site_id: site.id, display_name: name)
end
defp deserialize(event) do
type = Map.fetch!(@event_types, event["type"] || "event")
# to ensure relevant key atoms are in scope
Plausible.Factory.build(type)
attrs =
Enum.map(event, fn
{"timestamp", value} ->
{:timestamp, to_timestamp(value)}
{"date", value} ->
{:date, to_date(value)}
{"revenue_reporting_amount", value} ->
{:revenue_reporting_amount, Decimal.new(value)}
{key, value} ->
{String.to_existing_atom(key), value}
end)
Keyword.put(attrs, :type, type)
end
defp build(attrs) do
{type, attrs} = Keyword.pop!(attrs, :type)
attrs =
cond do
type == :event and attrs[:timestamp] ->
attrs
type == :event and is_nil(attrs[:timestamp]) ->
timestamp = NaiveDateTime.utc_now(:second) |> NaiveDateTime.add(-48, :hour)
Keyword.put(attrs, :timestamp, timestamp)
attrs[:date] ->
attrs
true ->
date = Date.utc_today() |> Date.add(-2)
Keyword.put(attrs, :date, date)
end
Plausible.Factory.build(type, attrs)
end
defp maybe_set_import_id(events, site) do
if Enum.any?(events, &Map.has_key?(&1, :table)) do
import = Plausible.Factory.insert(:site_import, site: site)
Enum.map(events, &set_import_id(&1, import.id))
else
events
end
end
defp set_import_id(%{table: _} = event, import_id) do
Map.put(event, :import_id, import_id)
end
defp set_import_id(event, _import_id), do: event
defp populate(events, site) do
Plausible.TestUtils.populate_stats(site, events)
end
defp to_date(%{"daysAgo" => offset}) do
Date.utc_today() |> Date.add(-offset)
end
defp to_date(d) when is_binary(d) do
Date.from_iso8601!(d)
end
defp to_timestamp(%{"daysAgo" => offset}) do
NaiveDateTime.utc_now(:second) |> NaiveDateTime.add(-offset, :day)
end
defp to_timestamp(%{"hoursAgo" => offset}) do
NaiveDateTime.utc_now(:second) |> NaiveDateTime.add(-offset, :hour)
end
defp to_timestamp(%{"minutesAgo" => offset}) do
NaiveDateTime.utc_now(:second) |> NaiveDateTime.add(-offset, :minute)
end
defp to_timestamp(ts) when is_binary(ts) do
NaiveDateTime.from_iso8601!(ts)
end
end
end
|