![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/cartforge.co/vendor/magento/module-deploy/Console/ |
<?php /** * Copyright © Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Deploy\Console; use Magento\Deploy\Process\Queue; use Symfony\Component\Console\Input\InputArgument; use Symfony\Component\Console\Input\InputOption; /** * Static Content Deployment Options helper * * This class contains the list options and their related constants, * which can be used for static content deployment CLI command */ class DeployStaticOptions { /** * Key for area option */ const AREA = 'area'; /** * Key for exclude area option */ const EXCLUDE_AREA = 'exclude-area'; /** * Key for theme option */ const THEME = 'theme'; /** * Key for exclude theme option */ const EXCLUDE_THEME = 'exclude-theme'; /** * Key for languages parameter */ const LANGUAGE = 'language'; /** * Key for exclude languages parameter */ const EXCLUDE_LANGUAGE = 'exclude-language'; /** * Use specific deployment strategy */ const STRATEGY = 'strategy'; /** * Key for jobs option */ const JOBS_AMOUNT = 'jobs'; /** * Key for max execution time option */ const MAX_EXECUTION_TIME = 'max-execution-time'; /** * Force run of static deploy */ const FORCE_RUN = 'force'; /** * Symlink locale if it not customized */ const SYMLINK_LOCALE = 'symlink-locale'; /** * Key for javascript option */ const NO_JAVASCRIPT = 'no-javascript'; /** * Key for js-bundle option */ const NO_JS_BUNDLE = 'no-js-bundle'; /** * Key for css option */ const NO_CSS = 'no-css'; /** * Key for fonts option */ const NO_FONTS = 'no-fonts'; /** * Key for images option */ const NO_IMAGES = 'no-images'; /** * Key for html option */ const NO_HTML = 'no-html'; /** * Key for html option */ const NO_HTML_MINIFY = 'no-html-minify'; /** * Key for misc option */ const NO_MISC = 'no-misc'; /** * Key for dry-run option * * @deprecated since 2.2.0 */ const DRY_RUN = 'dry-run'; /** * Key for less option * * @deprecated since 2.2.0 */ const NO_LESS = 'no-less'; /** * Key for not compiling parent themes */ const NO_PARENT = 'no-parent'; const DEFAULT_JOBS_AMOUNT = 0; /** * Key for languages parameter */ const LANGUAGES_ARGUMENT = 'languages'; /** * Static content version */ const CONTENT_VERSION = 'content-version'; /** * Key for refresh content version only mode */ const REFRESH_CONTENT_VERSION_ONLY = 'refresh-content-version-only'; /** * Deploy static command options list * * @return array */ public function getOptionsList() { return array_merge($this->getBasicOptions(), $this->getSkipOptions()); } /** * Basic options * * @return array * @SuppressWarnings(PHPMD.ExcessiveMethodLength) */ private function getBasicOptions() { return [ new InputOption( self::FORCE_RUN, '-f', InputOption::VALUE_NONE, 'Deploy files in any mode.' ), new InputOption( self::STRATEGY, '-s', InputOption::VALUE_OPTIONAL, 'Deploy files using specified strategy.', 'quick' ), new InputOption( self::AREA, '-a', InputOption::VALUE_IS_ARRAY | InputOption::VALUE_OPTIONAL, 'Generate files only for the specified areas.', ['all'] ), new InputOption( self::EXCLUDE_AREA, null, InputOption::VALUE_IS_ARRAY | InputOption::VALUE_OPTIONAL, 'Do not generate files for the specified areas.', ['none'] ), new InputOption( self::THEME, '-t', InputOption::VALUE_IS_ARRAY | InputOption::VALUE_OPTIONAL, 'Generate static view files for only the specified themes.', ['all'] ), new InputOption( self::EXCLUDE_THEME, null, InputOption::VALUE_IS_ARRAY | InputOption::VALUE_OPTIONAL, 'Do not generate files for the specified themes.', ['none'] ), new InputOption( self::LANGUAGE, '-l', InputOption::VALUE_IS_ARRAY | InputOption::VALUE_OPTIONAL, 'Generate files only for the specified languages.', ['all'] ), new InputOption( self::EXCLUDE_LANGUAGE, null, InputOption::VALUE_IS_ARRAY | InputOption::VALUE_OPTIONAL, 'Do not generate files for the specified languages.', ['none'] ), new InputOption( self::JOBS_AMOUNT, '-j', InputOption::VALUE_OPTIONAL, 'Enable parallel processing using the specified number of jobs.', self::DEFAULT_JOBS_AMOUNT ), new InputOption( self::MAX_EXECUTION_TIME, null, InputOption::VALUE_OPTIONAL, 'The maximum expected execution time of deployment static process (in seconds).', Queue::DEFAULT_MAX_EXEC_TIME ), new InputOption( self::SYMLINK_LOCALE, null, InputOption::VALUE_NONE, 'Create symlinks for the files of those locales, which are passed for deployment, ' . 'but have no customizations.' ), new InputOption( self::CONTENT_VERSION, null, InputArgument::OPTIONAL, 'Custom version of static content can be used if running deployment on multiple nodes ' . 'to ensure that static content version is identical and caching works properly.' ), new InputOption( self::REFRESH_CONTENT_VERSION_ONLY, null, InputOption::VALUE_NONE, 'Refreshing the version of static content only can be used to refresh static content ' . 'in browser cache and CDN cache.' ), new InputArgument( self::LANGUAGES_ARGUMENT, InputArgument::IS_ARRAY, 'Space-separated list of ISO-639 language codes for which to output static view files.' ), ]; } /** * Additional options * * Used to re-deploy specific types of static files * * @return array */ private function getSkipOptions() { return [ new InputOption( self::NO_JAVASCRIPT, null, InputOption::VALUE_NONE, 'Do not deploy JavaScript files.' ), new InputOption( self::NO_JS_BUNDLE, null, InputOption::VALUE_NONE, 'Do not deploy JavaScript bundle files.' ), new InputOption( self::NO_CSS, null, InputOption::VALUE_NONE, 'Do not deploy CSS files.' ), new InputOption( self::NO_LESS, null, InputOption::VALUE_NONE, 'Do not deploy LESS files.' ), new InputOption( self::NO_IMAGES, null, InputOption::VALUE_NONE, 'Do not deploy images.' ), new InputOption( self::NO_FONTS, null, InputOption::VALUE_NONE, 'Do not deploy font files.' ), new InputOption( self::NO_HTML, null, InputOption::VALUE_NONE, 'Do not deploy HTML files.' ), new InputOption( self::NO_MISC, null, InputOption::VALUE_NONE, 'Do not deploy files of other types (.md, .jbf, .csv, etc.).' ), new InputOption( self::NO_HTML_MINIFY, null, InputOption::VALUE_NONE, 'Do not minify HTML files.' ), new InputOption( self::NO_PARENT, null, InputOption::VALUE_NONE, 'Do not compile parent themes. Supported only in quick and standard strategies.' ), ]; } }