mirror of https://github.com/Chocobozzz/PeerTube
				
				
				
			
		
			
				
	
	
		
			38 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			TypeScript
		
	
	
			
		
		
	
	
			38 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			TypeScript
		
	
	
| import { getOrCreateVideoAndAccountAndChannel } from '../videos'
 | |
| import { forwardVideoRelatedActivity } from '../send/utils'
 | |
| import { Redis } from '../../redis'
 | |
| import { ActivityCreate, ActivityView, ViewObject } from '../../../../shared/models/activitypub'
 | |
| import { APProcessorOptions } from '../../../typings/activitypub-processor.model'
 | |
| import { SignatureActorModel } from '../../../typings/models'
 | |
| 
 | |
| async function processViewActivity (options: APProcessorOptions<ActivityCreate | ActivityView>) {
 | |
|   const { activity, byActor } = options
 | |
|   return processCreateView(activity, byActor)
 | |
| }
 | |
| 
 | |
| // ---------------------------------------------------------------------------
 | |
| 
 | |
| export {
 | |
|   processViewActivity
 | |
| }
 | |
| 
 | |
| // ---------------------------------------------------------------------------
 | |
| 
 | |
| async function processCreateView (activity: ActivityView | ActivityCreate, byActor: SignatureActorModel) {
 | |
|   const videoObject = activity.type === 'View' ? activity.object : (activity.object as ViewObject).object
 | |
| 
 | |
|   const options = {
 | |
|     videoObject: videoObject,
 | |
|     fetchType: 'only-video' as 'only-video'
 | |
|   }
 | |
|   const { video } = await getOrCreateVideoAndAccountAndChannel(options)
 | |
| 
 | |
|   await Redis.Instance.addVideoView(video.id)
 | |
| 
 | |
|   if (video.isOwned()) {
 | |
|     // Don't resend the activity to the sender
 | |
|     const exceptions = [ byActor ]
 | |
|     await forwardVideoRelatedActivity(activity, undefined, exceptions, video)
 | |
|   }
 | |
| }
 |