aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/+admin/overview/users/user-edit/user-edit.component.html
blob: 7b3eadac2fd3f51077dc086f31d5fd9aacfae52b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
<nav aria-label="breadcrumb">
  <ol class="breadcrumb">
    <li class="breadcrumb-item">
      <a routerLink="/admin/users" i18n>Users</a>
    </li>

    <ng-container *ngIf="isCreation()">
      <li class="breadcrumb-item active" i18n>Create</li>
    </ng-container>
    <ng-container *ngIf="!isCreation()">
      <li class="breadcrumb-item active" i18n>Edit</li>
      <li class="breadcrumb-item active" aria-current="page">
        <a *ngIf="user" [routerLink]="[ '/a', user?.username ]">{{ user?.username }}</a>
      </li>
    </ng-container>
  </ol>
</nav>

<ng-template #dashboard>
  <div *ngIf="!isCreation() && user" class="dashboard">
    <div>
      <a>
        <div class="dashboard-num">{{ user.videosCount }} ({{ user.videoQuotaUsed | bytes: 0 }})</div>
        <div class="dashboard-label" i18n>{user.videosCount, plural, =1 {Video} other {Videos}}</div>
      </a>
    </div>
    <div>
      <a>
        <div class="dashboard-num">{{ user.videoChannels.length || 0 }}</div>
        <div class="dashboard-label" i18n>{user.videoChannels.length, plural, =1 {Channel} other {Channels}}</div>
      </a>
    </div>
    <div>
      <a>
        <div class="dashboard-num">{{ subscribersCount }}</div>
        <div class="dashboard-label" i18n>{subscribersCount, plural, =1 {Subscriber} other {Subscribers}}</div>
      </a>
    </div>
    <div>
      <a [routerLink]="[ '/admin/moderation/abuses/list' ]" [queryParams]="{ 'search': 'reportee:&quot;' + user?.account.displayName + '&quot;' }">
        <div class="dashboard-num">{{ user.abusesCount }}</div>
        <div class="dashboard-label" i18n>Incriminated in reports</div>
      </a>
    </div>
    <div>
      <a [routerLink]="[ '/admin/moderation/abuses/list' ]" [queryParams]="{ 'search': 'reporter:&quot;' + user?.account.displayName + '&quot; state:accepted' }">
        <div class="dashboard-num">{{ user.abusesAcceptedCount }} / {{ user.abusesCreatedCount }}</div>
        <div class="dashboard-label" i18n>Authored reports accepted</div>
      </a>
    </div>
    <div>
      <a>
        <div class="dashboard-num">{{ user.videoCommentsCount }}</div>
        <div class="dashboard-label" i18n>{user.videoCommentsCount, plural, =1 {Comment} other {Comments}}</div>
      </a>
    </div>
  </div>
</ng-template>

<div class="row d-xxl-none"> <!-- hidden on large screens, as it is then displayed on the right side of the form -->
  <div class="col-12 col-xl-3"></div>

  <div class="col-12 col-xl-9">
    <ng-template *ngTemplateOutlet="dashboard"></ng-template>
  </div>
</div>

<div *ngIf="error" class="alert alert-danger">{{ error }}</div>

