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

78 lines
2.4 KiB
Elixir
Raw Normal View History

2017-03-21 17:53:20 +01:00
defmodule Pleroma.Web.TwitterAPI.TwitterAPI do
2017-03-23 23:34:10 +01:00
alias Pleroma.{User, Activity, Repo}
2017-03-21 17:53:20 +01:00
alias Pleroma.Web.ActivityPub.ActivityPub
alias Pleroma.Web.TwitterAPI.Representers.ActivityRepresenter
def create_status(user = %User{}, data = %{}) do
2017-03-22 16:51:20 +01:00
date = DateTime.utc_now() |> DateTime.to_iso8601
2017-03-23 23:34:10 +01:00
context = ActivityPub.generate_context_id
2017-03-21 17:53:20 +01:00
activity = %{
2017-03-21 18:17:35 +01:00
"type" => "Create",
"to" => [
2017-03-21 17:53:20 +01:00
User.ap_followers(user),
"https://www.w3.org/ns/activitystreams#Public"
],
2017-03-21 18:17:35 +01:00
"actor" => User.ap_id(user),
"object" => %{
"type" => "Note",
2017-03-22 16:51:20 +01:00
"content" => data["status"],
2017-03-23 23:34:10 +01:00
"published" => date,
"context" => context
2017-03-22 16:51:20 +01:00
},
2017-03-23 23:34:10 +01:00
"published" => date,
"context" => context
2017-03-21 17:53:20 +01:00
}
2017-03-23 23:34:10 +01: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 17:53:20 +01:00
ActivityPub.insert(activity)
end
2017-03-22 16:51:20 +01:00
def fetch_friend_statuses(user, opts \\ %{}) do
ActivityPub.fetch_activities(user.following, opts)
|> activities_to_statuses(%{for: user})
2017-03-22 16:51:20 +01:00
end
def fetch_public_statuses(user, opts \\ %{}) do
2017-03-22 16:51:20 +01:00
ActivityPub.fetch_public_activities(opts)
|> activities_to_statuses(%{for: user})
2017-03-22 16:51:20 +01:00
end
2017-03-21 17:53:20 +01:00
2017-03-22 18:36:08 +01: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 13:13:09 +01: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
defp activities_to_statuses(activities, opts) do
2017-03-21 17:53:20 +01:00
Enum.map(activities, fn(activity) ->
actor = get_in(activity.data, ["actor"])
user = Repo.get_by!(User, ap_id: actor)
ActivityRepresenter.to_map(activity, Map.merge(opts, %{user: user}))
2017-03-21 17:53:20 +01:00
end)
end
end