Add status posting via TwAPI.
This commit is contained in:
parent
9a8850eb9e
commit
ad303783af
6 changed files with 42 additions and 19 deletions
|
|
@ -21,5 +21,6 @@ defmodule Pleroma.Web.Router do
|
|||
pipe_through :authenticated_api
|
||||
|
||||
post "/account/verify_credentials.json", TwitterAPI.Controller, :verify_credentials
|
||||
post "/statuses/update.json", TwitterAPI.Controller, :status_update
|
||||
end
|
||||
end
|
||||
|
|
|
|||
|
|
@ -6,15 +6,15 @@ defmodule Pleroma.Web.TwitterAPI.TwitterAPI do
|
|||
|
||||
def create_status(user = %User{}, data = %{}) do
|
||||
activity = %{
|
||||
type: "Create",
|
||||
to: [
|
||||
"type" => "Create",
|
||||
"to" => [
|
||||
User.ap_followers(user),
|
||||
"https://www.w3.org/ns/activitystreams#Public"
|
||||
],
|
||||
actor: User.ap_id(user),
|
||||
object: %{
|
||||
type: "Note",
|
||||
content: data.status
|
||||
"actor" => User.ap_id(user),
|
||||
"object" => %{
|
||||
"type" => "Note",
|
||||
"content" => data["status"]
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
defmodule Pleroma.Web.TwitterAPI.Controller do
|
||||
use Pleroma.Web, :controller
|
||||
|
||||
alias Pleroma.Web.TwitterAPI.Representers.UserRepresenter
|
||||
alias Pleroma.Web.TwitterAPI.TwitterAPI
|
||||
alias Pleroma.Web.TwitterAPI.Representers.{UserRepresenter, ActivityRepresenter}
|
||||
|
||||
def verify_credentials(%{assigns: %{user: user}} = conn, _params) do
|
||||
response = user |> UserRepresenter.to_json
|
||||
|
|
@ -10,6 +10,12 @@ defmodule Pleroma.Web.TwitterAPI.Controller do
|
|||
|> json_reply(200, response)
|
||||
end
|
||||
|
||||
def status_update(%{assigns: %{user: user}} = conn, status_data) do
|
||||
{:ok, activity} = TwitterAPI.create_status(user, status_data)
|
||||
conn
|
||||
|> json_reply(200, ActivityRepresenter.to_json(activity, %{user: user}))
|
||||
end
|
||||
|
||||
defp json_reply(conn, status, json) do
|
||||
conn
|
||||
|> put_resp_content_type("application/json")
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue