| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158 |
- "use strict";
- var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
- if (k2 === undefined) k2 = k;
- var desc = Object.getOwnPropertyDescriptor(m, k);
- if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
- desc = { enumerable: true, get: function() { return m[k]; } };
- }
- Object.defineProperty(o, k2, desc);
- }) : (function(o, m, k, k2) {
- if (k2 === undefined) k2 = k;
- o[k2] = m[k];
- }));
- var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
- Object.defineProperty(o, "default", { enumerable: true, value: v });
- }) : function(o, v) {
- o["default"] = v;
- });
- var __importStar = (this && this.__importStar) || function (mod) {
- if (mod && mod.__esModule) return mod;
- var result = {};
- if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
- __setModuleDefault(result, mod);
- return result;
- };
- Object.defineProperty(exports, "__esModule", { value: true });
- exports.AddCommand = void 0;
- const color_1 = require("../../lib/color");
- const executor_1 = require("../../lib/executor");
- const core_1 = require("./core");
- class AddCommand extends core_1.LiveUpdatesConfCommand {
- async getMetadata() {
- return {
- name: 'add',
- type: 'project',
- groups: ["paid" /* MetadataGroup.PAID */],
- summary: 'Adds Ionic Live Updates plugin to the project',
- description: `
- This command adds the Ionic Live Updates plugin (${(0, color_1.input)('cordova-plugin-ionic')}) for both Capacitor and Cordova projects.
- For Capacitor projects it runs all the steps necessary to install the plugin, sync with the native projects and add the configuration to the proper iOS and Android configuration files.
- For Cordova projects it just takes care of running the proper Cordova CLI command with the submitted parameters.
- `,
- exampleCommands: [
- '',
- '--app-id=abcd1234 --channel-name="Master" --update-method=background',
- '--max-store=2 --min-background-duration=30',
- '--app-id=abcd1234 --channel-name="Master" --update-method=background --max-store=2 --min-background-duration=30',
- ],
- options: [
- {
- name: 'app-id',
- summary: 'Your Appflow app ID',
- type: String,
- spec: { value: 'id' },
- },
- {
- name: 'channel-name',
- summary: 'The channel to check for updates from',
- type: String,
- spec: { value: 'name' },
- },
- {
- name: 'update-method',
- summary: 'The update method that dictates the behavior of the plugin',
- type: String,
- spec: { value: 'name' },
- },
- {
- name: 'max-store',
- summary: 'The maximum number of downloaded versions to store on the device',
- type: String,
- groups: ["advanced" /* MetadataGroup.ADVANCED */],
- spec: { value: 'quantity' },
- default: '2',
- },
- {
- name: 'min-background-duration',
- summary: 'The minimum duration after which the app checks for an update in the background',
- type: String,
- groups: ["advanced" /* MetadataGroup.ADVANCED */],
- spec: { value: 'seconds' },
- default: '30',
- },
- {
- name: 'update-api',
- summary: 'The location of the Appflow API',
- type: String,
- groups: ["hidden" /* MetadataGroup.HIDDEN */],
- spec: { value: 'url' },
- default: 'https://api.ionicjs.com',
- },
- ],
- };
- }
- buildCordovaLiveUpdateOptions(options) {
- const optionsToCordova = {
- 'app-id': 'APP_ID',
- 'channel-name': 'CHANNEL_NAME',
- 'update-method': 'UPDATE_METHOD',
- 'max-store': 'MAX_STORE',
- 'min-background-duration': 'MIN_BACKGROUND_DURATION',
- 'update-api': 'UPDATE_API',
- };
- const outputOptions = [];
- for (const [optionKey, cordovaKey] of Object.entries(optionsToCordova)) {
- if (options[optionKey]) {
- outputOptions.push(`--variable`);
- outputOptions.push(`${cordovaKey}=${options[optionKey]}`);
- }
- }
- return outputOptions;
- }
- async preRun(inputs, options) {
- // check if there are native integration installed
- await this.requireNativeIntegration();
- await this.preRunCheckInputs(options);
- }
- async addPlugin(options, runinfo, integration) {
- if (integration === 'cordova') {
- let addPluginCommand = ['cordova', 'plugin', 'add', 'cordova-plugin-ionic'];
- const userOptions = this.buildCordovaLiveUpdateOptions(options);
- if (userOptions) {
- addPluginCommand = addPluginCommand.concat(userOptions);
- }
- await (0, executor_1.runCommand)(runinfo, addPluginCommand);
- }
- if (integration === 'capacitor') {
- const { pkgManagerArgs } = await Promise.resolve().then(() => __importStar(require('../../lib/utils/npm')));
- const [installer, ...installerArgs] = await pkgManagerArgs(this.env.config.get('npmClient'), { command: 'install', pkg: 'cordova-plugin-ionic' });
- // install the plugin with npm
- await this.env.shell.run(installer, installerArgs, { stdio: 'inherit' });
- }
- }
- async run(inputs, options, runinfo) {
- const integration = await this.getAppIntegration();
- // check if it is already installed
- const alreadyAdded = await this.checkLiveUpdatesInstalled();
- if (!alreadyAdded) {
- await this.addPlugin(options, runinfo, integration);
- }
- else {
- this.env.log.warn("Live Updates plugin already added. Reconfiguring only.");
- }
- if (integration === 'capacitor') {
- // generate the manifest
- await (0, executor_1.runCommand)(runinfo, ['live-update', 'manifest']);
- // run capacitor sync
- await (0, executor_1.runCommand)(runinfo, ['capacitor', 'sync']);
- // update the ios project if present
- await this.addConfToIosPlist(options);
- // update the android project if present
- await this.addConfToAndroidString(options);
- }
- this.env.log.ok(`Ionic Live Updates plugin added to the project!\n`);
- }
- }
- exports.AddCommand = AddCommand;
|