aboutsummaryrefslogblamecommitdiffhomepage
path: root/client/src/app/videos/+video-edit/video-add-components/video-import-url.component.html
blob: 9a26fe3082edfae92b364a404beec5506aa429e2 (plain) (tree)
1
2
3
4
5
6
                                                              

                                                                           


                                             









                                                                                                                                                                       
 
                                                                                       




                                                          
                                                                                              







                                                                                                             
                                                                                              











                                                                                                          






                                                                      






                                                                                                                       
                                                                                     






                                                                        
                                                           



                                                       
<div *ngIf="!hasImportedVideo" class="upload-video-container">
  <div class="first-step-block">
    <my-global-icon class="upload-icon" iconName="upload"></my-global-icon>

    <div class="form-group">
      <label i18n for="targetUrl">URL</label>

      <my-help>
        <ng-template ptTemplate="customHtml">
          <ng-container i18n>
            You can import any URL <a href='https://rg3.github.io/youtube-dl/supportedsites.html' target='_blank' rel='noopener noreferrer'>supported by youtube-dl</a>
            or URL that points to a raw MP4 file.
            You should make sure you have diffusion rights over the content it points to, otherwise it could cause legal trouble to yourself and your instance.
          </ng-container>
        </ng-template>
      </my-help>

      <input type="text" id="targetUrl" [(ngModel)]="targetUrl" class="form-control" />
    </div>

    <div class="form-group">
      <label i18n for="first-step-channel">Channel</label>
      <div class="peertube-select-container">
        <select id="first-step-channel" [(ngModel)]="firstStepChannelId" class="form-control">
          <option *ngFor="let channel of userVideoChannels" [value]="channel.id">{{ channel.label }}</option>
        </select>
      </div>
    </div>

    <div class="form-group">
      <label i18n for="first-step-privacy">Privacy</label>
      <div class="peertube-select-container">
        <select id="first-step-privacy" [(ngModel)]="firstStepPrivacyId" class="form-control">
          <option *ngFor="let privacy of videoPrivacies" [value]="privacy.id">{{ privacy.label }}</option>
        </select>
      </div>
    </div>

    <input
      type="button" i18n-value value="Import"
      [disabled]="!isTargetUrlValid() || isImportingVideo" (click)="importVideo()"
    />
  </div>
</div>


<div *ngIf="error" class="alert alert-danger">
  <div i18n>Sorry, but something went wrong</div>
  {{ error }}
</div>

<div *ngIf="!error && hasImportedVideo" class="alert alert-info" i18n>
  Congratulations, the video behind {{ targetUrl }} will be imported! You can already add information about this video.
</div>

<!-- Hidden because we want to load the component -->
<form [hidden]="!hasImportedVideo" novalidate [formGroup]="form">
  <my-video-edit
    [form]="form" [formErrors]="formErrors" [videoCaptions]="videoCaptions" [schedulePublicationPossible]="false"
    [validationMessages]="validationMessages" [userVideoChannels]="userVideoChannels"
  ></my-video-edit>

  <div class="submit-container">
    <div class="submit-button"
       (click)="updateSecondStep()"
       [ngClass]="{ disabled: !form.valid || isUpdatingVideo === true }"
    >
      <my-global-icon iconName="validate"></my-global-icon>
      <input type="button" i18n-value value="Update" />
    </div>
  </div>
</form>