diff options
author | lain <lain@soykaf.club> | 2020-05-08 09:23:01 +0000 |
---|---|---|
committer | lain <lain@soykaf.club> | 2020-05-08 09:23:01 +0000 |
commit | 0cf43391f272b2bb756b564e12bbcd3efda6a4bd (patch) | |
tree | 3ce1732a3a997de5070e005f9b4102a5c01c878c /priv | |
parent | 218a22c9a36ff2f8de353110f0badfc1ec5aa0f2 (diff) | |
parent | a081135365c2b9d7bc81ee84baffbc3c2be68e8c (diff) | |
download | pleroma-0cf43391f272b2bb756b564e12bbcd3efda6a4bd.tar.gz pleroma-0cf43391f272b2bb756b564e12bbcd3efda6a4bd.zip |
Merge branch 'issue/1276-2' into 'develop'
[#1276] added an endpoint for getting unread notification count
See merge request pleroma/pleroma!2392
Diffstat (limited to 'priv')
-rw-r--r-- | priv/repo/migrations/20200415181818_update_markers.exs | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/priv/repo/migrations/20200415181818_update_markers.exs b/priv/repo/migrations/20200415181818_update_markers.exs new file mode 100644 index 000000000..976363565 --- /dev/null +++ b/priv/repo/migrations/20200415181818_update_markers.exs @@ -0,0 +1,40 @@ +defmodule Pleroma.Repo.Migrations.UpdateMarkers do + use Ecto.Migration + import Ecto.Query + alias Pleroma.Repo + + def up do + update_markers() + end + + def down do + :ok + end + + defp update_markers do + now = NaiveDateTime.utc_now() + + markers_attrs = + from(q in "notifications", + select: %{ + timeline: "notifications", + user_id: q.user_id, + last_read_id: + type(fragment("MAX( CASE WHEN seen = true THEN id ELSE null END )"), :string) + }, + group_by: [q.user_id] + ) + |> Repo.all() + |> Enum.map(fn %{last_read_id: last_read_id} = attrs -> + attrs + |> Map.put(:last_read_id, last_read_id || "") + |> Map.put_new(:inserted_at, now) + |> Map.put_new(:updated_at, now) + end) + + Repo.insert_all("markers", markers_attrs, + on_conflict: {:replace, [:last_read_id]}, + conflict_target: [:user_id, :timeline] + ) + end +end |