2017-03-17 16:09:58 +00:00
|
|
|
defmodule Pleroma.Web.Router do
|
|
|
|
use Pleroma.Web, :router
|
|
|
|
|
2017-03-20 20:30:44 +00:00
|
|
|
alias Pleroma.{Repo, User}
|
|
|
|
|
|
|
|
def user_fetcher(username) do
|
|
|
|
{:ok, Repo.get_by(User, %{nickname: username})}
|
|
|
|
end
|
|
|
|
|
2017-03-17 16:09:58 +00:00
|
|
|
pipeline :api do
|
|
|
|
plug :accepts, ["json"]
|
2017-03-21 20:09:20 +00:00
|
|
|
plug :fetch_session
|
|
|
|
plug Pleroma.Plugs.AuthenticationPlug, %{fetcher: &Pleroma.Web.Router.user_fetcher/1, optional: true}
|
2017-03-17 16:09:58 +00:00
|
|
|
end
|
|
|
|
|
2017-03-20 20:30:44 +00:00
|
|
|
pipeline :authenticated_api do
|
|
|
|
plug :accepts, ["json"]
|
|
|
|
plug :fetch_session
|
2017-03-21 20:09:20 +00:00
|
|
|
plug Pleroma.Plugs.AuthenticationPlug, %{fetcher: &Pleroma.Web.Router.user_fetcher/1}
|
|
|
|
end
|
|
|
|
|
|
|
|
scope "/api", Pleroma.Web do
|
|
|
|
pipe_through :api
|
|
|
|
get "/statuses/public_timeline.json", TwitterAPI.Controller, :public_timeline
|
2017-03-22 13:45:17 +00:00
|
|
|
get "/statuses/public_and_external_timeline.json", TwitterAPI.Controller, :public_timeline
|
2017-03-20 20:30:44 +00:00
|
|
|
end
|
|
|
|
|
2017-03-17 16:09:58 +00:00
|
|
|
scope "/api", Pleroma.Web do
|
2017-03-20 20:30:44 +00:00
|
|
|
pipe_through :authenticated_api
|
|
|
|
|
|
|
|
post "/account/verify_credentials.json", TwitterAPI.Controller, :verify_credentials
|
2017-03-21 17:17:35 +00:00
|
|
|
post "/statuses/update.json", TwitterAPI.Controller, :status_update
|
2017-03-22 16:25:59 +00:00
|
|
|
get "/statuses/friends_timeline.json", TwitterAPI.Controller, :friends_timeline
|
2017-03-22 17:36:08 +00:00
|
|
|
post "/friendships/create.json", TwitterAPI.Controller, :follow
|
2017-03-17 16:09:58 +00:00
|
|
|
end
|
|
|
|
end
|