mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-21 18:01:36 +03:00
a2f0ccc981
refs b12400577a
- additional mime type was added to the API's allowed list but was missed in Admin's allowed list
322 lines
9.3 KiB
JavaScript
322 lines
9.3 KiB
JavaScript
import Component from '@glimmer/component';
|
|
import extractAudioMetadata from '../utils/extract-audio-metadata';
|
|
import prettifyFileName from '../utils/prettify-file-name';
|
|
import {
|
|
IMAGE_EXTENSIONS,
|
|
IMAGE_MIME_TYPES
|
|
} from 'ghost-admin/components/gh-image-uploader';
|
|
import {TrackedObject} from 'tracked-built-ins';
|
|
import {action} from '@ember/object';
|
|
import {bind} from '@ember/runloop';
|
|
import {guidFor} from '@ember/object/internals';
|
|
import {isBlank} from '@ember/utils';
|
|
import {inject as service} from '@ember/service';
|
|
import {set} from '@ember/object';
|
|
import {task} from 'ember-concurrency';
|
|
import {tracked} from '@glimmer/tracking';
|
|
export const AUDIO_EXTENSIONS = ['mp3', 'wav', 'ogg', 'm4a'];
|
|
export const AUDIO_MIME_TYPES = ['audio/mp3', 'audio/mpeg', 'audio/ogg', 'audio/wav', 'audio/vnd.wav', 'audio/wave', 'audio/x-wav', 'audio/mp4', 'audio/x-m4a'];
|
|
|
|
const PLACEHOLDERS = ['summer', 'mountains', 'ufo-attack'];
|
|
|
|
/* Payload
|
|
{
|
|
src: 'https://ghostsite.com/media/...',
|
|
title: '...',
|
|
duration: 60,
|
|
mimeType: 'audio/mp3',
|
|
thumbnailSrc: 'https://ghostsite.com/content/media/...'
|
|
}
|
|
*/
|
|
|
|
// TODO: query file size limit from config and forbid uploads before they start
|
|
|
|
export default class KoenigCardAudioComponent extends Component {
|
|
@service ajax;
|
|
@service ghostPaths;
|
|
|
|
@tracked files;
|
|
@tracked thumbnailFiles;
|
|
@tracked isDraggedOver = false;
|
|
@tracked previewThumbnailSrc;
|
|
|
|
// previewPayload stores all of the data collected until upload completes
|
|
// at which point it will be saved to the real payload and the preview deleted
|
|
@tracked previewPayload = new TrackedObject({});
|
|
|
|
audioExtensions = AUDIO_EXTENSIONS;
|
|
audioMimeTypes = AUDIO_MIME_TYPES;
|
|
imageExtensions = IMAGE_EXTENSIONS;
|
|
imageMimeTypes = IMAGE_MIME_TYPES;
|
|
placeholder = PLACEHOLDERS[Math.floor(Math.random() * PLACEHOLDERS.length)];
|
|
|
|
payloadAudioAttrs = ['src', 'title', 'duration', 'mimeType', 'thumbnailSrc'];
|
|
|
|
get isEmpty() {
|
|
return isBlank(this.args.payload.src);
|
|
}
|
|
|
|
get isIncomplete() {
|
|
const {src} = this.args.payload;
|
|
return isBlank(src);
|
|
}
|
|
|
|
get toolbar() {
|
|
if (this.args.isEditing) {
|
|
return false;
|
|
}
|
|
|
|
return {
|
|
items: [{
|
|
buttonClass: 'fw4 flex items-center white',
|
|
icon: 'koenig/kg-edit',
|
|
iconClass: 'fill-white',
|
|
title: 'Edit',
|
|
text: '',
|
|
action: bind(this, this.args.editCard)
|
|
}]
|
|
};
|
|
}
|
|
|
|
get totalDuration() {
|
|
let duration = this.args.payload.duration || this.previewPayload.duration;
|
|
return this.getFormattedDuration(duration);
|
|
}
|
|
|
|
constructor() {
|
|
super(...arguments);
|
|
this.args.registerComponent(this);
|
|
|
|
const payloadDefaults = {
|
|
loop: false
|
|
};
|
|
|
|
Object.entries(payloadDefaults).forEach(([key, value]) => {
|
|
if (this.args.payload[key] === undefined) {
|
|
this.updatePayloadAttr(key, value);
|
|
}
|
|
});
|
|
}
|
|
|
|
@action
|
|
didInsert(element) {
|
|
// required for snippet rects to be calculated - editor reaches in to component,
|
|
// expecting a non-Glimmer component with a .element property
|
|
this.element = element;
|
|
|
|
const {triggerBrowse, src, files} = this.args.payload;
|
|
|
|
// don't persist editor-only payload attrs
|
|
delete this.args.payload.triggerBrowse;
|
|
delete this.args.payload.files;
|
|
|
|
// the editor will add a triggerBrowse payload attr when inserting from
|
|
// the card menu to save an extra click needed to open the file dialog
|
|
if (triggerBrowse && !src && !files) {
|
|
this.triggerAudioFileDialog();
|
|
}
|
|
|
|
// payload.files will be present if we have an externally set audio that
|
|
// should be uploaded. Typically from a paste or drag/drop
|
|
if (files) {
|
|
this.files = files;
|
|
}
|
|
}
|
|
|
|
@action
|
|
registerAudioFileInput(input) {
|
|
this._audioFileInput = input;
|
|
}
|
|
|
|
@action
|
|
registerAudioThumbnailFileInput(input) {
|
|
this._audioThumbnailFileInput = input;
|
|
}
|
|
|
|
@action
|
|
triggerAudioFileDialog(event) {
|
|
if (this._audioFileInput) {
|
|
return this._audioFileInput.click();
|
|
}
|
|
|
|
const target = event?.target || this.element;
|
|
|
|
const cardElem = target.closest('.__mobiledoc-card');
|
|
const fileInput = cardElem?.querySelector('input[type="file"]');
|
|
|
|
if (fileInput) {
|
|
fileInput.click();
|
|
}
|
|
}
|
|
|
|
@action
|
|
triggerThumbnailFileDialog(event) {
|
|
if (this._audioThumbnailFileInput) {
|
|
return this._audioThumbnailFileInput.click();
|
|
}
|
|
|
|
const target = event?.target || this.element;
|
|
|
|
const cardElem = target.closest('.__mobiledoc-card');
|
|
const fileInput = cardElem?.querySelector('input[type="file"]');
|
|
|
|
if (fileInput) {
|
|
fileInput.click();
|
|
}
|
|
}
|
|
|
|
@action
|
|
deleteThumbnail() {
|
|
this.updatePayloadAttr('thumbnailSrc', null);
|
|
}
|
|
|
|
@task
|
|
*extractAudioMetadataTask(file) {
|
|
return yield extractAudioMetadata(file);
|
|
}
|
|
|
|
@action
|
|
async audioUploadStarted(files) {
|
|
// extract metadata into temporary payload whilst audio is uploading
|
|
const file = files[0];
|
|
if (file) {
|
|
// use a task here so we can wait for it later if the upload is quicker
|
|
const metadata = await this.extractAudioMetadataTask.perform(file);
|
|
|
|
this.previewPayload.duration = metadata?.duration;
|
|
this.previewPayload.mimeType = metadata?.mimeType;
|
|
}
|
|
}
|
|
|
|
getFormattedDuration(duration = 200) {
|
|
const minutes = Math.floor(duration / 60);
|
|
const seconds = Math.floor(duration - (minutes * 60));
|
|
const returnedSeconds = seconds < 10 ? `0${seconds}` : `${seconds}`;
|
|
const formattedDuration = `${minutes}:${returnedSeconds}`;
|
|
return formattedDuration;
|
|
}
|
|
|
|
@action
|
|
async audioUploadCompleted([audio]) {
|
|
this.previewPayload.src = audio.url;
|
|
this.previewPayload.title = prettifyFileName(audio.fileName);
|
|
|
|
// upload can complete before metadata is extracted when running locally
|
|
await this.extractAudioMetadataTask.last;
|
|
|
|
// save preview payload attrs into actual payload and create undo snapshot
|
|
this.args.editor.run(() => {
|
|
this.payloadAudioAttrs.forEach((attr) => {
|
|
this.updatePayloadAttr(attr, this.previewPayload[attr]);
|
|
});
|
|
});
|
|
|
|
// reset preview so we're back to rendering saved data
|
|
this.previewPayload = new TrackedObject({});
|
|
}
|
|
|
|
@action
|
|
async audioThumbnailUploadCompleted([thumb]) {
|
|
const thumbnailGuid = Date.now().valueOf();
|
|
this.previewPayload.thumbnailSrc = `${thumb.url}?v=${thumbnailGuid}`;
|
|
|
|
// save preview payload attr into actual payload
|
|
this.args.editor.run(() => {
|
|
this.updatePayloadAttr('thumbnailSrc', this.previewPayload.thumbnailSrc);
|
|
});
|
|
|
|
// reset preview so we're back to rendering saved data
|
|
this.previewPayload = new TrackedObject({});
|
|
}
|
|
|
|
@action
|
|
audioUploadFailed() {
|
|
// reset all attrs, creating an undo snapshot
|
|
this.args.editor.run(() => {
|
|
this.payloadAudioAttrs.forEach((attr) => {
|
|
this.updatePayloadAttr(attr, null);
|
|
});
|
|
});
|
|
}
|
|
|
|
@action
|
|
setAudioTitle(content) {
|
|
this.updatePayloadAttr('title', content);
|
|
}
|
|
|
|
@action
|
|
audioThumbnailUploadFailed() {
|
|
this.previewPayload.thumbnailSrc = null;
|
|
this.args.editor.run(() => {
|
|
this.updatePayloadAttr('thumbnailSrc', this.previewPayload.thumbnailSrc);
|
|
});
|
|
}
|
|
|
|
@task
|
|
*uploadThumbnailFromBlobTask(audioUrl, fileBlob) {
|
|
const formData = new FormData();
|
|
formData.append('file', fileBlob, `media-thumbnail-${guidFor(this)}.jpg`);
|
|
formData.append('url', audioUrl);
|
|
|
|
const url = `${this.ghostPaths.apiRoot}/media/thumbnail/upload/`;
|
|
|
|
const response = yield this.ajax.put(url, {
|
|
data: formData,
|
|
processData: false,
|
|
contentType: false,
|
|
dataType: 'json'
|
|
});
|
|
|
|
return response.media[0].url;
|
|
}
|
|
|
|
@action
|
|
toggleLoop() {
|
|
this.updatePayloadAttr('loop', !this.args.payload.loop);
|
|
}
|
|
|
|
@action
|
|
updatePayloadAttr(attr, value) {
|
|
const {payload} = this.args;
|
|
|
|
set(payload, attr, value);
|
|
|
|
// update the mobiledoc and stay in edit mode
|
|
this.args.saveCard(payload, false);
|
|
}
|
|
|
|
@action
|
|
dragOver(event) {
|
|
if (!event.dataTransfer) {
|
|
return;
|
|
}
|
|
|
|
event.stopPropagation();
|
|
event.preventDefault();
|
|
|
|
this.isDraggedOver = true;
|
|
}
|
|
|
|
@action
|
|
dragLeave(event) {
|
|
event.preventDefault();
|
|
this.isDraggedOver = false;
|
|
}
|
|
|
|
@action
|
|
drop(event) {
|
|
event.preventDefault();
|
|
event.stopPropagation();
|
|
|
|
this.isDraggedOver = false;
|
|
|
|
if (event.dataTransfer.files) {
|
|
if (!this.args.payload.src) {
|
|
this.files = [event.dataTransfer.files[0]];
|
|
} else {
|
|
this.thumbnailFiles = [event.dataTransfer.files[0]];
|
|
}
|
|
}
|
|
}
|
|
}
|