pleroma/lib/pleroma/web/twitter_api/twitter_api.ex

225 lines
6.7 KiB
Elixir
Raw Normal View History

2017-03-21 17:53:20 +01:00
defmodule Pleroma.Web.TwitterAPI.TwitterAPI do
2017-03-30 17:07:03 +02:00
alias Pleroma.{User, Activity, Repo, Object}
2017-03-21 17:53:20 +01:00
alias Pleroma.Web.ActivityPub.ActivityPub
alias Pleroma.Web.TwitterAPI.{UserView, Utils}
alias Pleroma.Web.OStatus
2017-05-17 18:00:20 +02:00
alias Pleroma.Formatter
2017-03-21 17:53:20 +01:00
2017-05-17 18:00:20 +02:00
import Pleroma.Web.TwitterAPI.Utils
@httpoison Application.get_env(:pleroma, :httpoison)
2017-05-17 18:00:20 +02:00
def to_for_user_and_mentions(user, mentions, inReplyTo) do
default_to = [
User.ap_followers(user),
"https://www.w3.org/ns/activitystreams#Public"
]
2017-03-30 17:07:03 +02:00
2017-05-17 18:00:20 +02:00
to = default_to ++ Enum.map(mentions, fn ({_, %{ap_id: ap_id}}) -> ap_id end)
if inReplyTo do
Enum.uniq([inReplyTo.data["actor"] | to])
else
to
end
2017-04-25 17:26:05 +02:00
end
2017-04-25 17:32:36 +02:00
def get_replied_to_activity(id) when not is_nil(id) do
Repo.get(Activity, id)
end
2017-04-25 17:32:36 +02:00
def get_replied_to_activity(_), do: nil
2017-05-05 12:07:38 +02:00
def create_status(%User{} = user, %{"status" => status} = data) do
2017-05-17 18:00:20 +02:00
with attachments <- attachments_from_ids(data["media_ids"]),
mentions <- Formatter.parse_mentions(status),
2017-05-17 18:00:20 +02:00
inReplyTo <- get_replied_to_activity(data["in_reply_to_status_id"]),
to <- to_for_user_and_mentions(user, mentions, inReplyTo),
content_html <- make_content_html(status, mentions, attachments),
context <- make_context(inReplyTo),
2017-05-18 15:16:49 +02:00
tags <- Formatter.parse_tags(status),
object <- make_note_data(user.ap_id, to, context, content_html, attachments, inReplyTo, tags) do
2017-05-17 18:00:20 +02:00
ActivityPub.create(to, user, context, object)
end
2017-03-21 17:53:20 +01:00
end
2017-04-13 14:32:13 +02:00
def follow(%User{} = follower, params) do
2017-05-05 12:07:38 +02:00
with {:ok, %User{} = followed} <- get_user(params),
{:ok, follower} <- User.follow(follower, followed),
{:ok, activity} <- ActivityPub.follow(follower, followed)
2017-03-22 18:36:08 +01:00
do
2017-05-05 12:07:38 +02:00
{:ok, follower, followed, activity}
else
err -> err
2017-03-22 18:36:08 +01:00
end
end
2017-04-20 09:57:37 +02:00
def unfollow(%User{} = follower, params) do
with { :ok, %User{} = unfollowed } <- get_user(params),
2017-04-21 18:54:21 +02:00
{ :ok, follower, follow_activity } <- User.unfollow(follower, unfollowed),
{ :ok, _activity } <- ActivityPub.insert(%{
"type" => "Undo",
"actor" => follower.ap_id,
"object" => follow_activity.data["id"], # get latest Follow for these users
"published" => Utils.make_date()
2017-04-21 18:54:21 +02:00
})
2017-03-23 13:13:09 +01:00
do
2017-04-21 18:54:21 +02:00
{ :ok, follower, unfollowed }
else
err -> err
2017-03-23 13:13:09 +01:00
end
end
2017-04-13 16:19:07 +02:00
def favorite(%User{} = user, %Activity{data: %{"object" => object}} = activity) do
object = Object.get_by_ap_id(object["id"])
{:ok, _like_activity, object} = ActivityPub.like(user, object)
new_data = activity.data
|> Map.put("object", object.data)
status = %{activity | data: new_data}
{:ok, status}
end
2017-04-14 18:15:15 +02:00
def unfavorite(%User{} = user, %Activity{data: %{"object" => object}} = activity) do
object = Object.get_by_ap_id(object["id"])
{:ok, object} = ActivityPub.unlike(user, object)
new_data = activity.data
|> Map.put("object", object.data)
status = %{activity | data: new_data}
{:ok, status}
end
2017-04-15 13:54:46 +02:00
def retweet(%User{} = user, %Activity{data: %{"object" => object}} = activity) do
object = Object.get_by_ap_id(object["id"])
{:ok, _announce_activity, object} = ActivityPub.announce(user, object)
new_data = activity.data
|> Map.put("object", object.data)
status = %{activity | data: new_data}
{:ok, status}
end
def upload(%Plug.Upload{} = file, format \\ "xml") do
2017-03-29 02:05:51 +02:00
{:ok, object} = ActivityPub.upload(file)
2017-03-30 16:08:23 +02:00
url = List.first(object.data["url"])
href = url["href"]
type = url["mediaType"]
case format do
"xml" ->
# Fake this as good as possible...
"""
<?xml version="1.0" encoding="UTF-8"?>
<rsp stat="ok" xmlns:atom="http://www.w3.org/2005/Atom">
<mediaid>#{object.id}</mediaid>
<media_id>#{object.id}</media_id>
<media_id_string>#{object.id}</media_id_string>
<media_url>#{href}</media_url>
<mediaurl>#{href}</mediaurl>
<atom:link rel="enclosure" href="#{href}" type="#{type}"></atom:link>
</rsp>
"""
"json" ->
%{
media_id: object.id,
media_id_string: "#{object.id}}",
media_url: href,
size: 0
} |> Poison.encode!
end
2017-03-29 02:05:51 +02:00
end
2017-04-16 10:25:27 +02:00
def register_user(params) do
params = %{
nickname: params["nickname"],
name: params["fullname"],
bio: params["bio"],
email: params["email"],
password: params["password"],
password_confirmation: params["confirm"]
}
changeset = User.register_changeset(%User{}, params)
with {:ok, user} <- Repo.insert(changeset) do
2017-06-19 23:12:37 +02:00
{:ok, user}
2017-04-16 10:25:27 +02:00
else
{:error, changeset} ->
errors = Ecto.Changeset.traverse_errors(changeset, fn {msg, _opts} -> msg end)
|> Poison.encode!
2017-04-25 17:45:34 +02:00
{:error, %{error: errors}}
2017-04-16 10:25:27 +02:00
end
end
2017-06-12 17:12:55 +02:00
def get_by_id_or_nickname(id_or_nickname) do
if !is_integer(id_or_nickname) && :error == Integer.parse(id_or_nickname) do
Repo.get_by(User, nickname: id_or_nickname)
else
Repo.get(User, id_or_nickname)
end
end
def get_user(user \\ nil, params) do
case params do
2017-05-05 12:07:38 +02:00
%{"user_id" => user_id} ->
2017-06-12 17:12:55 +02:00
case target = get_by_id_or_nickname(user_id) do
nil ->
{:error, "No user with such user_id"}
_ ->
{:ok, target}
end
2017-05-05 12:07:38 +02:00
%{"screen_name" => nickname} ->
case target = Repo.get_by(User, nickname: nickname) do
nil ->
{:error, "No user with such screen_name"}
_ ->
{:ok, target}
end
_ ->
if user do
{:ok, user}
else
2017-04-16 16:05:48 +02:00
{:error, "You need to specify screen_name or user_id"}
end
end
end
def context_to_conversation_id(context) do
2017-05-01 16:15:21 +02:00
with %Object{id: id} <- Object.get_cached_by_ap_id(context) do
id
else _e ->
changeset = Object.context_mapping(context)
case Repo.insert(changeset) do
{:ok, %{id: id}} -> id
# This should be solved by an upsert, but it seems ecto
# has problems accessing the constraint inside the jsonb.
{:error, _} -> Object.get_cached_by_ap_id(context).id
end
2017-05-01 16:15:21 +02:00
end
end
def conversation_id_to_context(id) do
with %Object{data: %{"id" => context}} <- Repo.get(Object, id) do
context
else _e ->
{:error, "No such conversation"}
end
end
2017-05-10 18:44:57 +02:00
def get_external_profile(for_user, uri) do
with {:ok, %User{} = user} <- OStatus.find_or_make_user(uri) do
with url <- user.info["topic"],
{:ok, %{body: body}} <- @httpoison.get(url, [], follow_redirect: true, timeout: 10000, recv_timeout: 20000) do
OStatus.handle_incoming(body)
end
2017-06-19 23:12:37 +02:00
{:ok, UserView.render("show.json", %{user: user, for: for_user})}
2017-05-10 18:44:57 +02:00
else _e ->
{:error, "Couldn't find user"}
2017-05-10 18:44:57 +02:00
end
end
2017-03-21 17:53:20 +01:00
end