mirror of https://github.com/Chocobozzz/PeerTube
				
				
				
			
		
			
				
	
	
		
			121 lines
		
	
	
		
			4.8 KiB
		
	
	
	
		
			TypeScript
		
	
	
			
		
		
	
	
			121 lines
		
	
	
		
			4.8 KiB
		
	
	
	
		
			TypeScript
		
	
	
| // Intercept ActivityPub client requests
 | |
| import * as express from 'express'
 | |
| import { activityPubCollectionPagination, pageToStartAndCount } from '../../helpers'
 | |
| import { ACTIVITY_PUB, CONFIG } from '../../initializers'
 | |
| import { buildVideoChannelAnnounceToFollowers } from '../../lib/activitypub/send'
 | |
| import { buildVideoAnnounceToFollowers } from '../../lib/index'
 | |
| import { asyncMiddleware, executeIfActivityPub, localAccountValidator } from '../../middlewares'
 | |
| import {
 | |
|   videoChannelsGetValidator,
 | |
|   videoChannelsShareValidator,
 | |
|   videosGetValidator,
 | |
|   videosShareValidator
 | |
| } from '../../middlewares/validators'
 | |
| import { AccountModel } from '../../models/account/account'
 | |
| import { AccountFollowModel } from '../../models/account/account-follow'
 | |
| import { VideoModel } from '../../models/video/video'
 | |
| import { VideoChannelModel } from '../../models/video/video-channel'
 | |
| import { VideoChannelShareModel } from '../../models/video/video-channel-share'
 | |
| import { VideoShareModel } from '../../models/video/video-share'
 | |
| 
 | |
| const activityPubClientRouter = express.Router()
 | |
| 
 | |
| activityPubClientRouter.get('/account/:name',
 | |
|   executeIfActivityPub(asyncMiddleware(localAccountValidator)),
 | |
|   executeIfActivityPub(accountController)
 | |
| )
 | |
| 
 | |
| activityPubClientRouter.get('/account/:name/followers',
 | |
|   executeIfActivityPub(asyncMiddleware(localAccountValidator)),
 | |
|   executeIfActivityPub(asyncMiddleware(accountFollowersController))
 | |
| )
 | |
| 
 | |
| activityPubClientRouter.get('/account/:name/following',
 | |
|   executeIfActivityPub(asyncMiddleware(localAccountValidator)),
 | |
|   executeIfActivityPub(asyncMiddleware(accountFollowingController))
 | |
| )
 | |
| 
 | |
| activityPubClientRouter.get('/videos/watch/:id',
 | |
|   executeIfActivityPub(asyncMiddleware(videosGetValidator)),
 | |
|   executeIfActivityPub(videoController)
 | |
| )
 | |
| 
 | |
| activityPubClientRouter.get('/videos/watch/:id/announces/:accountId',
 | |
|   executeIfActivityPub(asyncMiddleware(videosShareValidator)),
 | |
|   executeIfActivityPub(asyncMiddleware(videoAnnounceController))
 | |
| )
 | |
| 
 | |
| activityPubClientRouter.get('/video-channels/:id',
 | |
|   executeIfActivityPub(asyncMiddleware(videoChannelsGetValidator)),
 | |
|   executeIfActivityPub(asyncMiddleware(videoChannelController))
 | |
| )
 | |
| 
 | |
| activityPubClientRouter.get('/video-channels/:id/announces/:accountId',
 | |
|   executeIfActivityPub(asyncMiddleware(videoChannelsShareValidator)),
 | |
|   executeIfActivityPub(asyncMiddleware(videoChannelAnnounceController))
 | |
| )
 | |
| 
 | |
| // ---------------------------------------------------------------------------
 | |
| 
 | |
| export {
 | |
|   activityPubClientRouter
 | |
| }
 | |
| 
 | |
| // ---------------------------------------------------------------------------
 | |
| 
 | |
| function accountController (req: express.Request, res: express.Response, next: express.NextFunction) {
 | |
|   const account: AccountModel = res.locals.account
 | |
| 
 | |
|   return res.json(account.toActivityPubObject()).end()
 | |
| }
 | |
| 
 | |
| async function accountFollowersController (req: express.Request, res: express.Response, next: express.NextFunction) {
 | |
|   const account: AccountModel = res.locals.account
 | |
| 
 | |
|   const page = req.query.page || 1
 | |
|   const { start, count } = pageToStartAndCount(page, ACTIVITY_PUB.COLLECTION_ITEMS_PER_PAGE)
 | |
| 
 | |
|   const result = await AccountFollowModel.listAcceptedFollowerUrlsForApi([ account.id ], undefined, start, count)
 | |
|   const activityPubResult = activityPubCollectionPagination(CONFIG.WEBSERVER.URL + req.url, page, result)
 | |
| 
 | |
|   return res.json(activityPubResult)
 | |
| }
 | |
| 
 | |
| async function accountFollowingController (req: express.Request, res: express.Response, next: express.NextFunction) {
 | |
|   const account: AccountModel = res.locals.account
 | |
| 
 | |
|   const page = req.query.page || 1
 | |
|   const { start, count } = pageToStartAndCount(page, ACTIVITY_PUB.COLLECTION_ITEMS_PER_PAGE)
 | |
| 
 | |
|   const result = await AccountFollowModel.listAcceptedFollowingUrlsForApi([ account.id ], undefined, start, count)
 | |
|   const activityPubResult = activityPubCollectionPagination(CONFIG.WEBSERVER.URL + req.url, page, result)
 | |
| 
 | |
|   return res.json(activityPubResult)
 | |
| }
 | |
| 
 | |
| function videoController (req: express.Request, res: express.Response, next: express.NextFunction) {
 | |
|   const video: VideoModel = res.locals.video
 | |
| 
 | |
|   return res.json(video.toActivityPubObject())
 | |
| }
 | |
| 
 | |
| async function videoAnnounceController (req: express.Request, res: express.Response, next: express.NextFunction) {
 | |
|   const share = res.locals.videoShare as VideoShareModel
 | |
|   const object = await buildVideoAnnounceToFollowers(share.Account, res.locals.video, undefined)
 | |
| 
 | |
|   return res.json(object)
 | |
| }
 | |
| 
 | |
| async function videoChannelAnnounceController (req: express.Request, res: express.Response, next: express.NextFunction) {
 | |
|   const share = res.locals.videoChannelShare as VideoChannelShareModel
 | |
|   const object = await buildVideoChannelAnnounceToFollowers(share.Account, share.VideoChannel, undefined)
 | |
| 
 | |
|   return res.json(object)
 | |
| }
 | |
| 
 | |
| async function videoChannelController (req: express.Request, res: express.Response, next: express.NextFunction) {
 | |
|   const videoChannel: VideoChannelModel = res.locals.videoChannel
 | |
| 
 | |
|   return res.json(videoChannel.toActivityPubObject())
 | |
| }
 |