2018-12-23 20:04:54 +00:00
|
|
|
# Pleroma: A lightweight social networking server
|
2021-01-13 06:49:20 +00:00
|
|
|
# Copyright © 2017-2021 Pleroma Authors <https://pleroma.social/>
|
2018-12-23 20:04:54 +00:00
|
|
|
# SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
|
2018-03-31 15:51:33 +00:00
|
|
|
defmodule Pleroma.Gopher.Server do
|
|
|
|
use GenServer
|
|
|
|
require Logger
|
|
|
|
|
2019-08-14 15:55:17 +00:00
|
|
|
def start_link(_) do
|
2018-11-06 18:34:57 +00:00
|
|
|
config = Pleroma.Config.get(:gopher, [])
|
|
|
|
ip = Keyword.get(config, :ip, {0, 0, 0, 0})
|
|
|
|
port = Keyword.get(config, :port, 1234)
|
2018-03-31 15:51:33 +00:00
|
|
|
|
2018-11-19 19:58:12 +00:00
|
|
|
if Keyword.get(config, :enabled, false) do
|
|
|
|
GenServer.start_link(__MODULE__, [ip, port], [])
|
2018-03-31 15:51:33 +00:00
|
|
|
else
|
|
|
|
Logger.info("Gopher server disabled")
|
2018-11-19 19:58:12 +00:00
|
|
|
:ignore
|
2018-03-31 15:51:33 +00:00
|
|
|
end
|
|
|
|
end
|
2018-11-19 19:58:12 +00:00
|
|
|
|
|
|
|
def init([ip, port]) do
|
|
|
|
Logger.info("Starting gopher server on #{port}")
|
|
|
|
|
|
|
|
:ranch.start_listener(
|
|
|
|
:gopher,
|
|
|
|
100,
|
|
|
|
:ranch_tcp,
|
2018-12-07 18:21:58 +00:00
|
|
|
[ip: ip, port: port],
|
2018-11-19 19:58:12 +00:00
|
|
|
__MODULE__.ProtocolHandler,
|
|
|
|
[]
|
|
|
|
)
|
|
|
|
|
|
|
|
{:ok, %{ip: ip, port: port}}
|
|
|
|
end
|
2018-03-31 15:51:33 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
defmodule Pleroma.Gopher.Server.ProtocolHandler do
|
|
|
|
alias Pleroma.Activity
|
2018-09-09 23:40:24 +00:00
|
|
|
alias Pleroma.HTML
|
2018-11-25 18:48:37 +00:00
|
|
|
alias Pleroma.Object
|
2019-03-05 02:52:23 +00:00
|
|
|
alias Pleroma.User
|
|
|
|
alias Pleroma.Web.ActivityPub.ActivityPub
|
|
|
|
alias Pleroma.Web.ActivityPub.Visibility
|
2018-03-31 15:51:33 +00:00
|
|
|
|
|
|
|
def start_link(ref, socket, transport, opts) do
|
|
|
|
pid = spawn_link(__MODULE__, :init, [ref, socket, transport, opts])
|
|
|
|
{:ok, pid}
|
|
|
|
end
|
|
|
|
|
2019-02-06 19:19:39 +00:00
|
|
|
def init(ref, socket, transport, [] = _Opts) do
|
2018-03-31 15:51:33 +00:00
|
|
|
:ok = :ranch.accept_ack(ref)
|
|
|
|
loop(socket, transport)
|
|
|
|
end
|
|
|
|
|
|
|
|
def info(text) do
|
2018-03-31 19:11:46 +00:00
|
|
|
text = String.replace(text, ~r/[\t\n]/, "")
|
2018-04-02 11:13:04 +00:00
|
|
|
|
2018-03-31 19:00:23 +00:00
|
|
|
String.split(text, "\r")
|
2018-04-02 11:13:04 +00:00
|
|
|
|> Enum.map(fn text ->
|
2018-08-09 14:17:45 +00:00
|
|
|
"i#{text}\tfake\t(NULL)\t0\r\n"
|
2018-03-31 19:00:23 +00:00
|
|
|
end)
|
|
|
|
|> Enum.join("")
|
2018-03-31 15:51:33 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
def link(name, selector, type \\ 1) do
|
|
|
|
address = Pleroma.Web.Endpoint.host()
|
2018-11-06 18:34:57 +00:00
|
|
|
port = Pleroma.Config.get([:gopher, :port], 1234)
|
2019-03-18 14:47:58 +00:00
|
|
|
dstport = Pleroma.Config.get([:gopher, :dstport], port)
|
|
|
|
"#{type}#{name}\t#{selector}\t#{address}\t#{dstport}\r\n"
|
2018-03-31 15:51:33 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
def render_activities(activities) do
|
|
|
|
activities
|
|
|
|
|> Enum.reverse()
|
|
|
|
|> Enum.map(fn activity ->
|
|
|
|
user = User.get_cached_by_ap_id(activity.data["actor"])
|
|
|
|
|
2021-01-04 12:38:31 +00:00
|
|
|
object = Object.normalize(activity, fetch: false)
|
2019-05-14 15:35:06 +00:00
|
|
|
like_count = object.data["like_count"] || 0
|
|
|
|
announcement_count = object.data["announcement_count"] || 0
|
2018-03-31 16:22:33 +00:00
|
|
|
|
2018-03-31 15:51:33 +00:00
|
|
|
link("Post ##{activity.id} by #{user.nickname}", "/notices/#{activity.id}") <>
|
2018-03-31 16:22:33 +00:00
|
|
|
info("#{like_count} likes, #{announcement_count} repeats") <>
|
2018-08-10 16:01:42 +00:00
|
|
|
"i\tfake\t(NULL)\t0\r\n" <>
|
2019-05-14 15:35:06 +00:00
|
|
|
info(HTML.strip_tags(String.replace(object.data["content"], "<br>", "\r")))
|
2018-03-31 15:51:33 +00:00
|
|
|
end)
|
2018-08-10 16:01:42 +00:00
|
|
|
|> Enum.join("i\tfake\t(NULL)\t0\r\n")
|
2018-03-31 15:51:33 +00:00
|
|
|
end
|
|
|
|
|
2018-05-04 21:59:21 +00:00
|
|
|
def response("") do
|
2018-11-06 18:34:57 +00:00
|
|
|
info("Welcome to #{Pleroma.Config.get([:instance, :name], "Pleroma")}!") <>
|
2018-05-04 21:59:21 +00:00
|
|
|
link("Public Timeline", "/main/public") <>
|
|
|
|
link("Federated Timeline", "/main/all") <> ".\r\n"
|
|
|
|
end
|
|
|
|
|
2018-03-31 15:51:33 +00:00
|
|
|
def response("/main/public") do
|
|
|
|
posts =
|
2020-07-17 15:06:05 +00:00
|
|
|
%{type: ["Create"], local_only: true}
|
|
|
|
|> ActivityPub.fetch_public_activities()
|
|
|
|
|> render_activities()
|
2018-03-31 15:51:33 +00:00
|
|
|
|
|
|
|
info("Welcome to the Public Timeline!") <> posts <> ".\r\n"
|
|
|
|
end
|
|
|
|
|
|
|
|
def response("/main/all") do
|
|
|
|
posts =
|
2020-07-17 15:06:05 +00:00
|
|
|
%{type: ["Create"]}
|
|
|
|
|> ActivityPub.fetch_public_activities()
|
|
|
|
|> render_activities()
|
2018-03-31 15:51:33 +00:00
|
|
|
|
|
|
|
info("Welcome to the Federated Timeline!") <> posts <> ".\r\n"
|
|
|
|
end
|
|
|
|
|
|
|
|
def response("/notices/" <> id) do
|
2019-04-02 09:50:31 +00:00
|
|
|
with %Activity{} = activity <- Activity.get_by_id(id),
|
2019-02-22 12:29:52 +00:00
|
|
|
true <- Visibility.is_public?(activity) do
|
2018-03-31 15:51:33 +00:00
|
|
|
activities =
|
|
|
|
ActivityPub.fetch_activities_for_context(activity.data["context"])
|
|
|
|
|> render_activities
|
|
|
|
|
|
|
|
user = User.get_cached_by_ap_id(activity.data["actor"])
|
|
|
|
|
|
|
|
info("Post #{activity.id} by #{user.nickname}") <>
|
|
|
|
link("More posts by #{user.nickname}", "/users/#{user.nickname}") <> activities <> ".\r\n"
|
|
|
|
else
|
|
|
|
_e ->
|
|
|
|
info("Not public") <> ".\r\n"
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def response("/users/" <> nickname) do
|
|
|
|
with %User{} = user <- User.get_cached_by_nickname(nickname) do
|
|
|
|
params = %{
|
2020-07-17 15:06:05 +00:00
|
|
|
type: ["Create"],
|
|
|
|
actor_id: user.ap_id
|
2018-03-31 15:51:33 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
activities =
|
2020-07-17 15:06:05 +00:00
|
|
|
params
|
|
|
|
|> ActivityPub.fetch_public_activities()
|
|
|
|
|> render_activities()
|
2018-03-31 15:51:33 +00:00
|
|
|
|
|
|
|
info("Posts by #{user.nickname}") <> activities <> ".\r\n"
|
|
|
|
else
|
|
|
|
_e ->
|
|
|
|
info("No such user") <> ".\r\n"
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def loop(socket, transport) do
|
|
|
|
case transport.recv(socket, 0, 5000) do
|
|
|
|
{:ok, data} ->
|
|
|
|
data = String.trim_trailing(data, "\r\n")
|
|
|
|
transport.send(socket, response(data))
|
|
|
|
:ok = transport.close(socket)
|
|
|
|
|
|
|
|
_ ->
|
|
|
|
:ok = transport.close(socket)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|