X-Git-Url: http://git.squeep.com/?a=blobdiff_plain;f=lib%2Fpleroma%2Fweb%2Frouter.ex;h=52030d684ac16d093977094286974f7bcd94dde8;hb=32aa83f3a2a6ab14e36a3452708ea3be94ad4c43;hp=e0f1ac12f2f8f118c48cfa294905d09551d199d6;hpb=a93f3421a704d6728a856d5d82cdbf9c43f3f897;p=akkoma diff --git a/lib/pleroma/web/router.ex b/lib/pleroma/web/router.ex index e0f1ac12f..52030d684 100644 --- a/lib/pleroma/web/router.ex +++ b/lib/pleroma/web/router.ex @@ -1,11 +1,40 @@ defmodule Pleroma.Web.Router do use Pleroma.Web, :router + alias Pleroma.{Repo, User} + + def user_fetcher(username) do + {:ok, Repo.get_by(User, %{nickname: username})} + end + pipeline :api do plug :accepts, ["json"] + plug :fetch_session + plug Pleroma.Plugs.AuthenticationPlug, %{fetcher: &Pleroma.Web.Router.user_fetcher/1, optional: true} + end + + pipeline :authenticated_api do + plug :accepts, ["json"] + plug :fetch_session + plug Pleroma.Plugs.AuthenticationPlug, %{fetcher: &Pleroma.Web.Router.user_fetcher/1} end scope "/api", Pleroma.Web do pipe_through :api + get "/statuses/public_timeline", TwitterAPI.Controller, :public_timeline + get "/statuses/public_and_external_timeline", TwitterAPI.Controller, :public_timeline + get "/statuses/show/:id", TwitterAPI.Controller, :fetch_status + get "/statusnet/conversation/:id", TwitterAPI.Controller, :fetch_conversation + end + + scope "/api", Pleroma.Web do + pipe_through :authenticated_api + + post "/account/verify_credentials", TwitterAPI.Controller, :verify_credentials + post "/statuses/update", TwitterAPI.Controller, :status_update + get "/statuses/friends_timeline", TwitterAPI.Controller, :friends_timeline + post "/friendships/create", TwitterAPI.Controller, :follow + post "/friendships/destroy", TwitterAPI.Controller, :unfollow + post "/statusnet/media/upload", TwitterAPI.Controller, :upload end end