]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - client/src/app/+admin/admin.component.ts
Use 3 tables to represent abuses
[github/Chocobozzz/PeerTube.git] / client / src / app / +admin / admin.component.ts
1 import { Component, OnInit } from '@angular/core'
2 import { AuthService } from '@app/core'
3 import { ListOverflowItem } from '@app/shared/shared-main'
4 import { I18n } from '@ngx-translate/i18n-polyfill'
5 import { UserRight } from '@shared/models'
6 import { TopMenuDropdownParam } from '@app/shared/shared-main/misc/top-menu-dropdown.component'
7
8 @Component({
9 templateUrl: './admin.component.html',
10 styleUrls: [ './admin.component.scss' ]
11 })
12 export class AdminComponent implements OnInit {
13 items: ListOverflowItem[] = []
14 menuEntries: TopMenuDropdownParam[] = []
15
16 constructor (
17 private auth: AuthService,
18 private i18n: I18n
19 ) {}
20
21 ngOnInit () {
22 const federationItems: TopMenuDropdownParam = {
23 label: this.i18n('Federation'),
24 children: [
25 {
26 label: this.i18n('Instances you follow'),
27 routerLink: '/admin/follows/following-list',
28 iconName: 'following'
29 },
30 {
31 label: this.i18n('Instances following you'),
32 routerLink: '/admin/follows/followers-list',
33 iconName: 'follower'
34 },
35 {
36 label: this.i18n('Video redundancies'),
37 routerLink: '/admin/follows/video-redundancies-list',
38 iconName: 'videos'
39 }
40 ]
41 }
42
43 const moderationItems: TopMenuDropdownParam = {
44 label: this.i18n('Moderation'),
45 children: []
46 }
47
48 if (this.hasVideoAbusesRight()) {
49 moderationItems.children.push({
50 label: this.i18n('Video reports'),
51 routerLink: '/admin/moderation/video-abuses/list',
52 iconName: 'flag'
53 })
54 }
55 if (this.hasVideoBlocklistRight()) {
56 moderationItems.children.push({
57 label: this.i18n('Video blocks'),
58 routerLink: '/admin/moderation/video-blocks/list',
59 iconName: 'cross'
60 })
61 }
62 if (this.hasAccountsBlocklistRight()) {
63 moderationItems.children.push({
64 label: this.i18n('Muted accounts'),
65 routerLink: '/admin/moderation/blocklist/accounts',
66 iconName: 'user'
67 })
68 }
69 if (this.hasServersBlocklistRight()) {
70 moderationItems.children.push({
71 label: this.i18n('Muted servers'),
72 routerLink: '/admin/moderation/blocklist/servers',
73 iconName: 'server'
74 })
75 }
76
77 if (this.hasUsersRight()) this.menuEntries.push({ label: this.i18n('Users'), routerLink: '/admin/users' })
78 if (this.hasServerFollowRight()) this.menuEntries.push(federationItems)
79 if (this.hasVideoAbusesRight() || this.hasVideoBlocklistRight()) this.menuEntries.push(moderationItems)
80 if (this.hasConfigRight()) this.menuEntries.push({ label: this.i18n('Configuration'), routerLink: '/admin/config' })
81 if (this.hasPluginsRight()) this.menuEntries.push({ label: this.i18n('Plugins/Themes'), routerLink: '/admin/plugins' })
82 if (this.hasJobsRight() || this.hasLogsRight() || this.hasDebugRight()) this.menuEntries.push({ label: this.i18n('System'), routerLink: '/admin/system' })
83 }
84
85 hasUsersRight () {
86 return this.auth.getUser().hasRight(UserRight.MANAGE_USERS)
87 }
88
89 hasServerFollowRight () {
90 return this.auth.getUser().hasRight(UserRight.MANAGE_SERVER_FOLLOW)
91 }
92
93 hasVideoAbusesRight () {
94 return this.auth.getUser().hasRight(UserRight.MANAGE_ABUSES)
95 }
96
97 hasVideoBlocklistRight () {
98 return this.auth.getUser().hasRight(UserRight.MANAGE_VIDEO_BLACKLIST)
99 }
100
101 hasAccountsBlocklistRight () {
102 return this.auth.getUser().hasRight(UserRight.MANAGE_ACCOUNTS_BLOCKLIST)
103 }
104
105 hasServersBlocklistRight () {
106 return this.auth.getUser().hasRight(UserRight.MANAGE_SERVERS_BLOCKLIST)
107 }
108
109 hasConfigRight () {
110 return this.auth.getUser().hasRight(UserRight.MANAGE_CONFIGURATION)
111 }
112
113 hasPluginsRight () {
114 return this.auth.getUser().hasRight(UserRight.MANAGE_PLUGINS)
115 }
116
117 hasLogsRight () {
118 return this.auth.getUser().hasRight(UserRight.MANAGE_LOGS)
119 }
120
121 hasJobsRight () {
122 return this.auth.getUser().hasRight(UserRight.MANAGE_JOBS)
123 }
124
125 hasDebugRight () {
126 return this.auth.getUser().hasRight(UserRight.MANAGE_DEBUG)
127 }
128 }