41 lines
986 B
Elixir
41 lines
986 B
Elixir
defmodule ChronoscopeWeb.ClientActivator do
|
|
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
|
|
File.touch(Application.app_dir(:chronoscope, @nts_file))
|
|
{: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
|
|
Application.app_dir(:chronoscope, @nts_file)
|
|
|> File.stream!()
|
|
|> Stream.map(&String.trim/1)
|
|
|> Stream.filter(&(&1 != ""))
|
|
|> Stream.map(&Parse.parse_nts_server/1)
|
|
|> Enum.to_list()
|
|
|> tap(fn server -> Enum.each(server, &NTS.auto_refresh/1) end)
|
|
end
|
|
end
|