aboutsummaryrefslogblamecommitdiffhomepage
path: root/client/src/app/videos/recommendations/recent-videos-recommendation.service.ts
blob: f06c35f9a90a02e48147774e4028df088ee3a742 (plain) (tree)
1
2
3
4
5
6
7
8
9
                                                  

                                                                                           

                                                                                

                                               

                                                                  


                                             





                                                                                 

                       

                              
               
                                 







                                                   
 

                                                                                
            

                                                                                




                                                    
                                                                                             
                                                                             
                                                                                                          
                                                           
 







                                                                                           
 


                                      
                                                                                                                                 










                                                                     
   
 
import { Injectable, OnInit } from '@angular/core'
import { RecommendationService } from '@app/videos/recommendations/recommendations.service'
import { Video } from '@app/shared/video/video.model'
import { RecommendationInfo } from '@app/shared/video/recommendation-info.model'
import { VideoService } from '@app/shared/video/video.service'
import { map, switchMap } from 'rxjs/operators'
import { Observable, of } from 'rxjs'
import { SearchService } from '@app/search/search.service'
import { AdvancedSearch } from '@app/search/advanced-search.model'
import { ServerService } from '@app/core'
import { ServerConfig } from '@shared/models'
import { truncate } from 'lodash'

/**
 * Provides "recommendations" by providing the most recently uploaded videos.
 */
@Injectable()
export class RecentVideosRecommendationService implements RecommendationService {
  readonly pageSize = 5

  private config: ServerConfig

  constructor (
    private videos: VideoService,
    private searchService: SearchService,
    private serverService: ServerService
  ) {
    this.config = this.serverService.getTmpConfig()

    this.serverService.getConfig()
     .subscribe(config => this.config = config)
   }

  getRecommendations (recommendation: RecommendationInfo): Observable<Video[]> {
    return this.fetchPage(1, recommendation)
      .pipe(
        map(videos => {
          const otherVideos = videos.filter(v => v.uuid !== recommendation.uuid)
          return otherVideos.slice(0, this.pageSize)
        })
      )
  }

  private fetchPage (page: number, recommendation: RecommendationInfo): Observable<Video[]> {
    const pagination = { currentPage: page, itemsPerPage: this.pageSize + 1 }
    const defaultSubscription = this.videos.getVideos({ videoPagination: pagination, sort: '-createdAt' })
                                    .pipe(map(v => v.data))

    const tags = recommendation.tags
    const searchIndexConfig = this.config.search.searchIndex
    if (
      !tags || tags.length === 0 ||
      (searchIndexConfig.enabled === true && searchIndexConfig.disableLocalSearch === true)
    ) {
      return defaultSubscription
    }

    const params = {
      search: '',
      componentPagination: pagination,
      advancedSearch: new AdvancedSearch({ tagsOneOf: recommendation.tags.join(','), sort: '-createdAt', searchTarget: 'local' })
    }

    return this.searchService.searchVideos(params)
               .pipe(
                 map(v => v.data),
                 switchMap(videos => {
                   if (videos.length <= 1) return defaultSubscription

                   return of(videos)
                 })
               )
  }
}