]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - client/src/app/+admin/users/user-edit/user-create.component.ts
f9f5b90bd5c39e04d4acd3f1ada21182a4509e36
[github/Chocobozzz/PeerTube.git] / client / src / app / +admin / users / user-edit / user-create.component.ts
1 import { Component, OnInit } from '@angular/core'
2 import { ActivatedRoute, Router } from '@angular/router'
3 import { ConfigService } from '@app/+admin/config/shared/config.service'
4 import { AuthService, Notifier, ScreenService, ServerService, UserService } from '@app/core'
5 import { FormValidatorService, UserValidatorsService } from '@app/shared/shared-forms'
6 import { I18n } from '@ngx-translate/i18n-polyfill'
7 import { UserCreate, UserRole } from '@shared/models'
8 import { UserEdit } from './user-edit'
9
10 @Component({
11 selector: 'my-user-create',
12 templateUrl: './user-edit.component.html',
13 styleUrls: [ './user-edit.component.scss' ]
14 })
15 export class UserCreateComponent extends UserEdit implements OnInit {
16 error: string
17
18 constructor (
19 protected serverService: ServerService,
20 protected formValidatorService: FormValidatorService,
21 protected configService: ConfigService,
22 protected screenService: ScreenService,
23 protected auth: AuthService,
24 private userValidatorsService: UserValidatorsService,
25 private route: ActivatedRoute,
26 private router: Router,
27 private notifier: Notifier,
28 private userService: UserService,
29 private i18n: I18n
30 ) {
31 super()
32
33 this.buildQuotaOptions()
34 }
35
36 ngOnInit () {
37 super.ngOnInit()
38
39 const defaultValues = {
40 role: UserRole.USER.toString(),
41 videoQuota: '-1',
42 videoQuotaDaily: '-1'
43 }
44
45 this.buildForm({
46 username: this.userValidatorsService.USER_USERNAME,
47 email: this.userValidatorsService.USER_EMAIL,
48 password: this.isPasswordOptional() ? this.userValidatorsService.USER_PASSWORD_OPTIONAL : this.userValidatorsService.USER_PASSWORD,
49 role: this.userValidatorsService.USER_ROLE,
50 videoQuota: this.userValidatorsService.USER_VIDEO_QUOTA,
51 videoQuotaDaily: this.userValidatorsService.USER_VIDEO_QUOTA_DAILY,
52 byPassAutoBlock: null
53 }, defaultValues)
54 }
55
56 formValidated () {
57 this.error = undefined
58
59 const userCreate: UserCreate = this.form.value
60
61 userCreate.adminFlags = this.buildAdminFlags(this.form.value)
62
63 // A select in HTML is always mapped as a string, we convert it to number
64 userCreate.videoQuota = parseInt(this.form.value['videoQuota'], 10)
65 userCreate.videoQuotaDaily = parseInt(this.form.value['videoQuotaDaily'], 10)
66
67 this.userService.addUser(userCreate).subscribe(
68 () => {
69 this.notifier.success(this.i18n('User {{username}} created.', { username: userCreate.username }))
70 this.router.navigate([ '/admin/users/list' ])
71 },
72
73 err => this.error = err.message
74 )
75 }
76
77 isCreation () {
78 return true
79 }
80
81 isPasswordOptional () {
82 const serverConfig = this.route.snapshot.data.serverConfig
83 return serverConfig.email.enabled
84 }
85
86 getFormButtonTitle () {
87 return this.i18n('Create user')
88 }
89 }