110 lines
3.3 KiB
TypeScript
Raw Normal View History

// (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;
blocking = true;
constructor(private file: File, private fileProvider: CoreFileProvider, private utils: CoreUtilsProvider,
initDelegate: CoreInitDelegate, private localNotif: LocalNotifications, private appProvider: CoreAppProvider) {
this.priority = initDelegate.MAX_RECOMMENDED_PRIORITY + 500;
}
/**
* 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<void>} Promise resolved when loaded.
*/
load() : Promise<void> {
let promises = [];
promises.push((<any>this.file).load().then((basePath: string) => {
this.fileProvider.setHTMLBasePath(basePath);
}));
promises.push((<any>this.localNotif).load(this.isWindows()));
(<any>window).FileTransferError = FileTransferErrorMock;
return this.utils.allPromises(promises);
}
}