aboutsummaryrefslogblamecommitdiffhomepage
path: root/client/src/app/videos/shared/video.model.ts
blob: 5ed622dce63757067c7d8c2c39ba40b675db32b2 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
                    

                 
                  
                        
                       
                      


                   
                    
               
                  
                 
                        
                

                   
 

                                                                  

   








                                                                                             
                     
                   
                      
                          
                         
                        
                     



                      
                    
                   
                          


                     
      
                               
                                              
                                            
                                          
                                        


                                                              
                                    
                          
                                
                          
                                            
                            

                                  
 
                                                              

   
                       

                                                                          
 
export class Video {
  author: string;
  by: string;
  createdAt: Date;
  categoryLabel: string;
  licenceLabel: string;
  description: string;
  duration: string;
  id: string;
  isLocal: boolean;
  magnetUri: string;
  name: string;
  podHost: string;
  tags: string[];
  thumbnailPath: string;
  views: number;
  likes: number;
  dislikes: number;

  private static createByString(author: string, podHost: string) {
    return author + '@' + podHost;
  }

  private static createDurationString(duration: number) {
    const minutes = Math.floor(duration / 60);
    const seconds = duration % 60;
    const minutes_padding = minutes >= 10 ? '' : '0';
    const seconds_padding = seconds >= 10 ? '' : '0';

    return minutes_padding + minutes.toString() + ':' + seconds_padding + seconds.toString();
  }

  constructor(hash: {
    author: string,
    createdAt: string,
    categoryLabel: string,
    licenceLabel: string,
    description: string,
    duration: number;
    id: string,
    isLocal: boolean,
    magnetUri: string,
    name: string,
    podHost: string,
    tags: string[],
    thumbnailPath: string,
    views: number,
    likes: number,
    dislikes: number,
  }) {
    this.author  = hash.author;
    this.createdAt = new Date(hash.createdAt);
    this.categoryLabel = hash.categoryLabel;
    this.licenceLabel = hash.licenceLabel;
    this.description = hash.description;
    this.duration = Video.createDurationString(hash.duration);
    this.id = hash.id;
    this.isLocal = hash.isLocal;
    this.magnetUri = hash.magnetUri;
    this.name = hash.name;
    this.podHost = hash.podHost;
    this.tags = hash.tags;
    this.thumbnailPath = hash.thumbnailPath;
    this.views = hash.views;
    this.likes = hash.likes;
    this.dislikes = hash.dislikes;

    this.by = Video.createByString(hash.author, hash.podHost);
  }

  isRemovableBy(user) {
    return this.isLocal === true && user && this.author === user.username;
  }
}