2017-04-18 16:41:51 +00:00
|
|
|
defmodule Pleroma.Web.OStatus.OStatusController do
|
|
|
|
use Pleroma.Web, :controller
|
|
|
|
|
|
|
|
alias Pleroma.{User, Activity}
|
2017-05-03 08:01:26 +00:00
|
|
|
alias Pleroma.Web.OStatus.{FeedRepresenter, ActivityRepresenter}
|
2017-04-18 16:41:51 +00:00
|
|
|
alias Pleroma.Repo
|
2017-05-01 16:05:02 +00:00
|
|
|
alias Pleroma.Web.OStatus
|
2017-04-18 16:41:51 +00:00
|
|
|
import Ecto.Query
|
|
|
|
|
2017-05-01 16:05:02 +00:00
|
|
|
def feed_redirect(conn, %{"nickname" => nickname}) do
|
|
|
|
user = User.get_cached_by_nickname(nickname)
|
|
|
|
redirect conn, external: OStatus.feed_path(user)
|
|
|
|
end
|
|
|
|
|
2017-04-18 16:41:51 +00:00
|
|
|
def feed(conn, %{"nickname" => nickname}) do
|
|
|
|
user = User.get_cached_by_nickname(nickname)
|
|
|
|
query = from activity in Activity,
|
|
|
|
where: fragment("? @> ?", activity.data, ^%{actor: user.ap_id}),
|
|
|
|
limit: 20,
|
|
|
|
order_by: [desc: :inserted_at]
|
|
|
|
|
|
|
|
activities = query
|
|
|
|
|> Repo.all
|
|
|
|
|
|
|
|
response = FeedRepresenter.to_simple_form(user, activities, [user])
|
|
|
|
|> :xmerl.export_simple(:xmerl_xml)
|
2017-04-22 13:34:29 +00:00
|
|
|
|> to_string
|
2017-04-18 16:41:51 +00:00
|
|
|
|
|
|
|
conn
|
|
|
|
|> put_resp_content_type("application/atom+xml")
|
|
|
|
|> send_resp(200, response)
|
|
|
|
end
|
2017-04-20 08:16:06 +00:00
|
|
|
|
2017-04-24 16:46:34 +00:00
|
|
|
def salmon_incoming(conn, params) do
|
|
|
|
{:ok, body, _conn} = read_body(conn)
|
|
|
|
magic_key = Pleroma.Web.Salmon.fetch_magic_key(body)
|
|
|
|
{:ok, doc} = Pleroma.Web.Salmon.decode_and_validate(magic_key, body)
|
|
|
|
|
|
|
|
Pleroma.Web.OStatus.handle_incoming(doc)
|
|
|
|
|
|
|
|
conn
|
|
|
|
|> send_resp(200, "")
|
2017-04-20 08:16:06 +00:00
|
|
|
end
|
2017-05-03 07:54:17 +00:00
|
|
|
|
|
|
|
def object(conn, %{"uuid" => uuid}) do
|
|
|
|
id = o_status_url(conn, :object, uuid)
|
|
|
|
activity = Activity.get_create_activity_by_object_ap_id(id)
|
|
|
|
user = User.get_cached_by_ap_id(activity.data["actor"])
|
|
|
|
|
2017-05-03 08:01:26 +00:00
|
|
|
response = ActivityRepresenter.to_simple_form(activity, user, true)
|
|
|
|
|> ActivityRepresenter.wrap_with_entry
|
2017-05-03 07:54:17 +00:00
|
|
|
|> :xmerl.export_simple(:xmerl_xml)
|
|
|
|
|> to_string
|
|
|
|
|
|
|
|
conn
|
|
|
|
|> put_resp_content_type("application/atom+xml")
|
|
|
|
|> send_resp(200, response)
|
|
|
|
end
|
2017-04-18 16:41:51 +00:00
|
|
|
end
|