2020-01-28 12:19:05 +00:00
|
|
|
defmodule Restarter.Pleroma do
|
|
|
|
use GenServer
|
|
|
|
|
2020-02-08 09:55:37 +00:00
|
|
|
require Logger
|
|
|
|
|
2020-02-18 15:10:39 +00:00
|
|
|
@init_state %{need_reboot: false, rebooted: false, after_boot: false}
|
|
|
|
|
2020-01-28 12:19:05 +00:00
|
|
|
def start_link(_) do
|
|
|
|
GenServer.start_link(__MODULE__, [], name: __MODULE__)
|
|
|
|
end
|
|
|
|
|
2020-02-18 15:10:39 +00:00
|
|
|
def init(_), do: {:ok, @init_state}
|
|
|
|
|
|
|
|
def rebooted? do
|
|
|
|
GenServer.call(__MODULE__, :rebooted?)
|
|
|
|
end
|
|
|
|
|
|
|
|
def rebooted do
|
|
|
|
GenServer.cast(__MODULE__, :rebooted)
|
|
|
|
end
|
2020-01-28 12:19:05 +00:00
|
|
|
|
2020-02-08 09:55:37 +00:00
|
|
|
def need_reboot? do
|
|
|
|
GenServer.call(__MODULE__, :need_reboot?)
|
|
|
|
end
|
2020-01-28 12:19:05 +00:00
|
|
|
|
2020-02-08 09:55:37 +00:00
|
|
|
def need_reboot do
|
|
|
|
GenServer.cast(__MODULE__, :need_reboot)
|
|
|
|
end
|
|
|
|
|
|
|
|
def refresh do
|
|
|
|
GenServer.cast(__MODULE__, :refresh)
|
|
|
|
end
|
|
|
|
|
|
|
|
def restart(env, delay) do
|
|
|
|
GenServer.cast(__MODULE__, {:restart, env, delay})
|
|
|
|
end
|
|
|
|
|
|
|
|
def restart_after_boot(env) do
|
|
|
|
GenServer.cast(__MODULE__, {:after_boot, env})
|
|
|
|
end
|
|
|
|
|
2020-02-18 15:10:39 +00:00
|
|
|
def handle_call(:rebooted?, _from, state) do
|
|
|
|
{:reply, state[:rebooted], state}
|
|
|
|
end
|
|
|
|
|
2020-02-08 09:55:37 +00:00
|
|
|
def handle_call(:need_reboot?, _from, state) do
|
2020-02-18 15:10:39 +00:00
|
|
|
{:reply, state[:need_reboot], state}
|
2020-02-08 09:55:37 +00:00
|
|
|
end
|
|
|
|
|
2020-02-18 15:10:39 +00:00
|
|
|
def handle_cast(:rebooted, state) do
|
|
|
|
{:noreply, Map.put(state, :rebooted, true)}
|
2020-01-28 12:19:05 +00:00
|
|
|
end
|
|
|
|
|
2020-02-18 15:10:39 +00:00
|
|
|
def handle_cast(:need_reboot, %{need_reboot: true} = state), do: {:noreply, state}
|
2020-02-08 09:55:37 +00:00
|
|
|
|
|
|
|
def handle_cast(:need_reboot, state) do
|
2020-02-18 15:10:39 +00:00
|
|
|
{:noreply, Map.put(state, :need_reboot, true)}
|
|
|
|
end
|
|
|
|
|
|
|
|
def handle_cast(:refresh, _state) do
|
|
|
|
{:noreply, @init_state}
|
2020-02-08 09:55:37 +00:00
|
|
|
end
|
|
|
|
|
2022-11-01 14:31:29 +00:00
|
|
|
# Don't actually restart during tests.
|
|
|
|
# We just check if the correct call has been done.
|
|
|
|
# If we actually restart, we get errors during the tests like
|
|
|
|
# (RuntimeError) could not lookup Ecto repo Pleroma.Repo because it was not started or
|
|
|
|
# it does not exist
|
|
|
|
# See tests in Pleroma.Config.TransferTaskTest
|
2020-02-08 09:55:37 +00:00
|
|
|
def handle_cast({:restart, :test, _}, state) do
|
2020-03-03 07:33:40 +00:00
|
|
|
Logger.debug("pleroma manually restarted")
|
2020-02-18 15:10:39 +00:00
|
|
|
{:noreply, Map.put(state, :need_reboot, false)}
|
2020-02-08 09:55:37 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
def handle_cast({:restart, _, delay}, state) do
|
2020-01-28 12:19:05 +00:00
|
|
|
Process.sleep(delay)
|
2020-02-08 09:55:37 +00:00
|
|
|
do_restart(:pleroma)
|
2020-02-18 15:10:39 +00:00
|
|
|
{:noreply, Map.put(state, :need_reboot, false)}
|
2020-02-08 09:55:37 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
def handle_cast({:after_boot, _}, %{after_boot: true} = state), do: {:noreply, state}
|
|
|
|
|
2022-11-01 14:31:29 +00:00
|
|
|
# Don't actually restart during tests.
|
|
|
|
# We just check if the correct call has been done.
|
|
|
|
# If we actually restart, we get errors during the tests like
|
|
|
|
# (RuntimeError) could not lookup Ecto repo Pleroma.Repo because it was not started or
|
|
|
|
# it does not exist
|
|
|
|
# See tests in Pleroma.Config.TransferTaskTest
|
2020-02-08 09:55:37 +00:00
|
|
|
def handle_cast({:after_boot, :test}, state) do
|
2020-03-03 07:33:40 +00:00
|
|
|
Logger.debug("pleroma restarted after boot")
|
2020-02-18 15:10:39 +00:00
|
|
|
state = %{state | after_boot: true, rebooted: true}
|
|
|
|
{:noreply, state}
|
2020-02-08 09:55:37 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
def handle_cast({:after_boot, _}, state) do
|
|
|
|
do_restart(:pleroma)
|
2020-02-18 15:10:39 +00:00
|
|
|
state = %{state | after_boot: true, rebooted: true}
|
|
|
|
{:noreply, state}
|
2020-01-28 12:19:05 +00:00
|
|
|
end
|
|
|
|
|
2020-02-08 09:55:37 +00:00
|
|
|
defp do_restart(app) do
|
2020-01-28 12:19:05 +00:00
|
|
|
:ok = Application.ensure_started(app)
|
|
|
|
:ok = Application.stop(app)
|
|
|
|
:ok = Application.start(app)
|
|
|
|
end
|
|
|
|
end
|