]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - client/src/app/shared/shared-moderation/report-modals/video-report.component.ts
Merge remote-tracking branch 'weblate/develop' into develop
[github/Chocobozzz/PeerTube.git] / client / src / app / shared / shared-moderation / report-modals / video-report.component.ts
1 import { mapValues, pickBy } from 'lodash-es'
2 import { buildVideoLink, buildVideoOrPlaylistEmbed } from 'src/assets/player/utils'
3 import { Component, Input, OnInit, ViewChild } from '@angular/core'
4 import { DomSanitizer, SafeHtml } from '@angular/platform-browser'
5 import { Notifier } from '@app/core'
6 import { ABUSE_REASON_VALIDATOR } from '@app/shared/form-validators/abuse-validators'
7 import { FormReactive, FormValidatorService } from '@app/shared/shared-forms'
8 import { NgbModal } from '@ng-bootstrap/ng-bootstrap'
9 import { NgbModalRef } from '@ng-bootstrap/ng-bootstrap/modal/modal-ref'
10 import { abusePredefinedReasonsMap } from '@shared/core-utils/abuse'
11 import { AbusePredefinedReasonsString } from '@shared/models'
12 import { Video } from '../../shared-main'
13 import { AbuseService } from '../abuse.service'
14
15 @Component({
16 selector: 'my-video-report',
17 templateUrl: './video-report.component.html',
18 styleUrls: [ './report.component.scss' ]
19 })
20 export class VideoReportComponent extends FormReactive implements OnInit {
21 @Input() video: Video = null
22
23 @ViewChild('modal', { static: true }) modal: NgbModal
24
25 error: string = null
26 predefinedReasons: { id: AbusePredefinedReasonsString, label: string, description?: string, help?: string }[] = []
27 embedHtml: SafeHtml
28
29 private openedModal: NgbModalRef
30
31 constructor (
32 protected formValidatorService: FormValidatorService,
33 private modalService: NgbModal,
34 private abuseService: AbuseService,
35 private notifier: Notifier,
36 private sanitizer: DomSanitizer
37 ) {
38 super()
39 }
40
41 get currentHost () {
42 return window.location.host
43 }
44
45 get originHost () {
46 if (this.isRemote()) {
47 return this.video.account.host
48 }
49
50 return ''
51 }
52
53 get timestamp () {
54 return this.form.get('timestamp').value
55 }
56
57 getVideoEmbed () {
58 return this.sanitizer.bypassSecurityTrustHtml(
59 buildVideoOrPlaylistEmbed(
60 buildVideoLink({
61 baseUrl: this.video.embedUrl,
62 title: false,
63 warningTitle: false
64 })
65 )
66 )
67 }
68
69 ngOnInit () {
70 this.buildForm({
71 reason: ABUSE_REASON_VALIDATOR,
72 predefinedReasons: mapValues(abusePredefinedReasonsMap, r => null),
73 timestamp: {
74 hasStart: null,
75 startAt: null,
76 hasEnd: null,
77 endAt: null
78 }
79 })
80
81 this.predefinedReasons = this.abuseService.getPrefefinedReasons('video')
82
83 this.embedHtml = this.getVideoEmbed()
84 }
85
86 show () {
87 this.openedModal = this.modalService.open(this.modal, { centered: true, keyboard: false, size: 'lg' })
88 }
89
90 hide () {
91 this.openedModal.close()
92 this.openedModal = null
93 }
94
95 report () {
96 const reason = this.form.get('reason').value
97 const predefinedReasons = Object.keys(pickBy(this.form.get('predefinedReasons').value)) as AbusePredefinedReasonsString[]
98 const { hasStart, startAt, hasEnd, endAt } = this.form.get('timestamp').value
99
100 this.abuseService.reportVideo({
101 reason,
102 predefinedReasons,
103 video: {
104 id: this.video.id,
105 startAt: hasStart && startAt ? startAt : undefined,
106 endAt: hasEnd && endAt ? endAt : undefined
107 }
108 }).subscribe(
109 () => {
110 this.notifier.success($localize`Video reported.`)
111 this.hide()
112 },
113
114 err => this.notifier.error(err.message)
115 )
116 }
117
118 isRemote () {
119 return !this.video.isLocal
120 }
121 }