From 559985b51c087f6289694580ec19bcd3eeb0b2fc Mon Sep 17 00:00:00 2001 From: Chocobozzz Date: Fri, 11 Jun 2021 14:50:01 +0200 Subject: [PATCH] Also serve AP for new account/video watch pages --- server/controllers/activitypub/client.ts | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/server/controllers/activitypub/client.ts b/server/controllers/activitypub/client.ts index f592af644..bf8e3160b 100644 --- a/server/controllers/activitypub/client.ts +++ b/server/controllers/activitypub/client.ts @@ -43,7 +43,7 @@ activityPubClientRouter.use(cors()) // Intercept ActivityPub client requests activityPubClientRouter.get( - [ '/accounts?/:name', '/accounts?/:name/video-channels' ], + [ '/accounts?/:name', '/accounts?/:name/video-channels', '/a/:name', '/a/:name/video-channels' ], executeIfActivityPub, asyncMiddleware(localAccountValidator), accountController @@ -74,7 +74,8 @@ activityPubClientRouter.get('/accounts?/:name/dislikes/:videoId', getAccountVideoRateFactory('dislike') ) -activityPubClientRouter.get('/videos/watch/:id', +activityPubClientRouter.get( + [ '/videos/watch/:id', '/w/:id' ], executeIfActivityPub, asyncMiddleware(cacheRoute()(ROUTE_CACHE_LIFETIME.ACTIVITY_PUB.VIDEOS)), asyncMiddleware(videosCustomGetValidator('all')), @@ -122,7 +123,7 @@ activityPubClientRouter.get('/videos/watch/:videoId/comments/:commentId/activity ) activityPubClientRouter.get( - [ '/video-channels/:name', '/video-channels/:name/videos' ], + [ '/video-channels/:name', '/video-channels/:name/videos', '/c/:name', '/c/:name/videos' ], executeIfActivityPub, asyncMiddleware(localVideoChannelValidator), videoChannelController