Refactoring

This commit is contained in:
2026-07-16 19:28:11 +03:00
parent 06e86abf33
commit 7cff348d0d
2 changed files with 38 additions and 18 deletions
+28 -5
View File
@@ -1,17 +1,40 @@
defmodule NeonVertigoService.MessageProcessor do defmodule NeonVertigoService.MessageProcessor do
def process_message(["auctions", "create"], payload, _properties) do alias NeonVertigoService.Repo
def process_message(mqtt_pid, {"auctions", "create"}, payload, properties) do
changeset = Auction.changeset(%Auction{}, payload) changeset = Auction.changeset(%Auction{}, payload)
reply = case NeonVertigoService.Repo.insert(changeset) do reply = case Repo.insert(changeset) do
{:ok, auction} -> {:ok, auction} ->
%{ok: true, gid: auction.gid} %{ok: true, gid: auction.gid}
{:error, changeset} -> {:error, changeset} ->
%{ok: false, gid: changeset |> Ecto.Changeset.get_field(:gid)} %{ok: false, gid: changeset |> Ecto.Changeset.get_field(:gid)}
end end
{:reply, reply} reply(reply, mqtt_pid, properties)
end end
def process_message(_, _, _) do def process_message(_, _, _, _) do
:noreply {:ok, :unknown_message}
end end
defp reply(data, mqtt_pid, orig_properties, message_properties \\ []) do
response_topic = orig_properties[:"Response-Topic"]
if is_nil(response_topic) do
{:ok, :no_response_topic}
else
send_mqtt(data, mqtt_pid, response_topic, message_properties)
end
end
defp send_mqtt(data, mqtt_pid, response_topic, message_properties \\ [])
defp send_mqtt(data, mqtt_pid, response_topic, message_properties) when is_binary(response_topic) and byte_size(response_topic) > 0 do
if String.valid?(response_topic) && String.length(response_topic) > 0 do
:emqtt.publish(mqtt_pid, response_topic, JSON.encode!(data), message_properties)
else
{:error, :invalid_topic}
end
end
defp send_mqtt(_, _, _, _), do: {:error, :invalid_topic}
end end
+10 -13
View File
@@ -1,16 +1,20 @@
defmodule NeonVertigoService.Mqtt.Server do defmodule NeonVertigoService.Mqtt.Server do
use GenServer use GenServer
alias __MODULE__, as: MqttServer
defstruct [:mqtt_pid]
def start_link(_) do def start_link(_) do
GenServer.start_link(__MODULE__, [], name: __MODULE__) GenServer.start_link(__MODULE__, [], name: __MODULE__)
end end
def init(_) do def init(_) do
{:ok, {}, {:continue, :post_init}} {:ok, %MqttServer{}, {:continue, :post_init}}
end end
# Callbacks # Callbacks
def handle_continue(:post_init, {}) do def handle_continue(:post_init, %MqttServer{} = state) do
mqtt_config = Application.fetch_env!(:neon_vertigo_service, :mqtt_params) mqtt_config = Application.fetch_env!(:neon_vertigo_service, :mqtt_params)
{:ok, mqtt_pid} = Supervisor.start_child( {:ok, mqtt_pid} = Supervisor.start_child(
NeonVertigoService.Mqtt.Supervisor, NeonVertigoService.Mqtt.Supervisor,
@@ -23,25 +27,18 @@ defmodule NeonVertigoService.Mqtt.Server do
:emqtt.subscribe(mqtt_pid, %{}, [{"$share/neon-vertigo-service/auctions/+", [{:qos, 1}]}]) :emqtt.subscribe(mqtt_pid, %{}, [{"$share/neon-vertigo-service/auctions/+", [{:qos, 1}]}])
{:noreply, {mqtt_pid}} {:noreply, %{state | mqtt_pid: mqtt_pid}}
end end
# Handling MQTT messages # Handling MQTT messages
def handle_info({:publish, msg}, {mqtt_pid} = state) do def handle_info({:publish, msg}, %{mqtt_pid: mqtt_pid} = state) do
IO.puts("Received message") IO.puts("Received message")
IO.inspect(msg) IO.inspect(msg)
%{payload: payload_str, topic: topic_str, properties: properties} = msg %{payload: payload_str, topic: topic_str, properties: properties} = msg
topic = String.split(topic_str, "/") topic = String.split(topic_str, "/") |> List.to_tuple()
response_topic = properties[:"Response-Topic"]
payload = JSON.decode!(payload_str) payload = JSON.decode!(payload_str)
case NeonVertigoService.MessageProcessor.process_message(topic, payload, properties) do NeonVertigoService.MessageProcessor.process_message(mqtt_pid, topic, payload, properties)
{:reply, data} ->
if is_binary(response_topic) && String.length(response_topic) > 0 do
:emqtt.publish(mqtt_pid, response_topic, JSON.encode!(data), retain: true)
end
:noreply -> nil
end
{:noreply, state} {:noreply, state}
end end