2017-03-21 16:53:20 +00:00
|
|
|
defmodule Pleroma.Web.TwitterAPI.TwitterAPI do
|
2017-03-23 22:34:10 +00:00
|
|
|
alias Pleroma.{User, Activity, Repo}
|
2017-03-21 16:53:20 +00:00
|
|
|
alias Pleroma.Web.ActivityPub.ActivityPub
|
|
|
|
alias Pleroma.Web.TwitterAPI.Representers.ActivityRepresenter
|
|
|
|
|
|
|
|
def create_status(user = %User{}, data = %{}) do
|
2017-03-22 15:51:20 +00:00
|
|
|
date = DateTime.utc_now() |> DateTime.to_iso8601
|
2017-03-23 22:34:10 +00:00
|
|
|
|
|
|
|
context = ActivityPub.generate_context_id
|
2017-03-21 16:53:20 +00:00
|
|
|
activity = %{
|
2017-03-21 17:17:35 +00:00
|
|
|
"type" => "Create",
|
|
|
|
"to" => [
|
2017-03-21 16:53:20 +00:00
|
|
|
User.ap_followers(user),
|
|
|
|
"https://www.w3.org/ns/activitystreams#Public"
|
|
|
|
],
|
2017-03-21 17:17:35 +00:00
|
|
|
"actor" => User.ap_id(user),
|
|
|
|
"object" => %{
|
|
|
|
"type" => "Note",
|
2017-03-22 15:51:20 +00:00
|
|
|
"content" => data["status"],
|
2017-03-23 22:34:10 +00:00
|
|
|
"published" => date,
|
|
|
|
"context" => context
|
2017-03-22 15:51:20 +00:00
|
|
|
},
|
2017-03-23 22:34:10 +00:00
|
|
|
"published" => date,
|
|
|
|
"context" => context
|
2017-03-21 16:53:20 +00:00
|
|
|
}
|
|
|
|
|
2017-03-23 22:34:10 +00:00
|
|
|
# Wire up reply info.
|
|
|
|
activity = with inReplyToId when not is_nil(inReplyToId) <- data["in_reply_to_status_id"],
|
|
|
|
inReplyTo <- Repo.get(Activity, inReplyToId),
|
|
|
|
context <- inReplyTo.data["context"]
|
|
|
|
do
|
|
|
|
activity
|
|
|
|
|> put_in(["context"], context)
|
|
|
|
|> put_in(["object", "context"], context)
|
|
|
|
|> put_in(["object", "inReplyTo"], inReplyTo.data["object"]["id"])
|
|
|
|
|> put_in(["object", "inReplyToStatusId"], inReplyToId)
|
|
|
|
else _e ->
|
|
|
|
activity
|
|
|
|
end
|
|
|
|
|
2017-03-21 16:53:20 +00:00
|
|
|
ActivityPub.insert(activity)
|
|
|
|
end
|
|
|
|
|
2017-03-22 15:51:20 +00:00
|
|
|
def fetch_friend_statuses(user, opts \\ %{}) do
|
|
|
|
ActivityPub.fetch_activities(user.following, opts)
|
2017-03-23 14:51:34 +00:00
|
|
|
|> activities_to_statuses(%{for: user})
|
2017-03-22 15:51:20 +00:00
|
|
|
end
|
|
|
|
|
2017-03-23 14:51:34 +00:00
|
|
|
def fetch_public_statuses(user, opts \\ %{}) do
|
2017-03-22 15:51:20 +00:00
|
|
|
ActivityPub.fetch_public_activities(opts)
|
2017-03-23 14:51:34 +00:00
|
|
|
|> activities_to_statuses(%{for: user})
|
2017-03-22 15:51:20 +00:00
|
|
|
end
|
2017-03-21 16:53:20 +00:00
|
|
|
|
2017-03-22 17:36:08 +00:00
|
|
|
def follow(%User{} = follower, followed_id) do
|
|
|
|
with %User{} = followed <- Repo.get(User, followed_id),
|
|
|
|
{ :ok, follower } <- User.follow(follower, followed)
|
|
|
|
do
|
|
|
|
{ :ok, follower, followed }
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2017-03-23 12:13:09 +00:00
|
|
|
def unfollow(%User{} = follower, followed_id) do
|
|
|
|
with %User{} = followed <- Repo.get(User, followed_id),
|
|
|
|
{ :ok, follower } <- User.unfollow(follower, followed)
|
|
|
|
do
|
|
|
|
{ :ok, follower, followed }
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2017-03-23 14:51:34 +00:00
|
|
|
defp activities_to_statuses(activities, opts) do
|
2017-03-21 16:53:20 +00:00
|
|
|
Enum.map(activities, fn(activity) ->
|
|
|
|
actor = get_in(activity.data, ["actor"])
|
|
|
|
user = Repo.get_by!(User, ap_id: actor)
|
2017-03-23 14:51:34 +00:00
|
|
|
ActivityRepresenter.to_map(activity, Map.merge(opts, %{user: user}))
|
2017-03-21 16:53:20 +00:00
|
|
|
end)
|
|
|
|
end
|
|
|
|
end
|