2020-04-15 18:19:43 +00:00
|
|
|
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)
|
|
|
|
|
2020-05-11 19:52:47 +00:00
|
|
|
markers_attrs
|
2020-05-11 20:00:01 +00:00
|
|
|
|> Enum.chunk_every(1000)
|
2020-05-11 20:03:29 +00:00
|
|
|
|> Enum.each(fn markers_attrs_chunked ->
|
|
|
|
Repo.insert_all("markers", markers_attrs_chunked,
|
2020-05-11 19:52:47 +00:00
|
|
|
on_conflict: {:replace, [:last_read_id]},
|
|
|
|
conflict_target: [:user_id, :timeline]
|
|
|
|
)
|
|
|
|
end)
|
2020-04-15 18:19:43 +00:00
|
|
|
end
|
|
|
|
end
|