]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - client/src/app/+admin/moderation/video-block-list/video-block-list.component.ts
Migrate to $localize
[github/Chocobozzz/PeerTube.git] / client / src / app / +admin / moderation / video-block-list / video-block-list.component.ts
CommitLineData
5baee5fc 1import { SortMeta } from 'primeng/api'
5baee5fc 2import { filter, switchMap } from 'rxjs/operators'
66357162
C
3import { buildVideoLink, buildVideoOrPlaylistEmbed } from 'src/assets/player/utils'
4import { environment } from 'src/environments/environment'
67ed6552 5import { AfterViewInit, Component, OnInit } from '@angular/core'
66357162 6import { DomSanitizer } from '@angular/platform-browser'
67ed6552
C
7import { ActivatedRoute, Params, Router } from '@angular/router'
8import { ConfirmService, MarkdownService, Notifier, RestPagination, RestTable, ServerService } from '@app/core'
9import { DropdownAction, Video, VideoService } from '@app/shared/shared-main'
10import { VideoBlockService } from '@app/shared/shared-moderation'
67ed6552 11import { VideoBlacklist, VideoBlacklistType } from '@shared/models'
5baee5fc
RK
12
13@Component({
14 selector: 'my-video-block-list',
15 templateUrl: './video-block-list.component.html',
4504f09f 16 styleUrls: [ '../../../shared/shared-moderation/moderation.scss', './video-block-list.component.scss' ]
5baee5fc 17})
8b381422 18export class VideoBlockListComponent extends RestTable implements OnInit, AfterViewInit {
71ab65d0 19 blocklist: (VideoBlacklist & { reasonHtml?: string, embedHtml?: string })[] = []
5baee5fc
RK
20 totalRecords = 0
21 sort: SortMeta = { field: 'createdAt', order: -1 }
22 pagination: RestPagination = { count: this.rowsPerPage, start: 0 }
3487330d 23 blocklistTypeFilter: VideoBlacklistType = undefined
5baee5fc 24
3487330d 25 videoBlocklistActions: DropdownAction<VideoBlacklist>[][] = []
5baee5fc
RK
26
27 constructor (
28 private notifier: Notifier,
29 private serverService: ServerService,
30 private confirmService: ConfirmService,
31 private videoBlocklistService: VideoBlockService,
32 private markdownRenderer: MarkdownService,
71ab65d0 33 private sanitizer: DomSanitizer,
5baee5fc
RK
34 private videoService: VideoService,
35 private route: ActivatedRoute,
66357162
C
36 private router: Router
37 ) {
5baee5fc
RK
38 super()
39
40 this.videoBlocklistActions = [
41 [
42 {
66357162 43 label: $localize`Internal actions`,
4ee63ec6
RK
44 isHeader: true,
45 isDisplayed: videoBlock => videoBlock.type === VideoBlacklistType.AUTO_BEFORE_PUBLISHED
5baee5fc
RK
46 },
47 {
66357162 48 label: $localize`Switch video block to manual`,
5baee5fc
RK
49 handler: videoBlock => {
50 this.videoBlocklistService.unblockVideo(videoBlock.video.id).pipe(
51 switchMap(_ => this.videoBlocklistService.blockVideo(videoBlock.video.id, undefined, true))
52 ).subscribe(
53 () => {
66357162 54 this.notifier.success($localize`Video ${videoBlock.video.name} switched to manual block.`)
5baee5fc
RK
55 this.loadData()
56 },
8b381422 57
5baee5fc
RK
58 err => this.notifier.error(err.message)
59 )
4ee63ec6
RK
60 },
61 isDisplayed: videoBlock => videoBlock.type === VideoBlacklistType.AUTO_BEFORE_PUBLISHED
5baee5fc
RK
62 }
63 ],
64 [
65 {
66357162 66 label: $localize`Actions for the video`,
8b381422 67 isHeader: true
5baee5fc
RK
68 },
69 {
66357162 70 label: $localize`Unblock`,
5baee5fc
RK
71 handler: videoBlock => this.unblockVideo(videoBlock)
72 },
73
74 {
66357162 75 label: $localize`Delete`,
5baee5fc
RK
76 handler: async videoBlock => {
77 const res = await this.confirmService.confirm(
66357162
C
78 $localize`Do you really want to delete this video?`,
79 $localize`Delete`
5baee5fc
RK
80 )
81 if (res === false) return
82
83 this.videoService.removeVideo(videoBlock.video.id)
84 .subscribe(
85 () => {
66357162 86 this.notifier.success($localize`Video deleted.`)
5baee5fc
RK
87 },
88
89 err => this.notifier.error(err.message)
90 )
91 }
92 }
93 ]
94 ]
95 }
96
97 ngOnInit () {
98 this.serverService.getConfig()
99 .subscribe(config => {
100 // don't filter if auto-blacklist is not enabled as this will be the only list
101 if (config.autoBlacklist.videos.ofUsers.enabled) {
3487330d 102 this.blocklistTypeFilter = VideoBlacklistType.MANUAL
5baee5fc
RK
103 }
104 })
105
106 this.initialize()
107
108 this.route.queryParams
109 .pipe(filter(params => params.search !== undefined && params.search !== null))
110 .subscribe(params => {
111 this.search = params.search
112 this.setTableFilter(params.search)
113 this.loadData()
114 })
115 }
116
117 ngAfterViewInit () {
118 if (this.search) this.setTableFilter(this.search)
119 }
120
121 /* Table filter functions */
122 onBlockSearch (event: Event) {
123 this.onSearch(event)
124 this.setQueryParams((event.target as HTMLInputElement).value)
125 }
126
127 setQueryParams (search: string) {
128 const queryParams: Params = {}
129 if (search) Object.assign(queryParams, { search })
130 this.router.navigate([ '/admin/moderation/video-blocks/list' ], { queryParams })
131 }
132
133 resetTableFilter () {
134 this.setTableFilter('')
135 this.setQueryParams('')
136 this.resetSearch()
137 }
138 /* END Table filter functions */
139
140 getIdentifier () {
141 return 'VideoBlockListComponent'
142 }
143
3487330d 144 getVideoUrl (videoBlock: VideoBlacklist) {
5baee5fc
RK
145 return Video.buildClientUrl(videoBlock.video.uuid)
146 }
147
148 booleanToText (value: boolean) {
66357162 149 if (value === true) return $localize`yes`
5baee5fc 150
66357162 151 return $localize`no`
5baee5fc
RK
152 }
153
154 toHtml (text: string) {
155 return this.markdownRenderer.textMarkdownToHTML(text)
156 }
157
3487330d 158 async unblockVideo (entry: VideoBlacklist) {
66357162 159 const confirmMessage = $localize`Do you really want to unblock this video? It will be available again in the videos list.`
5baee5fc 160
66357162 161 const res = await this.confirmService.confirm(confirmMessage, $localize`Unblock`)
5baee5fc
RK
162 if (res === false) return
163
164 this.videoBlocklistService.unblockVideo(entry.video.id).subscribe(
165 () => {
66357162 166 this.notifier.success($localize`Video ${entry.video.name} unblocked.`)
5baee5fc
RK
167 this.loadData()
168 },
169
170 err => this.notifier.error(err.message)
171 )
172 }
173
71ab65d0 174 getVideoEmbed (entry: VideoBlacklist) {
951b582f 175 return buildVideoOrPlaylistEmbed(
71ab65d0
RK
176 buildVideoLink({
177 baseUrl: `${environment.embedUrl}/videos/embed/${entry.video.uuid}`,
178 title: false,
179 warningTitle: false
180 })
181 )
182 }
183
5baee5fc
RK
184 protected loadData () {
185 this.videoBlocklistService.listBlocks({
186 pagination: this.pagination,
187 sort: this.sort,
8b381422 188 search: this.search
5baee5fc
RK
189 })
190 .subscribe(
191 async resultList => {
192 this.totalRecords = resultList.total
193
194 this.blocklist = resultList.data
195
196 for (const element of this.blocklist) {
71ab65d0
RK
197 Object.assign(element, {
198 reasonHtml: await this.toHtml(element.reason),
199 embedHtml: this.sanitizer.bypassSecurityTrustHtml(this.getVideoEmbed(element))
200 })
5baee5fc
RK
201 }
202 },
203
204 err => this.notifier.error(err.message)
205 )
206 }
207}