2017-11-08 14:48:34 +01:00
|
|
|
// (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 { CoreFileProvider } from '../../../providers/file';
|
|
|
|
import { CoreUtilsProvider } from '../../../providers/utils/utils';
|
|
|
|
import { File } from '@ionic-native/file';
|
|
|
|
import { CoreInitDelegate, CoreInitHandler } from '../../../providers/init';
|
2017-11-09 13:00:08 +01:00
|
|
|
import { FileTransferErrorMock } from './file-transfer';
|
2017-11-08 14:48:34 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* 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) {
|
|
|
|
this.priority = initDelegate.MAX_RECOMMENDED_PRIORITY + 500;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 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);
|
|
|
|
}));
|
2017-11-09 13:00:08 +01:00
|
|
|
(<any>window).FileTransferError = FileTransferErrorMock;
|
2017-11-08 14:48:34 +01:00
|
|
|
|
|
|
|
return this.utils.allPromises(promises);
|
|
|
|
}
|
|
|
|
}
|