| @@ -4,9 +4,9 @@ | ||
| 4 | 4 | * |
| 5 | 5 | * This file extends the WP-CLI and provides a set of SubCommands to Control your |
| 6 | 6 | * Child Sites that are added to the MainWP Dashboard. |
| 7 | 7 | * |
| 8 | - * @devtodo: allow to add or remove child sites | |
| 8 | + * @todo: allow to add or remove child sites | |
| 9 | 9 | * @package MainWP/Dashboard |
| 10 | 10 | */ |
| 11 | 11 | |
| 12 | 12 | namespace MainWP\Dashboard; |
| @@ -12,9 +12,9 @@ | ||
| 12 | 12 | namespace MainWP\Dashboard; |
| 13 | 13 | |
| 14 | 14 | // Exit if access directly. |
| 15 | 15 | if ( ! defined( 'WP_CLI' ) ) { |
| 16 | - return; // NOSONAR - jump to avoid CLI. | |
| 16 | + return; | |
| 17 | 17 | } |
| 18 | 18 | |
| 19 | 19 | /** |
| 20 | 20 | * Class MainWP_WP_CLI_Command |
| @@ -22,838 +22,812 @@ | ||
| 22 | 22 | * Manage all child sites added to the MainWP Dashboard. |
| 23 | 23 | * |
| 24 | 24 | * @package MainWP\Dashboard |
| 25 | 25 | */ |
| 26 | -class MainWP_WP_CLI_Command extends \WP_CLI_Command { // phpcs:ignore Generic.Classes.OpeningBraceSameLine.ContentAfterBrace -- NOSONAR. | |
| 26 | +class MainWP_WP_CLI_Command extends \WP_CLI_Command { | |
| 27 | 27 | |
| 28 | - /** | |
| 29 | - * Method init() | |
| 30 | - * | |
| 31 | - * Initiate the MainWP CLI after all Plugins have loaded. | |
| 32 | - */ | |
| 33 | - public static function init() { | |
| 34 | - add_action( 'plugins_loaded', array( static::class, 'init_wpcli_commands' ), 99999 ); | |
| 35 | - } | |
| 28 | + /** | |
| 29 | + * Method init() | |
| 30 | + * | |
| 31 | + * Initiate the MainWP CLI after all Plugins have loaded. | |
| 32 | + */ | |
| 33 | + public static function init() { | |
| 34 | + add_action( 'plugins_loaded', array( self::class, 'init_wpcli_commands' ), 99999 ); | |
| 35 | + } | |
| 36 | 36 | |
| 37 | - /** | |
| 38 | - * Method init_wpcli_commands | |
| 39 | - * | |
| 40 | - * Adds the MainWP WP CLI Commands via WP_CLI::add_command | |
| 41 | - */ | |
| 42 | - public static function init_wpcli_commands() { | |
| 43 | - \WP_CLI::add_command( 'mainwp', static::class ); | |
| 44 | - } | |
| 37 | + /** | |
| 38 | + * Method init_wpcli_commands | |
| 39 | + * | |
| 40 | + * Adds the MainWP WP CLI Commands via WP_CLI::add_command | |
| 41 | + */ | |
| 42 | + public static function init_wpcli_commands() { | |
| 43 | + \WP_CLI::add_command( 'mainwp', self::class ); | |
| 44 | + } | |
| 45 | 45 | |
| 46 | - /** | |
| 47 | - * List information about added child sites. | |
| 48 | - * | |
| 49 | - * ## OPTIONS | |
| 50 | - * | |
| 51 | - * [--list] | |
| 52 | - * : Get a list of all child sites | |
| 53 | - * | |
| 54 | - * [--count] | |
| 55 | - * : If set, count child sites. | |
| 56 | - * | |
| 57 | - * | |
| 58 | - * ## EXAMPLES | |
| 59 | - * | |
| 60 | - * wp mainwp sites --list | |
| 61 | - * wp mainwp sites --all-sites-count | |
| 62 | - * | |
| 63 | - * ## Synopsis [--list] [--all-sites-count] | |
| 64 | - * | |
| 65 | - * @param array $args Function arguments. | |
| 66 | - * @param array $assoc_args Function associate arguments. | |
| 67 | - * | |
| 68 | - * @uses \MainWP\Dashboard\MainWP_DB::query() | |
| 69 | - * @uses \MainWP\Dashboard\MainWP_DB::get_sql_websites_for_current_user() | |
| 70 | - * @uses \MainWP\Dashboard\MainWP_DB::fetch_object() | |
| 71 | - * @uses \MainWP\Dashboard\MainWP_DB::free_result() | |
| 72 | - * @uses \MainWP\Dashboard\MainWP_DB::data_seek() | |
| 73 | - */ | |
| 74 | - public function sites( $args, $assoc_args ) { | |
| 46 | + /** | |
| 47 | + * List information about added child sites. | |
| 48 | + * | |
| 49 | + * ## OPTIONS | |
| 50 | + * | |
| 51 | + * [--list] | |
| 52 | + * : Get a list of all child sites | |
| 53 | + * | |
| 54 | + * [--count] | |
| 55 | + * : If set, count child sites. | |
| 56 | + * | |
| 57 | + * | |
| 58 | + * ## EXAMPLES | |
| 59 | + * | |
| 60 | + * wp mainwp sites --list | |
| 61 | + * wp mainwp sites --all-sites-count | |
| 62 | + * | |
| 63 | + * ## Synopsis [--list] [--all-sites-count] | |
| 64 | + * | |
| 65 | + * @param array $args Function arguments. | |
| 66 | + * @param array $assoc_args Function associate arguments. | |
| 67 | + * | |
| 68 | + * @uses \MainWP\Dashboard\MainWP_DB::query() | |
| 69 | + * @uses \MainWP\Dashboard\MainWP_DB::get_sql_websites_for_current_user() | |
| 70 | + * @uses \MainWP\Dashboard\MainWP_DB::fetch_object() | |
| 71 | + * @uses \MainWP\Dashboard\MainWP_DB::free_result() | |
| 72 | + * @uses \MainWP\Dashboard\MainWP_DB::data_seek() | |
| 73 | + */ | |
| 74 | + public function sites( $args, $assoc_args ) { | |
| 75 | 75 | |
| 76 | - // support new mainwp sites cli commands. | |
| 77 | - $handle = MainWP_WP_CLI_Handle::get_assoc_args_commands( 'sites', $assoc_args ); | |
| 78 | - if ( ! empty( $handle ) ) { | |
| 79 | - MainWP_WP_CLI_Handle::handle_cli_callback( 'sites', $args, $assoc_args ); | |
| 80 | - return; | |
| 81 | - } | |
| 76 | + // support new mainwp sites cli commands. | |
| 77 | + $handle = MainWP_WP_CLI_Handle::get_assoc_args_commands( 'sites', $assoc_args ); | |
| 78 | + if ( ! empty( $handle ) ) { | |
| 79 | + MainWP_WP_CLI_Handle::handle_cli_callback( 'sites', $args, $assoc_args ); | |
| 80 | + return; | |
| 81 | + } | |
| 82 | 82 | |
| 83 | - $websites = MainWP_DB::instance()->query( MainWP_DB::instance()->get_sql_websites_for_current_user( false, null, 'wp.url', false, false, null, true ) ); | |
| 83 | + $websites = MainWP_DB::instance()->query( MainWP_DB::instance()->get_sql_websites_for_current_user( false, null, 'wp.url', false, false, null, true ) ); | |
| 84 | 84 | |
| 85 | - $idLength = strlen( 'id' ); | |
| 86 | - $nameLength = strlen( 'name' ); | |
| 87 | - $urlLength = strlen( 'url' ); | |
| 88 | - $versionLength = strlen( 'version' ); | |
| 89 | - while ( $websites && ( $website = MainWP_DB::fetch_object( $websites ) ) ) { | |
| 90 | - if ( $idLength < strlen( $website->id ) ) { | |
| 91 | - $idLength = strlen( $website->id ); | |
| 92 | - } | |
| 93 | - if ( $nameLength < strlen( $website->name ) ) { | |
| 94 | - $nameLength = strlen( $website->name ); | |
| 95 | - } | |
| 96 | - if ( $urlLength < strlen( $website->url ) ) { | |
| 97 | - $urlLength = strlen( $website->url ); | |
| 98 | - } | |
| 99 | - if ( $versionLength < strlen( $website->version ) ) { | |
| 100 | - $versionLength = strlen( $website->version ); | |
| 101 | - } | |
| 102 | - } | |
| 103 | - MainWP_DB::data_seek( $websites, 0 ); | |
| 85 | + $idLength = strlen( 'id' ); | |
| 86 | + $nameLength = strlen( 'name' ); | |
| 87 | + $urlLength = strlen( 'url' ); | |
| 88 | + $versionLength = strlen( 'version' ); | |
| 89 | + while ( $websites && ( $website = MainWP_DB::fetch_object( $websites ) ) ) { | |
| 90 | + if ( $idLength < strlen( $website->id ) ) { | |
| 91 | + $idLength = strlen( $website->id ); | |
| 92 | + } | |
| 93 | + if ( $nameLength < strlen( $website->name ) ) { | |
| 94 | + $nameLength = strlen( $website->name ); | |
| 95 | + } | |
| 96 | + if ( $urlLength < strlen( $website->url ) ) { | |
| 97 | + $urlLength = strlen( $website->url ); | |
| 98 | + } | |
| 99 | + if ( $versionLength < strlen( $website->version ) ) { | |
| 100 | + $versionLength = strlen( $website->version ); | |
| 101 | + } | |
| 102 | + } | |
| 103 | + MainWP_DB::data_seek( $websites, 0 ); | |
| 104 | 104 | |
| 105 | - \WP_CLI::line( sprintf( "+%'--" . ( $idLength + 2 ) . "s+%'--" . ( $nameLength + 2 ) . "s+%'--" . ( $urlLength + 2 ) . "s+%'--" . ( $versionLength + 2 ) . 's+', '', '', '', '' ) ); | |
| 106 | - \WP_CLI::line( sprintf( '| %-' . $idLength . 's | %-' . $nameLength . 's | %-' . $urlLength . 's | %-' . $versionLength . 's |', 'id', 'name', 'url', 'version' ) ); | |
| 107 | - \WP_CLI::line( sprintf( "+%'--" . ( $idLength + 2 ) . "s+%'--" . ( $nameLength + 2 ) . "s+%'--" . ( $urlLength + 2 ) . "s+%'--" . ( $versionLength + 2 ) . 's+', '', '', '', '' ) ); | |
| 105 | + \WP_CLI::line( sprintf( "+%'--" . ( $idLength + 2 ) . "s+%'--" . ( $nameLength + 2 ) . "s+%'--" . ( $urlLength + 2 ) . "s+%'--" . ( $versionLength + 2 ) . 's+', '', '', '', '' ) ); | |
| 106 | + \WP_CLI::line( sprintf( '| %-' . $idLength . 's | %-' . $nameLength . 's | %-' . $urlLength . 's | %-' . $versionLength . 's |', 'id', 'name', 'url', 'version' ) ); | |
| 107 | + \WP_CLI::line( sprintf( "+%'--" . ( $idLength + 2 ) . "s+%'--" . ( $nameLength + 2 ) . "s+%'--" . ( $urlLength + 2 ) . "s+%'--" . ( $versionLength + 2 ) . 's+', '', '', '', '' ) ); | |
| 108 | 108 | |
| 109 | - while ( $websites && ( $website = MainWP_DB::fetch_object( $websites ) ) ) { | |
| 110 | - \WP_CLI::line( sprintf( '| %-' . $idLength . 's | %-' . $nameLength . 's | %-' . $urlLength . 's | %-' . $versionLength . 's |', $website->id, $website->name, $website->url, $website->version ) ); | |
| 111 | - } | |
| 109 | + while ( $websites && ( $website = MainWP_DB::fetch_object( $websites ) ) ) { | |
| 110 | + \WP_CLI::line( sprintf( '| %-' . $idLength . 's | %-' . $nameLength . 's | %-' . $urlLength . 's | %-' . $versionLength . 's |', $website->id, $website->name, $website->url, $website->version ) ); | |
| 111 | + } | |
| 112 | 112 | |
| 113 | - \WP_CLI::line( sprintf( "+%'--" . ( $idLength + 2 ) . "s+%'--" . ( $nameLength + 2 ) . "s+%'--" . ( $urlLength + 2 ) . "s+%'--" . ( $versionLength + 2 ) . 's+', '', '', '', '' ) ); | |
| 114 | - MainWP_DB::free_result( $websites ); | |
| 115 | - } | |
| 113 | + \WP_CLI::line( sprintf( "+%'--" . ( $idLength + 2 ) . "s+%'--" . ( $nameLength + 2 ) . "s+%'--" . ( $urlLength + 2 ) . "s+%'--" . ( $versionLength + 2 ) . 's+', '', '', '', '' ) ); | |
| 114 | + MainWP_DB::free_result( $websites ); | |
| 115 | + } | |
| 116 | 116 | |
| 117 | - /** | |
| 118 | - * Site commands. | |
| 119 | - * | |
| 120 | - * ## OPTIONS | |
| 121 | - * | |
| 122 | - * [--site] | |
| 123 | - * : Get site data | |
| 124 | - * | |
| 125 | - * [--site-info] | |
| 126 | - * : If set, get site info. | |
| 127 | - * | |
| 128 | - * | |
| 129 | - * ## EXAMPLES | |
| 130 | - * | |
| 131 | - * wp mainwp site --site [<websiteid>] | |
| 132 | - * wp mainwp site --site-info [<websiteid>] | |
| 133 | - * | |
| 134 | - * ## Synopsis [--site] [--site-info] [...] | |
| 135 | - * | |
| 136 | - * @param array $args Function arguments. | |
| 137 | - * @param array $assoc_args Function associate arguments. | |
| 138 | - */ | |
| 139 | - public function site( $args, $assoc_args ) { | |
| 140 | - MainWP_WP_CLI_Handle::handle_cli_callback( 'site', $args, $assoc_args ); | |
| 141 | - } | |
| 117 | + /** | |
| 118 | + * Site commands. | |
| 119 | + * | |
| 120 | + * ## OPTIONS | |
| 121 | + * | |
| 122 | + * [--site] | |
| 123 | + * : Get site data | |
| 124 | + * | |
| 125 | + * [--site-info] | |
| 126 | + * : If set, get site info. | |
| 127 | + * | |
| 128 | + * | |
| 129 | + * ## EXAMPLES | |
| 130 | + * | |
| 131 | + * wp mainwp site --site [<websiteid>] | |
| 132 | + * wp mainwp site --site-info [<websiteid>] | |
| 133 | + * | |
| 134 | + * ## Synopsis [--site] [--site-info] [...] | |
| 135 | + * | |
| 136 | + * @param array $args Function arguments. | |
| 137 | + * @param array $assoc_args Function associate arguments. | |
| 138 | + */ | |
| 139 | + public function site( $args, $assoc_args ) { | |
| 140 | + MainWP_WP_CLI_Handle::handle_cli_callback( 'site', $args, $assoc_args ); | |
| 141 | + } | |
| 142 | 142 | |
| 143 | + /** | |
| 144 | + * Updates commands. | |
| 145 | + * | |
| 146 | + * ## OPTIONS | |
| 147 | + * | |
| 148 | + * [--available-updates] | |
| 149 | + * : Get available updates | |
| 150 | + * | |
| 151 | + * [--ignored-plugins-updates] | |
| 152 | + * : If set, get ignored plugins updates. | |
| 153 | + * | |
| 154 | + * | |
| 155 | + * ## EXAMPLES | |
| 156 | + * | |
| 157 | + * wp mainwp updates --available-updates | |
| 158 | + * wp mainwp updates --ignored-plugins-updates | |
| 159 | + * | |
| 160 | + * ## Synopsis [--available-updates] [--ignored-plugins-updates] [...] | |
| 161 | + * | |
| 162 | + * @param array $args Function arguments. | |
| 163 | + * @param array $assoc_args Function associate arguments. | |
| 164 | + */ | |
| 165 | + public function updates( $args, $assoc_args ) { | |
| 166 | + MainWP_WP_CLI_Handle::handle_cli_callback( 'updates', $args, $assoc_args ); | |
| 167 | + } | |
| 143 | 168 | |
| 144 | - /** | |
| 145 | - * Updates commands. | |
| 146 | - * | |
| 147 | - * ## OPTIONS | |
| 148 | - * | |
| 149 | - * [--available-updates <websiteid>] | |
| 150 | - * : Get available updates | |
| 151 | - * | |
| 152 | - * [--ignored-plugins-updates <websiteid>] | |
| 153 | - * : If set, get ignored plugins updates. | |
| 154 | - * | |
| 155 | - * [--site-ignored-plugins-updates <websiteid>] | |
| 156 | - * : If set, get ignored plugins updates of site. | |
| 157 | - * | |
| 158 | - * [--ignored-themes-updates <websiteid>] | |
| 159 | - * : If set, get ignored themes updates. | |
| 160 | - * | |
| 161 | - * [--site-ignored-themes-updates <websiteid>] | |
| 162 | - * : If set, get ignored themes updates of site. | |
| 163 | - * | |
| 164 | - * [--ignore-updates --type=[type] --slug=[slug]] | |
| 165 | - * : If set, ignored updates. | |
| 166 | - * | |
| 167 | - * [--ignore-update <websiteid> --type=[type] --slug=[slug]] | |
| 168 | - * : If set, ignored update. | |
| 169 | - * | |
| 170 | - * [--unignore-updates --type=[type] --slug=[slug]] | |
| 171 | - * : If set, unignore updates. | |
| 172 | - * | |
| 173 | - * [--unignore-update <websiteid> --type=[type] --slug=[slug]] | |
| 174 | - * : If set, unignore update. | |
| 175 | - * | |
| 176 | - * | |
| 177 | - * ## EXAMPLES | |
| 178 | - * | |
| 179 | - * wp mainwp updates --available-updates | |
| 180 | - * wp mainwp updates --ignored-plugins-updates | |
| 181 | - * wp mainwp updates --site-ignored-plugins-updates 3 | |
| 182 | - * | |
| 183 | - * ## Synopsis [--available-updates] [--ignored-plugins-updates] [--site-ignored-plugins-updates] [...] | |
| 184 | - * | |
| 185 | - * @param array $args Function arguments. | |
| 186 | - * @param array $assoc_args Function associate arguments. | |
| 187 | - */ | |
| 188 | - public function updates( $args, $assoc_args ) { | |
| 189 | - MainWP_WP_CLI_Handle::handle_cli_callback( 'updates', $args, $assoc_args ); | |
| 190 | - } | |
| 169 | + /** | |
| 170 | + * Sync Data with Child Sites | |
| 171 | + * | |
| 172 | + * ## OPTIONS | |
| 173 | + * | |
| 174 | + * [<websiteid>] | |
| 175 | + * : The id (or ids, comma separated) of the child sites that need to be synced. | |
| 176 | + * | |
| 177 | + * [--all] | |
| 178 | + * : If set, all child sites will be synced. | |
| 179 | + * | |
| 180 | + * ## EXAMPLES | |
| 181 | + * | |
| 182 | + * wp mainwp sync 2,5 | |
| 183 | + * wp mainwp sync --all | |
| 184 | + * | |
| 185 | + * ## Synopsis [<websiteid>] [--all] | |
| 186 | + * | |
| 187 | + * @param array $args Function arguments. | |
| 188 | + * @param array $assoc_args Function associate arguments. | |
| 189 | + * | |
| 190 | + * @uses \MainWP\Dashboard\MainWP_Error_Helper::get_console_error_message() | |
| 191 | + * @uses \MainWP\Dashboard\MainWP_DB::query() | |
| 192 | + * @uses \MainWP\Dashboard\MainWP_DB::get_sql_websites_for_current_user() | |
| 193 | + * @uses \MainWP\Dashboard\MainWP_DB::fetch_object() | |
| 194 | + * @uses \MainWP\Dashboard\MainWP_DB::free_result() | |
| 195 | + * @uses \MainWP\Dashboard\MainWP_Sync::sync_site() | |
| 196 | + */ | |
| 197 | + public function sync( $args, $assoc_args ) { | |
| 198 | + $sites = array(); | |
| 199 | + if ( count( $args ) > 0 ) { | |
| 200 | + $args_exploded = explode( ',', $args[0] ); | |
| 201 | + foreach ( $args_exploded as $arg ) { | |
| 202 | + if ( ! is_numeric( trim( $arg ) ) ) { | |
| 203 | + \WP_CLI::error( 'Child site ids should be numeric.' ); | |
| 204 | + } | |
| 191 | 205 | |
| 192 | - /** | |
| 193 | - * Sync Data with Child Sites | |
| 194 | - * | |
| 195 | - * ## OPTIONS | |
| 196 | - * | |
| 197 | - * [<websiteid>] | |
| 198 | - * : The id (or ids, comma separated) of the child sites that need to be synced. | |
| 199 | - * | |
| 200 | - * [--all] | |
| 201 | - * : If set, all child sites will be synced. | |
| 202 | - * | |
| 203 | - * ## EXAMPLES | |
| 204 | - * | |
| 205 | - * wp mainwp sync 2,5 | |
| 206 | - * wp mainwp sync --all | |
| 207 | - * | |
| 208 | - * ## Synopsis [<websiteid>] [--all] | |
| 209 | - * | |
| 210 | - * @param array $args Function arguments. | |
| 211 | - * @param array $assoc_args Function associate arguments. | |
| 212 | - * | |
| 213 | - * @uses \MainWP\Dashboard\MainWP_Error_Helper::get_console_error_message() | |
| 214 | - * @uses \MainWP\Dashboard\MainWP_DB::query() | |
| 215 | - * @uses \MainWP\Dashboard\MainWP_DB::get_sql_websites_for_current_user() | |
| 216 | - * @uses \MainWP\Dashboard\MainWP_DB::fetch_object() | |
| 217 | - * @uses \MainWP\Dashboard\MainWP_DB::free_result() | |
| 218 | - * @uses \MainWP\Dashboard\MainWP_Sync::sync_site() | |
| 219 | - */ | |
| 220 | - public function sync( $args, $assoc_args ) { | |
| 221 | - $sites = array(); | |
| 222 | - if ( ! empty( $args ) ) { | |
| 223 | - $args_exploded = explode( ',', $args[0] ); | |
| 224 | - foreach ( $args_exploded as $arg ) { | |
| 225 | - if ( ! is_numeric( trim( $arg ) ) ) { | |
| 226 | - \WP_CLI::error( 'Child site ids should be numeric.' ); | |
| 227 | - } | |
| 206 | + $sites[] = trim( $arg ); | |
| 207 | + } | |
| 208 | + } | |
| 228 | 209 | |
| 229 | - $sites[] = trim( $arg ); | |
| 230 | - } | |
| 231 | - } | |
| 210 | + if ( ( count( $sites ) == 0 ) && ( ! isset( $assoc_args['all'] ) ) ) { | |
| 211 | + \WP_CLI::error( 'Please specify one or more child sites, or use --all.' ); | |
| 212 | + } | |
| 213 | + MainWP_WP_CLI_Handle::handle_sync_sites( $args, $assoc_args ); | |
| 214 | + } | |
| 232 | 215 | |
| 233 | - if ( is_array( $assoc_args ) && isset( $assoc_args['all'] ) ) { | |
| 234 | - update_option( 'mainwp_last_synced_all_sites', time() ); | |
| 235 | - } | |
| 216 | + /** | |
| 217 | + * Reconnect with Child Sites | |
| 218 | + * | |
| 219 | + * ## OPTIONS | |
| 220 | + * | |
| 221 | + * [<websiteid>] | |
| 222 | + * : The id (or ids, comma separated) of the child sites that need to be reconnect. | |
| 223 | + * | |
| 224 | + * ## EXAMPLES | |
| 225 | + * | |
| 226 | + * wp mainwp reconnect 2,5 | |
| 227 | + * | |
| 228 | + * ## Synopsis [<websiteid>] | |
| 229 | + * | |
| 230 | + * @param array $args Function arguments. | |
| 231 | + * @param array $assoc_args Function associate arguments. | |
| 232 | + * | |
| 233 | + * @uses \MainWP\Dashboard\MainWP_Error_Helper::get_console_error_message() | |
| 234 | + * @uses \MainWP\Dashboard\MainWP_DB::query() | |
| 235 | + * @uses \MainWP\Dashboard\MainWP_DB::get_sql_websites_for_current_user() | |
| 236 | + * @uses \MainWP\Dashboard\MainWP_DB::fetch_object() | |
| 237 | + * @uses \MainWP\Dashboard\MainWP_DB::free_result() | |
| 238 | + * @uses \MainWP\Dashboard\MainWP_Manage_Sites_View::m_reconnect_site() | |
| 239 | + */ | |
| 240 | + public function reconnect( $args, $assoc_args ) { | |
| 241 | + $sites = array(); | |
| 242 | + if ( 0 < count( $args ) ) { | |
| 243 | + $args_exploded = explode( ',', $args[0] ); | |
| 244 | + foreach ( $args_exploded as $arg ) { | |
| 245 | + if ( ! is_numeric( trim( $arg ) ) ) { | |
| 246 | + \WP_CLI::error( 'Child site ids should be numeric.' ); | |
| 247 | + } | |
| 236 | 248 | |
| 237 | - if ( empty( $sites ) && ( ! isset( $assoc_args['all'] ) ) ) { | |
| 238 | - \WP_CLI::error( 'Please specify one or more child sites, or use --all.' ); | |
| 239 | - } | |
| 240 | - MainWP_WP_CLI_Handle::handle_sync_sites( $args, $assoc_args ); | |
| 241 | - } | |
| 249 | + $sites[] = trim( $arg ); | |
| 250 | + } | |
| 251 | + } | |
| 242 | 252 | |
| 243 | - /** | |
| 244 | - * Reconnect with Child Sites | |
| 245 | - * | |
| 246 | - * ## OPTIONS | |
| 247 | - * | |
| 248 | - * [<websiteid>] | |
| 249 | - * : The id (or ids, comma separated) of the child sites that need to be reconnect. | |
| 250 | - * | |
| 251 | - * ## EXAMPLES | |
| 252 | - * | |
| 253 | - * wp mainwp reconnect 2,5 | |
| 254 | - * | |
| 255 | - * ## Synopsis [<websiteid>] | |
| 256 | - * | |
| 257 | - * @param array $args Function arguments. | |
| 258 | - * @param array $assoc_args Function associate arguments. | |
| 259 | - * | |
| 260 | - * @uses \MainWP\Dashboard\MainWP_Error_Helper::get_console_error_message() | |
| 261 | - * @uses \MainWP\Dashboard\MainWP_DB::query() | |
| 262 | - * @uses \MainWP\Dashboard\MainWP_DB::get_sql_websites_for_current_user() | |
| 263 | - * @uses \MainWP\Dashboard\MainWP_DB::fetch_object() | |
| 264 | - * @uses \MainWP\Dashboard\MainWP_DB::free_result() | |
| 265 | - * @uses \MainWP\Dashboard\MainWP_Manage_Sites_View::m_reconnect_site() | |
| 266 | - */ | |
| 267 | - public function reconnect( $args, $assoc_args ) { //phpcs:ignore -- NOSONAR - complex. | |
| 268 | - $sites = array(); | |
| 269 | - if ( ! empty( $args ) ) { | |
| 270 | - $args_exploded = explode( ',', $args[0] ); | |
| 271 | - foreach ( $args_exploded as $arg ) { | |
| 272 | - if ( ! is_numeric( trim( $arg ) ) ) { | |
| 273 | - \WP_CLI::error( 'Child site ids should be numeric.' ); | |
| 274 | - } | |
| 253 | + if ( count( $sites ) == 0 ) { | |
| 254 | + \WP_CLI::error( 'Please specify one or more child sites.' ); | |
| 255 | + } | |
| 275 | 256 | |
| 276 | - $sites[] = trim( $arg ); | |
| 277 | - } | |
| 278 | - } | |
| 257 | + $websites = MainWP_DB::instance()->query( MainWP_DB::instance()->get_sql_websites_for_current_user( false, null, 'wp.url', false, false, null, true ) ); | |
| 258 | + \WP_CLI::line( 'Reconnect started' ); | |
| 259 | + $warnings = 0; | |
| 260 | + $errors = 0; | |
| 261 | + while ( $websites && ( $website = MainWP_DB::fetch_object( $websites ) ) ) { | |
| 262 | + if ( ( 0 < count( $sites ) ) && ( ! in_array( $website->id, $sites, true ) ) ) { | |
| 263 | + continue; | |
| 264 | + } | |
| 265 | + \WP_CLI::line( ' -> ' . $website->name . ' (' . $website->url . ')' ); | |
| 266 | + try { | |
| 267 | + if ( MainWP_Manage_Sites_View::m_reconnect_site( $website ) ) { | |
| 268 | + \WP_CLI::success( ' Reconnected successfully' ); | |
| 269 | + } else { | |
| 270 | + \WP_CLI::warning( ' Reconnect failed' ); | |
| 271 | + $warnings++; | |
| 272 | + } | |
| 273 | + } catch ( \Exception $e ) { | |
| 274 | + \WP_CLI::error( ' Reconnect failed: ' . MainWP_Error_Helper::get_console_error_message( $e ) ); | |
| 275 | + $errors++; | |
| 276 | + } | |
| 277 | + } | |
| 278 | + MainWP_DB::free_result( $websites ); | |
| 279 | + if ( 0 < $errors ) { | |
| 280 | + \WP_CLI::error( 'Reconnect completed with errors' ); | |
| 281 | + } elseif ( 0 < $warnings ) { | |
| 282 | + \WP_CLI::warning( 'Reconnect completed with warnings' ); | |
| 283 | + } else { | |
| 284 | + \WP_CLI::success( 'Reconnect completed' ); | |
| 285 | + } | |
| 286 | + } | |
| 279 | 287 | |
| 280 | - if ( empty( $sites ) ) { | |
| 281 | - \WP_CLI::error( 'Please specify one or more child sites.' ); | |
| 282 | - } | |
| 283 | 288 | |
| 284 | - $websites = MainWP_DB::instance()->query( MainWP_DB::instance()->get_sql_websites_for_current_user( false, null, 'wp.url', false, false, null, true ) ); | |
| 285 | - \WP_CLI::line( 'Reconnect started' ); | |
| 286 | - $warnings = 0; | |
| 287 | - $errors = 0; | |
| 288 | - while ( $websites && ( $website = MainWP_DB::fetch_object( $websites ) ) ) { | |
| 289 | - if ( ( ! empty( $sites ) ) && ( ! in_array( $website->id, $sites, true ) ) ) { | |
| 290 | - continue; | |
| 291 | - } | |
| 292 | - \WP_CLI::line( ' -> ' . $website->name . ' (' . $website->url . ')' ); | |
| 293 | - try { | |
| 294 | - if ( MainWP_Manage_Sites_View::m_reconnect_site( $website ) ) { | |
| 295 | - \WP_CLI::success( ' Reconnected successfully' ); | |
| 296 | - } else { | |
| 297 | - \WP_CLI::warning( ' Reconnect failed' ); | |
| 298 | - ++$warnings; | |
| 299 | - } | |
| 300 | - } catch ( \Exception $e ) { | |
| 301 | - \WP_CLI::error( ' Reconnect failed: ' . MainWP_Error_Helper::get_console_error_message( $e ) ); | |
| 302 | - ++$errors; | |
| 303 | - } | |
| 304 | - } | |
| 305 | - MainWP_DB::free_result( $websites ); | |
| 306 | - if ( 0 < $errors ) { | |
| 307 | - \WP_CLI::error( 'Reconnect completed with errors' ); | |
| 308 | - } elseif ( 0 < $warnings ) { | |
| 309 | - \WP_CLI::warning( 'Reconnect completed with warnings' ); | |
| 310 | - } else { | |
| 311 | - \WP_CLI::success( 'Reconnect completed' ); | |
| 312 | - } | |
| 313 | - } | |
| 289 | + /** | |
| 290 | + * List information about plugin updates | |
| 291 | + * | |
| 292 | + * ## OPTIONS | |
| 293 | + * | |
| 294 | + * [<websiteid>] | |
| 295 | + * : The id (or ids, comma separated) of the child sites that need to be listed/upgraded, when omitted all childsites are used. | |
| 296 | + * | |
| 297 | + * [--list] | |
| 298 | + * : Get a list of plugins with available updates | |
| 299 | + * | |
| 300 | + * [--list-all] | |
| 301 | + * : List all plugins | |
| 302 | + * | |
| 303 | + * [--upgrade=<pluginslug>] | |
| 304 | + * : Update the plugin slugs | |
| 305 | + * | |
| 306 | + * [--upgrade-all] | |
| 307 | + * : Update all plugins | |
| 308 | + * | |
| 309 | + * ## EXAMPLES | |
| 310 | + * | |
| 311 | + * wp mainwp plugin 2,5 --list | |
| 312 | + * wp mainwp plugin --list | |
| 313 | + * wp mainwp plugin 2,5 --list-all | |
| 314 | + * wp mainwp plugin 2,5 --upgrade-all | |
| 315 | + * wp mainwp plugin 2,5 --upgrade=mainwpchild | |
| 316 | + * | |
| 317 | + * ## Synopsis [<websiteid>] [--list] [--list-all] [--upgrade=<pluginslug>] [--upgrade-all] | |
| 318 | + * | |
| 319 | + * @param array $args Function arguments. | |
| 320 | + * @param array $assoc_args Function associate arguments. | |
| 321 | + * | |
| 322 | + * @uses \MainWP\Dashboard\MainWP_DB_Common::get_user_extension() | |
| 323 | + * @uses \MainWP\Dashboard\MainWP_Error_Helper::get_console_error_message() | |
| 324 | + * @uses \MainWP\Dashboard\MainWP_DB::query() | |
| 325 | + * @uses \MainWP\Dashboard\MainWP_DB::get_sql_websites_for_current_user() | |
| 326 | + * @uses \MainWP\Dashboard\MainWP_DB::fetch_object() | |
| 327 | + * @uses \MainWP\Dashboard\MainWP_Updates_Handler::upgrade_plugin_theme_translation() | |
| 328 | + * @uses \MainWP\Dashboard\MainWP_Utility::value_to_string() | |
| 329 | + */ | |
| 330 | + public function plugin( $args, $assoc_args ) { // phpcs:ignore -- Current complexity is the only way to achieve desired results, pull request solutions appreciated. | |
| 331 | + $sites = array(); | |
| 332 | + if ( 0 < count( $args ) ) { | |
| 333 | + $args_exploded = explode( ',', $args[0] ); | |
| 334 | + foreach ( $args_exploded as $arg ) { | |
| 335 | + if ( ! is_numeric( trim( $arg ) ) ) { | |
| 336 | + \WP_CLI::error( 'Child site IDs should be numeric.' ); | |
| 337 | + } | |
| 314 | 338 | |
| 339 | + $sites[] = trim( $arg ); | |
| 340 | + } | |
| 341 | + } | |
| 315 | 342 | |
| 316 | - /** | |
| 317 | - * List information about plugin updates | |
| 318 | - * | |
| 319 | - * ## OPTIONS | |
| 320 | - * | |
| 321 | - * [<websiteid>] | |
| 322 | - * : The id (or ids, comma separated) of the child sites that need to be listed/upgraded, when omitted all childsites are used. | |
| 323 | - * | |
| 324 | - * [--list] | |
| 325 | - * : Get a list of plugins with available updates | |
| 326 | - * | |
| 327 | - * [--list-all] | |
| 328 | - * : List all plugins | |
| 329 | - * | |
| 330 | - * [--upgrade=<pluginslug>] | |
| 331 | - * : Update the plugin slugs | |
| 332 | - * | |
| 333 | - * [--upgrade-all] | |
| 334 | - * : Update all plugins | |
| 335 | - * | |
| 336 | - * ## EXAMPLES | |
| 337 | - * | |
| 338 | - * wp mainwp plugin 2,5 --list | |
| 339 | - * wp mainwp plugin --list | |
| 340 | - * wp mainwp plugin 2,5 --list-all | |
| 341 | - * wp mainwp plugin 2,5 --upgrade-all | |
| 342 | - * wp mainwp plugin 2,5 --upgrade=mainwpchild | |
| 343 | - * | |
| 344 | - * ## Synopsis [<websiteid>] [--list] [--list-all] [--upgrade=<pluginslug>] [--upgrade-all] | |
| 345 | - * | |
| 346 | - * @param array $args Function arguments. | |
| 347 | - * @param array $assoc_args Function associate arguments. | |
| 348 | - * | |
| 349 | - * @uses \MainWP\Dashboard\MainWP_DB_Common::get_user_extension() | |
| 350 | - * @uses \MainWP\Dashboard\MainWP_Error_Helper::get_console_error_message() | |
| 351 | - * @uses \MainWP\Dashboard\MainWP_DB::query() | |
| 352 | - * @uses \MainWP\Dashboard\MainWP_DB::get_sql_websites_for_current_user() | |
| 353 | - * @uses \MainWP\Dashboard\MainWP_DB::fetch_object() | |
| 354 | - * @uses \MainWP\Dashboard\MainWP_Updates_Handler::upgrade_plugin_theme_translation() | |
| 355 | - * @uses \MainWP\Dashboard\MainWP_Utility::value_to_string() | |
| 356 | - */ | |
| 357 | - public function plugin( $args, $assoc_args ) { // phpcs:ignore -- NOSONAR -Current complexity is the only way to achieve desired results, pull request solutions appreciated. | |
| 358 | - $sites = array(); | |
| 359 | - if ( ! empty( $args ) ) { | |
| 360 | - $args_exploded = explode( ',', $args[0] ); | |
| 361 | - foreach ( $args_exploded as $arg ) { | |
| 362 | - if ( ! is_numeric( trim( $arg ) ) ) { | |
| 363 | - \WP_CLI::error( 'Child site IDs should be numeric.' ); | |
| 364 | - } | |
| 343 | + if ( isset( $assoc_args['list'] ) ) { | |
| 344 | + $websites = MainWP_DB::instance()->query( MainWP_DB::instance()->get_sql_websites_for_current_user( false, null, 'wp.url', false, false, null, true ) ); | |
| 345 | + $userExtension = MainWP_DB_Common::instance()->get_user_extension(); | |
| 346 | + $websites_to_upgrade = array(); | |
| 347 | + while ( $websites && ( $website = MainWP_DB::fetch_object( $websites ) ) ) { | |
| 348 | + if ( ( count( $sites ) > 0 ) && ( ! in_array( $website->id, $sites, true ) ) ) { | |
| 349 | + continue; | |
| 350 | + } | |
| 365 | 351 | |
| 366 | - $sites[] = trim( $arg ); | |
| 367 | - } | |
| 368 | - } | |
| 352 | + $plugin_upgrades = json_decode( $website->plugin_upgrades, true ); | |
| 369 | 353 | |
| 370 | - if ( isset( $assoc_args['list'] ) ) { | |
| 371 | - $websites = MainWP_DB::instance()->query( MainWP_DB::instance()->get_sql_websites_for_current_user( false, null, 'wp.url', false, false, null, true ) ); | |
| 372 | - $userExtension = MainWP_DB_Common::instance()->get_user_extension(); | |
| 373 | - $websites_to_upgrade = array(); | |
| 374 | - while ( $websites && ( $website = MainWP_DB::fetch_object( $websites ) ) ) { | |
| 375 | - if ( ! empty( $sites ) && ( ! in_array( $website->id, $sites, true ) ) ) { | |
| 376 | - continue; | |
| 377 | - } | |
| 354 | + if ( is_array( $plugin_upgrades ) ) { | |
| 355 | + $ignored_plugins = json_decode( $website->ignored_plugins, true ); | |
| 356 | + if ( is_array( $ignored_plugins ) ) { | |
| 357 | + $plugin_upgrades = array_diff_key( $plugin_upgrades, $ignored_plugins ); | |
| 358 | + } | |
| 378 | 359 | |
| 379 | - $plugin_upgrades = json_decode( $website->plugin_upgrades, true ); | |
| 360 | + $ignored_plugins = json_decode( $userExtension->ignored_plugins, true ); | |
| 361 | + if ( is_array( $ignored_plugins ) ) { | |
| 362 | + $plugin_upgrades = array_diff_key( $plugin_upgrades, $ignored_plugins ); | |
| 363 | + } | |
| 380 | 364 | |
| 381 | - if ( is_array( $plugin_upgrades ) ) { | |
| 382 | - $ignored_plugins = json_decode( $website->ignored_plugins, true ); | |
| 383 | - if ( is_array( $ignored_plugins ) ) { | |
| 384 | - $plugin_upgrades = array_diff_key( $plugin_upgrades, $ignored_plugins ); | |
| 385 | - } | |
| 365 | + $tmp = array(); | |
| 366 | + foreach ( $plugin_upgrades as $plugin_upgrade ) { | |
| 367 | + $tmp[] = array( | |
| 368 | + 'name' => $plugin_upgrade['update']['slug'], | |
| 369 | + 'version' => $plugin_upgrade['Version'], | |
| 370 | + 'new_version' => $plugin_upgrade['update']['new_version'], | |
| 371 | + ); | |
| 372 | + } | |
| 373 | + $websites_to_upgrade[] = array( | |
| 374 | + 'id' => $website->id, | |
| 375 | + 'name' => $website->name, | |
| 376 | + 'plugins' => $tmp, | |
| 377 | + ); | |
| 378 | + } | |
| 379 | + } | |
| 386 | 380 | |
| 387 | - $ignored_plugins = json_decode( $userExtension->ignored_plugins, true ); | |
| 388 | - if ( is_array( $ignored_plugins ) ) { | |
| 389 | - $plugin_upgrades = array_diff_key( $plugin_upgrades, $ignored_plugins ); | |
| 390 | - } | |
| 381 | + $idLength = strlen( 'id' ); | |
| 382 | + $nameLength = strlen( 'name' ); | |
| 383 | + $pluginLength = strlen( 'plugin' ); | |
| 384 | + $oldVersionLength = strlen( 'version' ); | |
| 385 | + $newVersionLength = strlen( 'new version' ); | |
| 386 | + foreach ( $websites_to_upgrade as $website_to_upgrade ) { | |
| 387 | + if ( $idLength < strlen( $website_to_upgrade['id'] ) ) { | |
| 388 | + $idLength = strlen( $website_to_upgrade['id'] ); | |
| 389 | + } | |
| 390 | + if ( $nameLength < strlen( $website_to_upgrade['name'] ) ) { | |
| 391 | + $nameLength = strlen( $website_to_upgrade['name'] ); | |
| 392 | + } | |
| 391 | 393 | |
| 392 | - $tmp = array(); | |
| 393 | - foreach ( $plugin_upgrades as $plugin_upgrade ) { | |
| 394 | - $tmp[] = array( | |
| 395 | - 'name' => $plugin_upgrade['update']['slug'], | |
| 396 | - 'version' => $plugin_upgrade['Version'], | |
| 397 | - 'new_version' => $plugin_upgrade['update']['new_version'], | |
| 398 | - ); | |
| 399 | - } | |
| 400 | - $websites_to_upgrade[] = array( | |
| 401 | - 'id' => $website->id, | |
| 402 | - 'name' => $website->name, | |
| 403 | - 'plugins' => $tmp, | |
| 404 | - ); | |
| 405 | - } | |
| 406 | - } | |
| 394 | + foreach ( $website_to_upgrade['plugins'] as $plugin_to_upgrade ) { | |
| 395 | + if ( $pluginLength < strlen( $plugin_to_upgrade['name'] ) ) { | |
| 396 | + $pluginLength = strlen( $plugin_to_upgrade['name'] ); | |
| 397 | + } | |
| 398 | + if ( $oldVersionLength < strlen( $plugin_to_upgrade['version'] ) ) { | |
| 399 | + $oldVersionLength = strlen( $plugin_to_upgrade['version'] ); | |
| 400 | + } | |
| 401 | + if ( $newVersionLength < strlen( $plugin_to_upgrade['new_version'] ) ) { | |
| 402 | + $newVersionLength = strlen( $plugin_to_upgrade['new_version'] ); | |
| 403 | + } | |
| 404 | + } | |
| 405 | + } | |
| 407 | 406 | |
| 408 | - $idLength = strlen( 'id' ); | |
| 409 | - $nameLength = strlen( 'name' ); | |
| 410 | - $pluginLength = strlen( 'plugin' ); | |
| 411 | - $oldVersionLength = strlen( 'version' ); | |
| 412 | - $newVersionLength = strlen( 'new version' ); | |
| 413 | - foreach ( $websites_to_upgrade as $website_to_upgrade ) { | |
| 414 | - if ( $idLength < strlen( $website_to_upgrade['id'] ) ) { | |
| 415 | - $idLength = strlen( $website_to_upgrade['id'] ); | |
| 416 | - } | |
| 417 | - if ( $nameLength < strlen( $website_to_upgrade['name'] ) ) { | |
| 418 | - $nameLength = strlen( $website_to_upgrade['name'] ); | |
| 419 | - } | |
| 407 | + \WP_CLI::line( sprintf( "+%'--" . ( $idLength + 2 ) . "s+%'--" . ( $nameLength + 2 ) . "s+%'--" . ( $pluginLength + 2 ) . "s+%'--" . ( $oldVersionLength + 2 ) . "s+%'--" . ( $newVersionLength + 2 ) . 's+', '', '', '', '', '' ) ); | |
| 408 | + \WP_CLI::line( sprintf( '| %-' . $idLength . 's | %-' . $nameLength . 's | %-' . $pluginLength . 's | %-' . $oldVersionLength . 's | %-' . $newVersionLength . 's |', 'id', 'name', 'plugin', 'version', 'new version' ) ); | |
| 409 | + \WP_CLI::line( sprintf( "+%'--" . ( $idLength + 2 ) . "s+%'--" . ( $nameLength + 2 ) . "s+%'--" . ( $pluginLength + 2 ) . "s+%'--" . ( $oldVersionLength + 2 ) . "s+%'--" . ( $newVersionLength + 2 ) . 's+', '', '', '', '', '' ) ); | |
| 420 | 410 | |
| 421 | - foreach ( $website_to_upgrade['plugins'] as $plugin_to_upgrade ) { | |
| 422 | - if ( $pluginLength < strlen( $plugin_to_upgrade['name'] ) ) { | |
| 423 | - $pluginLength = strlen( $plugin_to_upgrade['name'] ); | |
| 424 | - } | |
| 425 | - if ( $oldVersionLength < strlen( $plugin_to_upgrade['version'] ) ) { | |
| 426 | - $oldVersionLength = strlen( $plugin_to_upgrade['version'] ); | |
| 427 | - } | |
| 428 | - if ( $newVersionLength < strlen( $plugin_to_upgrade['new_version'] ) ) { | |
| 429 | - $newVersionLength = strlen( $plugin_to_upgrade['new_version'] ); | |
| 430 | - } | |
| 431 | - } | |
| 432 | - } | |
| 411 | + foreach ( $websites_to_upgrade as $website_to_upgrade ) { | |
| 412 | + if ( $idLength < strlen( $website_to_upgrade['id'] ) ) { | |
| 413 | + $idLength = strlen( $website_to_upgrade['id'] ); | |
| 414 | + } | |
| 415 | + if ( $nameLength < strlen( $website_to_upgrade['name'] ) ) { | |
| 416 | + $nameLength = strlen( $website_to_upgrade['name'] ); | |
| 417 | + } | |
| 433 | 418 | |
| 434 | - \WP_CLI::line( sprintf( "+%'--" . ( $idLength + 2 ) . "s+%'--" . ( $nameLength + 2 ) . "s+%'--" . ( $pluginLength + 2 ) . "s+%'--" . ( $oldVersionLength + 2 ) . "s+%'--" . ( $newVersionLength + 2 ) . 's+', '', '', '', '', '' ) ); | |
| 435 | - \WP_CLI::line( sprintf( '| %-' . $idLength . 's | %-' . $nameLength . 's | %-' . $pluginLength . 's | %-' . $oldVersionLength . 's | %-' . $newVersionLength . 's |', 'id', 'name', 'plugin', 'version', 'new version' ) ); | |
| 436 | - \WP_CLI::line( sprintf( "+%'--" . ( $idLength + 2 ) . "s+%'--" . ( $nameLength + 2 ) . "s+%'--" . ( $pluginLength + 2 ) . "s+%'--" . ( $oldVersionLength + 2 ) . "s+%'--" . ( $newVersionLength + 2 ) . 's+', '', '', '', '', '' ) ); | |
| 419 | + $i = 0; | |
| 420 | + foreach ( $website_to_upgrade['plugins'] as $plugin_to_upgrade ) { | |
| 421 | + if ( 0 == $i ) { | |
| 422 | + \WP_CLI::line( sprintf( '| %-' . $idLength . 's | %-' . $nameLength . 's | %-' . $pluginLength . 's | %-' . $oldVersionLength . 's | %-' . $newVersionLength . 's |', $website_to_upgrade['id'], $website_to_upgrade['name'], $plugin_to_upgrade['name'], $plugin_to_upgrade['version'], $plugin_to_upgrade['new_version'] ) ); | |
| 423 | + } else { | |
| 424 | + \WP_CLI::line( sprintf( '| %-' . $idLength . 's | %-' . $nameLength . 's | %-' . $pluginLength . 's | %-' . $oldVersionLength . 's | %-' . $newVersionLength . 's |', '', '', $plugin_to_upgrade['name'], $plugin_to_upgrade['version'], $plugin_to_upgrade['new_version'] ) ); | |
| 425 | + } | |
| 426 | + $i++; | |
| 427 | + } | |
| 428 | + } | |
| 437 | 429 | |
| 438 | - foreach ( $websites_to_upgrade as $website_to_upgrade ) { | |
| 439 | - if ( $idLength < strlen( $website_to_upgrade['id'] ) ) { | |
| 440 | - $idLength = strlen( $website_to_upgrade['id'] ); | |
| 441 | - } | |
| 442 | - if ( $nameLength < strlen( $website_to_upgrade['name'] ) ) { | |
| 443 | - $nameLength = strlen( $website_to_upgrade['name'] ); | |
| 444 | - } | |
| 430 | + \WP_CLI::line( sprintf( "+%'--" . ( $idLength + 2 ) . "s+%'--" . ( $nameLength + 2 ) . "s+%'--" . ( $pluginLength + 2 ) . "s+%'--" . ( $oldVersionLength + 2 ) . "s+%'--" . ( $newVersionLength + 2 ) . 's+', '', '', '', '', '' ) ); | |
| 431 | + } elseif ( isset( $assoc_args['list-all'] ) ) { | |
| 432 | + $websites = MainWP_DB::instance()->query( MainWP_DB::instance()->get_sql_websites_for_current_user( false, null, 'wp.url', false, false, null, true ) ); | |
| 433 | + $userExtension = MainWP_DB_Common::instance()->get_user_extension(); | |
| 434 | + $websites_to_list = array(); | |
| 435 | + while ( $websites && ( $website = MainWP_DB::fetch_object( $websites ) ) ) { | |
| 436 | + if ( ( 0 < count( $sites ) ) && ( ! in_array( $website->id, $sites, true ) ) ) { | |
| 437 | + continue; | |
| 438 | + } | |
| 445 | 439 | |
| 446 | - $i = 0; | |
| 447 | - foreach ( $website_to_upgrade['plugins'] as $plugin_to_upgrade ) { | |
| 448 | - if ( 0 === $i ) { | |
| 449 | - \WP_CLI::line( sprintf( '| %-' . $idLength . 's | %-' . $nameLength . 's | %-' . $pluginLength . 's | %-' . $oldVersionLength . 's | %-' . $newVersionLength . 's |', $website_to_upgrade['id'], $website_to_upgrade['name'], $plugin_to_upgrade['name'], $plugin_to_upgrade['version'], $plugin_to_upgrade['new_version'] ) ); | |
| 450 | - } else { | |
| 451 | - \WP_CLI::line( sprintf( '| %-' . $idLength . 's | %-' . $nameLength . 's | %-' . $pluginLength . 's | %-' . $oldVersionLength . 's | %-' . $newVersionLength . 's |', '', '', $plugin_to_upgrade['name'], $plugin_to_upgrade['version'], $plugin_to_upgrade['new_version'] ) ); | |
| 452 | - } | |
| 453 | - ++$i; | |
| 454 | - } | |
| 455 | - } | |
| 440 | + $plugins_to_list = json_decode( $website->plugins, true ); | |
| 441 | + if ( is_array( $plugins_to_list ) ) { | |
| 442 | + $tmp = array(); | |
| 443 | + foreach ( $plugins_to_list as $plugin ) { | |
| 444 | + $tmp[] = array( | |
| 445 | + 'name' => $plugin['slug'], | |
| 446 | + 'version' => $plugin['version'], | |
| 447 | + ); | |
| 448 | + } | |
| 449 | + $websites_to_list[] = array( | |
| 450 | + 'id' => $website->id, | |
| 451 | + 'name' => $website->name, | |
| 452 | + 'plugins' => $tmp, | |
| 453 | + ); | |
| 454 | + } | |
| 455 | + } | |
| 456 | 456 | |
| 457 | - \WP_CLI::line( sprintf( "+%'--" . ( $idLength + 2 ) . "s+%'--" . ( $nameLength + 2 ) . "s+%'--" . ( $pluginLength + 2 ) . "s+%'--" . ( $oldVersionLength + 2 ) . "s+%'--" . ( $newVersionLength + 2 ) . 's+', '', '', '', '', '' ) ); | |
| 458 | - } elseif ( isset( $assoc_args['list-all'] ) ) { | |
| 459 | - $websites = MainWP_DB::instance()->query( MainWP_DB::instance()->get_sql_websites_for_current_user( false, null, 'wp.url', false, false, null, true ) ); | |
| 460 | - $userExtension = MainWP_DB_Common::instance()->get_user_extension(); | |
| 461 | - $websites_to_list = array(); | |
| 462 | - while ( $websites && ( $website = MainWP_DB::fetch_object( $websites ) ) ) { | |
| 463 | - if ( ( ! empty( $sites ) ) && ( ! in_array( $website->id, $sites, true ) ) ) { | |
| 464 | - continue; | |
| 465 | - } | |
| 457 | + $idLength = strlen( 'id' ); | |
| 458 | + $nameLength = strlen( 'name' ); | |
| 459 | + $pluginLength = strlen( 'plugin' ); | |
| 460 | + $oldVersionLength = strlen( 'version' ); | |
| 461 | + foreach ( $websites_to_list as $website_item ) { | |
| 462 | + if ( $idLength < strlen( $website_item['id'] ) ) { | |
| 463 | + $idLength = strlen( $website_item['id'] ); | |
| 464 | + } | |
| 465 | + if ( $nameLength < strlen( $website_item['name'] ) ) { | |
| 466 | + $nameLength = strlen( $website_item['name'] ); | |
| 467 | + } | |
| 466 | 468 | |
| 467 | - $plugins_to_list = json_decode( $website->plugins, true ); | |
| 468 | - if ( is_array( $plugins_to_list ) ) { | |
| 469 | - $tmp = array(); | |
| 470 | - foreach ( $plugins_to_list as $plugin ) { | |
| 471 | - $tmp[] = array( | |
| 472 | - 'name' => $plugin['slug'], | |
| 473 | - 'version' => $plugin['version'], | |
| 474 | - ); | |
| 475 | - } | |
| 476 | - $websites_to_list[] = array( | |
| 477 | - 'id' => $website->id, | |
| 478 | - 'name' => $website->name, | |
| 479 | - 'plugins' => $tmp, | |
| 480 | - ); | |
| 481 | - } | |
| 482 | - } | |
| 469 | + foreach ( $website_item['plugins'] as $plugin_item ) { | |
| 470 | + if ( $pluginLength < strlen( $plugin_item['name'] ) ) { | |
| 471 | + $pluginLength = strlen( $plugin_item['name'] ); | |
| 472 | + } | |
| 473 | + if ( $oldVersionLength < strlen( $plugin_item['version'] ) ) { | |
| 474 | + $oldVersionLength = strlen( $plugin_item['version'] ); | |
| 475 | + } | |
| 476 | + } | |
| 477 | + } | |
| 483 | 478 | |
| 484 | - $idLength = strlen( 'id' ); | |
| 485 | - $nameLength = strlen( 'name' ); | |
| 486 | - $pluginLength = strlen( 'plugin' ); | |
| 487 | - $oldVersionLength = strlen( 'version' ); | |
| 488 | - foreach ( $websites_to_list as $website_item ) { | |
| 489 | - if ( $idLength < strlen( $website_item['id'] ) ) { | |
| 490 | - $idLength = strlen( $website_item['id'] ); | |
| 491 | - } | |
| 492 | - if ( $nameLength < strlen( $website_item['name'] ) ) { | |
| 493 | - $nameLength = strlen( $website_item['name'] ); | |
| 494 | - } | |
| 479 | + \WP_CLI::line( sprintf( "+%'--" . ( $idLength + 2 ) . "s+%'--" . ( $nameLength + 2 ) . "s+%'--" . ( $pluginLength + 2 ) . "s+%'--" . ( $oldVersionLength + 2 ) . 's+', '', '', '', '' ) ); | |
| 480 | + \WP_CLI::line( sprintf( '| %-' . $idLength . 's | %-' . $nameLength . 's | %-' . $pluginLength . 's | %-' . $oldVersionLength . 's |', 'id', 'name', 'plugin', 'version' ) ); | |
| 481 | + \WP_CLI::line( sprintf( "+%'--" . ( $idLength + 2 ) . "s+%'--" . ( $nameLength + 2 ) . "s+%'--" . ( $pluginLength + 2 ) . "s+%'--" . ( $oldVersionLength + 2 ) . 's+', '', '', '', '' ) ); | |
| 495 | 482 | |
| 496 | - foreach ( $website_item['plugins'] as $plugin_item ) { | |
| 497 | - if ( $pluginLength < strlen( $plugin_item['name'] ) ) { | |
| 498 | - $pluginLength = strlen( $plugin_item['name'] ); | |
| 499 | - } | |
| 500 | - if ( $oldVersionLength < strlen( $plugin_item['version'] ) ) { | |
| 501 | - $oldVersionLength = strlen( $plugin_item['version'] ); | |
| 502 | - } | |
| 503 | - } | |
| 504 | - } | |
| 483 | + foreach ( $websites_to_list as $website_item ) { | |
| 484 | + if ( $idLength < strlen( $website_item['id'] ) ) { | |
| 485 | + $idLength = strlen( $website_item['id'] ); | |
| 486 | + } | |
| 487 | + if ( $nameLength < strlen( $website_item['name'] ) ) { | |
| 488 | + $nameLength = strlen( $website_item['name'] ); | |
| 489 | + } | |
| 505 | 490 | |
| 506 | - \WP_CLI::line( sprintf( "+%'--" . ( $idLength + 2 ) . "s+%'--" . ( $nameLength + 2 ) . "s+%'--" . ( $pluginLength + 2 ) . "s+%'--" . ( $oldVersionLength + 2 ) . 's+', '', '', '', '' ) ); | |
| 507 | - \WP_CLI::line( sprintf( '| %-' . $idLength . 's | %-' . $nameLength . 's | %-' . $pluginLength . 's | %-' . $oldVersionLength . 's |', 'id', 'name', 'plugin', 'version' ) ); | |
| 508 | - \WP_CLI::line( sprintf( "+%'--" . ( $idLength + 2 ) . "s+%'--" . ( $nameLength + 2 ) . "s+%'--" . ( $pluginLength + 2 ) . "s+%'--" . ( $oldVersionLength + 2 ) . 's+', '', '', '', '' ) ); | |
| 491 | + $i = 0; | |
| 492 | + foreach ( $website_item['plugins'] as $plugin_item ) { | |
| 493 | + if ( 0 == $i ) { | |
| 494 | + \WP_CLI::line( sprintf( '| %-' . $idLength . 's | %-' . $nameLength . 's | %-' . $pluginLength . 's | %-' . $oldVersionLength . 's |', $website_item['id'], $website_item['name'], $plugin_item['name'], $plugin_item['version'] ) ); | |
| 495 | + } else { | |
| 496 | + \WP_CLI::line( sprintf( '| %-' . $idLength . 's | %-' . $nameLength . 's | %-' . $pluginLength . 's | %-' . $oldVersionLength . 's |', '', '', $plugin_item['name'], $plugin_item['version'] ) ); | |
| 497 | + } | |
| 498 | + $i++; | |
| 499 | + } | |
| 500 | + } | |
| 509 | 501 | |
| 510 | - foreach ( $websites_to_list as $website_item ) { | |
| 511 | - if ( $idLength < strlen( $website_item['id'] ) ) { | |
| 512 | - $idLength = strlen( $website_item['id'] ); | |
| 513 | - } | |
| 514 | - if ( $nameLength < strlen( $website_item['name'] ) ) { | |
| 515 | - $nameLength = strlen( $website_item['name'] ); | |
| 516 | - } | |
| 502 | + \WP_CLI::line( sprintf( "+%'--" . ( $idLength + 2 ) . "s+%'--" . ( $nameLength + 2 ) . "s+%'--" . ( $pluginLength + 2 ) . "s+%'--" . ( $oldVersionLength + 2 ) . 's+', '', '', '', '' ) ); | |
| 503 | + } elseif ( isset( $assoc_args['upgrade'] ) || isset( $assoc_args['upgrade-all'] ) ) { | |
| 517 | 504 | |
| 518 | - $i = 0; | |
| 519 | - foreach ( $website_item['plugins'] as $plugin_item ) { | |
| 520 | - if ( 0 === $i ) { | |
| 521 | - \WP_CLI::line( sprintf( '| %-' . $idLength . 's | %-' . $nameLength . 's | %-' . $pluginLength . 's | %-' . $oldVersionLength . 's |', $website_item['id'], $website_item['name'], $plugin_item['name'], $plugin_item['version'] ) ); | |
| 522 | - } else { | |
| 523 | - \WP_CLI::line( sprintf( '| %-' . $idLength . 's | %-' . $nameLength . 's | %-' . $pluginLength . 's | %-' . $oldVersionLength . 's |', '', '', $plugin_item['name'], $plugin_item['version'] ) ); | |
| 524 | - } | |
| 525 | - ++$i; | |
| 526 | - } | |
| 527 | - } | |
| 505 | + $pluginSlugs = array(); | |
| 506 | + if ( isset( $assoc_args['upgrade'] ) ) { | |
| 507 | + $pluginSlugs = explode( ',', $assoc_args['upgrade'] ); | |
| 508 | + } | |
| 528 | 509 | |
| 529 | - \WP_CLI::line( sprintf( "+%'--" . ( $idLength + 2 ) . "s+%'--" . ( $nameLength + 2 ) . "s+%'--" . ( $pluginLength + 2 ) . "s+%'--" . ( $oldVersionLength + 2 ) . 's+', '', '', '', '' ) ); | |
| 530 | - } elseif ( isset( $assoc_args['upgrade'] ) || isset( $assoc_args['upgrade-all'] ) ) { | |
| 510 | + $websites = MainWP_DB::instance()->query( MainWP_DB::instance()->get_sql_websites_for_current_user( false, null, 'wp.url', false, false, null, true ) ); | |
| 511 | + $userExtension = MainWP_DB_Common::instance()->get_user_extension(); | |
| 512 | + while ( $websites && ( $website = MainWP_DB::fetch_object( $websites ) ) ) { | |
| 513 | + if ( ( count( $sites ) > 0 ) && ( ! in_array( $website->id, $sites, true ) ) ) { | |
| 514 | + continue; | |
| 515 | + } | |
| 531 | 516 | |
| 532 | - $pluginSlugs = array(); | |
| 533 | - if ( isset( $assoc_args['upgrade'] ) ) { | |
| 534 | - $pluginSlugs = explode( ',', $assoc_args['upgrade'] ); | |
| 535 | - } | |
| 517 | + $plugin_upgrades = json_decode( $website->plugin_upgrades, true ); | |
| 536 | 518 | |
| 537 | - $websites = MainWP_DB::instance()->query( MainWP_DB::instance()->get_sql_websites_for_current_user( false, null, 'wp.url', false, false, null, true ) ); | |
| 538 | - $userExtension = MainWP_DB_Common::instance()->get_user_extension(); | |
| 539 | - while ( $websites && ( $website = MainWP_DB::fetch_object( $websites ) ) ) { | |
| 540 | - if ( ! empty( $sites ) && ( ! in_array( $website->id, $sites, true ) ) ) { | |
| 541 | - continue; | |
| 542 | - } | |
| 519 | + if ( is_array( $plugin_upgrades ) ) { | |
| 520 | + $ignored_plugins = json_decode( $website->ignored_plugins, true ); | |
| 521 | + if ( is_array( $ignored_plugins ) ) { | |
| 522 | + $plugin_upgrades = array_diff_key( $plugin_upgrades, $ignored_plugins ); | |
| 523 | + } | |
| 543 | 524 | |
| 544 | - $plugin_upgrades = json_decode( $website->plugin_upgrades, true ); | |
| 525 | + $ignored_plugins = json_decode( $userExtension->ignored_plugins, true ); | |
| 526 | + if ( is_array( $ignored_plugins ) ) { | |
| 527 | + $plugin_upgrades = array_diff_key( $plugin_upgrades, $ignored_plugins ); | |
| 528 | + } | |
| 545 | 529 | |
| 546 | - if ( is_array( $plugin_upgrades ) ) { | |
| 547 | - $ignored_plugins = json_decode( $website->ignored_plugins, true ); | |
| 548 | - if ( is_array( $ignored_plugins ) ) { | |
| 549 | - $plugin_upgrades = array_diff_key( $plugin_upgrades, $ignored_plugins ); | |
| 550 | - } | |
| 530 | + $tmp = array(); | |
| 531 | + foreach ( $plugin_upgrades as $key => $plugin_upgrade ) { | |
| 532 | + if ( ( count( $pluginSlugs ) > 0 ) && ( ! in_array( $plugin_upgrade['update']['slug'], $pluginSlugs, true ) ) ) { | |
| 533 | + continue; | |
| 534 | + } | |
| 551 | 535 | |
| 552 | - $ignored_plugins = json_decode( $userExtension->ignored_plugins, true ); | |
| 553 | - if ( is_array( $ignored_plugins ) ) { | |
| 554 | - $plugin_upgrades = array_diff_key( $plugin_upgrades, $ignored_plugins ); | |
| 555 | - } | |
| 536 | + $tmp[] = $key; | |
| 537 | + } | |
| 556 | 538 | |
| 557 | - $tmp = array(); | |
| 558 | - foreach ( $plugin_upgrades as $key => $plugin_upgrade ) { | |
| 559 | - if ( ! empty( $pluginSlugs ) && ( ! in_array( $plugin_upgrade['update']['slug'], $pluginSlugs, true ) ) ) { | |
| 560 | - continue; | |
| 561 | - } | |
| 539 | + if ( count( $tmp ) == 0 ) { | |
| 540 | + \WP_CLI::line( 'No available plugin updates for ' . $website->name ); | |
| 562 | 541 | |
| 563 | - $tmp[] = $key; | |
| 564 | - } | |
| 542 | + continue; | |
| 543 | + } | |
| 565 | 544 | |
| 566 | - if ( empty( $tmp ) ) { | |
| 567 | - \WP_CLI::line( 'No available plugin updates for ' . $website->name ); | |
| 545 | + \WP_CLI::line( 'Updating ' . count( $tmp ) . ' plugins for ' . $website->name ); | |
| 568 | 546 | |
| 569 | - continue; | |
| 570 | - } | |
| 547 | + try { | |
| 548 | + MainWP_Updates_Handler::upgrade_plugin_theme_translation( $website->id, 'plugin', implode( ',', $tmp ) ); | |
| 549 | + \WP_CLI::success( 'Updates completed' ); | |
| 550 | + } catch ( \Exception $e ) { | |
| 551 | + \WP_CLI::error( 'Updates failed: ' . MainWP_Error_Helper::get_console_error_message( $e ) ); | |
| 552 | + if ( $e->getMesage() == 'WPERROR' ) { | |
| 553 | + \WP_CLI::debug( 'Error: ' . MainWP_Utility::value_to_string( $e->get_message_extra(), 1 ) ); | |
| 554 | + } | |
| 555 | + } | |
| 556 | + } | |
| 557 | + } | |
| 558 | + } | |
| 559 | + } | |
| 571 | 560 | |
| 572 | - \WP_CLI::line( 'Updating ' . count( $tmp ) . ' plugins for ' . $website->name ); | |
| 561 | + /** | |
| 562 | + * List information about theme updates | |
| 563 | + * | |
| 564 | + * ## OPTIONS | |
| 565 | + * | |
| 566 | + * [<websiteid>] | |
| 567 | + * : The id (or ids, comma separated) of the child sites that need to be listed/upgraded, when omitted all childsites are used. | |
| 568 | + * | |
| 569 | + * [--list] | |
| 570 | + * : Get a list of themes with available updates | |
| 571 | + * | |
| 572 | + * [--list-all] | |
| 573 | + * : list all themes | |
| 574 | + * | |
| 575 | + * [--upgrade=<theme>] | |
| 576 | + * : Update the themes | |
| 577 | + * | |
| 578 | + * [--upgrade-all] | |
| 579 | + * : Update all themes | |
| 580 | + * | |
| 581 | + * ## EXAMPLES | |
| 582 | + * | |
| 583 | + * wp mainwp theme 2,5 --list | |
| 584 | + * wp mainwp theme --list | |
| 585 | + * wp mainwp theme 2,5 --upgrade-all | |
| 586 | + * wp mainwp theme 2,5 --upgrade=twentysixteen | |
| 587 | + * | |
| 588 | + * ## Synopsis [<websiteid>] [--list] [--list-all] [--upgrade=<theme>] [--upgrade-all] | |
| 589 | + * | |
| 590 | + * @param array $args Function arguments. | |
| 591 | + * @param array $assoc_args Function associate arguments. | |
| 592 | + * | |
| 593 | + * @uses \MainWP\Dashboard\MainWP_DB_Common::get_user_extension() | |
| 594 | + * @uses \MainWP\Dashboard\MainWP_Error_Helper::get_console_error_message() | |
| 595 | + * @uses \MainWP\Dashboard\MainWP_DB::query() | |
| 596 | + * @uses \MainWP\Dashboard\MainWP_DB::get_sql_websites_for_current_user() | |
| 597 | + * @uses \MainWP\Dashboard\MainWP_DB::fetch_object() | |
| 598 | + * @uses \MainWP\Dashboard\MainWP_Updates_Handler::upgrade_plugin_theme_translation() | |
| 599 | + * @uses \MainWP\Dashboard\MainWP_Utility::value_to_string() | |
| 600 | + */ | |
| 601 | + public function theme( $args, $assoc_args ) { // phpcs:ignore -- Current complexity is the only way to achieve desired results, pull request solutions appreciated. | |
| 602 | + $sites = array(); | |
| 603 | + if ( count( $args ) > 0 ) { | |
| 604 | + $args_exploded = explode( ',', $args[0] ); | |
| 605 | + foreach ( $args_exploded as $arg ) { | |
| 606 | + if ( ! is_numeric( trim( $arg ) ) ) { | |
| 607 | + \WP_CLI::error( 'Child site IDs should be numeric.' ); | |
| 608 | + } | |
| 573 | 609 | |
| 574 | - try { | |
| 575 | - MainWP_Updates_Handler::upgrade_plugin_theme_translation( $website->id, 'plugin', implode( ',', $tmp ) ); | |
| 576 | - \WP_CLI::success( 'Updates completed' ); | |
| 577 | - } catch ( \Exception $e ) { | |
| 578 | - \WP_CLI::error( 'Updates failed: ' . MainWP_Error_Helper::get_console_error_message( $e ) ); | |
| 579 | - if ( $e->getMesage() === 'WPERROR' ) { | |
| 580 | - \WP_CLI::debug( 'Error: ' . MainWP_Utility::value_to_string( $e->get_message_extra(), 1 ) ); | |
| 581 | - } | |
| 582 | - } | |
| 583 | - } | |
| 584 | - } | |
| 585 | - } | |
| 586 | - } | |
| 610 | + $sites[] = trim( $arg ); | |
| 611 | + } | |
| 612 | + } | |
| 587 | 613 | |
| 588 | - /** | |
| 589 | - * List information about theme updates | |
| 590 | - * | |
| 591 | - * ## OPTIONS | |
| 592 | - * | |
| 593 | - * [<websiteid>] | |
| 594 | - * : The id (or ids, comma separated) of the child sites that need to be listed/upgraded, when omitted all childsites are used. | |
| 595 | - * | |
| 596 | - * [--list] | |
| 597 | - * : Get a list of themes with available updates | |
| 598 | - * | |
| 599 | - * [--list-all] | |
| 600 | - * : list all themes | |
| 601 | - * | |
| 602 | - * [--upgrade=<theme>] | |
| 603 | - * : Update the themes | |
| 604 | - * | |
| 605 | - * [--upgrade-all] | |
| 606 | - * : Update all themes | |
| 607 | - * | |
| 608 | - * ## EXAMPLES | |
| 609 | - * | |
| 610 | - * wp mainwp theme 2,5 --list | |
| 611 | - * wp mainwp theme --list | |
| 612 | - * wp mainwp theme 2,5 --upgrade-all | |
| 613 | - * wp mainwp theme 2,5 --upgrade=twentysixteen | |
| 614 | - * | |
| 615 | - * ## Synopsis [<websiteid>] [--list] [--list-all] [--upgrade=<theme>] [--upgrade-all] | |
| 616 | - * | |
| 617 | - * @param array $args Function arguments. | |
| 618 | - * @param array $assoc_args Function associate arguments. | |
| 619 | - * | |
| 620 | - * @uses \MainWP\Dashboard\MainWP_DB_Common::get_user_extension() | |
| 621 | - * @uses \MainWP\Dashboard\MainWP_Error_Helper::get_console_error_message() | |
| 622 | - * @uses \MainWP\Dashboard\MainWP_DB::query() | |
| 623 | - * @uses \MainWP\Dashboard\MainWP_DB::get_sql_websites_for_current_user() | |
| 624 | - * @uses \MainWP\Dashboard\MainWP_DB::fetch_object() | |
| 625 | - * @uses \MainWP\Dashboard\MainWP_Updates_Handler::upgrade_plugin_theme_translation() | |
| 626 | - * @uses \MainWP\Dashboard\MainWP_Utility::value_to_string() | |
| 627 | - */ | |
| 628 | - public function theme( $args, $assoc_args ) { // phpcs:ignore -- NOSONAR -Current complexity is the only way to achieve desired results, pull request solutions appreciated. | |
| 629 | - $sites = array(); | |
| 630 | - if ( ! empty( $args ) ) { | |
| 631 | - $args_exploded = explode( ',', $args[0] ); | |
| 632 | - foreach ( $args_exploded as $arg ) { | |
| 633 | - if ( ! is_numeric( trim( $arg ) ) ) { | |
| 634 | - \WP_CLI::error( 'Child site IDs should be numeric.' ); | |
| 635 | - } | |
| 614 | + if ( isset( $assoc_args['list'] ) ) { | |
| 615 | + $websites = MainWP_DB::instance()->query( MainWP_DB::instance()->get_sql_websites_for_current_user( false, null, 'wp.url', false, false, null, true ) ); | |
| 616 | + $userExtension = MainWP_DB_Common::instance()->get_user_extension(); | |
| 617 | + $websites_to_upgrade = array(); | |
| 618 | + while ( $websites && ( $website = MainWP_DB::fetch_object( $websites ) ) ) { | |
| 619 | + if ( ( count( $sites ) > 0 ) && ( ! in_array( $website->id, $sites, true ) ) ) { | |
| 620 | + continue; | |
| 621 | + } | |
| 636 | 622 | |
| 637 | - $sites[] = trim( $arg ); | |
| 638 | - } | |
| 639 | - } | |
| 623 | + $theme_upgrades = json_decode( $website->theme_upgrades, true ); | |
| 640 | 624 | |
| 641 | - if ( isset( $assoc_args['list'] ) ) { | |
| 642 | - $websites = MainWP_DB::instance()->query( MainWP_DB::instance()->get_sql_websites_for_current_user( false, null, 'wp.url', false, false, null, true ) ); | |
| 643 | - $userExtension = MainWP_DB_Common::instance()->get_user_extension(); | |
| 644 | - $websites_to_upgrade = array(); | |
| 645 | - while ( $websites && ( $website = MainWP_DB::fetch_object( $websites ) ) ) { | |
| 646 | - if ( ! empty( $sites ) && ( ! in_array( $website->id, $sites, true ) ) ) { | |
| 647 | - continue; | |
| 648 | - } | |
| 625 | + if ( is_array( $theme_upgrades ) ) { | |
| 626 | + $ignored_themes = json_decode( $website->ignored_themes, true ); | |
| 627 | + if ( is_array( $ignored_themes ) ) { | |
| 628 | + $theme_upgrades = array_diff_key( $theme_upgrades, $ignored_themes ); | |
| 629 | + } | |
| 649 | 630 | |
| 650 | - $theme_upgrades = json_decode( $website->theme_upgrades, true ); | |
| 631 | + $ignored_themes = json_decode( $userExtension->ignored_themes, true ); | |
| 632 | + if ( is_array( $ignored_themes ) ) { | |
| 633 | + $theme_upgrades = array_diff_key( $theme_upgrades, $ignored_themes ); | |
| 634 | + } | |
| 651 | 635 | |
| 652 | - if ( is_array( $theme_upgrades ) ) { | |
| 653 | - $ignored_themes = json_decode( $website->ignored_themes, true ); | |
| 654 | - if ( is_array( $ignored_themes ) ) { | |
| 655 | - $theme_upgrades = array_diff_key( $theme_upgrades, $ignored_themes ); | |
| 656 | - } | |
| 636 | + $tmp = array(); | |
| 637 | + foreach ( $theme_upgrades as $theme_upgrade ) { | |
| 638 | + $tmp[] = array( | |
| 639 | + 'name' => $theme_upgrade['update']['theme'], | |
| 640 | + 'version' => $theme_upgrade['Version'], | |
| 641 | + 'new_version' => $theme_upgrade['update']['new_version'], | |
| 642 | + ); | |
| 643 | + } | |
| 644 | + $websites_to_upgrade[] = array( | |
| 645 | + 'id' => $website->id, | |
| 646 | + 'name' => $website->name, | |
| 647 | + 'themes' => $tmp, | |
| 648 | + ); | |
| 649 | + } | |
| 650 | + } | |
| 657 | 651 | |
| 658 | - $ignored_themes = json_decode( $userExtension->ignored_themes, true ); | |
| 659 | - if ( is_array( $ignored_themes ) ) { | |
| 660 | - $theme_upgrades = array_diff_key( $theme_upgrades, $ignored_themes ); | |
| 661 | - } | |
| 652 | + $idLength = strlen( 'id' ); | |
| 653 | + $nameLength = strlen( 'name' ); | |
| 654 | + $themeLength = strlen( 'theme' ); | |
| 655 | + $oldVersionLength = strlen( 'version' ); | |
| 656 | + $newVersionLength = strlen( 'new version' ); | |
| 657 | + foreach ( $websites_to_upgrade as $website_to_upgrade ) { | |
| 658 | + if ( $idLength < strlen( $website_to_upgrade['id'] ) ) { | |
| 659 | + $idLength = strlen( $website_to_upgrade['id'] ); | |
| 660 | + } | |
| 661 | + if ( $nameLength < strlen( $website_to_upgrade['name'] ) ) { | |
| 662 | + $nameLength = strlen( $website_to_upgrade['name'] ); | |
| 663 | + } | |
| 662 | 664 | |
| 663 | - $tmp = array(); | |
| 664 | - foreach ( $theme_upgrades as $theme_upgrade ) { | |
| 665 | - $tmp[] = array( | |
| 666 | - 'name' => $theme_upgrade['update']['theme'], | |
| 667 | - 'version' => $theme_upgrade['Version'], | |
| 668 | - 'new_version' => $theme_upgrade['update']['new_version'], | |
| 669 | - ); | |
| 670 | - } | |
| 671 | - $websites_to_upgrade[] = array( | |
| 672 | - 'id' => $website->id, | |
| 673 | - 'name' => $website->name, | |
| 674 | - 'themes' => $tmp, | |
| 675 | - ); | |
| 676 | - } | |
| 677 | - } | |
| 665 | + foreach ( $website_to_upgrade['themes'] as $theme_to_upgrade ) { | |
| 666 | + if ( $themeLength < strlen( $theme_to_upgrade['name'] ) ) { | |
| 667 | + $themeLength = strlen( $theme_to_upgrade['name'] ); | |
| 668 | + } | |
| 669 | + if ( $oldVersionLength < strlen( $theme_to_upgrade['version'] ) ) { | |
| 670 | + $oldVersionLength = strlen( $theme_to_upgrade['version'] ); | |
| 671 | + } | |
| 672 | + if ( $newVersionLength < strlen( $theme_to_upgrade['new_version'] ) ) { | |
| 673 | + $newVersionLength = strlen( $theme_to_upgrade['new_version'] ); | |
| 674 | + } | |
| 675 | + } | |
| 676 | + } | |
| 678 | 677 | |
| 679 | - $idLength = strlen( 'id' ); | |
| 680 | - $nameLength = strlen( 'name' ); | |
| 681 | - $themeLength = strlen( 'theme' ); | |
| 682 | - $oldVersionLength = strlen( 'version' ); | |
| 683 | - $newVersionLength = strlen( 'new version' ); | |
| 684 | - foreach ( $websites_to_upgrade as $website_to_upgrade ) { | |
| 685 | - if ( $idLength < strlen( $website_to_upgrade['id'] ) ) { | |
| 686 | - $idLength = strlen( $website_to_upgrade['id'] ); | |
| 687 | - } | |
| 688 | - if ( $nameLength < strlen( $website_to_upgrade['name'] ) ) { | |
| 689 | - $nameLength = strlen( $website_to_upgrade['name'] ); | |
| 690 | - } | |
| 678 | + \WP_CLI::line( sprintf( "+%'--" . ( $idLength + 2 ) . "s+%'--" . ( $nameLength + 2 ) . "s+%'--" . ( $themeLength + 2 ) . "s+%'--" . ( $oldVersionLength + 2 ) . "s+%'--" . ( $newVersionLength + 2 ) . 's+', '', '', '', '', '' ) ); | |
| 679 | + \WP_CLI::line( sprintf( '| %-' . $idLength . 's | %-' . $nameLength . 's | %-' . $themeLength . 's | %-' . $oldVersionLength . 's | %-' . $newVersionLength . 's |', 'id', 'name', 'theme', 'version', 'new version' ) ); | |
| 680 | + \WP_CLI::line( sprintf( "+%'--" . ( $idLength + 2 ) . "s+%'--" . ( $nameLength + 2 ) . "s+%'--" . ( $themeLength + 2 ) . "s+%'--" . ( $oldVersionLength + 2 ) . "s+%'--" . ( $newVersionLength + 2 ) . 's+', '', '', '', '', '' ) ); | |
| 691 | 681 | |
| 692 | - foreach ( $website_to_upgrade['themes'] as $theme_to_upgrade ) { | |
| 693 | - if ( $themeLength < strlen( $theme_to_upgrade['name'] ) ) { | |
| 694 | - $themeLength = strlen( $theme_to_upgrade['name'] ); | |
| 695 | - } | |
| 696 | - if ( $oldVersionLength < strlen( $theme_to_upgrade['version'] ) ) { | |
| 697 | - $oldVersionLength = strlen( $theme_to_upgrade['version'] ); | |
| 698 | - } | |
| 699 | - if ( $newVersionLength < strlen( $theme_to_upgrade['new_version'] ) ) { | |
| 700 | - $newVersionLength = strlen( $theme_to_upgrade['new_version'] ); | |
| 701 | - } | |
| 702 | - } | |
| 703 | - } | |
| 682 | + foreach ( $websites_to_upgrade as $website_to_upgrade ) { | |
| 683 | + if ( $idLength < strlen( $website_to_upgrade['id'] ) ) { | |
| 684 | + $idLength = strlen( $website_to_upgrade['id'] ); | |
| 685 | + } | |
| 686 | + if ( $nameLength < strlen( $website_to_upgrade['name'] ) ) { | |
| 687 | + $nameLength = strlen( $website_to_upgrade['name'] ); | |
| 688 | + } | |
| 704 | 689 | |
| 705 | - \WP_CLI::line( sprintf( "+%'--" . ( $idLength + 2 ) . "s+%'--" . ( $nameLength + 2 ) . "s+%'--" . ( $themeLength + 2 ) . "s+%'--" . ( $oldVersionLength + 2 ) . "s+%'--" . ( $newVersionLength + 2 ) . 's+', '', '', '', '', '' ) ); | |
| 706 | - \WP_CLI::line( sprintf( '| %-' . $idLength . 's | %-' . $nameLength . 's | %-' . $themeLength . 's | %-' . $oldVersionLength . 's | %-' . $newVersionLength . 's |', 'id', 'name', 'theme', 'version', 'new version' ) ); | |
| 707 | - \WP_CLI::line( sprintf( "+%'--" . ( $idLength + 2 ) . "s+%'--" . ( $nameLength + 2 ) . "s+%'--" . ( $themeLength + 2 ) . "s+%'--" . ( $oldVersionLength + 2 ) . "s+%'--" . ( $newVersionLength + 2 ) . 's+', '', '', '', '', '' ) ); | |
| 690 | + $i = 0; | |
| 691 | + foreach ( $website_to_upgrade['themes'] as $theme_to_upgrade ) { | |
| 692 | + if ( 0 == $i ) { | |
| 693 | + \WP_CLI::line( sprintf( '| %-' . $idLength . 's | %-' . $nameLength . 's | %-' . $themeLength . 's | %-' . $oldVersionLength . 's | %-' . $newVersionLength . 's |', $website_to_upgrade['id'], $website_to_upgrade['name'], $theme_to_upgrade['name'], $theme_to_upgrade['version'], $theme_to_upgrade['new_version'] ) ); | |
| 694 | + } else { | |
| 695 | + \WP_CLI::line( sprintf( '| %-' . $idLength . 's | %-' . $nameLength . 's | %-' . $themeLength . 's | %-' . $oldVersionLength . 's | %-' . $newVersionLength . 's |', '', '', $theme_to_upgrade['name'], $theme_to_upgrade['version'], $theme_to_upgrade['new_version'] ) ); | |
| 696 | + } | |
| 697 | + $i++; | |
| 698 | + } | |
| 699 | + } | |
| 708 | 700 | |
| 709 | - foreach ( $websites_to_upgrade as $website_to_upgrade ) { | |
| 710 | - if ( $idLength < strlen( $website_to_upgrade['id'] ) ) { | |
| 711 | - $idLength = strlen( $website_to_upgrade['id'] ); | |
| 712 | - } | |
| 713 | - if ( $nameLength < strlen( $website_to_upgrade['name'] ) ) { | |
| 714 | - $nameLength = strlen( $website_to_upgrade['name'] ); | |
| 715 | - } | |
| 701 | + \WP_CLI::line( sprintf( "+%'--" . ( $idLength + 2 ) . "s+%'--" . ( $nameLength + 2 ) . "s+%'--" . ( $themeLength + 2 ) . "s+%'--" . ( $oldVersionLength + 2 ) . "s+%'--" . ( $newVersionLength + 2 ) . 's+', '', '', '', '', '' ) ); | |
| 702 | + } elseif ( isset( $assoc_args['list-all'] ) ) { | |
| 703 | + $websites = MainWP_DB::instance()->query( MainWP_DB::instance()->get_sql_websites_for_current_user( false, null, 'wp.url', false, false, null, true ) ); | |
| 704 | + $userExtension = MainWP_DB_Common::instance()->get_user_extension(); | |
| 705 | + $websites_to_upgrade = array(); | |
| 706 | + while ( $websites && ( $website = MainWP_DB::fetch_object( $websites ) ) ) { | |
| 707 | + if ( ( count( $sites ) > 0 ) && ( ! in_array( $website->id, $sites, true ) ) ) { | |
| 708 | + continue; | |
| 709 | + } | |
| 710 | + $theme_to_list = json_decode( $website->themes, true ); | |
| 711 | + if ( is_array( $theme_to_list ) ) { | |
| 712 | + $tmp = array(); | |
| 713 | + foreach ( $theme_to_list as $theme ) { | |
| 714 | + $tmp[] = array( | |
| 715 | + 'name' => $theme['name'], | |
| 716 | + 'active' => $theme['active'] ? 'yes' : '', | |
| 717 | + 'version' => $theme['version'], | |
| 718 | + ); | |
| 719 | + } | |
| 720 | + $websites_to_upgrade[] = array( | |
| 721 | + 'id' => $website->id, | |
| 722 | + 'name' => $website->name, | |
| 723 | + 'themes' => $tmp, | |
| 724 | + ); | |
| 725 | + } | |
| 726 | + } | |
| 716 | 727 | |
| 717 | - $i = 0; | |
| 718 | - foreach ( $website_to_upgrade['themes'] as $theme_to_upgrade ) { | |
| 719 | - if ( 0 === $i ) { | |
| 720 | - \WP_CLI::line( sprintf( '| %-' . $idLength . 's | %-' . $nameLength . 's | %-' . $themeLength . 's | %-' . $oldVersionLength . 's | %-' . $newVersionLength . 's |', $website_to_upgrade['id'], $website_to_upgrade['name'], $theme_to_upgrade['name'], $theme_to_upgrade['version'], $theme_to_upgrade['new_version'] ) ); | |
| 721 | - } else { | |
| 722 | - \WP_CLI::line( sprintf( '| %-' . $idLength . 's | %-' . $nameLength . 's | %-' . $themeLength . 's | %-' . $oldVersionLength . 's | %-' . $newVersionLength . 's |', '', '', $theme_to_upgrade['name'], $theme_to_upgrade['version'], $theme_to_upgrade['new_version'] ) ); | |
| 723 | - } | |
| 724 | - ++$i; | |
| 725 | - } | |
| 726 | - } | |
| 728 | + $idLength = strlen( 'id' ); | |
| 729 | + $nameLength = strlen( 'name' ); | |
| 730 | + $themeLength = strlen( 'theme' ); | |
| 731 | + $oldVersionLength = strlen( 'version' ); | |
| 732 | + $activeLength = strlen( 'active' ); | |
| 733 | + foreach ( $websites_to_upgrade as $website_item ) { | |
| 734 | + if ( $idLength < strlen( $website_item['id'] ) ) { | |
| 735 | + $idLength = strlen( $website_item['id'] ); | |
| 736 | + } | |
| 737 | + if ( $nameLength < strlen( $website_item['name'] ) ) { | |
| 738 | + $nameLength = strlen( $website_item['name'] ); | |
| 739 | + } | |
| 727 | 740 | |
| 728 | - \WP_CLI::line( sprintf( "+%'--" . ( $idLength + 2 ) . "s+%'--" . ( $nameLength + 2 ) . "s+%'--" . ( $themeLength + 2 ) . "s+%'--" . ( $oldVersionLength + 2 ) . "s+%'--" . ( $newVersionLength + 2 ) . 's+', '', '', '', '', '' ) ); | |
| 729 | - } elseif ( isset( $assoc_args['list-all'] ) ) { | |
| 730 | - $websites = MainWP_DB::instance()->query( MainWP_DB::instance()->get_sql_websites_for_current_user( false, null, 'wp.url', false, false, null, true ) ); | |
| 731 | - $userExtension = MainWP_DB_Common::instance()->get_user_extension(); | |
| 732 | - $websites_to_upgrade = array(); | |
| 733 | - while ( $websites && ( $website = MainWP_DB::fetch_object( $websites ) ) ) { | |
| 734 | - if ( ! empty( $sites ) && ( ! in_array( $website->id, $sites, true ) ) ) { | |
| 735 | - continue; | |
| 736 | - } | |
| 737 | - $theme_to_list = json_decode( $website->themes, true ); | |
| 738 | - if ( is_array( $theme_to_list ) ) { | |
| 739 | - $tmp = array(); | |
| 740 | - foreach ( $theme_to_list as $theme ) { | |
| 741 | - $tmp[] = array( | |
| 742 | - 'name' => $theme['name'], | |
| 743 | - 'active' => $theme['active'] ? 'yes' : '', | |
| 744 | - 'version' => $theme['version'], | |
| 745 | - ); | |
| 746 | - } | |
| 747 | - $websites_to_upgrade[] = array( | |
| 748 | - 'id' => $website->id, | |
| 749 | - 'name' => $website->name, | |
| 750 | - 'themes' => $tmp, | |
| 751 | - ); | |
| 752 | - } | |
| 753 | - } | |
| 741 | + foreach ( $website_item['themes'] as $theme_item ) { | |
| 742 | + if ( $themeLength < strlen( $theme_item['name'] ) ) { | |
| 743 | + $themeLength = strlen( $theme_item['name'] ); | |
| 744 | + } | |
| 745 | + if ( $oldVersionLength < strlen( $theme_item['version'] ) ) { | |
| 746 | + $oldVersionLength = strlen( $theme_item['version'] ); | |
| 747 | + } | |
| 748 | + } | |
| 749 | + } | |
| 754 | 750 | |
| 755 | - $idLength = strlen( 'id' ); | |
| 756 | - $nameLength = strlen( 'name' ); | |
| 757 | - $themeLength = strlen( 'theme' ); | |
| 758 | - $oldVersionLength = strlen( 'version' ); | |
| 759 | - $activeLength = strlen( 'active' ); | |
| 760 | - foreach ( $websites_to_upgrade as $website_item ) { | |
| 761 | - if ( $idLength < strlen( $website_item['id'] ) ) { | |
| 762 | - $idLength = strlen( $website_item['id'] ); | |
| 763 | - } | |
| 764 | - if ( $nameLength < strlen( $website_item['name'] ) ) { | |
| 765 | - $nameLength = strlen( $website_item['name'] ); | |
| 766 | - } | |
| 751 | + \WP_CLI::line( sprintf( "+%'--" . ( $idLength + 2 ) . "s+%'--" . ( $nameLength + 2 ) . "s+%'--" . ( $themeLength + 2 ) . "s+%'--" . ( $activeLength + 2 ) . "s+%'--" . ( $oldVersionLength + 2 ) . 's+', '', '', '', '', '' ) ); | |
| 752 | + \WP_CLI::line( sprintf( '| %-' . $idLength . 's | %-' . $nameLength . 's | %-' . $themeLength . 's | %-' . $activeLength . 's | %-' . $oldVersionLength . 's |', 'id', 'name', 'theme', 'active', 'version' ) ); | |
| 753 | + \WP_CLI::line( sprintf( "+%'--" . ( $idLength + 2 ) . "s+%'--" . ( $nameLength + 2 ) . "s+%'--" . ( $themeLength + 2 ) . "s+%'--" . ( $activeLength + 2 ) . "s+%'--" . ( $oldVersionLength + 2 ) . 's+', '', '', '', '', '' ) ); | |
| 767 | 754 | |
| 768 | - foreach ( $website_item['themes'] as $theme_item ) { | |
| 769 | - if ( $themeLength < strlen( $theme_item['name'] ) ) { | |
| 770 | - $themeLength = strlen( $theme_item['name'] ); | |
| 771 | - } | |
| 772 | - if ( $oldVersionLength < strlen( $theme_item['version'] ) ) { | |
| 773 | - $oldVersionLength = strlen( $theme_item['version'] ); | |
| 774 | - } | |
| 775 | - } | |
| 776 | - } | |
| 755 | + foreach ( $websites_to_upgrade as $website_item ) { | |
| 756 | + if ( $idLength < strlen( $website_item['id'] ) ) { | |
| 757 | + $idLength = strlen( $website_item['id'] ); | |
| 758 | + } | |
| 759 | + if ( $nameLength < strlen( $website_item['name'] ) ) { | |
| 760 | + $nameLength = strlen( $website_item['name'] ); | |
| 761 | + } | |
| 777 | 762 | |
| 778 | - \WP_CLI::line( sprintf( "+%'--" . ( $idLength + 2 ) . "s+%'--" . ( $nameLength + 2 ) . "s+%'--" . ( $themeLength + 2 ) . "s+%'--" . ( $activeLength + 2 ) . "s+%'--" . ( $oldVersionLength + 2 ) . 's+', '', '', '', '', '' ) ); | |
| 779 | - \WP_CLI::line( sprintf( '| %-' . $idLength . 's | %-' . $nameLength . 's | %-' . $themeLength . 's | %-' . $activeLength . 's | %-' . $oldVersionLength . 's |', 'id', 'name', 'theme', 'active', 'version' ) ); | |
| 780 | - \WP_CLI::line( sprintf( "+%'--" . ( $idLength + 2 ) . "s+%'--" . ( $nameLength + 2 ) . "s+%'--" . ( $themeLength + 2 ) . "s+%'--" . ( $activeLength + 2 ) . "s+%'--" . ( $oldVersionLength + 2 ) . 's+', '', '', '', '', '' ) ); | |
| 763 | + $i = 0; | |
| 764 | + foreach ( $website_item['themes'] as $theme_item ) { | |
| 765 | + if ( 0 == $i ) { | |
| 766 | + \WP_CLI::line( sprintf( '| %-' . $idLength . 's | %-' . $nameLength . 's | %-' . $themeLength . 's | %-' . $activeLength . 's | %-' . $oldVersionLength . 's |', $website_item['id'], $website_item['name'], $theme_item['name'], $theme_item['active'], $theme_item['version'] ) ); | |
| 767 | + } else { | |
| 768 | + \WP_CLI::line( sprintf( '| %-' . $idLength . 's | %-' . $nameLength . 's | %-' . $themeLength . 's | %-' . $activeLength . 's | %-' . $oldVersionLength . 's |', '', '', $theme_item['name'], $theme_item['active'], $theme_item['version'] ) ); | |
| 769 | + } | |
| 770 | + $i++; | |
| 771 | + } | |
| 772 | + } | |
| 781 | 773 | |
| 782 | - foreach ( $websites_to_upgrade as $website_item ) { | |
| 783 | - if ( $idLength < strlen( $website_item['id'] ) ) { | |
| 784 | - $idLength = strlen( $website_item['id'] ); | |
| 785 | - } | |
| 786 | - if ( $nameLength < strlen( $website_item['name'] ) ) { | |
| 787 | - $nameLength = strlen( $website_item['name'] ); | |
| 788 | - } | |
| 774 | + \WP_CLI::line( sprintf( "+%'--" . ( $idLength + 2 ) . "s+%'--" . ( $nameLength + 2 ) . "s+%'--" . ( $themeLength + 2 ) . "s+%'--" . ( $activeLength + 2 ) . "s+%'--" . ( $oldVersionLength + 2 ) . 's+', '', '', '', '', '' ) ); | |
| 775 | + } elseif ( isset( $assoc_args['upgrade'] ) || isset( $assoc_args['upgrade-all'] ) ) { | |
| 789 | 776 | |
| 790 | - $i = 0; | |
| 791 | - foreach ( $website_item['themes'] as $theme_item ) { | |
| 792 | - if ( 0 === $i ) { | |
| 793 | - \WP_CLI::line( sprintf( '| %-' . $idLength . 's | %-' . $nameLength . 's | %-' . $themeLength . 's | %-' . $activeLength . 's | %-' . $oldVersionLength . 's |', $website_item['id'], $website_item['name'], $theme_item['name'], $theme_item['active'], $theme_item['version'] ) ); | |
| 794 | - } else { | |
| 795 | - \WP_CLI::line( sprintf( '| %-' . $idLength . 's | %-' . $nameLength . 's | %-' . $themeLength . 's | %-' . $activeLength . 's | %-' . $oldVersionLength . 's |', '', '', $theme_item['name'], $theme_item['active'], $theme_item['version'] ) ); | |
| 796 | - } | |
| 797 | - ++$i; | |
| 798 | - } | |
| 799 | - } | |
| 777 | + $themeSlugs = array(); | |
| 778 | + if ( isset( $assoc_args['upgrade'] ) ) { | |
| 779 | + $themeSlugs = explode( ',', $assoc_args['upgrade'] ); | |
| 780 | + } | |
| 800 | 781 | |
| 801 | - \WP_CLI::line( sprintf( "+%'--" . ( $idLength + 2 ) . "s+%'--" . ( $nameLength + 2 ) . "s+%'--" . ( $themeLength + 2 ) . "s+%'--" . ( $activeLength + 2 ) . "s+%'--" . ( $oldVersionLength + 2 ) . 's+', '', '', '', '', '' ) ); | |
| 802 | - } elseif ( isset( $assoc_args['upgrade'] ) || isset( $assoc_args['upgrade-all'] ) ) { | |
| 782 | + $websites = MainWP_DB::instance()->query( MainWP_DB::instance()->get_sql_websites_for_current_user( false, null, 'wp.url', false, false, null, true ) ); | |
| 783 | + $userExtension = MainWP_DB_Common::instance()->get_user_extension(); | |
| 784 | + while ( $websites && ( $website = MainWP_DB::fetch_object( $websites ) ) ) { | |
| 785 | + if ( ( count( $sites ) > 0 ) && ( ! in_array( $website->id, $sites, true ) ) ) { | |
| 786 | + continue; | |
| 787 | + } | |
| 803 | 788 | |
| 804 | - $themeSlugs = array(); | |
| 805 | - if ( isset( $assoc_args['upgrade'] ) ) { | |
| 806 | - $themeSlugs = explode( ',', $assoc_args['upgrade'] ); | |
| 807 | - } | |
| 789 | + $theme_upgrades = json_decode( $website->theme_upgrades, true ); | |
| 808 | 790 | |
| 809 | - $websites = MainWP_DB::instance()->query( MainWP_DB::instance()->get_sql_websites_for_current_user( false, null, 'wp.url', false, false, null, true ) ); | |
| 810 | - $userExtension = MainWP_DB_Common::instance()->get_user_extension(); | |
| 811 | - while ( $websites && ( $website = MainWP_DB::fetch_object( $websites ) ) ) { | |
| 812 | - if ( ! empty( $sites ) && ( ! in_array( $website->id, $sites, true ) ) ) { | |
| 813 | - continue; | |
| 814 | - } | |
| 791 | + if ( is_array( $theme_upgrades ) ) { | |
| 792 | + $ignored_themes = json_decode( $website->ignored_themes, true ); | |
| 793 | + if ( is_array( $ignored_themes ) ) { | |
| 794 | + $theme_upgrades = array_diff_key( $theme_upgrades, $ignored_themes ); | |
| 795 | + } | |
| 815 | 796 | |
| 816 | - $theme_upgrades = json_decode( $website->theme_upgrades, true ); | |
| 797 | + $ignored_themes = json_decode( $userExtension->ignored_themes, true ); | |
| 798 | + if ( is_array( $ignored_themes ) ) { | |
| 799 | + $theme_upgrades = array_diff_key( $theme_upgrades, $ignored_themes ); | |
| 800 | + } | |
| 817 | 801 | |
| 818 | - if ( is_array( $theme_upgrades ) ) { | |
| 819 | - $ignored_themes = json_decode( $website->ignored_themes, true ); | |
| 820 | - if ( is_array( $ignored_themes ) ) { | |
| 821 | - $theme_upgrades = array_diff_key( $theme_upgrades, $ignored_themes ); | |
| 822 | - } | |
| 802 | + $tmp = array(); | |
| 803 | + foreach ( $theme_upgrades as $key => $theme_upgrade ) { | |
| 804 | + if ( ( count( $themeSlugs ) > 0 ) && ( ! in_array( $theme_upgrade['update']['slug'], $themeSlugs, true ) ) ) { | |
| 805 | + continue; | |
| 806 | + } | |
| 823 | 807 | |
| 824 | - $ignored_themes = json_decode( $userExtension->ignored_themes, true ); | |
| 825 | - if ( is_array( $ignored_themes ) ) { | |
| 826 | - $theme_upgrades = array_diff_key( $theme_upgrades, $ignored_themes ); | |
| 827 | - } | |
| 808 | + $tmp[] = $key; | |
| 809 | + } | |
| 828 | 810 | |
| 829 | - $tmp = array(); | |
| 830 | - foreach ( $theme_upgrades as $key => $theme_upgrade ) { | |
| 831 | - if ( ! empty( $themeSlugs ) && ( ! in_array( $theme_upgrade['update']['slug'], $themeSlugs, true ) ) ) { | |
| 832 | - continue; | |
| 833 | - } | |
| 811 | + if ( count( $tmp ) == 0 ) { | |
| 812 | + \WP_CLI::line( 'No available theme updates for ' . $website->name ); | |
| 834 | 813 | |
| 835 | - $tmp[] = $key; | |
| 836 | - } | |
| 814 | + continue; | |
| 815 | + } | |
| 837 | 816 | |
| 838 | - if ( empty( $tmp ) ) { | |
| 839 | - \WP_CLI::line( 'No available theme updates for ' . $website->name ); | |
| 817 | + \WP_CLI::line( 'Updating ' . count( $tmp ) . ' themes for ' . $website->name ); | |
| 840 | 818 | |
| 841 | - continue; | |
| 842 | - } | |
| 819 | + try { | |
| 820 | + MainWP_Updates_Handler::upgrade_plugin_theme_translation( $website->id, 'theme', implode( ',', $tmp ) ); | |
| 821 | + \WP_CLI::success( 'Updates completed' ); | |
| 822 | + } catch ( \Exception $e ) { | |
| 823 | + \WP_CLI::error( 'Updates failed: ' . MainWP_Error_Helper::get_console_error_message( $e ) ); | |
| 824 | + if ( $e->getMesage() == 'WPERROR' ) { | |
| 825 | + \WP_CLI::debug( 'Error: ' . MainWP_Utility::value_to_string( $e->get_message_extra(), 1 ) ); | |
| 826 | + } | |
| 827 | + } | |
| 828 | + } | |
| 829 | + } | |
| 830 | + } | |
| 831 | + } | |
| 843 | 832 | |
| 844 | - \WP_CLI::line( 'Updating ' . count( $tmp ) . ' themes for ' . $website->name ); | |
| 845 | - | |
| 846 | - try { | |
| 847 | - MainWP_Updates_Handler::upgrade_plugin_theme_translation( $website->id, 'theme', implode( ',', $tmp ) ); | |
| 848 | - \WP_CLI::success( 'Updates completed' ); | |
| 849 | - } catch ( \Exception $e ) { | |
| 850 | - \WP_CLI::error( 'Updates failed: ' . MainWP_Error_Helper::get_console_error_message( $e ) ); | |
| 851 | - if ( $e->getMesage() === 'WPERROR' ) { | |
| 852 | - \WP_CLI::debug( 'Error: ' . MainWP_Utility::value_to_string( $e->get_message_extra(), 1 ) ); | |
| 853 | - } | |
| 854 | - } | |
| 855 | - } | |
| 856 | - } | |
| 857 | - } | |
| 858 | - } | |
| 859 | 833 | } |