Add a warning when uploading videos using root
authorChocobozzz <me@florianbigard.com>
Tue, 10 Dec 2019 09:02:23 +0000 (10:02 +0100)
committerChocobozzz <me@florianbigard.com>
Tue, 10 Dec 2019 09:02:23 +0000 (10:02 +0100)
client/src/app/videos/+video-edit/video-add.component.html
client/src/app/videos/+video-edit/video-add.component.scss
client/src/app/videos/+video-edit/video-add.component.ts

index 72a233b722c1bf17e800bb4b1b8f97a905415590..a99988600e167acbff947cc88e1f429ff2fb32d5 100644 (file)
@@ -1,5 +1,11 @@
 <div class="margin-content">
-  <div class="title-page title-page-single">
+  <div class="alert alert-warning" *ngIf="isRootUser()" i18n>
+    We recommend you to not use the <strong>root</strong> user to publish your videos, since it's the super-admin account of your instance.
+    <br />
+    Instead, <a routerLink="/admin/users">create a dedicated account</a> to upload your videos.
+  </div>
+
+  <div class="title-page title-page-single" *ngIf="isInSecondStep()">
     <ng-container *ngIf="secondStepType === 'import-url' || secondStepType === 'import-torrent'" i18n>Import {{ videoName }}</ng-container>
     <ng-container *ngIf="secondStepType === 'upload'" i18n>Upload {{ videoName }}</ng-container>
   </div>
index da711ec5bb75f7e792294191b3d7148cdc0f2fb8..7acab374424a604953a45a1828102a5ae988afe4 100644 (file)
@@ -5,13 +5,22 @@ $border-width: 3px;
 $border-type: solid;
 $border-color: #EAEAEA;
 
+.margin-content {
+  padding-top: 50px;
+}
+
+.alert {
+  font-size: 15px;
+}
+
 ::ng-deep .root-tabset.video-add-tabset {
+  margin-top: 50px;
+
   &.hide-nav > .nav {
     display: none !important;
   }
 
   & > .nav {
-
     border-bottom: $border-width $border-type $border-color;
     margin: 0 !important;
 
index 193de441db729b638303e89e92249f3946b1c2d7..911bc884e6a4ea5da3e9d9fce6200d45f4164a49 100644 (file)
@@ -2,7 +2,7 @@ import { Component, HostListener, ViewChild } from '@angular/core'
 import { CanComponentDeactivate } from '@app/shared/guards/can-deactivate-guard.service'
 import { VideoImportUrlComponent } from '@app/videos/+video-edit/video-add-components/video-import-url.component'
 import { VideoUploadComponent } from '@app/videos/+video-edit/video-add-components/video-upload.component'
-import { ServerService } from '@app/core'
+import { AuthService, ServerService } from '@app/core'
 import { VideoImportTorrentComponent } from '@app/videos/+video-edit/video-add-components/video-import-torrent.component'
 
 @Component({
@@ -19,6 +19,7 @@ export class VideoAddComponent implements CanComponentDeactivate {
   videoName: string
 
   constructor (
+    private auth: AuthService,
     private serverService: ServerService
   ) {}
 
@@ -57,4 +58,12 @@ export class VideoAddComponent implements CanComponentDeactivate {
   isVideoImportTorrentEnabled () {
     return this.serverService.getConfig().import.videos.torrent.enabled
   }
+
+  isInSecondStep () {
+    return !!this.secondStepType
+  }
+
+  isRootUser () {
+    return this.auth.getUser().username === 'root'
+  }
 }