2019-07-10 05:13:23 +00:00
|
|
|
# Pleroma: A lightweight social networking server
|
2020-03-03 22:44:49 +00:00
|
|
|
# Copyright © 2017-2020 Pleroma Authors <https://pleroma.social/>
|
2019-07-10 05:13:23 +00:00
|
|
|
# SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
|
2019-02-16 15:42:34 +00:00
|
|
|
defmodule Pleroma.User.WelcomeMessage do
|
|
|
|
alias Pleroma.User
|
|
|
|
alias Pleroma.Web.CommonAPI
|
|
|
|
|
|
|
|
def post_welcome_message_to_user(user) do
|
|
|
|
with %User{} = sender_user <- welcome_user(),
|
|
|
|
message when is_binary(message) <- welcome_message() do
|
|
|
|
CommonAPI.post(sender_user, %{
|
|
|
|
"visibility" => "direct",
|
|
|
|
"status" => "@#{user.nickname}\n#{message}"
|
|
|
|
})
|
|
|
|
else
|
|
|
|
_ -> {:ok, nil}
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2019-03-05 03:18:43 +00:00
|
|
|
defp welcome_user do
|
2019-02-16 16:24:48 +00:00
|
|
|
with nickname when is_binary(nickname) <-
|
|
|
|
Pleroma.Config.get([:instance, :welcome_user_nickname]),
|
|
|
|
%User{local: true} = user <- User.get_cached_by_nickname(nickname) do
|
|
|
|
user
|
2019-02-16 15:42:34 +00:00
|
|
|
else
|
2019-02-16 16:24:48 +00:00
|
|
|
_ -> nil
|
2019-02-16 15:42:34 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2019-03-05 03:18:43 +00:00
|
|
|
defp welcome_message do
|
2019-02-16 15:42:34 +00:00
|
|
|
Pleroma.Config.get([:instance, :welcome_message])
|
|
|
|
end
|
|
|
|
end
|