<div class="row mt-4"> <!-- user grid -->
  <div class="col-12 col-lg-4 col-xl-3">
    <div class="anchor" id="user"></div> <!-- user anchor -->
    <div *ngIf="isCreation()" class="account-title" i18n>NEW USER</div>
    <div *ngIf="!isCreation() && user" class="account-title">
      <my-actor-avatar-edit [actor]="user.account" [editable]="false" [displaySubscribers]="false" [displayUsername]="false"></my-actor-avatar-edit>
    </div>
  </div>

  <div class="col-12 col-lg-8 col-xl-9">
    <div class="row">
      <form class="col" role="form" (ngSubmit)="formValidated()" [formGroup]="form">
        <div class="form-group" *ngIf="isCreation()">
          <label i18n for="username">Username</label>
          <input
            type="text" id="username" i18n-placeholder placeholder="john" class="form-control"
            formControlName="username" [ngClass]="{ 'input-error': formErrors['username'] }"
          >
          <div *ngIf="formErrors.username" class="form-error">
            {{ formErrors.username }}
          </div>
        </div>

        <div class="form-group" *ngIf="isCreation()">
          <label i18n for="channelName">Channel name</label>
          <input
            type="text" id="channelName" i18n-placeholder placeholder="john_channel" class="form-control"
            formControlName="channelName" [ngClass]="{ 'input-error': formErrors['channelName'] }"
          >
          <div *ngIf="formErrors.channelName" class="form-error">
            {{ formErrors.channelName }}
          </div>
        </div>

        <div class="form-group">
          <label i18n for="email">Email</label>
          <input
            type="text" id="email" i18n-placeholder placeholder="mail@example.com" class="form-control"
            formControlName="email" [ngClass]="{ 'input-error': formErrors['email'] }"
            autocomplete="off" [readonly]="user && user.pluginAuth !== null"
          >
          <div *ngIf="formErrors.email" class="form-error">
            {{ formErrors.email }}
          </div>
        </div>

        <div class="form-group" *ngIf="isCreation()">
          <label i18n for="password">Password</label>

          <my-help *ngIf="isPasswordOptional()">
            <ng-template ptTemplate="customHtml">
              <ng-container i18n>
                If you leave the password empty, an email will be sent to the user.
              </ng-container>
            </ng-template>
          </my-help>

          <my-input-text formControlName="password" inputId="password" [formError]="formErrors['password']" autocomplete="new-password"></my-input-text>
        </div>

        <div class="form-group">
          <label i18n for="role">Role</label>
          <div class="peertube-select-container">
              <select id="role" formControlName="role" class="form-control">
                <option *ngFor="let role of roles" [value]="role.value">
                {{ role.label }}
                </option>
              </select>
          </div>

          <div *ngIf="formErrors.role" class="form-error">
            {{ formErrors.role }}
          </div>
        </div>

        <div class="form-group">
          <label i18n for="videoQuota">Video quota</label>

          <my-select-custom-value
            id="videoQuota"
            [items]="videoQuotaOptions"
            formControlName="videoQuota"
            i18n-inputSuffix inputSuffix="bytes" inputType="number"
            [clearable]="false"
          ></my-select-custom-value>

          <my-user-real-quota-info [videoQuota]="getUserVideoQuota()"></my-user-real-quota-info>

          <div *ngIf="formErrors.videoQuota" class="form-error">
            {{ formErrors.videoQuota }}
          </div>
        </div>

        <div class="form-group">
          <label i18n for="videoQuotaDaily">Daily video quota</label>

          <my-select-custom-value
            id="videoQuotaDaily"
            [items]="videoQuotaDailyOptions"
            formControlName="videoQuotaDaily"
            i18n-inputSuffix inputSuffix="bytes" inputType="number"
            [clearable]="false"
          ></my-select-custom-value>

          <div *ngIf="formErrors.videoQuotaDaily" class="form-error">
            {{ formErrors.videoQuotaDaily }}
          </div>
        </div>

        <div class="form-group" *ngIf="!isCreation() && getAuthPlugins().length !== 0">
          <label i18n for="pluginAuth">Auth plugin</label>

          <div class="peertube-select-container">
            <select id="pluginAuth" formControlName="pluginAuth" class="form-control">
              <option [value]="null" i18n>None (local authentication)</option>
              <option *ngFor="let authPlugin of getAuthPlugins()" [value]="authPlugin">{{ authPlugin }}</option>
            </select>
          </div>
        </div>

        <div class="form-group">
          <my-peertube-checkbox
            inputName="byPassAutoBlock" formControlName="byPassAutoBlock"
            i18n-labelText labelText="User bypasses video validation by moderators"
          >
            <ng-container ngProjectAs="description" i18n>
              Enable this checkbox if this user doesn't need to have its videos reviewed by moderators.
            </ng-container>
          </my-peertube-checkbox>
        </div>

        <input type="submit" value="{{ getFormButtonTitle() }}" [disabled]="!form.valid">
      </form>

      <div class="d-none d-xxl-block col-7">
        <ng-template *ngTemplateOutlet="dashboard"></ng-template>
      </div>
    </div>
  </div>
</div>


<div *ngIf="displayDangerZone()" class="row mt-4"> <!-- danger zone grid -->
  <div class="col-12 col-lg-4 col-xl-3">
    <div class="anchor" id="danger"></div> <!-- danger zone anchor -->
    <div i18n class="account-title account-title-danger">DANGER ZONE</div>
  </div>

  <div class="col-12 col-lg-8 col-xl-9">

    <div class="danger-zone">
      <div class="form-group">
        <div class="mb-1 fw-bold" i18n>Send a link to reset the password by email to the user</div>
        <button (click)="resetPassword()" i18n>Ask for new password</button>
      </div>

      <div class="form-group">
        <div class="mb-1 fw-bold" i18n>Manually set the user password</div>
        <my-user-password [userId]="user.id" [username]="user.username"></my-user-password>
      </div>

      <div *ngIf="user.twoFactorEnabled" class="form-group">
        <div class="mb-1 fw-bold" i18n>This user has two factor authentication enabled</div>
        <button (click)="disableTwoFactorAuth()" i18n>Disable two factor authentication</button>
      </div>
    </div>

  </div>
</div>