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