UNPKG

ionic

Version:

A tool for creating and developing Ionic Framework mobile apps.

77 lines (62 loc) 3.19 kB
/** Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements. See the NOTICE file distributed with this work for additional information regarding copyright ownership. The ASF licenses this file to you 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. */ var path = require('path'); var util = require('../cordova/util'); var platforms = require('./platformsConfig.json'); var events = require('cordova-common').events; // Avoid loading the same platform projects more than once (identified by path) var cachedApis = {}; // getPlatformApi() should be the only method of instantiating the // PlatformProject classes for now. function getPlatformApi(platform, platformRootDir) { // if platformRootDir is not specified, try to detect it first if (!platformRootDir) { var projectRootDir = util.isCordova(); platformRootDir = projectRootDir && path.join(projectRootDir, 'platforms', platform); } if (!platformRootDir) { // If platformRootDir is still undefined, then we're probably is not inside of cordova project throw new Error('Current location is not a Cordova project'); } var cached = cachedApis[platformRootDir]; if (cached && cached.platform == platform) return cached; if (!platforms[platform]) throw new Error('Unknown platform ' + platform); var PlatformApi; try { // First we need to find whether platform exposes its' API via js module // If it does, then we require and instantiate it. var platformApiModule = path.join(platformRootDir, 'cordova', 'Api.js'); PlatformApi = require(platformApiModule); } catch (err) { // Check if platform already compatible w/ PlatformApi and show deprecation warning if (err && err.code === 'MODULE_NOT_FOUND' && platforms[platform].apiCompatibleSince) { events.emit('warn', ' Using this version of Cordova with older version of cordova-' + platform + ' is being deprecated. Consider upgrading to cordova-' + platform + '@' + platforms[platform].apiCompatibleSince + ' or newer.'); } PlatformApi = require('./PlatformApiPoly'); } var platformApi = new PlatformApi(platform, platformRootDir, events); cachedApis[platformRootDir] = platformApi; return platformApi; } module.exports = platforms; // We don't want these methods to be enumerable on the platforms object, because we expect enumerable properties of the // platforms object to be platforms. Object.defineProperties(module.exports, { 'getPlatformApi': {value: getPlatformApi, configurable: true, writable: true} });