]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - client/src/app/+admin/moderation/video-block-list/video-block-list.component.ts
Bumped to version v5.2.1
[github/Chocobozzz/PeerTube.git] / client / src / app / +admin / moderation / video-block-list / video-block-list.component.ts
1 import { SortMeta } from 'primeng/api'
2 import { switchMap } from 'rxjs/operators'
3 import { environment } from 'src/environments/environment'
4 import { Component, OnInit } from '@angular/core'
5 import { ActivatedRoute, Router } from '@angular/router'
6 import { ConfirmService, MarkdownService, Notifier, RestPagination, RestTable, ServerService } from '@app/core'
7 import { AdvancedInputFilter } from '@app/shared/shared-forms'
8 import { DropdownAction, VideoService } from '@app/shared/shared-main'
9 import { VideoBlockService } from '@app/shared/shared-moderation'
10 import { buildVideoOrPlaylistEmbed } from '@root-helpers/video'
11 import { buildVideoEmbedLink, decorateVideoLink } from '@shared/core-utils'
12 import { VideoBlacklist, VideoBlacklistType } from '@shared/models'
13
14 @Component({
15 selector: 'my-video-block-list',
16 templateUrl: './video-block-list.component.html',
17 styleUrls: [ '../../../shared/shared-moderation/moderation.scss', './video-block-list.component.scss' ]
18 })
19 export class VideoBlockListComponent extends RestTable implements OnInit {
20 blocklist: (VideoBlacklist & { reasonHtml?: string })[] = []
21 totalRecords = 0
22 sort: SortMeta = { field: 'createdAt', order: -1 }
23 pagination: RestPagination = { count: this.rowsPerPage, start: 0 }
24 blocklistTypeFilter: VideoBlacklistType = undefined
25
26 videoBlocklistActions: DropdownAction<VideoBlacklist>[][] = []
27
28 inputFilters: AdvancedInputFilter[] = [
29 {
30 title: $localize`Advanced filters`,
31 children: [
32 {
33 value: 'type:auto',
34 label: $localize`Automatic blocks`
35 },
36 {
37 value: 'type:manual',
38 label: $localize`Manual blocks`
39 }
40 ]
41 }
42 ]
43
44 constructor (
45 protected route: ActivatedRoute,
46 protected router: Router,
47 private notifier: Notifier,
48 private serverService: ServerService,
49 private confirmService: ConfirmService,
50 private videoBlocklistService: VideoBlockService,
51 private markdownRenderer: MarkdownService,
52 private videoService: VideoService
53 ) {
54 super()
55
56 this.videoBlocklistActions = [
57 [
58 {
59 label: $localize`Internal actions`,
60 isHeader: true,
61 isDisplayed: videoBlock => videoBlock.type === VideoBlacklistType.AUTO_BEFORE_PUBLISHED
62 },
63 {
64 label: $localize`Switch video block to manual`,
65 handler: videoBlock => {
66 this.videoBlocklistService.unblockVideo(videoBlock.video.id).pipe(
67 switchMap(_ => this.videoBlocklistService.blockVideo([ { videoId: videoBlock.video.id, unfederate: true } ]))
68 ).subscribe({
69 next: () => {
70 this.notifier.success($localize`Video ${videoBlock.video.name} switched to manual block.`)
71 this.reloadData()
72 },
73
74 error: err => this.notifier.error(err.message)
75 })
76 },
77 isDisplayed: videoBlock => videoBlock.type === VideoBlacklistType.AUTO_BEFORE_PUBLISHED
78 }
79 ],
80 [
81 {
82 label: $localize`Actions for the video`,
83 isHeader: true
84 },
85 {
86 label: $localize`Unblock`,
87 handler: videoBlock => this.unblockVideo(videoBlock)
88 },
89
90 {
91 label: $localize`Delete`,
92 handler: async videoBlock => {
93 const res = await this.confirmService.confirm(
94 $localize`Do you really want to delete this video?`,
95 $localize`Delete`
96 )
97 if (res === false) return
98
99 this.videoService.removeVideo(videoBlock.video.id)
100 .subscribe({
101 next: () => {
102 this.notifier.success($localize`Video deleted.`)
103 this.reloadData()
104 },
105
106 error: err => this.notifier.error(err.message)
107 })
108 }
109 }
110 ]
111 ]
112 }
113
114 ngOnInit () {
115 const serverConfig = this.serverService.getHTMLConfig()
116
117 // Don't filter if auto-blacklist is not enabled as this will be the only list
118 if (serverConfig.autoBlacklist.videos.ofUsers.enabled) {
119 this.blocklistTypeFilter = VideoBlacklistType.MANUAL
120 }
121
122 this.initialize()
123 }
124
125 getIdentifier () {
126 return 'VideoBlockListComponent'
127 }
128
129 toHtml (text: string) {
130 return this.markdownRenderer.textMarkdownToHTML({ markdown: text })
131 }
132
133 async unblockVideo (entry: VideoBlacklist) {
134 const confirmMessage = $localize`Do you really want to unblock this video? It will be available again in the videos list.`
135
136 const res = await this.confirmService.confirm(confirmMessage, $localize`Unblock`)
137 if (res === false) return
138
139 this.videoBlocklistService.unblockVideo(entry.video.id)
140 .subscribe({
141 next: () => {
142 this.notifier.success($localize`Video ${entry.video.name} unblocked.`)
143 this.reloadData()
144 },
145
146 error: err => this.notifier.error(err.message)
147 })
148 }
149
150 getVideoEmbed (entry: VideoBlacklist) {
151 return buildVideoOrPlaylistEmbed({
152 embedUrl: decorateVideoLink({
153 url: buildVideoEmbedLink(entry.video, environment.originServerUrl),
154
155 title: false,
156 warningTitle: false
157 }),
158 embedTitle: entry.video.name
159 })
160 }
161
162 protected reloadDataInternal () {
163 this.videoBlocklistService.listBlocks({
164 pagination: this.pagination,
165 sort: this.sort,
166 search: this.search
167 }).subscribe({
168 next: async resultList => {
169 this.totalRecords = resultList.total
170
171 this.blocklist = resultList.data
172
173 for (const element of this.blocklist) {
174 Object.assign(element, {
175 reasonHtml: await this.toHtml(element.reason)
176 })
177 }
178 },
179
180 error: err => this.notifier.error(err.message)
181 })
182 }
183 }