1 # Pleroma: A lightweight social networking server
2 # Copyright © 2017-2019 Pleroma Authors <https://pleroma.social/>
3 # SPDX-License-Identifier: AGPL-3.0-only
5 defmodule Pleroma.BBS.Handler do
9 alias Pleroma.Web.ActivityPub.ActivityPub
10 alias Pleroma.Web.CommonAPI
12 def on_shell(username, _pubkey, _ip, _port) do
13 :ok = IO.puts("Welcome to #{Pleroma.Config.get([:instance, :name])}!")
14 user = Pleroma.User.get_cached_by_nickname(to_string(username))
15 Logger.debug("#{inspect(user)}")
16 loop(run_state(user: user))
19 def on_connect(username, ip, port, method) do
22 Incoming SSH shell #{inspect(self())} requested for #{username} from #{inspect(ip)}:#{
24 } using #{inspect(method)}
29 def on_disconnect(username, ip, port) do
31 "Disconnecting SSH shell for #{username} from #{inspect(ip)}:#{inspect(port)}"
37 counter = state.counter
41 input = spawn(fn -> io_get(self_pid, prefix, counter, user.nickname) end)
42 wait_input(state, input)
45 def puts_activity(activity) do
46 status = Pleroma.Web.MastodonAPI.StatusView.render("show.json", %{activity: activity})
47 IO.puts("-- #{status.id} by #{status.account.display_name} (#{status.account.acct})")
48 IO.puts(HTML.strip_tags(status.content))
52 def handle_command(state, "help") do
53 IO.puts("Available commands:")
54 IO.puts("help - This help")
55 IO.puts("home - Show the home timeline")
56 IO.puts("p <text> - Post the given text")
57 IO.puts("r <id> <text> - Reply to the post with the given id")
58 IO.puts("quit - Quit")
63 def handle_command(%{user: user} = state, "r " <> text) do
64 text = String.trim(text)
65 [activity_id, rest] = String.split(text, " ", parts: 2)
67 with %Activity{} <- Activity.get_by_id(activity_id),
69 CommonAPI.post(user, %{"status" => rest, "in_reply_to_status_id" => activity_id}) do
72 _e -> IO.puts("Could not reply...")
78 def handle_command(%{user: user} = state, "p " <> text) do
79 text = String.trim(text)
81 with {:ok, _activity} <- CommonAPI.post(user, %{"status" => text}) do
84 _e -> IO.puts("Could not post...")
90 def handle_command(state, "home") do
95 |> Map.put("type", ["Create"])
96 |> Map.put("blocking_user", user)
97 |> Map.put("muting_user", user)
98 |> Map.put("user", user)
101 [user.ap_id | Pleroma.User.following(user)]
102 |> ActivityPub.fetch_activities(params)
104 Enum.each(activities, fn activity ->
105 puts_activity(activity)
111 def handle_command(state, command) do
112 IO.puts("Unknown command '#{command}'")
116 defp wait_input(state, input) do
118 {:input, ^input, "quit\n"} ->
119 IO.puts("Exiting...")
121 {:input, ^input, code} when is_binary(code) ->
122 code = String.trim(code)
124 state = handle_command(state, code)
126 loop(%{state | counter: state.counter + 1})
128 {:error, :interrupted} ->
129 IO.puts("Caught Ctrl+C...")
130 loop(%{state | counter: state.counter + 1})
132 {:input, ^input, msg} ->
133 :ok = Logger.warn("received unknown message: #{inspect(msg)}")
134 loop(%{state | counter: state.counter + 1})
138 defp run_state(opts) do
139 %{prefix: "pleroma", counter: 1, user: opts[:user]}
142 defp io_get(pid, prefix, counter, username) do
143 prompt = prompt(prefix, counter, username)
144 send(pid, {:input, self(), IO.gets(:stdio, prompt)})
147 defp prompt(prefix, counter, username) do
148 prompt = "#{username}@#{prefix}:#{counter}>"