UNPKG

ionic

Version:

A tool for creating and developing Ionic Framework mobile apps.

152 lines (122 loc) 5.28 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. */ /* jshint quotmark:false */ var Q = require('q'), et = require('elementtree'), fs = require('fs'), shell = require('shelljs'), path = require('path'), stripLicense = require('./util/strip-license'); /** * Used for adding templates for plugin platforms to plugin.xml */ module.exports = { add: function( platformName ) { var pluginxml, platform; // Check to make sure we are in the plugin first if( !fs.existsSync( 'plugin.xml' ) ) { return Q.reject( new Error( "can't find a plugin.xml. Are you in the plugin?" ) ); } // Get the current plugin.xml file pluginxml = et.parse( fs.readFileSync('plugin.xml', 'utf-8') ); // Check if this platform exists if( pluginxml.find("./platform/[@name='"+ platformName +"']") ) { return Q.reject( new Error( "platform: " + platformName + " already added" ) ); } // Get the platform specific elements platform = doPlatform( platformName, pluginxml.find("./name").text, pluginxml.getroot().get( "id" ) ); // Make sure we support it if( !platform ) { return Q.reject( new Error( "platform: " + platformName + " not yet supported" ) ); } pluginxml.getroot().append( platform.getroot() ); fs.writeFileSync( "plugin.xml", pluginxml.write( "plugin.xml", {indent: 4} ), 'utf-8' ); return Q(); }, remove: function( platformName ) { // Check to make sure we are in the plugin first if( !fs.existsSync( 'plugin.xml' ) ) { return Q.reject( new Error( "can't find a plugin.xml. Are you in the plugin?" ) ); } // Get the current plugin.xml file var pluginxml = et.parse( fs.readFileSync('plugin.xml', 'utf-8') ); // Check if this platform exists if( !pluginxml.find("./platform/[@name='"+ platformName +"']") ) { return Q.reject( new Error( "platform: " + platformName + " hasn't been added" ) ); } // Remove the Platform in question pluginxml.getroot().remove(pluginxml.find("./platform/[@name='"+ platformName +"']") ); // Rewrite the plugin.xml file back out fs.writeFileSync( "plugin.xml", pluginxml.write( "plugin.xml", {indent: 4} ), 'utf-8' ); // Remove the src/"platform" shell.rm( '-rf', 'src/' + platformName ); return Q(); } }; function doPlatform( platformName, pluginName, pluginID, pluginVersion ) { var templatesDir = path.join(__dirname, '..', '..', 'templates/platforms/' + platformName + "/"), platformFile = templatesDir + platformName + ".xml", platform; if( !fs.existsSync( platformFile ) ) { return false; } platform = fs.readFileSync( platformFile, 'utf-8' ) .replace( /%pluginName%/g, pluginName ) .replace( /%pluginID%/g, pluginID ) .replace( /%packageName%/g, pluginID.replace( /[.]/g, '/' ) ); platform = new et.ElementTree( et.XML( platform ) ); doPlatformBase( templatesDir, platformName, pluginName, pluginID, pluginVersion ); return platform; } function doPlatformBase( templatesDir, platformName, pluginName, pluginID, pluginVersion ) { // Create the default plugin file var baseFiles = [], i = 0; switch( platformName ) { case 'android': baseFiles.push ( { file: stripLicense.fromCode(fs.readFileSync(templatesDir + "base.java", "utf-8") .replace(/%pluginName%/g, pluginName) .replace(/%pluginID%/g, pluginID)), extension: "java" } ); break; case 'ios': baseFiles.push( { file: stripLicense.fromCode(fs.readFileSync(templatesDir + "base.m", "utf-8") .replace(/%pluginName%/g, pluginName)), extension: "m" } ); break; case 'windows': baseFiles.push( { file: stripLicense.fromCode(fs.readFileSync(templatesDir + "base.js", "utf-8")), extension: "js" } ); } shell.mkdir( '-p', 'src/' + platformName ); for( i; i < baseFiles.length; i++ ) { fs.writeFileSync( 'src/' + platformName + '/' + pluginName + '.' + baseFiles[ i ].extension, baseFiles[ i ].file, 'utf-8' ); } }