Added UI support for sharing videos

This commit is contained in:
Isaac Grynsztein
2020-04-07 18:19:12 -04:00
parent 822aec4de8
commit 14bf2248cf
10 changed files with 234 additions and 20 deletions

View File

@@ -1640,14 +1640,15 @@ app.post('/api/getFile', function (req, res) {
app.post('/api/enableSharing', function(req, res) { app.post('/api/enableSharing', function(req, res) {
var type = req.body.type; var type = req.body.type;
var uid = req.body.uid; var uid = req.body.uid;
var is_playlist = req.body.is_playlist;
try { try {
success = true; success = true;
if (type === 'audio' || type === 'video') { if (!is_playlist && type !== 'subscription') {
db.get(`files.${type}`) db.get(`files.${type}`)
.find({uid: uid}) .find({uid: uid})
.assign({sharingEnabled: true}) .assign({sharingEnabled: true})
.write(); .write();
} else if (type === 'playlist') { } else if (is_playlist) {
db.get(`playlists.${type}`) db.get(`playlists.${type}`)
.find({id: uid}) .find({id: uid})
.assign({sharingEnabled: true}) .assign({sharingEnabled: true})
@@ -1672,15 +1673,16 @@ app.post('/api/enableSharing', function(req, res) {
app.post('/api/disableSharing', function(req, res) { app.post('/api/disableSharing', function(req, res) {
var type = req.body.type; var type = req.body.type;
var uid = req.body.uid; var uid = req.body.uid;
var is_playlist = req.body.is_playlist;
try { try {
success = true; success = true;
if (type === 'audio' || type === 'video') { if (!is_playlist && type !== 'subscription') {
db.get(`files.${type}`) db.get(`files.${type}`)
.find({uid: uid}) .find({uid: uid})
.assign({sharingEnabled: false}) .assign({sharingEnabled: false})
.write(); .write();
} else if (type === 'playlist') { } else if (is_playlist) {
db.get(`playlists.${type}`) db.get(`playlists.${type}`)
.find({id: uid}) .find({id: uid})
.assign({sharingEnabled: false}) .assign({sharingEnabled: false})
.write(); .write();
@@ -1851,7 +1853,8 @@ app.post('/api/createPlaylist', async (req, res) => {
'name': playlistName, 'name': playlistName,
fileNames: fileNames, fileNames: fileNames,
id: shortid.generate(), id: shortid.generate(),
thumbnailURL: thumbnailURL thumbnailURL: thumbnailURL,
type: type
}; };
db.get(`playlists.${type}`) db.get(`playlists.${type}`)
@@ -1864,6 +1867,31 @@ app.post('/api/createPlaylist', async (req, res) => {
}) })
}); });
app.post('/api/getPlaylist', async (req, res) => {
let playlistID = req.body.playlistID;
let type = req.body.type;
let playlist = null;
if (!type) {
playlist = db.get('playlists.audio').find({id: playlistID}).value();
if (!playlist) {
playlist = db.get('playlists.video').find({id: playlistID}).value();
if (playlist) type = 'video';
} else {
type = 'audio';
}
}
if (!playlist) playlist = db.get(`playlists.${type}`).find({id: playlistID}).value();
res.send({
playlist: playlist,
type: type,
success: !!playlist
});
});
app.post('/api/updatePlaylist', async (req, res) => { app.post('/api/updatePlaylist', async (req, res) => {
let playlistID = req.body.playlistID; let playlistID = req.body.playlistID;
let fileNames = req.body.fileNames; let fileNames = req.body.fileNames;

View File

@@ -25,8 +25,9 @@ import { MatSlideToggleModule } from '@angular/material/slide-toggle';
import { MatSnackBarModule } from '@angular/material/snack-bar'; import { MatSnackBarModule } from '@angular/material/snack-bar';
import { MatToolbarModule } from '@angular/material/toolbar'; import { MatToolbarModule } from '@angular/material/toolbar';
import { MatTabsModule } from '@angular/material/tabs'; import { MatTabsModule } from '@angular/material/tabs';
import {DragDropModule} from '@angular/cdk/drag-drop'; import {DragDropModule} from '@angular/cdk/drag-drop';
import {FormsModule, ReactiveFormsModule} from '@angular/forms'; import {ClipboardModule} from '@angular/cdk/clipboard';
import {FormsModule, ReactiveFormsModule} from '@angular/forms';
import { AppComponent } from './app.component'; import { AppComponent } from './app.component';
import { HttpClientModule, HttpClient } from '@angular/common/http'; import { HttpClientModule, HttpClient } from '@angular/common/http';
import { PostsService } from 'app/posts.services'; import { PostsService } from 'app/posts.services';
@@ -55,6 +56,7 @@ import { VideoInfoDialogComponent } from './dialogs/video-info-dialog/video-info
import { ArgModifierDialogComponent, HighlightPipe } from './dialogs/arg-modifier-dialog/arg-modifier-dialog.component'; import { ArgModifierDialogComponent, HighlightPipe } from './dialogs/arg-modifier-dialog/arg-modifier-dialog.component';
import { UpdaterComponent } from './updater/updater.component'; import { UpdaterComponent } from './updater/updater.component';
import { UpdateProgressDialogComponent } from './dialogs/update-progress-dialog/update-progress-dialog.component'; import { UpdateProgressDialogComponent } from './dialogs/update-progress-dialog/update-progress-dialog.component';
import { ShareMediaDialogComponent } from './dialogs/share-media-dialog/share-media-dialog.component';
registerLocaleData(es, 'es'); registerLocaleData(es, 'es');
export function isVisible({ event, element, scrollContainer, offset }: IsVisibleProps<any>) { export function isVisible({ event, element, scrollContainer, offset }: IsVisibleProps<any>) {
@@ -82,7 +84,8 @@ export function isVisible({ event, element, scrollContainer, offset }: IsVisible
ArgModifierDialogComponent, ArgModifierDialogComponent,
HighlightPipe, HighlightPipe,
UpdaterComponent, UpdaterComponent,
UpdateProgressDialogComponent UpdateProgressDialogComponent,
ShareMediaDialogComponent
], ],
imports: [ imports: [
CommonModule, CommonModule,
@@ -117,6 +120,7 @@ export function isVisible({ event, element, scrollContainer, offset }: IsVisible
MatTabsModule, MatTabsModule,
MatTooltipModule, MatTooltipModule,
DragDropModule, DragDropModule,
ClipboardModule,
VgCoreModule, VgCoreModule,
VgControlsModule, VgControlsModule,
VgOverlayPlayModule, VgOverlayPlayModule,

View File

@@ -0,0 +1,25 @@
<h4 mat-dialog-title>
<ng-container *ngIf="is_playlist" i18n="Share playlist dialog title">Share playlist</ng-container>
<ng-container *ngIf="!is_playlist && type === 'video'" i18n="Share video dialog title">Share video</ng-container>
<ng-container *ngIf="!is_playlist && type === 'audio'" i18n="Share audio dialog title">Share audio</ng-container>
</h4>
<mat-dialog-content>
<div>
<div>
<mat-checkbox [checked]="sharing_enabled" (change)="sharingChanged($event)"><ng-container i18n="Enable sharing checkbox">Enable sharing</ng-container></mat-checkbox>
</div>
<div>
<mat-form-field style="width: 100%">
<input matInput [disabled]="!sharing_enabled" [readonly]="true" [value]="share_url">
</mat-form-field>
</div>
<div style="margin-bottom: 10px;">
<button color="accent" (click)="copiedToClipboard()" [disabled]="!sharing_enabled" [cdkCopyToClipboard]="share_url" mat-raised-button><ng-container i18n="Copy to clipboard button">Copy to clipboard</ng-container></button>
</div>
</div>
</mat-dialog-content>
<mat-dialog-actions>
<button mat-button mat-dialog-close><ng-container i18n="Close button">Close</ng-container></button>
</mat-dialog-actions>

View File

@@ -0,0 +1,25 @@
import { async, ComponentFixture, TestBed } from '@angular/core/testing';
import { ShareMediaDialogComponent } from './share-media-dialog.component';
describe('ShareMediaDialogComponent', () => {
let component: ShareMediaDialogComponent;
let fixture: ComponentFixture<ShareMediaDialogComponent>;
beforeEach(async(() => {
TestBed.configureTestingModule({
declarations: [ ShareMediaDialogComponent ]
})
.compileComponents();
}));
beforeEach(() => {
fixture = TestBed.createComponent(ShareMediaDialogComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
it('should create', () => {
expect(component).toBeTruthy();
});
});

View File

@@ -0,0 +1,71 @@
import { Component, OnInit, Inject } from '@angular/core';
import { MAT_DIALOG_DATA } from '@angular/material/dialog';
import { Router } from '@angular/router';
import { MatSnackBar } from '@angular/material/snack-bar';
import { PostsService } from 'app/posts.services';
@Component({
selector: 'app-share-media-dialog',
templateUrl: './share-media-dialog.component.html',
styleUrls: ['./share-media-dialog.component.scss']
})
export class ShareMediaDialogComponent implements OnInit {
type = null;
uid = null;
share_url = null;
sharing_enabled = null;
is_playlist = null;
constructor(@Inject(MAT_DIALOG_DATA) public data: any, public router: Router, private snackBar: MatSnackBar,
private postsService: PostsService) { }
ngOnInit(): void {
if (this.data) {
this.type = this.data.type;
this.uid = this.data.uid;
this.sharing_enabled = this.data.sharing_enabled;
this.is_playlist = this.data.is_playlist;
const arg = (this.is_playlist ? ';id=' : ';uid=');
this.share_url = window.location.href.split(';')[0] + arg + this.uid;
}
}
copiedToClipboard() {
this.openSnackBar('Copied to clipboard!');
}
sharingChanged(event) {
if (event.checked) {
this.postsService.enableSharing(this.uid, this.type, this.is_playlist).subscribe(res => {
if (res['success']) {
this.openSnackBar('Sharing enabled.');
this.sharing_enabled = true;
} else {
this.openSnackBar('Failed to enable sharing.');
}
}, err => {
this.openSnackBar('Failed to enable sharing - server error.');
});
} else {
this.postsService.disableSharing(this.uid, this.type, this.is_playlist).subscribe(res => {
if (res['success']) {
this.openSnackBar('Sharing disabled.');
this.sharing_enabled = false;
} else {
this.openSnackBar('Failed to disable sharing.');
}
}, err => {
this.openSnackBar('Failed to disable sharing - server error.');
});
}
}
public openSnackBar(message: string, action: string = '') {
this.snackBar.open(message, action, {
duration: 2000,
});
}
}

View File

@@ -45,13 +45,19 @@
.save-button { .save-button {
right: 25px; right: 25px;
position: absolute; position: fixed;
bottom: 25px;
}
.share-button {
left: 25px;
position: fixed;
bottom: 25px; bottom: 25px;
} }
.favorite-button { .favorite-button {
left: 25px; left: 25px;
position: absolute; position: fixed;
bottom: 25px; bottom: 25px;
} }

View File

@@ -26,8 +26,10 @@
<div *ngIf="playlist.length > 1"> <div *ngIf="playlist.length > 1">
<button class="save-button" color="primary" (click)="downloadContent()" [disabled]="downloading" mat-fab><mat-icon class="save-icon">save</mat-icon><mat-spinner *ngIf="downloading" class="spinner" [diameter]="50"></mat-spinner></button> <button class="save-button" color="primary" (click)="downloadContent()" [disabled]="downloading" mat-fab><mat-icon class="save-icon">save</mat-icon><mat-spinner *ngIf="downloading" class="spinner" [diameter]="50"></mat-spinner></button>
<button *ngIf="!id" color="accent" class="favorite-button" color="primary" (click)="namePlaylistDialog()" mat-fab><mat-icon class="save-icon">favorite</mat-icon></button> <button *ngIf="!id" color="accent" class="favorite-button" color="primary" (click)="namePlaylistDialog()" mat-fab><mat-icon class="save-icon">favorite</mat-icon></button>
<button *ngIf="!is_shared && id" class="share-button" color="primary" (click)="openShareDialog()" mat-fab><mat-icon class="save-icon">share</mat-icon></button>
</div> </div>
<div *ngIf="playlist.length === 1"> <div *ngIf="playlist.length === 1">
<button class="save-button" color="primary" (click)="downloadFile()" [disabled]="downloading" mat-fab><mat-icon class="save-icon">save</mat-icon><mat-spinner *ngIf="downloading" class="spinner" [diameter]="50"></mat-spinner></button> <button class="save-button" color="primary" (click)="downloadFile()" [disabled]="downloading" mat-fab><mat-icon class="save-icon">save</mat-icon><mat-spinner *ngIf="downloading" class="spinner" [diameter]="50"></mat-spinner></button>
<button *ngIf="!is_shared" class="share-button" color="primary" (click)="openShareDialog()" mat-fab><mat-icon class="save-icon">share</mat-icon></button>
</div> </div>
</div> </div>

View File

@@ -6,6 +6,7 @@ import { MatDialog } from '@angular/material/dialog';
import { MatSnackBar } from '@angular/material/snack-bar'; import { MatSnackBar } from '@angular/material/snack-bar';
import { InputDialogComponent } from 'app/input-dialog/input-dialog.component'; import { InputDialogComponent } from 'app/input-dialog/input-dialog.component';
import { CdkDragDrop, moveItemInArray } from '@angular/cdk/drag-drop'; import { CdkDragDrop, moveItemInArray } from '@angular/cdk/drag-drop';
import { ShareMediaDialogComponent } from 'app/dialogs/share-media-dialog/share-media-dialog.component';
export interface IMedia { export interface IMedia {
title: string; title: string;
@@ -39,6 +40,11 @@ export class PlayerComponent implements OnInit {
subscriptionName = null; subscriptionName = null;
subPlaylist = null; subPlaylist = null;
is_shared = false;
db_playlist = null;
db_file = null;
baseStreamPath = null; baseStreamPath = null;
audioFolderPath = null; audioFolderPath = null;
videoFolderPath = null; videoFolderPath = null;
@@ -71,8 +77,14 @@ export class PlayerComponent implements OnInit {
this.subscriptionFolderPath = result['YoutubeDLMaterial']['Subscriptions']['subscriptions_base_path']; this.subscriptionFolderPath = result['YoutubeDLMaterial']['Subscriptions']['subscriptions_base_path'];
this.fileNames = this.route.snapshot.paramMap.get('fileNames') ? this.route.snapshot.paramMap.get('fileNames').split('|nvr|') : null; this.fileNames = this.route.snapshot.paramMap.get('fileNames') ? this.route.snapshot.paramMap.get('fileNames').split('|nvr|') : null;
if (this.uid) { if (!this.fileNames) {
this.is_shared = true;
}
if (this.uid && !this.id) {
this.getFile(); this.getFile();
} else if (this.id) {
this.getPlaylistFiles();
} }
if (this.type === 'subscription' || this.fileNames) { if (this.type === 'subscription' || this.fileNames) {
@@ -91,17 +103,33 @@ export class PlayerComponent implements OnInit {
} }
getFile() { getFile() {
const already_has_filenames = !!this.fileNames;
this.postsService.getFile(this.uid, null).subscribe(res => { this.postsService.getFile(this.uid, null).subscribe(res => {
this.db_file = res['file'];
if (!this.fileNames) { if (!this.fileNames) {
// means it's a shared video // means it's a shared video
if (!this.id) { if (!this.id) {
// regular video/audio file (not playlist) // regular video/audio file (not playlist)
this.fileNames = [res['file']['id']]; this.fileNames = [this.db_file['id']];
this.type = res['file']['isAudio'] ? 'audio' : 'video'; this.type = this.db_file['isAudio'] ? 'audio' : 'video';
this.parseFileNames(); if (!already_has_filenames) { this.parseFileNames(); }
} }
} }
if (this.db_file['sharingEnabled']) {
this.show_player = true;
} else if (!already_has_filenames) {
this.openSnackBar('Error: Sharing has been disabled for this video!', 'Dismiss');
}
});
}
getPlaylistFiles() {
this.postsService.getPlaylist(this.id, null).subscribe(res => {
this.db_playlist = res['playlist'];
this.fileNames = this.db_playlist['fileNames'];
this.type = res['type'];
this.show_player = true; this.show_player = true;
this.parseFileNames();
}); });
} }
@@ -118,7 +146,7 @@ export class PlayerComponent implements OnInit {
// error // error
console.error('Must have valid file type! Use \'audio\', \'video\', or \'subscription\'.'); console.error('Must have valid file type! Use \'audio\', \'video\', or \'subscription\'.');
} }
this.playlist = [];
for (let i = 0; i < this.fileNames.length; i++) { for (let i = 0; i < this.fileNames.length; i++) {
const fileName = this.fileNames[i]; const fileName = this.fileNames[i];
let baseLocation = null; let baseLocation = null;
@@ -302,6 +330,26 @@ export class PlayerComponent implements OnInit {
}) })
} }
openShareDialog() {
const dialogRef = this.dialog.open(ShareMediaDialogComponent, {
data: {
uid: this.id ? this.id : this.uid,
type: this.type,
sharing_enabled: this.id ? this.db_playlist.sharingEnabled : this.db_file.sharingEnabled,
is_playlist: !!this.id
},
width: '60vw'
});
dialogRef.afterClosed().subscribe(res => {
if (!this.id) {
this.getFile();
} else {
this.getPlaylistFiles();
}
});
}
// snackbar helper // snackbar helper
public openSnackBar(message: string, action: string) { public openSnackBar(message: string, action: string) {
this.snackBar.open(message, action, { this.snackBar.open(message, action, {

View File

@@ -151,12 +151,12 @@ export class PostsService {
return this.http.post(this.path + 'checkPin', {input_pin: unhashed_pin}); return this.http.post(this.path + 'checkPin', {input_pin: unhashed_pin});
} }
enableSharing(uid, type) { enableSharing(uid, type, is_playlist) {
return this.http.post(this.path + 'enableSharing', {uid: uid, type: type}); return this.http.post(this.path + 'enableSharing', {uid: uid, type: type, is_playlist: is_playlist});
} }
disableSharing(uid, type) { disableSharing(uid, type, is_playlist) {
return this.http.post(this.path + 'disableSharing', {uid: uid, type: type}); return this.http.post(this.path + 'disableSharing', {uid: uid, type: type, is_playlist: is_playlist});
} }
createPlaylist(playlistName, fileNames, type, thumbnailURL) { createPlaylist(playlistName, fileNames, type, thumbnailURL) {
@@ -166,6 +166,11 @@ export class PostsService {
thumbnailURL: thumbnailURL}); thumbnailURL: thumbnailURL});
} }
getPlaylist(playlistID, type) {
return this.http.post(this.path + 'getPlaylist', {playlistID: playlistID,
type: type});
}
updatePlaylist(playlistID, fileNames, type) { updatePlaylist(playlistID, fileNames, type) {
return this.http.post(this.path + 'updatePlaylist', {playlistID: playlistID, return this.http.post(this.path + 'updatePlaylist', {playlistID: playlistID,
fileNames: fileNames, fileNames: fileNames,