chronoscope/lib/chronoscope_web/client_activator.ex

41 lines
986 B
Elixir
Raw Normal View History

2024-06-05 14:21:26 -04:00
defmodule ChronoscopeWeb.ClientActivator do
2024-06-04 20:03:02 -04:00
use GenServer
require Logger
alias Chronoscope.NTS
alias Chronoscope.NTS.Parse
@nts_file Application.compile_env(:chronoscope, :nts_file)
def start_link(_) do
GenServer.start_link(__MODULE__, :ok, name: __MODULE__)
end
@impl true
def init(_) do
2024-06-05 14:21:26 -04:00
File.touch(Application.app_dir(:chronoscope, @nts_file))
2024-06-04 20:03:02 -04:00
{:ok, %{nts_servers: activate_nts_clients()}}
end
@impl true
def handle_info(:activate_clients, _state) do
{:noreply, %{nts_servers: activate_nts_clients()}}
end
@impl true
def handle_call(:get_nts_servers, _from, state) do
{:reply, state.nts_servers, state}
end
defp activate_nts_clients() do
2024-06-05 14:21:26 -04:00
Application.app_dir(:chronoscope, @nts_file)
2024-06-04 20:03:02 -04:00
|> File.stream!()
|> Stream.map(&String.trim/1)
|> Stream.filter(&(&1 != ""))
2024-06-04 20:03:02 -04:00
|> Stream.map(&Parse.parse_nts_server/1)
|> Enum.to_list()
|> tap(fn server -> Enum.each(server, &NTS.auto_refresh/1) end)
end
end