// (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 { CoreFileProvider } from '../../../providers/file'; import { CoreUtilsProvider } from '../../../providers/utils/utils'; import { File } from '@ionic-native/file'; import { LocalNotifications } from '@ionic-native/local-notifications'; import { CoreInitDelegate, CoreInitHandler } from '../../../providers/init'; import { FileTransferErrorMock } from './file-transfer'; /** * Emulates the Cordova Zip plugin in desktop apps and in browser. */ @Injectable() export class CoreEmulatorHelper implements CoreInitHandler { name = 'CoreEmulator'; priority = CoreInitDelegate.MAX_RECOMMENDED_PRIORITY + 500; blocking = true; constructor(private file: File, private fileProvider: CoreFileProvider, private utils: CoreUtilsProvider, initDelegate: CoreInitDelegate, private localNotif: LocalNotifications, private appProvider: CoreAppProvider) {} /** * Check if the app is running in a Linux environment. * * @return {boolean} Whether it's running in a Linux environment. */ isLinux() : boolean { if (!this.appProvider.isDesktop()) { return false; } try { var os = require('os'); return os.platform().indexOf('linux') === 0; } catch(ex) { return false; } } /** * Check if the app is running in a Mac OS environment. * * @return {boolean} Whether it's running in a Mac OS environment. */ isMac() : boolean { if (!this.appProvider.isDesktop()) { return false; } try { var os = require('os'); return os.platform().indexOf('darwin') === 0; } catch(ex) { return false; } } /** * Check if the app is running in a Windows environment. * * @return {boolean} Whether it's running in a Windows environment. */ isWindows() : boolean { if (!this.appProvider.isDesktop()) { return false; } try { var os = require('os'); return os.platform().indexOf('win') === 0; } catch(ex) { return false; } } /** * Load the Mocks that need it. * * @return {Promise} Promise resolved when loaded. */ load() : Promise { let promises = []; promises.push((this.file).load().then((basePath: string) => { this.fileProvider.setHTMLBasePath(basePath); })); promises.push((this.localNotif).load(this.isWindows())); (window).FileTransferError = FileTransferErrorMock; return this.utils.allPromises(promises); } }