45 lines
1.2 KiB
TypeScript
45 lines
1.2 KiB
TypeScript
import {Injectable} from '@angular/core';
|
|
import {Upload} from './upload';
|
|
import {FileDataService} from './file-data.service';
|
|
import {AngularFireStorage} from '@angular/fire/storage';
|
|
import {finalize} from 'rxjs/operators';
|
|
import {FileBase} from './fileBase';
|
|
import {FileServer} from './fileServer';
|
|
|
|
|
|
@Injectable({
|
|
providedIn: 'root'
|
|
})
|
|
export class UploadService extends FileBase {
|
|
|
|
constructor(private fileDataService: FileDataService, private angularFireStorage: AngularFireStorage) {
|
|
super();
|
|
}
|
|
|
|
public async pushUpload(songId: string, upload: Upload) {
|
|
const directory = this.directory(songId);
|
|
const filePath = `${directory}/${upload.file.name}`;
|
|
upload.path = directory;
|
|
|
|
const ref = this.angularFireStorage.ref(filePath);
|
|
const task = ref.put(upload.file);
|
|
|
|
task.percentageChanges().subscribe(percent => upload.progress = percent);
|
|
task.snapshotChanges().pipe(
|
|
finalize(() => {
|
|
this.saveFileData(songId, upload);
|
|
})
|
|
).subscribe();
|
|
|
|
}
|
|
|
|
private async saveFileData(songId: string, upload: Upload) {
|
|
const file: FileServer = {
|
|
name: upload.file.name,
|
|
path: upload.path,
|
|
createdAt: new Date()
|
|
};
|
|
await this.fileDataService.set(songId, file);
|
|
}
|
|
}
|