UNPKG

ionic

Version:

A tool for creating and developing Ionic Framework mobile apps.

147 lines (121 loc) 4.88 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 shell = require('shelljs'); var Q = require('q'); var npm = require('npm'); var npmHelper = require('../util/npm-helper'); var unpack = require('../util/unpack'); var util = require('./util'); var git = require('../gitclone'); /* Fetches the latests version of a package from NPM. A promise is returned that resolves to the directory the NPM package is located in. Package options must be passed containing a packageName, name, and version. options - Package options */ function npmFetch(packageName, packageVersion) { var versionCallback; // Resultant callback var downloadDir; // Download directory var npmPackage; // NPM package information // Get the latest matching version from NPM if a version range is specified versionCallback = util.getLatestMatchingNpmVersion(packageName, packageVersion).then( function (latestVersion) { downloadDir = path.join(util.libDirectory, packageName, 'cordova', latestVersion); npmPackage = packageName + '@' + latestVersion; return exports.npmCacheAdd(npmPackage); }, function (err) { return Q.reject(err); } ); return versionCallback; } /* Invokes "npm cache add," and then returns a promise that resolves to a directory containing the downloaded, or cached package. NPM package information must be passed in the form of package@version. npmPackage - NPM package details */ function npmCacheAdd(npmPackage) { var loadCallback; // Resultant callback var cacheAddCallback; // Callback for cache var cacheDir; // Cache directory var npmConfig; // NPM Configuration var packageDir; // Downloaded package directory var packageTGZ; // Downloaded TGZ directory cacheDir = path.join(util.libDirectory, 'npm_cache'); npmConfig = { 'cache-min': 3600 * 24, 'cache': cacheDir }; // Load with NPM configuration loadCallback = npmHelper.loadWithSettingsThenRestore(npmConfig, function () { // Invoke NPM Cache Add cacheAddCallback = Q.ninvoke(npm.commands, 'cache', ['add', npmPackage]).then( function (info) { packageDir = path.resolve(npm.cache, info.name, info.version, 'package'); packageTGZ = path.resolve(npm.cache, info.name, info.version, 'package.tgz'); return unpack.unpackTgz(packageTGZ, packageDir); }, function (err) { return Q.reject(err); } ); return cacheAddCallback; }, function (err) { return Q.reject(err); } ); return loadCallback; } /* Performs a Git clone an a Git URL, and branch. If the clone was successful, the path to the cloned directory will be returned. Otherwise, a error is returned. A gitURL, must be passed, and a branch to checkout at is optionally passed. gitURL - URL to Git repository branch - Branch to checkout at */ function gitClone(gitURL, branch) { var cloneCallback; // Resultant callback var tmpSubDir; // Temporary sub-directory var tmpDir; // Temporary directory var checkoutBranch; // Branch to checkout checkoutBranch = branch || 'master'; tmpSubDir = 'tmp_cordova_git_' + process.pid + '_' + (new Date()).valueOf(); tmpDir = path.join(util.libDirectory, 'tmp', tmpSubDir); shell.rm('-rf', tmpDir); shell.mkdir('-p', tmpDir); cloneCallback = git.clone(gitURL, checkoutBranch, tmpDir); // Callback for Git clone cloneCallback.then( function() { return tmpDir; }, function (err) { shell.rm('-rf', tmpDir); return Q.reject(err); } ); return cloneCallback; } exports.gitClone = gitClone; exports.npmFetch = npmFetch; exports.npmCacheAdd = npmCacheAdd;