2018-12-23 20:04:54 +00:00
|
|
|
# Pleroma: A lightweight social networking server
|
2018-12-31 15:41:47 +00:00
|
|
|
# Copyright © 2017-2019 Pleroma Authors <https://pleroma.social/>
|
2018-12-23 20:04:54 +00:00
|
|
|
# SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
|
2017-03-20 20:30:44 +00:00
|
|
|
defmodule Pleroma.Web.TwitterAPI.Controller do
|
|
|
|
use Pleroma.Web, :controller
|
2018-12-11 17:17:49 +00:00
|
|
|
|
|
|
|
import Pleroma.Web.ControllerHelper, only: [json_response: 3]
|
|
|
|
|
2018-04-19 18:46:59 +00:00
|
|
|
alias Pleroma.Web.TwitterAPI.{TwitterAPI, UserView, ActivityView, NotificationView}
|
2017-09-09 11:56:51 +00:00
|
|
|
alias Pleroma.Web.CommonAPI
|
2018-12-04 15:35:57 +00:00
|
|
|
alias Pleroma.{Repo, Activity, Object, User, Notification}
|
2017-04-16 14:06:19 +00:00
|
|
|
alias Pleroma.Web.ActivityPub.ActivityPub
|
2018-06-07 00:04:03 +00:00
|
|
|
alias Pleroma.Web.ActivityPub.Utils
|
2017-04-27 13:18:50 +00:00
|
|
|
alias Ecto.Changeset
|
2017-03-20 20:30:44 +00:00
|
|
|
|
2017-08-29 13:14:00 +00:00
|
|
|
require Logger
|
|
|
|
|
2018-11-05 14:19:03 +00:00
|
|
|
plug(:only_if_public_instance when action in [:public_timeline, :public_and_external_timeline])
|
2018-06-03 17:11:22 +00:00
|
|
|
action_fallback(:errors)
|
|
|
|
|
2017-03-20 20:30:44 +00:00
|
|
|
def verify_credentials(%{assigns: %{user: user}} = conn, _params) do
|
2017-12-04 18:10:15 +00:00
|
|
|
token = Phoenix.Token.sign(conn, "user socket", user.id)
|
2018-12-16 16:15:07 +00:00
|
|
|
|
|
|
|
conn
|
|
|
|
|> put_view(UserView)
|
|
|
|
|> render("show.json", %{user: user, token: token})
|
2017-03-20 20:30:44 +00:00
|
|
|
end
|
|
|
|
|
2017-11-19 01:22:07 +00:00
|
|
|
def status_update(%{assigns: %{user: user}} = conn, %{"status" => _} = status_data) do
|
2017-09-16 13:47:07 +00:00
|
|
|
with media_ids <- extract_media_ids(status_data),
|
2018-03-30 13:01:53 +00:00
|
|
|
{:ok, activity} <-
|
|
|
|
TwitterAPI.create_status(user, Map.put(status_data, "media_ids", media_ids)) do
|
2017-04-24 09:09:11 +00:00
|
|
|
conn
|
2018-03-30 13:49:10 +00:00
|
|
|
|> json(ActivityView.render("activity.json", activity: activity, for: user))
|
2017-04-24 09:09:11 +00:00
|
|
|
else
|
2017-09-16 13:47:07 +00:00
|
|
|
_ -> empty_status_reply(conn)
|
2017-04-24 09:09:11 +00:00
|
|
|
end
|
2017-03-21 17:17:35 +00:00
|
|
|
end
|
|
|
|
|
2017-04-23 16:08:25 +00:00
|
|
|
def status_update(conn, _status_data) do
|
|
|
|
empty_status_reply(conn)
|
|
|
|
end
|
|
|
|
|
|
|
|
defp empty_status_reply(conn) do
|
|
|
|
bad_request_reply(conn, "Client must provide a 'status' parameter with a value.")
|
|
|
|
end
|
|
|
|
|
2017-03-30 15:07:03 +00:00
|
|
|
defp extract_media_ids(status_data) do
|
|
|
|
with media_ids when not is_nil(media_ids) <- status_data["media_ids"],
|
|
|
|
split_ids <- String.split(media_ids, ","),
|
2018-03-30 13:01:53 +00:00
|
|
|
clean_ids <- Enum.reject(split_ids, fn id -> String.length(id) == 0 end) do
|
|
|
|
clean_ids
|
|
|
|
else
|
|
|
|
_e -> []
|
2017-03-30 15:07:03 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2017-05-02 12:12:43 +00:00
|
|
|
def public_and_external_timeline(%{assigns: %{user: user}} = conn, params) do
|
2018-03-30 13:49:10 +00:00
|
|
|
params =
|
|
|
|
params
|
2018-04-04 13:23:27 +00:00
|
|
|
|> Map.put("type", ["Create", "Announce"])
|
2018-03-30 13:49:10 +00:00
|
|
|
|> Map.put("blocking_user", user)
|
|
|
|
|
|
|
|
activities = ActivityPub.fetch_public_activities(params)
|
2017-05-02 12:12:43 +00:00
|
|
|
|
|
|
|
conn
|
2018-12-16 16:15:07 +00:00
|
|
|
|> put_view(ActivityView)
|
|
|
|
|> render("index.json", %{activities: activities, for: user})
|
2017-05-02 12:12:43 +00:00
|
|
|
end
|
|
|
|
|
2017-03-23 14:51:34 +00:00
|
|
|
def public_timeline(%{assigns: %{user: user}} = conn, params) do
|
2018-03-30 13:49:10 +00:00
|
|
|
params =
|
|
|
|
params
|
2018-04-04 13:23:27 +00:00
|
|
|
|> Map.put("type", ["Create", "Announce"])
|
2018-03-30 13:49:10 +00:00
|
|
|
|> Map.put("local_only", true)
|
|
|
|
|> Map.put("blocking_user", user)
|
|
|
|
|
|
|
|
activities = ActivityPub.fetch_public_activities(params)
|
2017-03-21 20:09:20 +00:00
|
|
|
|
|
|
|
conn
|
2018-12-16 16:15:07 +00:00
|
|
|
|> put_view(ActivityView)
|
|
|
|
|> render("index.json", %{activities: activities, for: user})
|
2017-03-21 20:09:20 +00:00
|
|
|
end
|
|
|
|
|
2017-03-22 16:25:59 +00:00
|
|
|
def friends_timeline(%{assigns: %{user: user}} = conn, params) do
|
2018-03-30 13:49:10 +00:00
|
|
|
params =
|
|
|
|
params
|
|
|
|
|> Map.put("type", ["Create", "Announce", "Follow", "Like"])
|
|
|
|
|> Map.put("blocking_user", user)
|
|
|
|
|> Map.put("user", user)
|
|
|
|
|
2018-10-26 06:16:51 +00:00
|
|
|
activities =
|
|
|
|
ActivityPub.fetch_activities([user.ap_id | user.following], params)
|
|
|
|
|> ActivityPub.contain_timeline(user)
|
2017-03-22 16:25:59 +00:00
|
|
|
|
|
|
|
conn
|
2018-12-16 16:15:07 +00:00
|
|
|
|> put_view(ActivityView)
|
|
|
|
|> render("index.json", %{activities: activities, for: user})
|
2017-03-22 16:25:59 +00:00
|
|
|
end
|
|
|
|
|
2017-11-14 15:34:48 +00:00
|
|
|
def show_user(conn, params) do
|
2018-12-19 15:56:52 +00:00
|
|
|
for_user = conn.assigns.user
|
|
|
|
|
|
|
|
with {:ok, shown} <- TwitterAPI.get_user(params),
|
2018-12-19 16:03:39 +00:00
|
|
|
true <-
|
|
|
|
User.auth_active?(shown) ||
|
|
|
|
(for_user && (for_user.id == shown.id || User.superuser?(for_user))) do
|
2018-12-16 16:15:07 +00:00
|
|
|
params =
|
2018-12-19 15:56:52 +00:00
|
|
|
if for_user do
|
|
|
|
%{user: shown, for: for_user}
|
2018-12-16 16:15:07 +00:00
|
|
|
else
|
|
|
|
%{user: shown}
|
|
|
|
end
|
|
|
|
|
|
|
|
conn
|
|
|
|
|> put_view(UserView)
|
|
|
|
|> render("show.json", params)
|
2017-11-14 15:34:48 +00:00
|
|
|
else
|
|
|
|
{:error, msg} ->
|
|
|
|
bad_request_reply(conn, msg)
|
2018-12-19 15:56:52 +00:00
|
|
|
|
|
|
|
false ->
|
|
|
|
conn
|
|
|
|
|> put_status(404)
|
|
|
|
|> json(%{error: "Unconfirmed user"})
|
2017-11-14 15:34:48 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2017-04-14 13:09:13 +00:00
|
|
|
def user_timeline(%{assigns: %{user: user}} = conn, params) do
|
2017-04-16 13:44:30 +00:00
|
|
|
case TwitterAPI.get_user(user, params) do
|
|
|
|
{:ok, target_user} ->
|
2018-12-27 05:30:01 +00:00
|
|
|
# Twitter and ActivityPub use a different name and sense for this parameter.
|
|
|
|
{include_rts, params} = Map.pop(params, "include_rts")
|
|
|
|
|
|
|
|
params =
|
|
|
|
case include_rts do
|
|
|
|
x when x == "false" or x == "0" -> Map.put(params, "exclude_reblogs", "true")
|
|
|
|
_ -> params
|
|
|
|
end
|
|
|
|
|
2018-05-20 14:15:18 +00:00
|
|
|
activities = ActivityPub.fetch_user_activities(target_user, user, params)
|
2018-03-30 13:01:53 +00:00
|
|
|
|
2017-04-16 13:44:30 +00:00
|
|
|
conn
|
2018-12-16 16:15:07 +00:00
|
|
|
|> put_view(ActivityView)
|
|
|
|
|> render("index.json", %{activities: activities, for: user})
|
2018-03-30 13:01:53 +00:00
|
|
|
|
2017-04-16 13:44:30 +00:00
|
|
|
{:error, msg} ->
|
|
|
|
bad_request_reply(conn, msg)
|
|
|
|
end
|
2017-04-10 17:08:14 +00:00
|
|
|
end
|
|
|
|
|
2017-04-20 10:53:53 +00:00
|
|
|
def mentions_timeline(%{assigns: %{user: user}} = conn, params) do
|
2018-05-28 10:38:48 +00:00
|
|
|
params =
|
|
|
|
params
|
|
|
|
|> Map.put("type", ["Create", "Announce", "Follow", "Like"])
|
|
|
|
|> Map.put("blocking_user", user)
|
|
|
|
|
2018-03-30 13:49:10 +00:00
|
|
|
activities = ActivityPub.fetch_activities([user.ap_id], params)
|
2017-04-20 10:53:53 +00:00
|
|
|
|
|
|
|
conn
|
2018-12-16 16:15:07 +00:00
|
|
|
|> put_view(ActivityView)
|
|
|
|
|> render("index.json", %{activities: activities, for: user})
|
2018-11-13 19:08:50 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
def dm_timeline(%{assigns: %{user: user}} = conn, params) do
|
|
|
|
query =
|
|
|
|
ActivityPub.fetch_activities_query(
|
|
|
|
[user.ap_id],
|
2018-11-16 18:47:36 +00:00
|
|
|
Map.merge(params, %{"type" => "Create", "user" => user, visibility: "direct"})
|
2018-11-13 19:08:50 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
activities = Repo.all(query)
|
|
|
|
|
|
|
|
conn
|
2018-12-16 16:15:07 +00:00
|
|
|
|> put_view(ActivityView)
|
|
|
|
|> render("index.json", %{activities: activities, for: user})
|
2017-04-20 10:53:53 +00:00
|
|
|
end
|
|
|
|
|
2018-04-19 18:46:59 +00:00
|
|
|
def notifications(%{assigns: %{user: user}} = conn, params) do
|
|
|
|
notifications = Notification.for_user(user, params)
|
|
|
|
|
|
|
|
conn
|
2018-12-16 16:15:07 +00:00
|
|
|
|> put_view(NotificationView)
|
|
|
|
|> render("notification.json", %{notifications: notifications, for: user})
|
2018-04-19 18:46:59 +00:00
|
|
|
end
|
|
|
|
|
2018-11-06 23:07:13 +00:00
|
|
|
def notifications_read(%{assigns: %{user: user}} = conn, %{"latest_id" => latest_id} = params) do
|
|
|
|
Notification.set_read_up_to(user, latest_id)
|
|
|
|
|
|
|
|
notifications = Notification.for_user(user, params)
|
|
|
|
|
|
|
|
conn
|
2018-12-16 16:15:07 +00:00
|
|
|
|> put_view(NotificationView)
|
|
|
|
|> render("notification.json", %{notifications: notifications, for: user})
|
2018-11-06 23:07:13 +00:00
|
|
|
end
|
|
|
|
|
2018-12-09 09:12:48 +00:00
|
|
|
def notifications_read(%{assigns: %{user: _user}} = conn, _) do
|
2018-11-06 23:07:13 +00:00
|
|
|
bad_request_reply(conn, "You need to specify latest_id")
|
|
|
|
end
|
|
|
|
|
2017-04-20 07:39:18 +00:00
|
|
|
def follow(%{assigns: %{user: user}} = conn, params) do
|
|
|
|
case TwitterAPI.follow(user, params) do
|
2017-04-27 13:18:50 +00:00
|
|
|
{:ok, user, followed, _activity} ->
|
2018-12-16 16:15:07 +00:00
|
|
|
conn
|
|
|
|
|> put_view(UserView)
|
|
|
|
|> render("show.json", %{user: followed, for: user})
|
2018-03-30 13:01:53 +00:00
|
|
|
|
|
|
|
{:error, msg} ->
|
|
|
|
forbidden_json_reply(conn, msg)
|
2017-04-12 14:34:36 +00:00
|
|
|
end
|
2017-03-22 17:36:08 +00:00
|
|
|
end
|
|
|
|
|
2017-11-07 22:04:53 +00:00
|
|
|
def block(%{assigns: %{user: user}} = conn, params) do
|
|
|
|
case TwitterAPI.block(user, params) do
|
|
|
|
{:ok, user, blocked} ->
|
2018-12-16 16:15:07 +00:00
|
|
|
conn
|
|
|
|
|> put_view(UserView)
|
|
|
|
|> render("show.json", %{user: blocked, for: user})
|
2018-03-30 13:01:53 +00:00
|
|
|
|
|
|
|
{:error, msg} ->
|
|
|
|
forbidden_json_reply(conn, msg)
|
2017-11-07 22:04:53 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def unblock(%{assigns: %{user: user}} = conn, params) do
|
|
|
|
case TwitterAPI.unblock(user, params) do
|
|
|
|
{:ok, user, blocked} ->
|
2018-12-16 16:15:07 +00:00
|
|
|
conn
|
|
|
|
|> put_view(UserView)
|
|
|
|
|> render("show.json", %{user: blocked, for: user})
|
2018-03-30 13:01:53 +00:00
|
|
|
|
|
|
|
{:error, msg} ->
|
|
|
|
forbidden_json_reply(conn, msg)
|
2017-11-07 22:04:53 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2017-09-04 18:48:14 +00:00
|
|
|
def delete_post(%{assigns: %{user: user}} = conn, %{"id" => id}) do
|
2018-04-19 00:41:12 +00:00
|
|
|
with {:ok, activity} <- TwitterAPI.delete(user, id) do
|
2018-12-16 16:15:07 +00:00
|
|
|
conn
|
|
|
|
|> put_view(ActivityView)
|
|
|
|
|> render("activity.json", %{activity: activity, for: user})
|
2017-09-04 18:48:14 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2017-04-10 13:45:47 +00:00
|
|
|
def unfollow(%{assigns: %{user: user}} = conn, params) do
|
2017-04-20 07:46:27 +00:00
|
|
|
case TwitterAPI.unfollow(user, params) do
|
2017-04-27 13:18:50 +00:00
|
|
|
{:ok, user, unfollowed} ->
|
2018-12-16 16:15:07 +00:00
|
|
|
conn
|
|
|
|
|> put_view(UserView)
|
|
|
|
|> render("show.json", %{user: unfollowed, for: user})
|
2018-03-30 13:01:53 +00:00
|
|
|
|
|
|
|
{:error, msg} ->
|
|
|
|
forbidden_json_reply(conn, msg)
|
2017-04-12 14:34:36 +00:00
|
|
|
end
|
2017-03-23 12:13:09 +00:00
|
|
|
end
|
|
|
|
|
2017-04-27 13:18:50 +00:00
|
|
|
def fetch_status(%{assigns: %{user: user}} = conn, %{"id" => id}) do
|
2018-03-27 20:24:19 +00:00
|
|
|
with %Activity{} = activity <- Repo.get(Activity, id),
|
|
|
|
true <- ActivityPub.visible_for_user?(activity, user) do
|
2018-12-16 16:15:07 +00:00
|
|
|
conn
|
|
|
|
|> put_view(ActivityView)
|
|
|
|
|> render("activity.json", %{activity: activity, for: user})
|
2018-03-27 20:24:19 +00:00
|
|
|
end
|
2017-03-24 00:16:28 +00:00
|
|
|
end
|
|
|
|
|
2017-04-27 13:18:50 +00:00
|
|
|
def fetch_conversation(%{assigns: %{user: user}} = conn, %{"id" => id}) do
|
2017-03-28 15:22:44 +00:00
|
|
|
id = String.to_integer(id)
|
|
|
|
|
2018-03-30 13:49:10 +00:00
|
|
|
with context when is_binary(context) <- TwitterAPI.conversation_id_to_context(id),
|
|
|
|
activities <-
|
|
|
|
ActivityPub.fetch_activities_for_context(context, %{
|
|
|
|
"blocking_user" => user,
|
|
|
|
"user" => user
|
|
|
|
}) do
|
|
|
|
conn
|
2018-12-16 16:15:07 +00:00
|
|
|
|> put_view(ActivityView)
|
|
|
|
|> render("index.json", %{activities: activities, for: user})
|
2018-03-30 13:49:10 +00:00
|
|
|
end
|
2017-03-28 15:22:44 +00:00
|
|
|
end
|
|
|
|
|
2018-12-05 08:48:50 +00:00
|
|
|
@doc """
|
|
|
|
Updates metadata of uploaded media object.
|
|
|
|
Derived from [Twitter API endpoint](https://developer.twitter.com/en/docs/media/upload-media/api-reference/post-media-metadata-create).
|
|
|
|
"""
|
2018-12-05 10:37:06 +00:00
|
|
|
def update_media(%{assigns: %{user: user}} = conn, %{"media_id" => id} = data) do
|
|
|
|
object = Repo.get(Object, id)
|
2018-12-04 15:35:57 +00:00
|
|
|
description = get_in(data, ["alt_text", "text"]) || data["name"] || data["description"]
|
|
|
|
|
2018-12-05 10:37:06 +00:00
|
|
|
{conn, status, response_body} =
|
|
|
|
cond do
|
|
|
|
!object ->
|
|
|
|
{halt(conn), :not_found, ""}
|
2018-12-05 08:48:50 +00:00
|
|
|
|
2018-12-06 07:26:17 +00:00
|
|
|
!Object.authorize_mutation(object, user) ->
|
2018-12-05 10:37:06 +00:00
|
|
|
{halt(conn), :forbidden, "You can only update your own uploads."}
|
|
|
|
|
|
|
|
!is_binary(description) ->
|
|
|
|
{conn, :not_modified, ""}
|
|
|
|
|
|
|
|
true ->
|
|
|
|
new_data = Map.put(object.data, "name", description)
|
|
|
|
|
|
|
|
{:ok, _} =
|
|
|
|
object
|
|
|
|
|> Object.change(%{data: new_data})
|
|
|
|
|> Repo.update()
|
|
|
|
|
|
|
|
{conn, :no_content, ""}
|
|
|
|
end
|
2018-12-04 15:35:57 +00:00
|
|
|
|
|
|
|
conn
|
2018-12-05 10:37:06 +00:00
|
|
|
|> put_status(status)
|
|
|
|
|> json(response_body)
|
2018-12-04 15:35:57 +00:00
|
|
|
end
|
|
|
|
|
2018-12-05 10:37:06 +00:00
|
|
|
def upload(%{assigns: %{user: user}} = conn, %{"media" => media}) do
|
|
|
|
response = TwitterAPI.upload(media, user)
|
2018-03-30 13:01:53 +00:00
|
|
|
|
2017-03-29 00:05:51 +00:00
|
|
|
conn
|
|
|
|
|> put_resp_content_type("application/atom+xml")
|
|
|
|
|> send_resp(200, response)
|
|
|
|
end
|
2017-03-28 15:22:44 +00:00
|
|
|
|
2018-12-05 10:37:06 +00:00
|
|
|
def upload_json(%{assigns: %{user: user}} = conn, %{"media" => media}) do
|
|
|
|
response = TwitterAPI.upload(media, user, "json")
|
2018-03-30 13:01:53 +00:00
|
|
|
|
2017-04-14 14:13:34 +00:00
|
|
|
conn
|
|
|
|
|> json_reply(200, response)
|
|
|
|
end
|
|
|
|
|
2017-06-30 14:53:25 +00:00
|
|
|
def get_by_id_or_ap_id(id) do
|
2017-06-30 14:59:54 +00:00
|
|
|
activity = Repo.get(Activity, id) || Activity.get_create_activity_by_object_ap_id(id)
|
2018-03-30 13:01:53 +00:00
|
|
|
|
2017-06-30 14:59:54 +00:00
|
|
|
if activity.data["type"] == "Create" do
|
|
|
|
activity
|
|
|
|
else
|
|
|
|
Activity.get_create_activity_by_object_ap_id(activity.data["object"])
|
|
|
|
end
|
2017-06-30 14:53:25 +00:00
|
|
|
end
|
|
|
|
|
2017-04-13 15:22:44 +00:00
|
|
|
def favorite(%{assigns: %{user: user}} = conn, %{"id" => id}) do
|
2018-06-03 17:11:22 +00:00
|
|
|
with {_, {:ok, id}} <- {:param_cast, Ecto.Type.cast(:integer, id)},
|
|
|
|
{:ok, activity} <- TwitterAPI.fav(user, id) do
|
2018-12-16 16:15:07 +00:00
|
|
|
conn
|
|
|
|
|> put_view(ActivityView)
|
|
|
|
|> render("activity.json", %{activity: activity, for: user})
|
2017-09-09 16:09:37 +00:00
|
|
|
end
|
2017-04-13 15:22:44 +00:00
|
|
|
end
|
|
|
|
|
2017-04-14 16:27:17 +00:00
|
|
|
def unfavorite(%{assigns: %{user: user}} = conn, %{"id" => id}) do
|
2018-06-03 17:11:22 +00:00
|
|
|
with {_, {:ok, id}} <- {:param_cast, Ecto.Type.cast(:integer, id)},
|
|
|
|
{:ok, activity} <- TwitterAPI.unfav(user, id) do
|
2018-12-16 16:15:07 +00:00
|
|
|
conn
|
|
|
|
|> put_view(ActivityView)
|
|
|
|
|> render("activity.json", %{activity: activity, for: user})
|
2017-09-09 16:30:02 +00:00
|
|
|
end
|
2017-04-14 16:27:17 +00:00
|
|
|
end
|
|
|
|
|
2017-04-15 12:09:54 +00:00
|
|
|
def retweet(%{assigns: %{user: user}} = conn, %{"id" => id}) do
|
2018-06-03 17:11:22 +00:00
|
|
|
with {_, {:ok, id}} <- {:param_cast, Ecto.Type.cast(:integer, id)},
|
|
|
|
{:ok, activity} <- TwitterAPI.repeat(user, id) do
|
2018-12-16 16:15:07 +00:00
|
|
|
conn
|
|
|
|
|> put_view(ActivityView)
|
|
|
|
|> render("activity.json", %{activity: activity, for: user})
|
2017-04-23 22:11:38 +00:00
|
|
|
end
|
2017-04-15 12:09:54 +00:00
|
|
|
end
|
|
|
|
|
2018-06-14 01:29:55 +00:00
|
|
|
def unretweet(%{assigns: %{user: user}} = conn, %{"id" => id}) do
|
|
|
|
with {_, {:ok, id}} <- {:param_cast, Ecto.Type.cast(:integer, id)},
|
|
|
|
{:ok, activity} <- TwitterAPI.unrepeat(user, id) do
|
2018-12-16 16:15:07 +00:00
|
|
|
conn
|
|
|
|
|> put_view(ActivityView)
|
|
|
|
|> render("activity.json", %{activity: activity, for: user})
|
2018-06-14 01:29:55 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2019-01-09 12:54:19 +00:00
|
|
|
def pin(%{assigns: %{user: user}} = conn, %{"id" => id}) do
|
|
|
|
with {_, {:ok, id}} <- {:param_cast, Ecto.Type.cast(:integer, id)},
|
|
|
|
{:ok, activity} <- TwitterAPI.pin(user, id) do
|
|
|
|
conn
|
|
|
|
|> put_view(ActivityView)
|
|
|
|
|> render("activity.json", %{activity: activity, for: user})
|
|
|
|
else
|
|
|
|
{:error, message} -> bad_request_reply(conn, message)
|
|
|
|
err -> err
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def unpin(%{assigns: %{user: user}} = conn, %{"id" => id}) do
|
|
|
|
with {_, {:ok, id}} <- {:param_cast, Ecto.Type.cast(:integer, id)},
|
|
|
|
{:ok, activity} <- TwitterAPI.unpin(user, id) do
|
|
|
|
conn
|
|
|
|
|> put_view(ActivityView)
|
|
|
|
|> render("activity.json", %{activity: activity, for: user})
|
|
|
|
else
|
|
|
|
{:error, message} -> bad_request_reply(conn, message)
|
|
|
|
err -> err
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2017-04-16 09:01:24 +00:00
|
|
|
def register(conn, params) do
|
|
|
|
with {:ok, user} <- TwitterAPI.register_user(params) do
|
2018-12-16 16:15:07 +00:00
|
|
|
conn
|
|
|
|
|> put_view(UserView)
|
|
|
|
|> render("show.json", %{user: user})
|
2017-04-16 09:01:24 +00:00
|
|
|
else
|
|
|
|
{:error, errors} ->
|
2018-03-30 13:01:53 +00:00
|
|
|
conn
|
|
|
|
|> json_reply(400, Jason.encode!(errors))
|
2017-04-16 09:01:24 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2018-12-11 17:17:49 +00:00
|
|
|
def password_reset(conn, params) do
|
|
|
|
nickname_or_email = params["email"] || params["nickname"]
|
|
|
|
|
2018-12-13 10:17:49 +00:00
|
|
|
with {:ok, _} <- TwitterAPI.password_reset(nickname_or_email) do
|
2018-12-11 17:17:49 +00:00
|
|
|
json_response(conn, :no_content, "")
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2018-12-20 10:41:30 +00:00
|
|
|
def confirm_email(conn, %{"user_id" => uid, "token" => token}) do
|
|
|
|
with %User{} = user <- Repo.get(User, uid),
|
2018-12-14 13:38:56 +00:00
|
|
|
true <- user.local,
|
2018-12-20 10:41:30 +00:00
|
|
|
true <- user.info.confirmation_pending,
|
|
|
|
true <- user.info.confirmation_token == token,
|
2018-12-19 13:27:16 +00:00
|
|
|
info_change <- User.Info.confirmation_changeset(user.info, :confirmed),
|
2018-12-14 13:38:56 +00:00
|
|
|
changeset <- Changeset.change(user) |> Changeset.put_embed(:info, info_change),
|
|
|
|
{:ok, _} <- User.update_and_set_cache(changeset) do
|
|
|
|
conn
|
|
|
|
|> redirect(to: "/")
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2018-12-18 14:13:52 +00:00
|
|
|
def resend_confirmation_email(conn, params) do
|
|
|
|
nickname_or_email = params["email"] || params["nickname"]
|
|
|
|
|
|
|
|
with %User{} = user <- User.get_by_nickname_or_email(nickname_or_email),
|
|
|
|
{:ok, _} <- User.try_send_confirmation_email(user) do
|
|
|
|
conn
|
|
|
|
|> json_response(:no_content, "")
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2017-04-16 14:06:19 +00:00
|
|
|
def update_avatar(%{assigns: %{user: user}} = conn, params) do
|
2018-11-29 20:11:45 +00:00
|
|
|
{:ok, object} = ActivityPub.upload(params, type: :avatar)
|
2017-04-27 13:18:50 +00:00
|
|
|
change = Changeset.change(user, %{avatar: object.data})
|
2018-02-25 15:34:24 +00:00
|
|
|
{:ok, user} = User.update_and_set_cache(change)
|
2018-02-25 20:02:44 +00:00
|
|
|
CommonAPI.update(user)
|
2017-04-16 14:06:19 +00:00
|
|
|
|
2018-12-16 16:15:07 +00:00
|
|
|
conn
|
|
|
|
|> put_view(UserView)
|
|
|
|
|> render("show.json", %{user: user, for: user})
|
2017-04-16 14:06:19 +00:00
|
|
|
end
|
|
|
|
|
2017-08-29 15:18:33 +00:00
|
|
|
def update_banner(%{assigns: %{user: user}} = conn, params) do
|
2018-11-29 20:11:45 +00:00
|
|
|
with {:ok, object} <- ActivityPub.upload(%{"img" => params["banner"]}, type: :banner),
|
2018-12-01 11:00:53 +00:00
|
|
|
new_info <- %{"banner" => object.data},
|
|
|
|
info_cng <- User.Info.profile_update(user.info, new_info),
|
|
|
|
changeset <- Ecto.Changeset.change(user) |> Ecto.Changeset.put_embed(:info, info_cng),
|
|
|
|
{:ok, user} <- User.update_and_set_cache(changeset) do
|
2018-02-25 20:02:44 +00:00
|
|
|
CommonAPI.update(user)
|
2018-03-30 13:01:53 +00:00
|
|
|
%{"url" => [%{"href" => href} | _]} = object.data
|
|
|
|
response = %{url: href} |> Jason.encode!()
|
|
|
|
|
2017-08-29 15:18:33 +00:00
|
|
|
conn
|
|
|
|
|> json_reply(200, response)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def update_background(%{assigns: %{user: user}} = conn, params) do
|
2018-11-29 20:11:45 +00:00
|
|
|
with {:ok, object} <- ActivityPub.upload(params, type: :background),
|
2018-12-01 11:00:53 +00:00
|
|
|
new_info <- %{"background" => object.data},
|
|
|
|
info_cng <- User.Info.profile_update(user.info, new_info),
|
|
|
|
changeset <- Ecto.Changeset.change(user) |> Ecto.Changeset.put_embed(:info, info_cng),
|
|
|
|
{:ok, _user} <- User.update_and_set_cache(changeset) do
|
2018-03-30 13:01:53 +00:00
|
|
|
%{"url" => [%{"href" => href} | _]} = object.data
|
|
|
|
response = %{url: href} |> Jason.encode!()
|
|
|
|
|
2017-08-29 15:18:33 +00:00
|
|
|
conn
|
|
|
|
|> json_reply(200, response)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2017-05-10 16:44:57 +00:00
|
|
|
def external_profile(%{assigns: %{user: current_user}} = conn, %{"profileurl" => uri}) do
|
|
|
|
with {:ok, user_map} <- TwitterAPI.get_external_profile(current_user, uri),
|
2018-03-27 14:45:38 +00:00
|
|
|
response <- Jason.encode!(user_map) do
|
2017-05-10 16:44:57 +00:00
|
|
|
conn
|
|
|
|
|> json_reply(200, response)
|
2017-09-17 12:37:00 +00:00
|
|
|
else
|
|
|
|
_e ->
|
|
|
|
conn
|
|
|
|
|> put_status(404)
|
|
|
|
|> json(%{error: "Can't find user"})
|
2017-05-10 16:44:57 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2018-12-05 20:14:06 +00:00
|
|
|
def followers(%{assigns: %{user: for_user}} = conn, params) do
|
2019-01-09 17:17:23 +00:00
|
|
|
{:ok, page} = Ecto.Type.cast(:integer, params["page"] || 1)
|
2019-01-09 17:14:32 +00:00
|
|
|
|
2018-12-05 20:14:06 +00:00
|
|
|
with {:ok, user} <- TwitterAPI.get_user(for_user, params),
|
2019-01-09 17:14:32 +00:00
|
|
|
{:ok, followers} <- User.get_followers(user, page) do
|
2018-12-05 20:14:06 +00:00
|
|
|
followers =
|
|
|
|
cond do
|
|
|
|
for_user && user.id == for_user.id -> followers
|
|
|
|
user.info.hide_network -> []
|
|
|
|
true -> followers
|
|
|
|
end
|
|
|
|
|
2018-12-16 16:15:07 +00:00
|
|
|
conn
|
|
|
|
|> put_view(UserView)
|
|
|
|
|> render("index.json", %{users: followers, for: conn.assigns[:user]})
|
2017-07-20 18:29:15 +00:00
|
|
|
else
|
|
|
|
_e -> bad_request_reply(conn, "Can't get followers")
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2018-12-05 20:14:06 +00:00
|
|
|
def friends(%{assigns: %{user: for_user}} = conn, params) do
|
2019-01-09 17:17:23 +00:00
|
|
|
{:ok, page} = Ecto.Type.cast(:integer, params["page"] || 1)
|
2019-01-09 17:14:32 +00:00
|
|
|
|
2018-05-31 12:27:42 +00:00
|
|
|
with {:ok, user} <- TwitterAPI.get_user(conn.assigns[:user], params),
|
2019-01-09 17:14:32 +00:00
|
|
|
{:ok, friends} <- User.get_friends(user, page) do
|
2018-12-05 20:14:06 +00:00
|
|
|
friends =
|
|
|
|
cond do
|
|
|
|
for_user && user.id == for_user.id -> friends
|
|
|
|
user.info.hide_network -> []
|
|
|
|
true -> friends
|
|
|
|
end
|
|
|
|
|
2018-12-16 16:15:07 +00:00
|
|
|
conn
|
|
|
|
|> put_view(UserView)
|
|
|
|
|> render("index.json", %{users: friends, for: conn.assigns[:user]})
|
2017-07-20 18:35:30 +00:00
|
|
|
else
|
|
|
|
_e -> bad_request_reply(conn, "Can't get friends")
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2018-12-28 18:08:07 +00:00
|
|
|
def blocks(%{assigns: %{user: user}} = conn, _params) do
|
|
|
|
with blocked_users <- User.blocked_users(user) do
|
|
|
|
conn
|
|
|
|
|> put_view(UserView)
|
|
|
|
|> render("index.json", %{users: blocked_users, for: user})
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2018-05-29 15:30:06 +00:00
|
|
|
def friend_requests(conn, params) do
|
2018-06-07 00:04:03 +00:00
|
|
|
with {:ok, user} <- TwitterAPI.get_user(conn.assigns[:user], params),
|
2018-05-29 15:30:06 +00:00
|
|
|
{:ok, friend_requests} <- User.get_follow_requests(user) do
|
2018-12-16 16:15:07 +00:00
|
|
|
conn
|
|
|
|
|> put_view(UserView)
|
|
|
|
|> render("index.json", %{users: friend_requests, for: conn.assigns[:user]})
|
2018-05-29 15:30:06 +00:00
|
|
|
else
|
|
|
|
_e -> bad_request_reply(conn, "Can't get friend requests")
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2018-12-09 09:12:48 +00:00
|
|
|
def approve_friend_request(conn, %{"user_id" => uid} = _params) do
|
2018-06-07 00:04:03 +00:00
|
|
|
with followed <- conn.assigns[:user],
|
|
|
|
uid when is_number(uid) <- String.to_integer(uid),
|
|
|
|
%User{} = follower <- Repo.get(User, uid),
|
|
|
|
{:ok, follower} <- User.maybe_follow(follower, followed),
|
|
|
|
%Activity{} = follow_activity <- Utils.fetch_latest_follow(follower, followed),
|
|
|
|
{:ok, follow_activity} <- Utils.update_follow_state(follow_activity, "accept"),
|
|
|
|
{:ok, _activity} <-
|
|
|
|
ActivityPub.accept(%{
|
|
|
|
to: [follower.ap_id],
|
|
|
|
actor: followed.ap_id,
|
|
|
|
object: follow_activity.data["id"],
|
|
|
|
type: "Accept"
|
|
|
|
}) do
|
2018-12-16 16:15:07 +00:00
|
|
|
conn
|
|
|
|
|> put_view(UserView)
|
|
|
|
|> render("show.json", %{user: follower, for: followed})
|
2018-06-07 00:04:03 +00:00
|
|
|
else
|
|
|
|
e -> bad_request_reply(conn, "Can't approve user: #{inspect(e)}")
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2018-12-09 09:12:48 +00:00
|
|
|
def deny_friend_request(conn, %{"user_id" => uid} = _params) do
|
2018-06-07 00:04:03 +00:00
|
|
|
with followed <- conn.assigns[:user],
|
|
|
|
uid when is_number(uid) <- String.to_integer(uid),
|
|
|
|
%User{} = follower <- Repo.get(User, uid),
|
|
|
|
%Activity{} = follow_activity <- Utils.fetch_latest_follow(follower, followed),
|
|
|
|
{:ok, follow_activity} <- Utils.update_follow_state(follow_activity, "reject"),
|
|
|
|
{:ok, _activity} <-
|
|
|
|
ActivityPub.reject(%{
|
|
|
|
to: [follower.ap_id],
|
|
|
|
actor: followed.ap_id,
|
|
|
|
object: follow_activity.data["id"],
|
|
|
|
type: "Reject"
|
|
|
|
}) do
|
2018-12-16 16:15:07 +00:00
|
|
|
conn
|
|
|
|
|> put_view(UserView)
|
|
|
|
|> render("show.json", %{user: follower, for: followed})
|
2018-06-07 00:04:03 +00:00
|
|
|
else
|
|
|
|
e -> bad_request_reply(conn, "Can't deny user: #{inspect(e)}")
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2017-11-14 14:04:58 +00:00
|
|
|
def friends_ids(%{assigns: %{user: user}} = conn, _params) do
|
|
|
|
with {:ok, friends} <- User.get_friends(user) do
|
2018-03-30 13:01:53 +00:00
|
|
|
ids =
|
|
|
|
friends
|
|
|
|
|> Enum.map(fn x -> x.id end)
|
|
|
|
|> Jason.encode!()
|
2017-11-14 14:10:13 +00:00
|
|
|
|
2017-11-14 14:04:58 +00:00
|
|
|
json(conn, ids)
|
|
|
|
else
|
|
|
|
_e -> bad_request_reply(conn, "Can't get friends")
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2017-11-14 14:10:13 +00:00
|
|
|
def empty_array(conn, _params) do
|
2018-03-27 14:45:38 +00:00
|
|
|
json(conn, Jason.encode!([]))
|
2017-11-14 14:10:13 +00:00
|
|
|
end
|
2017-11-14 14:04:58 +00:00
|
|
|
|
2018-06-24 06:20:30 +00:00
|
|
|
def raw_empty_array(conn, _params) do
|
|
|
|
json(conn, [])
|
|
|
|
end
|
|
|
|
|
2018-11-30 16:07:37 +00:00
|
|
|
defp build_info_cng(user, params) do
|
|
|
|
info_params =
|
2018-12-05 18:22:40 +00:00
|
|
|
["no_rich_text", "locked", "hide_network"]
|
2018-11-30 16:07:37 +00:00
|
|
|
|> Enum.reduce(%{}, fn key, res ->
|
|
|
|
if value = params[key] do
|
|
|
|
Map.put(res, key, value == "true")
|
2018-05-28 18:19:20 +00:00
|
|
|
else
|
2018-11-30 16:07:37 +00:00
|
|
|
res
|
2018-05-28 18:19:20 +00:00
|
|
|
end
|
2018-11-30 16:07:37 +00:00
|
|
|
end)
|
2018-05-28 18:19:20 +00:00
|
|
|
|
2018-11-30 16:07:37 +00:00
|
|
|
info_params =
|
|
|
|
if value = params["default_scope"] do
|
|
|
|
Map.put(info_params, "default_scope", value)
|
2018-09-22 02:17:19 +00:00
|
|
|
else
|
2018-11-30 16:07:37 +00:00
|
|
|
info_params
|
2018-09-22 02:17:19 +00:00
|
|
|
end
|
|
|
|
|
2018-11-30 16:07:37 +00:00
|
|
|
User.Info.profile_update(user.info, info_params)
|
|
|
|
end
|
|
|
|
|
2018-12-02 19:03:53 +00:00
|
|
|
defp parse_profile_bio(user, params) do
|
2018-11-30 16:07:37 +00:00
|
|
|
if bio = params["description"] do
|
2018-12-02 19:03:53 +00:00
|
|
|
Map.put(params, "bio", User.parse_bio(bio, user))
|
2018-11-30 16:07:37 +00:00
|
|
|
else
|
|
|
|
params
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def update_profile(%{assigns: %{user: user}} = conn, params) do
|
2018-12-02 19:03:53 +00:00
|
|
|
params = parse_profile_bio(user, params)
|
2018-11-30 16:07:37 +00:00
|
|
|
info_cng = build_info_cng(user, params)
|
2018-06-23 07:02:49 +00:00
|
|
|
|
2017-08-29 13:14:00 +00:00
|
|
|
with changeset <- User.update_changeset(user, params),
|
2018-11-30 16:07:37 +00:00
|
|
|
changeset <- Ecto.Changeset.put_embed(changeset, :info, info_cng),
|
2018-02-25 15:34:24 +00:00
|
|
|
{:ok, user} <- User.update_and_set_cache(changeset) do
|
2018-02-25 20:02:44 +00:00
|
|
|
CommonAPI.update(user)
|
2018-12-16 16:15:07 +00:00
|
|
|
|
|
|
|
conn
|
|
|
|
|> put_view(UserView)
|
|
|
|
|> render("user.json", %{user: user, for: user})
|
2017-08-29 13:14:00 +00:00
|
|
|
else
|
|
|
|
error ->
|
|
|
|
Logger.debug("Can't update user: #{inspect(error)}")
|
|
|
|
bad_request_reply(conn, "Can't update user")
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2017-11-19 01:22:07 +00:00
|
|
|
def search(%{assigns: %{user: user}} = conn, %{"q" => _query} = params) do
|
2018-03-30 13:49:10 +00:00
|
|
|
activities = TwitterAPI.search(user, params)
|
|
|
|
|
2017-09-16 12:33:47 +00:00
|
|
|
conn
|
2018-12-16 16:15:07 +00:00
|
|
|
|> put_view(ActivityView)
|
|
|
|
|> render("index.json", %{activities: activities, for: user})
|
2017-09-16 12:33:47 +00:00
|
|
|
end
|
|
|
|
|
2018-11-14 19:33:23 +00:00
|
|
|
def search_user(%{assigns: %{user: user}} = conn, %{"query" => query}) do
|
|
|
|
users = User.search(query, true)
|
|
|
|
|
|
|
|
conn
|
2018-12-16 16:15:07 +00:00
|
|
|
|> put_view(UserView)
|
|
|
|
|> render("index.json", %{users: users, for: user})
|
2018-11-14 19:33:23 +00:00
|
|
|
end
|
|
|
|
|
2017-04-16 13:44:30 +00:00
|
|
|
defp bad_request_reply(conn, error_message) do
|
2017-04-23 16:08:25 +00:00
|
|
|
json = error_json(conn, error_message)
|
2017-04-16 13:44:30 +00:00
|
|
|
json_reply(conn, 400, json)
|
|
|
|
end
|
|
|
|
|
2017-03-20 20:30:44 +00:00
|
|
|
defp json_reply(conn, status, json) do
|
|
|
|
conn
|
|
|
|
|> put_resp_content_type("application/json")
|
|
|
|
|> send_resp(status, json)
|
|
|
|
end
|
2017-04-12 14:34:36 +00:00
|
|
|
|
|
|
|
defp forbidden_json_reply(conn, error_message) do
|
2017-04-23 16:08:25 +00:00
|
|
|
json = error_json(conn, error_message)
|
2017-04-12 14:34:36 +00:00
|
|
|
json_reply(conn, 403, json)
|
|
|
|
end
|
2017-04-23 16:08:25 +00:00
|
|
|
|
2018-12-28 06:43:40 +00:00
|
|
|
def only_if_public_instance(%{assigns: %{user: %User{}}} = conn, _), do: conn
|
2018-11-05 14:19:03 +00:00
|
|
|
|
|
|
|
def only_if_public_instance(conn, _) do
|
|
|
|
if Keyword.get(Application.get_env(:pleroma, :instance), :public) do
|
|
|
|
conn
|
|
|
|
else
|
|
|
|
conn
|
|
|
|
|> forbidden_json_reply("Invalid credentials.")
|
2018-11-06 13:44:00 +00:00
|
|
|
|> halt()
|
2018-11-05 14:19:03 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2017-04-23 16:08:25 +00:00
|
|
|
defp error_json(conn, error_message) do
|
2018-03-30 13:01:53 +00:00
|
|
|
%{"error" => error_message, "request" => conn.request_path} |> Jason.encode!()
|
2017-04-23 16:08:25 +00:00
|
|
|
end
|
2018-06-03 17:11:22 +00:00
|
|
|
|
|
|
|
def errors(conn, {:param_cast, _}) do
|
|
|
|
conn
|
|
|
|
|> put_status(400)
|
|
|
|
|> json("Invalid parameters")
|
|
|
|
end
|
|
|
|
|
|
|
|
def errors(conn, _) do
|
|
|
|
conn
|
|
|
|
|> put_status(500)
|
|
|
|
|> json("Something went wrong")
|
|
|
|
end
|
2017-03-20 20:30:44 +00:00
|
|
|
end
|