summaryrefslogtreecommitdiff
path: root/lib/lsg_irc/logger_plugin.ex
diff options
context:
space:
mode:
authorhref <href@random.sh>2022-12-11 01:47:26 +0000
committerJordan Bracco <href@random.sh>2022-12-11 02:03:36 +0000
commitd97e6d09f0db87989df42993499429883f1c224a (patch)
tree314132c1d68b271979c293318b6bf8e7aacbedce /lib/lsg_irc/logger_plugin.ex
parentfix(user-track): ensure we only get an user per network even if it's over mul... (diff)
feat(message): assign id (flake_id)
Diffstat (limited to '')
-rw-r--r--lib/lsg_irc/logger_plugin.ex15
1 files changed, 12 insertions, 3 deletions
diff --git a/lib/lsg_irc/logger_plugin.ex b/lib/lsg_irc/logger_plugin.ex
index 667f714..e5307bc 100644
--- a/lib/lsg_irc/logger_plugin.ex
+++ b/lib/lsg_irc/logger_plugin.ex
@@ -13,6 +13,7 @@ defmodule LSG.IRC.LoggerPlugin do
regopts = [plugin: __MODULE__]
{:ok, _} = Registry.register(IRC.PubSub, "triggers", regopts)
{:ok, _} = Registry.register(IRC.PubSub, "messages", regopts)
+ {:ok, _} = Registry.register(IRC.PubSub, "messages:private", regopts)
{:ok, nil}
end
@@ -49,12 +50,20 @@ defmodule LSG.IRC.LoggerPlugin do
state
end
- def format_to_db(m = %IRC.Message{}) do
- %IRC.Message{m | replyfun: nil}
+ def format_to_db(msg = %IRC.Message{id: id}) do
+ msg
+ |> Poison.encode!()
+ |> Map.drop("id")
+
+ %{"_id" => id || FlakeId.get(),
+ "type" => "irc.message/v1",
+ "object" => msg}
end
def format_to_db(anything) do
- anything
+ %{"_id" => FlakeId.get(),
+ "type" => "object",
+ "object" => anything}
end
end