aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/videos/shared/video.model.ts
blob: 0cf4039df312b5f33a1d354710af7d50747db2a5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
import { Video as VideoServerModel } from '../../../../../shared';
import { User } from '../../shared';

export class Video implements VideoServerModel {
  author: string;
  by: string;
  createdAt: Date;
  categoryLabel: string;
  category: number;
  licenceLabel: string;
  licence: number;
  languageLabel: string;
  language: number;
  description: string;
  duration: number;
  durationLabel: string;
  id: string;
  isLocal: boolean;
  magnetUri: string;
  name: string;
  podHost: string;
  tags: string[];
  thumbnailPath: string;
  views: number;
  likes: number;
  dislikes: number;
  nsfw: boolean;

  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,
    category: number,
    licenceLabel: string,
    licence: number,
    languageLabel: string;
    language: number;
    description: string,
    duration: number;
    id: string,
    isLocal: boolean,
    magnetUri: string,
    name: string,
    podHost: string,
    tags: string[],
    thumbnailPath: string,
    views: number,
    likes: number,
    dislikes: number,
    nsfw: boolean
  }) {
    this.author  = hash.author;
    this.createdAt = new Date(hash.createdAt);
    this.categoryLabel = hash.categoryLabel;
    this.category = hash.category;
    this.licenceLabel = hash.licenceLabel;
    this.licence = hash.licence;
    this.languageLabel = hash.languageLabel;
    this.language = hash.language;
    this.description = hash.description;
    this.duration = hash.duration;
    this.durationLabel = 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.nsfw = hash.nsfw;

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

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

  isBlackistableBy(user) {
    return user && user.isAdmin() === true && this.isLocal === false;
  }

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

  isVideoNSFWForUser(user: User) {
    // If the video is NSFW and the user is not logged in, or the user does not want to display NSFW videos...
    return (this.nsfw && (!user || user.displayNSFW === false));
  }

  patch(values: Object) {
    Object.keys(values).forEach((key) => {
      this[key] = values[key];
    });
  }

  toJSON() {
    return {
      author: this.author,
      createdAt: this.createdAt,
      category: this.category,
      licence: this.licence,
      language: this.language,
      description: this.description,
      duration: this.duration,
      id: this.id,
      isLocal: this.isLocal,
      magnetUri: this.magnetUri,
      name: this.name,
      podHost: this.podHost,
      tags: this.tags,
      thumbnailPath: this.thumbnailPath,
      views: this.views,
      likes: this.likes,
      dislikes: this.dislikes,
      nsfw: this.nsfw
    };
  }
}