// (C) Copyright 2015 Martin Dougiamas // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. import { Injectable } from '@angular/core'; import { CoreAppProvider } from '@providers/app'; import { CoreUtilsProvider } from '@providers/utils/utils'; import { CoreFileUploaderHandler, CoreFileUploaderHandlerData } from './delegate'; import { CoreFileUploaderHelperProvider } from './helper'; /** * Handler to upload files from the album. */ @Injectable() export class CoreFileUploaderAlbumHandler implements CoreFileUploaderHandler { name = 'CoreFileUploaderAlbum'; priority = 2000; constructor(private appProvider: CoreAppProvider, private utils: CoreUtilsProvider, private uploaderHelper: CoreFileUploaderHelperProvider) { } /** * Whether or not the handler is enabled on a site level. * * @return {boolean|Promise} True or promise resolved with true if enabled. */ isEnabled(): boolean | Promise { return this.appProvider.isMobile(); } /** * Given a list of mimetypes, return the ones that are supported by the handler. * * @param {string[]} [mimetypes] List of mimetypes. * @return {string[]} Supported mimetypes. */ getSupportedMimetypes(mimetypes: string[]): string[] { // Album allows picking images and videos. return this.utils.filterByRegexp(mimetypes, /^(image|video)\//); } /** * Get the data to display the handler. * * @return {CoreFileUploaderHandlerData} Data. */ getData(): CoreFileUploaderHandlerData { return { title: 'core.fileuploader.photoalbums', class: 'core-fileuploader-album-handler', icon: 'images', action: (maxSize?: number, upload?: boolean, allowOffline?: boolean, mimetypes?: string[]): Promise => { return this.uploaderHelper.uploadImage(true, maxSize, upload, mimetypes).then((result) => { return { treated: true, result: result }; }); } }; } }