add timestamp
authorFloatingGhost <hannah@coffee-and-dreams.uk>
Thu, 16 Dec 2021 15:58:56 +0000 (15:58 +0000)
committerFloatingGhost <hannah@coffee-and-dreams.uk>
Thu, 16 Dec 2021 15:58:56 +0000 (15:58 +0000)
lib/pleroma/elasticsearch/document_mappings/hashtag.ex
lib/pleroma/elasticsearch/store.ex
lib/pleroma/hashtag.ex

index 1c47d1451d522e57ded33ca98886e531d593eb11..ddf91231c1eafa965655a55b7ae903a970b2a386 100644 (file)
@@ -4,7 +4,7 @@ defmodule Pleroma.Elasticsearch.DocumentMappings.Hashtag do
   def encode(hashtag) do
     %{
       hashtag: hashtag.name,
-      timestamp: hashtag.inserted_at
+      timestamp: hashtag.timestamp
     }
   end
 end
index 0860a5ee5ff601b328042e4e3967b5e483872933..5c9e1502210b28915d835f2878df794072e055cb 100644 (file)
@@ -1,6 +1,7 @@
 defmodule Pleroma.Elasticsearch do
   alias Pleroma.Activity
   alias Pleroma.User
+  alias Pleroma.Object
   alias Pleroma.Elasticsearch.DocumentMappings
   alias Pleroma.Config
   require Logger
@@ -45,6 +46,12 @@ defmodule Pleroma.Elasticsearch do
     {:ok, :skipped}
   end
 
+  def maybe_bulk_post(data, type) do
+    if enabled?() do
+      bulk_post(data, type)
+    end
+  end
+
   def put(%Activity{} = activity) do
     {:ok, _} =
       Elastix.Document.index(
@@ -54,6 +61,12 @@ defmodule Pleroma.Elasticsearch do
         DocumentMappings.Activity.id(activity),
         DocumentMappings.Activity.encode(activity)
       )
+
+    activity
+    |> Map.get(:object)
+    |> Object.hashtags()
+    |> Enum.map(fn x -> %{id: x, name: x, timestamp: DateTime.to_iso8601(DateTime.utc_now())} end)
+    |> bulk_post(:hashtags)
   end
 
   def put(%User{} = user) do
@@ -95,12 +108,6 @@ defmodule Pleroma.Elasticsearch do
       )
   end
 
-  def maybe_bulk_post(data, type) do
-    if enabled?() do
-      bulk_post(data, type)
-    end
-  end
-
   def bulk_post(data, :users) do
     d =
       data
@@ -120,7 +127,7 @@ defmodule Pleroma.Elasticsearch do
     )
   end
 
-  def bulk_post([] = data, :hashtags) do
+  def bulk_post(data, :hashtags) when is_list(data) do
     d =
       data
       |> Enum.map(fn d ->
index cdbfeab02b4b2d974248c23c9f5d3da9f2b39429..53e2e9c897d564dd788306a72fa640ff75cbdce8 100644 (file)
@@ -61,7 +61,6 @@ defmodule Pleroma.Hashtag do
                {:ok, Repo.all(from(ht in Hashtag, where: ht.name in ^names))}
              end)
              |> Repo.transaction() do
-        Pleroma.Elasticsearch.maybe_bulk_post(hashtags, :hashtags)
         {:ok, hashtags}
       else
         {:error, _name, value, _changes_so_far} -> {:error, value}