@@ -12,12 +12,12 @@ discard block |
||
| 12 | 12 | |
| 13 | 13 | // If the functions have already been autoloaded, don't reload. |
| 14 | 14 | // This fixes function duplication during unit testing. |
| 15 | -$path = dirname( __FILE__ ) . '/vendor/autoload.php'; |
|
| 16 | -if ( file_exists( $path ) ) { |
|
| 17 | - require_once( $path ); |
|
| 15 | +$path = dirname(__FILE__) . '/vendor/autoload.php'; |
|
| 16 | +if (file_exists($path)) { |
|
| 17 | + require_once($path); |
|
| 18 | 18 | } |
| 19 | 19 | |
| 20 | -add_action( 'plugins_loaded', array( new Writing_On_GitHub, 'boot' ) ); |
|
| 20 | +add_action('plugins_loaded', array(new Writing_On_GitHub, 'boot')); |
|
| 21 | 21 | |
| 22 | 22 | class Writing_On_GitHub { |
| 23 | 23 | |
@@ -107,14 +107,14 @@ discard block |
||
| 107 | 107 | public function __construct() { |
| 108 | 108 | self::$instance = $this; |
| 109 | 109 | |
| 110 | - if ( is_admin() ) { |
|
| 110 | + if (is_admin()) { |
|
| 111 | 111 | $this->admin = new Writing_On_GitHub_Admin; |
| 112 | 112 | } |
| 113 | 113 | |
| 114 | - $this->controller = new Writing_On_GitHub_Controller( $this ); |
|
| 114 | + $this->controller = new Writing_On_GitHub_Controller($this); |
|
| 115 | 115 | |
| 116 | - if ( defined( 'WP_CLI' ) && WP_CLI ) { |
|
| 117 | - WP_CLI::add_command( 'wogh', $this->cli() ); |
|
| 116 | + if (defined('WP_CLI') && WP_CLI) { |
|
| 117 | + WP_CLI::add_command('wogh', $this->cli()); |
|
| 118 | 118 | } |
| 119 | 119 | } |
| 120 | 120 | |
@@ -122,30 +122,30 @@ discard block |
||
| 122 | 122 | * Attaches the plugin's hooks into WordPress. |
| 123 | 123 | */ |
| 124 | 124 | public function boot() { |
| 125 | - register_activation_hook( __FILE__, array( $this, 'activate' ) ); |
|
| 126 | - add_action( 'admin_notices', array( $this, 'activation_notice' ) ); |
|
| 125 | + register_activation_hook(__FILE__, array($this, 'activate')); |
|
| 126 | + add_action('admin_notices', array($this, 'activation_notice')); |
|
| 127 | 127 | |
| 128 | - add_action( 'init', array( $this, 'l10n' ) ); |
|
| 128 | + add_action('init', array($this, 'l10n')); |
|
| 129 | 129 | |
| 130 | 130 | // Controller actions. |
| 131 | - add_action( 'save_post', array( $this->controller, 'export_post' ) ); |
|
| 132 | - add_action( 'delete_post', array( $this->controller, 'delete_post' ) ); |
|
| 133 | - add_action( 'wp_ajax_nopriv_wogh_push_request', array( $this->controller, 'pull_posts' ) ); |
|
| 134 | - add_action( 'wogh_export', array( $this->controller, 'export_all' ), 10, 2 ); |
|
| 135 | - add_action( 'wogh_import', array( $this->controller, 'import_master' ), 10, 1 ); |
|
| 136 | - add_filter( 'get_edit_post_link', array( $this, 'edit_post_link' ), 10, 3 ); |
|
| 131 | + add_action('save_post', array($this->controller, 'export_post')); |
|
| 132 | + add_action('delete_post', array($this->controller, 'delete_post')); |
|
| 133 | + add_action('wp_ajax_nopriv_wogh_push_request', array($this->controller, 'pull_posts')); |
|
| 134 | + add_action('wogh_export', array($this->controller, 'export_all'), 10, 2); |
|
| 135 | + add_action('wogh_import', array($this->controller, 'import_master'), 10, 1); |
|
| 136 | + add_filter('get_edit_post_link', array($this, 'edit_post_link'), 10, 3); |
|
| 137 | 137 | |
| 138 | 138 | // add_filter( 'wogh_post_meta', array( $this, 'ignore_post_meta' ), 10, 1 ); |
| 139 | 139 | // add_filter( 'wogh_pre_import_meta', array( $this, 'ignore_post_meta' ), 10, 1 ); |
| 140 | - add_filter( 'the_content', array( $this, 'the_content' ) ); |
|
| 140 | + add_filter('the_content', array($this, 'the_content')); |
|
| 141 | 141 | |
| 142 | - do_action( 'wogh_boot', $this ); |
|
| 142 | + do_action('wogh_boot', $this); |
|
| 143 | 143 | } |
| 144 | 144 | |
| 145 | 145 | public function edit_post_link($link, $postID, $context) { |
| 146 | - if ( ! wp_is_post_revision( $postID ) ) { |
|
| 147 | - $post = new Writing_On_GitHub_Post( $postID, Writing_On_GitHub::$instance->api() ); |
|
| 148 | - if ( $post->is_on_github() ) { |
|
| 146 | + if ( ! wp_is_post_revision($postID)) { |
|
| 147 | + $post = new Writing_On_GitHub_Post($postID, Writing_On_GitHub::$instance->api()); |
|
| 148 | + if ($post->is_on_github()) { |
|
| 149 | 149 | return $post->github_edit_url(); |
| 150 | 150 | } |
| 151 | 151 | } |
@@ -204,29 +204,29 @@ discard block |
||
| 204 | 204 | * Init i18n files |
| 205 | 205 | */ |
| 206 | 206 | public function l10n() { |
| 207 | - load_plugin_textdomain( self::$text_domain ); |
|
| 207 | + load_plugin_textdomain(self::$text_domain); |
|
| 208 | 208 | } |
| 209 | 209 | |
| 210 | 210 | /** |
| 211 | 211 | * Sets and kicks off the export cronjob |
| 212 | 212 | */ |
| 213 | - public function start_export( $force = false ) { |
|
| 214 | - $this->start_cron( 'export', $force ); |
|
| 213 | + public function start_export($force = false) { |
|
| 214 | + $this->start_cron('export', $force); |
|
| 215 | 215 | } |
| 216 | 216 | |
| 217 | 217 | /** |
| 218 | 218 | * Sets and kicks off the import cronjob |
| 219 | 219 | */ |
| 220 | 220 | public function start_import() { |
| 221 | - $this->start_cron( 'import' ); |
|
| 221 | + $this->start_cron('import'); |
|
| 222 | 222 | } |
| 223 | 223 | |
| 224 | 224 | /** |
| 225 | 225 | * Enables the admin notice on initial activation |
| 226 | 226 | */ |
| 227 | 227 | public function activate() { |
| 228 | - if ( 'yes' !== get_option( '_wogh_fully_exported' ) ) { |
|
| 229 | - set_transient( '_wogh_activated', 'yes' ); |
|
| 228 | + if ('yes' !== get_option('_wogh_fully_exported')) { |
|
| 229 | + set_transient('_wogh_activated', 'yes'); |
|
| 230 | 230 | } |
| 231 | 231 | } |
| 232 | 232 | |
@@ -234,18 +234,18 @@ discard block |
||
| 234 | 234 | * Displays the activation admin notice |
| 235 | 235 | */ |
| 236 | 236 | public function activation_notice() { |
| 237 | - if ( ! get_transient( '_wogh_activated' ) ) { |
|
| 237 | + if ( ! get_transient('_wogh_activated')) { |
|
| 238 | 238 | return; |
| 239 | 239 | } |
| 240 | 240 | |
| 241 | - delete_transient( '_wogh_activated' ); |
|
| 241 | + delete_transient('_wogh_activated'); |
|
| 242 | 242 | |
| 243 | 243 | ?><div class="updated"> |
| 244 | 244 | <p> |
| 245 | 245 | <?php |
| 246 | 246 | printf( |
| 247 | - __( 'To set up your site to sync with GitHub, update your <a href="%s">settings</a> and click "Export to GitHub."', 'writing-on-github' ), |
|
| 248 | - admin_url( 'options-general.php?page=' . static::$text_domain) |
|
| 247 | + __('To set up your site to sync with GitHub, update your <a href="%s">settings</a> and click "Export to GitHub."', 'writing-on-github'), |
|
| 248 | + admin_url('options-general.php?page=' . static::$text_domain) |
|
| 249 | 249 | ); |
| 250 | 250 | ?> |
| 251 | 251 | </p> |
@@ -267,7 +267,7 @@ discard block |
||
| 267 | 267 | * @return Writing_On_GitHub_CLI |
| 268 | 268 | */ |
| 269 | 269 | public function cli() { |
| 270 | - if ( ! $this->cli ) { |
|
| 270 | + if ( ! $this->cli) { |
|
| 271 | 271 | $this->cli = new Writing_On_GitHub_CLI; |
| 272 | 272 | } |
| 273 | 273 | |
@@ -280,8 +280,8 @@ discard block |
||
| 280 | 280 | * @return Writing_On_GitHub_Request |
| 281 | 281 | */ |
| 282 | 282 | public function request() { |
| 283 | - if ( ! $this->request ) { |
|
| 284 | - $this->request = new Writing_On_GitHub_Request( $this ); |
|
| 283 | + if ( ! $this->request) { |
|
| 284 | + $this->request = new Writing_On_GitHub_Request($this); |
|
| 285 | 285 | } |
| 286 | 286 | |
| 287 | 287 | return $this->request; |
@@ -293,8 +293,8 @@ discard block |
||
| 293 | 293 | * @return Writing_On_GitHub_Response |
| 294 | 294 | */ |
| 295 | 295 | public function response() { |
| 296 | - if ( ! $this->response ) { |
|
| 297 | - $this->response = new Writing_On_GitHub_Response( $this ); |
|
| 296 | + if ( ! $this->response) { |
|
| 297 | + $this->response = new Writing_On_GitHub_Response($this); |
|
| 298 | 298 | } |
| 299 | 299 | |
| 300 | 300 | return $this->response; |
@@ -306,8 +306,8 @@ discard block |
||
| 306 | 306 | * @return Writing_On_GitHub_Api |
| 307 | 307 | */ |
| 308 | 308 | public function api() { |
| 309 | - if ( ! $this->api ) { |
|
| 310 | - $this->api = new Writing_On_GitHub_Api( $this ); |
|
| 309 | + if ( ! $this->api) { |
|
| 310 | + $this->api = new Writing_On_GitHub_Api($this); |
|
| 311 | 311 | } |
| 312 | 312 | |
| 313 | 313 | return $this->api; |
@@ -319,8 +319,8 @@ discard block |
||
| 319 | 319 | * @return Writing_On_GitHub_Import |
| 320 | 320 | */ |
| 321 | 321 | public function import() { |
| 322 | - if ( ! $this->import ) { |
|
| 323 | - $this->import = new Writing_On_GitHub_Import( $this ); |
|
| 322 | + if ( ! $this->import) { |
|
| 323 | + $this->import = new Writing_On_GitHub_Import($this); |
|
| 324 | 324 | } |
| 325 | 325 | |
| 326 | 326 | return $this->import; |
@@ -332,8 +332,8 @@ discard block |
||
| 332 | 332 | * @return Writing_On_GitHub_Export |
| 333 | 333 | */ |
| 334 | 334 | public function export() { |
| 335 | - if ( ! $this->export ) { |
|
| 336 | - $this->export = new Writing_On_GitHub_Export( $this ); |
|
| 335 | + if ( ! $this->export) { |
|
| 336 | + $this->export = new Writing_On_GitHub_Export($this); |
|
| 337 | 337 | } |
| 338 | 338 | |
| 339 | 339 | return $this->export; |
@@ -345,7 +345,7 @@ discard block |
||
| 345 | 345 | * @return Writing_On_GitHub_Semaphore |
| 346 | 346 | */ |
| 347 | 347 | public function semaphore() { |
| 348 | - if ( ! $this->semaphore ) { |
|
| 348 | + if ( ! $this->semaphore) { |
|
| 349 | 349 | $this->semaphore = new Writing_On_GitHub_Semaphore; |
| 350 | 350 | } |
| 351 | 351 | |
@@ -358,8 +358,8 @@ discard block |
||
| 358 | 358 | * @return Writing_On_GitHub_Database |
| 359 | 359 | */ |
| 360 | 360 | public function database() { |
| 361 | - if ( ! $this->database ) { |
|
| 362 | - $this->database = new Writing_On_GitHub_Database( $this ); |
|
| 361 | + if ( ! $this->database) { |
|
| 362 | + $this->database = new Writing_On_GitHub_Database($this); |
|
| 363 | 363 | } |
| 364 | 364 | |
| 365 | 365 | return $this->database; |
@@ -373,18 +373,18 @@ discard block |
||
| 373 | 373 | * @param mixed $msg |
| 374 | 374 | * @param string $write |
| 375 | 375 | */ |
| 376 | - public static function write_log( $msg, $write = 'line' ) { |
|
| 377 | - if ( defined( 'WP_CLI' ) && WP_CLI ) { |
|
| 378 | - if ( is_array( $msg ) || is_object( $msg ) ) { |
|
| 379 | - WP_CLI::print_value( $msg ); |
|
| 376 | + public static function write_log($msg, $write = 'line') { |
|
| 377 | + if (defined('WP_CLI') && WP_CLI) { |
|
| 378 | + if (is_array($msg) || is_object($msg)) { |
|
| 379 | + WP_CLI::print_value($msg); |
|
| 380 | 380 | } else { |
| 381 | - WP_CLI::$write( $msg ); |
|
| 381 | + WP_CLI::$write($msg); |
|
| 382 | 382 | } |
| 383 | - } elseif ( true === WP_DEBUG ) { |
|
| 384 | - if ( is_array( $msg ) || is_object( $msg ) ) { |
|
| 385 | - error_log( print_r( $msg, true ) ); |
|
| 383 | + } elseif (true === WP_DEBUG) { |
|
| 384 | + if (is_array($msg) || is_object($msg)) { |
|
| 385 | + error_log(print_r($msg, true)); |
|
| 386 | 386 | } else { |
| 387 | - error_log( $msg ); |
|
| 387 | + error_log($msg); |
|
| 388 | 388 | } |
| 389 | 389 | } |
| 390 | 390 | } |
@@ -395,10 +395,10 @@ discard block |
||
| 395 | 395 | * @param bool $force |
| 396 | 396 | * @param string $type |
| 397 | 397 | */ |
| 398 | - protected function start_cron( $type, $force = false ) { |
|
| 399 | - update_option( '_wogh_' . $type . '_started', 'yes' ); |
|
| 398 | + protected function start_cron($type, $force = false) { |
|
| 399 | + update_option('_wogh_' . $type . '_started', 'yes'); |
|
| 400 | 400 | $user_id = get_current_user_id(); |
| 401 | - wp_schedule_single_event( time(), 'wogh_' . $type . '', array( $user_id, $force ) ); |
|
| 401 | + wp_schedule_single_event(time(), 'wogh_' . $type . '', array($user_id, $force)); |
|
| 402 | 402 | spawn_cron(); |
| 403 | 403 | } |
| 404 | 404 | } |
@@ -13,16 +13,16 @@ discard block |
||
| 13 | 13 | * Hook into GitHub API |
| 14 | 14 | */ |
| 15 | 15 | public function __construct() { |
| 16 | - add_action( 'admin_menu', array( $this, 'add_admin_menu' ) ); |
|
| 17 | - add_action( 'admin_init', array( $this, 'register_settings' ) ); |
|
| 18 | - add_action( 'current_screen', array( $this, 'trigger_cron' ) ); |
|
| 16 | + add_action('admin_menu', array($this, 'add_admin_menu')); |
|
| 17 | + add_action('admin_init', array($this, 'register_settings')); |
|
| 18 | + add_action('current_screen', array($this, 'trigger_cron')); |
|
| 19 | 19 | } |
| 20 | 20 | |
| 21 | 21 | /** |
| 22 | 22 | * Callback to render the settings page view |
| 23 | 23 | */ |
| 24 | 24 | public function settings_page() { |
| 25 | - include dirname( dirname( __FILE__ ) ) . '/views/options.php'; |
|
| 25 | + include dirname(dirname(__FILE__)) . '/views/options.php'; |
|
| 26 | 26 | } |
| 27 | 27 | |
| 28 | 28 | /** |
@@ -32,63 +32,63 @@ discard block |
||
| 32 | 32 | add_settings_section( |
| 33 | 33 | 'general', |
| 34 | 34 | 'General Settings', |
| 35 | - array( $this, 'section_callback' ), |
|
| 35 | + array($this, 'section_callback'), |
|
| 36 | 36 | Writing_On_GitHub::$text_domain |
| 37 | 37 | ); |
| 38 | 38 | |
| 39 | - register_setting( Writing_On_GitHub::$text_domain, 'wogh_host' ); |
|
| 40 | - add_settings_field( 'wogh_host', __( 'GitHub hostname', 'writing-on-github' ), array( $this, 'field_callback' ), Writing_On_GitHub::$text_domain, 'general', array( |
|
| 39 | + register_setting(Writing_On_GitHub::$text_domain, 'wogh_host'); |
|
| 40 | + add_settings_field('wogh_host', __('GitHub hostname', 'writing-on-github'), array($this, 'field_callback'), Writing_On_GitHub::$text_domain, 'general', array( |
|
| 41 | 41 | 'default' => 'https://api.github.com', |
| 42 | 42 | 'name' => 'wogh_host', |
| 43 | - 'help_text' => __( 'The GitHub host to use. This only needs to be changed to support a GitHub Enterprise installation.', 'writing-on-github' ), |
|
| 43 | + 'help_text' => __('The GitHub host to use. This only needs to be changed to support a GitHub Enterprise installation.', 'writing-on-github'), |
|
| 44 | 44 | ) |
| 45 | 45 | ); |
| 46 | 46 | |
| 47 | - register_setting( Writing_On_GitHub::$text_domain, 'wogh_repository' ); |
|
| 48 | - add_settings_field( 'wogh_repository', __( 'Repository', 'writing-on-github' ), array( $this, 'field_callback' ), Writing_On_GitHub::$text_domain, 'general', array( |
|
| 47 | + register_setting(Writing_On_GitHub::$text_domain, 'wogh_repository'); |
|
| 48 | + add_settings_field('wogh_repository', __('Repository', 'writing-on-github'), array($this, 'field_callback'), Writing_On_GitHub::$text_domain, 'general', array( |
|
| 49 | 49 | 'default' => '', |
| 50 | 50 | 'name' => 'wogh_repository', |
| 51 | - 'help_text' => __( 'The GitHub repository to commit to, with owner (<code>[OWNER]/[REPOSITORY]</code>), e.g., <code>github/hubot.github.com</code>. The repository should contain an initial commit, which is satisfied by including a README when you create the repository on GitHub.', 'writing-on-github' ), |
|
| 51 | + 'help_text' => __('The GitHub repository to commit to, with owner (<code>[OWNER]/[REPOSITORY]</code>), e.g., <code>github/hubot.github.com</code>. The repository should contain an initial commit, which is satisfied by including a README when you create the repository on GitHub.', 'writing-on-github'), |
|
| 52 | 52 | ) |
| 53 | 53 | ); |
| 54 | 54 | |
| 55 | - register_setting( Writing_On_GitHub::$text_domain, 'wogh_branch' ); |
|
| 56 | - add_settings_field( 'wogh_branch', __( 'Branch', 'writing-on-github' ), array( $this, 'field_callback' ), Writing_On_GitHub::$text_domain, 'general', array( |
|
| 55 | + register_setting(Writing_On_GitHub::$text_domain, 'wogh_branch'); |
|
| 56 | + add_settings_field('wogh_branch', __('Branch', 'writing-on-github'), array($this, 'field_callback'), Writing_On_GitHub::$text_domain, 'general', array( |
|
| 57 | 57 | 'default' => 'master', |
| 58 | 58 | 'name' => 'wogh_branch', |
| 59 | - 'help_text' => __( 'The GitHub branch to commit to, default is master.', 'writing-on-github' ), |
|
| 59 | + 'help_text' => __('The GitHub branch to commit to, default is master.', 'writing-on-github'), |
|
| 60 | 60 | ) |
| 61 | 61 | ); |
| 62 | 62 | |
| 63 | - register_setting( Writing_On_GitHub::$text_domain, 'wogh_oauth_token' ); |
|
| 64 | - add_settings_field( 'wogh_oauth_token', __( 'Oauth Token', 'writing-on-github' ), array( $this, 'field_callback' ), Writing_On_GitHub::$text_domain, 'general', array( |
|
| 63 | + register_setting(Writing_On_GitHub::$text_domain, 'wogh_oauth_token'); |
|
| 64 | + add_settings_field('wogh_oauth_token', __('Oauth Token', 'writing-on-github'), array($this, 'field_callback'), Writing_On_GitHub::$text_domain, 'general', array( |
|
| 65 | 65 | 'default' => '', |
| 66 | 66 | 'name' => 'wogh_oauth_token', |
| 67 | - 'help_text' => __( "A <a href='https://github.com/settings/tokens/new'>personal oauth token</a> with <code>public_repo</code> scope.", 'writing-on-github' ), |
|
| 67 | + 'help_text' => __("A <a href='https://github.com/settings/tokens/new'>personal oauth token</a> with <code>public_repo</code> scope.", 'writing-on-github'), |
|
| 68 | 68 | ) |
| 69 | 69 | ); |
| 70 | 70 | |
| 71 | - register_setting( Writing_On_GitHub::$text_domain, 'wogh_secret' ); |
|
| 72 | - add_settings_field( 'wogh_secret', __( 'Webhook Secret', 'writing-on-github' ), array( $this, 'field_callback' ), Writing_On_GitHub::$text_domain, 'general', array( |
|
| 71 | + register_setting(Writing_On_GitHub::$text_domain, 'wogh_secret'); |
|
| 72 | + add_settings_field('wogh_secret', __('Webhook Secret', 'writing-on-github'), array($this, 'field_callback'), Writing_On_GitHub::$text_domain, 'general', array( |
|
| 73 | 73 | 'default' => '', |
| 74 | 74 | 'name' => 'wogh_secret', |
| 75 | - 'help_text' => __( "The webhook's secret phrase. This should be password strength, as it is used to verify the webhook's payload.", 'writing-on-github' ), |
|
| 75 | + 'help_text' => __("The webhook's secret phrase. This should be password strength, as it is used to verify the webhook's payload.", 'writing-on-github'), |
|
| 76 | 76 | ) |
| 77 | 77 | ); |
| 78 | 78 | |
| 79 | - register_setting( Writing_On_GitHub::$text_domain, 'wogh_default_user' ); |
|
| 80 | - add_settings_field( 'wogh_default_user', __( 'Default Import User', 'writing-on-github' ), array( &$this, 'user_field_callback' ), Writing_On_GitHub::$text_domain, 'general', array( |
|
| 79 | + register_setting(Writing_On_GitHub::$text_domain, 'wogh_default_user'); |
|
| 80 | + add_settings_field('wogh_default_user', __('Default Import User', 'writing-on-github'), array(&$this, 'user_field_callback'), Writing_On_GitHub::$text_domain, 'general', array( |
|
| 81 | 81 | 'default' => '', |
| 82 | 82 | 'name' => 'wogh_default_user', |
| 83 | - 'help_text' => __( 'The fallback user for import, in case Writing On GitHub cannot find the committer in the database.', 'writing-on-github' ), |
|
| 83 | + 'help_text' => __('The fallback user for import, in case Writing On GitHub cannot find the committer in the database.', 'writing-on-github'), |
|
| 84 | 84 | ) |
| 85 | 85 | ); |
| 86 | 86 | |
| 87 | - register_setting( Writing_On_GitHub::$text_domain, 'wogh_ignore_author' ); |
|
| 88 | - add_settings_field( 'wogh_ignore_author', __( 'Ignore author', 'writing-on-github' ), array( &$this, 'checkbox_field_callback' ), Writing_On_GitHub::$text_domain, 'general', array( |
|
| 87 | + register_setting(Writing_On_GitHub::$text_domain, 'wogh_ignore_author'); |
|
| 88 | + add_settings_field('wogh_ignore_author', __('Ignore author', 'writing-on-github'), array(&$this, 'checkbox_field_callback'), Writing_On_GitHub::$text_domain, 'general', array( |
|
| 89 | 89 | 'default' => '', |
| 90 | 90 | 'name' => 'wogh_ignore_author', |
| 91 | - 'help_text' => __( 'Do not export author and do not use author info from GitHub.', 'writing-on-github' ), |
|
| 91 | + 'help_text' => __('Do not export author and do not use author info from GitHub.', 'writing-on-github'), |
|
| 92 | 92 | ) |
| 93 | 93 | ); |
| 94 | 94 | |
@@ -106,8 +106,8 @@ discard block |
||
| 106 | 106 | * |
| 107 | 107 | * @param array $args Field arguments. |
| 108 | 108 | */ |
| 109 | - public function field_callback( $args ) { |
|
| 110 | - include dirname( dirname( __FILE__ ) ) . '/views/setting-field.php'; |
|
| 109 | + public function field_callback($args) { |
|
| 110 | + include dirname(dirname(__FILE__)) . '/views/setting-field.php'; |
|
| 111 | 111 | } |
| 112 | 112 | |
| 113 | 113 | /** |
@@ -115,8 +115,8 @@ discard block |
||
| 115 | 115 | * |
| 116 | 116 | * @param array $args Field arguments. |
| 117 | 117 | */ |
| 118 | - public function user_field_callback( $args ) { |
|
| 119 | - include dirname( dirname( __FILE__ ) ) . '/views/user-setting-field.php'; |
|
| 118 | + public function user_field_callback($args) { |
|
| 119 | + include dirname(dirname(__FILE__)) . '/views/user-setting-field.php'; |
|
| 120 | 120 | } |
| 121 | 121 | |
| 122 | 122 | /** |
@@ -124,8 +124,8 @@ discard block |
||
| 124 | 124 | * |
| 125 | 125 | * @param array $args Field arguments. |
| 126 | 126 | */ |
| 127 | - public function textarea_field_callback( $args ) { |
|
| 128 | - include dirname( dirname( __FILE__ ) ) . '/views/textarea-setting-field.php'; |
|
| 127 | + public function textarea_field_callback($args) { |
|
| 128 | + include dirname(dirname(__FILE__)) . '/views/textarea-setting-field.php'; |
|
| 129 | 129 | } |
| 130 | 130 | |
| 131 | 131 | /** |
@@ -133,58 +133,58 @@ discard block |
||
| 133 | 133 | * |
| 134 | 134 | * @param array $args Field arguments. |
| 135 | 135 | */ |
| 136 | - public function checkbox_field_callback( $args ) { |
|
| 137 | - include dirname( dirname( __FILE__ ) ) . '/views/checkbox-setting-field.php'; |
|
| 136 | + public function checkbox_field_callback($args) { |
|
| 137 | + include dirname(dirname(__FILE__)) . '/views/checkbox-setting-field.php'; |
|
| 138 | 138 | } |
| 139 | 139 | |
| 140 | 140 | /** |
| 141 | 141 | * Displays settings messages from background processes |
| 142 | 142 | */ |
| 143 | 143 | public function section_callback() { |
| 144 | - if ( get_current_screen()->id !== 'settings_page_' . Writing_On_GitHub::$text_domain ) { |
|
| 144 | + if (get_current_screen()->id !== 'settings_page_' . Writing_On_GitHub::$text_domain) { |
|
| 145 | 145 | return; |
| 146 | 146 | } |
| 147 | 147 | |
| 148 | - if ( 'yes' === get_option( '_wogh_export_started' ) ) { ?> |
|
| 148 | + if ('yes' === get_option('_wogh_export_started')) { ?> |
|
| 149 | 149 | <div class="updated"> |
| 150 | - <p><?php esc_html_e( 'Export to GitHub started.', 'writing-on-github' ); ?></p> |
|
| 150 | + <p><?php esc_html_e('Export to GitHub started.', 'writing-on-github'); ?></p> |
|
| 151 | 151 | </div><?php |
| 152 | - delete_option( '_wogh_export_started' ); |
|
| 152 | + delete_option('_wogh_export_started'); |
|
| 153 | 153 | } |
| 154 | 154 | |
| 155 | - if ( $message = get_option( '_wogh_export_error' ) ) { ?> |
|
| 155 | + if ($message = get_option('_wogh_export_error')) { ?> |
|
| 156 | 156 | <div class="error"> |
| 157 | - <p><?php esc_html_e( 'Export to GitHub failed with error:', 'writing-on-github' ); ?> <?php echo esc_html( $message );?></p> |
|
| 157 | + <p><?php esc_html_e('Export to GitHub failed with error:', 'writing-on-github'); ?> <?php echo esc_html($message); ?></p> |
|
| 158 | 158 | </div><?php |
| 159 | - delete_option( '_wogh_export_error' ); |
|
| 159 | + delete_option('_wogh_export_error'); |
|
| 160 | 160 | } |
| 161 | 161 | |
| 162 | - if ( 'yes' === get_option( '_wogh_export_complete' ) ) { ?> |
|
| 162 | + if ('yes' === get_option('_wogh_export_complete')) { ?> |
|
| 163 | 163 | <div class="updated"> |
| 164 | - <p><?php esc_html_e( 'Export to GitHub completed successfully.', 'writing-on-github' );?></p> |
|
| 164 | + <p><?php esc_html_e('Export to GitHub completed successfully.', 'writing-on-github'); ?></p> |
|
| 165 | 165 | </div><?php |
| 166 | - delete_option( '_wogh_export_complete' ); |
|
| 166 | + delete_option('_wogh_export_complete'); |
|
| 167 | 167 | } |
| 168 | 168 | |
| 169 | - if ( 'yes' === get_option( '_wogh_import_started' ) ) { ?> |
|
| 169 | + if ('yes' === get_option('_wogh_import_started')) { ?> |
|
| 170 | 170 | <div class="updated"> |
| 171 | - <p><?php esc_html_e( 'Import from GitHub started.', 'writing-on-github' ); ?></p> |
|
| 171 | + <p><?php esc_html_e('Import from GitHub started.', 'writing-on-github'); ?></p> |
|
| 172 | 172 | </div><?php |
| 173 | - delete_option( '_wogh_import_started' ); |
|
| 173 | + delete_option('_wogh_import_started'); |
|
| 174 | 174 | } |
| 175 | 175 | |
| 176 | - if ( $message = get_option( '_wogh_import_error' ) ) { ?> |
|
| 176 | + if ($message = get_option('_wogh_import_error')) { ?> |
|
| 177 | 177 | <div class="error"> |
| 178 | - <p><?php esc_html_e( 'Import from GitHub failed with error:', 'writing-on-github' ); ?> <?php echo esc_html( $message );?></p> |
|
| 178 | + <p><?php esc_html_e('Import from GitHub failed with error:', 'writing-on-github'); ?> <?php echo esc_html($message); ?></p> |
|
| 179 | 179 | </div><?php |
| 180 | - delete_option( '_wogh_import_error' ); |
|
| 180 | + delete_option('_wogh_import_error'); |
|
| 181 | 181 | } |
| 182 | 182 | |
| 183 | - if ( 'yes' === get_option( '_wogh_import_complete' ) ) { ?> |
|
| 183 | + if ('yes' === get_option('_wogh_import_complete')) { ?> |
|
| 184 | 184 | <div class="updated"> |
| 185 | - <p><?php esc_html_e( 'Import from GitHub completed successfully.', 'writing-on-github' );?></p> |
|
| 185 | + <p><?php esc_html_e('Import from GitHub completed successfully.', 'writing-on-github'); ?></p> |
|
| 186 | 186 | </div><?php |
| 187 | - delete_option( '_wogh_import_complete' ); |
|
| 187 | + delete_option('_wogh_import_complete'); |
|
| 188 | 188 | } |
| 189 | 189 | } |
| 190 | 190 | |
@@ -193,11 +193,11 @@ discard block |
||
| 193 | 193 | */ |
| 194 | 194 | public function add_admin_menu() { |
| 195 | 195 | add_options_page( |
| 196 | - __( 'Writing On GitHub', 'writing-on-github' ), |
|
| 197 | - __( 'Writing On GitHub', 'writing-on-github' ), |
|
| 196 | + __('Writing On GitHub', 'writing-on-github'), |
|
| 197 | + __('Writing On GitHub', 'writing-on-github'), |
|
| 198 | 198 | 'manage_options', |
| 199 | 199 | Writing_On_GitHub::$text_domain, |
| 200 | - array( $this, 'settings_page' ) |
|
| 200 | + array($this, 'settings_page') |
|
| 201 | 201 | ); |
| 202 | 202 | } |
| 203 | 203 | |
@@ -205,31 +205,31 @@ discard block |
||
| 205 | 205 | * Admin callback to trigger import/export because WordPress admin routing lol |
| 206 | 206 | */ |
| 207 | 207 | public function trigger_cron() { |
| 208 | - if ( ! current_user_can( 'manage_options' ) ) { |
|
| 208 | + if ( ! current_user_can('manage_options')) { |
|
| 209 | 209 | return; |
| 210 | 210 | } |
| 211 | 211 | |
| 212 | - if ( get_current_screen()->id !== 'settings_page_' . Writing_On_GitHub::$text_domain ) { |
|
| 212 | + if (get_current_screen()->id !== 'settings_page_' . Writing_On_GitHub::$text_domain) { |
|
| 213 | 213 | return; |
| 214 | 214 | } |
| 215 | 215 | |
| 216 | - if ( ! isset( $_GET['action'] ) ) { |
|
| 216 | + if ( ! isset($_GET['action'])) { |
|
| 217 | 217 | return; |
| 218 | 218 | } |
| 219 | 219 | |
| 220 | - if ( 'export' === $_GET['action'] ) { |
|
| 220 | + if ('export' === $_GET['action']) { |
|
| 221 | 221 | Writing_On_GitHub::$instance->start_export(); |
| 222 | 222 | } |
| 223 | 223 | |
| 224 | - if ( 'force_export' === $_GET['action'] ) { |
|
| 224 | + if ('force_export' === $_GET['action']) { |
|
| 225 | 225 | Writing_On_GitHub::$instance->start_export(true); |
| 226 | 226 | } |
| 227 | 227 | |
| 228 | - if ( 'import' === $_GET['action'] ) { |
|
| 228 | + if ('import' === $_GET['action']) { |
|
| 229 | 229 | Writing_On_GitHub::$instance->start_import(); |
| 230 | 230 | } |
| 231 | 231 | |
| 232 | - wp_redirect( admin_url( 'options-general.php?page=writing-on-github' ) ); |
|
| 232 | + wp_redirect(admin_url('options-general.php?page=writing-on-github')); |
|
| 233 | 233 | die; |
| 234 | 234 | } |
| 235 | 235 | } |
@@ -26,7 +26,7 @@ discard block |
||
| 26 | 26 | * |
| 27 | 27 | * @param Writing_On_GitHub $app Application container. |
| 28 | 28 | */ |
| 29 | - public function __construct( Writing_On_GitHub $app ) { |
|
| 29 | + public function __construct(Writing_On_GitHub $app) { |
|
| 30 | 30 | $this->app = $app; |
| 31 | 31 | } |
| 32 | 32 | |
@@ -39,8 +39,8 @@ discard block |
||
| 39 | 39 | * |
| 40 | 40 | * @return stdClass|WP_Error |
| 41 | 41 | */ |
| 42 | - protected function call( $method, $endpoint, $body = array() ) { |
|
| 43 | - if ( is_wp_error( $error = $this->can_call() ) ) { |
|
| 42 | + protected function call($method, $endpoint, $body = array()) { |
|
| 43 | + if (is_wp_error($error = $this->can_call())) { |
|
| 44 | 44 | /* @var WP_Error $error */ |
| 45 | 45 | return $error; |
| 46 | 46 | } |
@@ -52,25 +52,25 @@ discard block |
||
| 52 | 52 | ), |
| 53 | 53 | ); |
| 54 | 54 | |
| 55 | - if ( 'GET' !== $method ) { |
|
| 56 | - $args['body'] = json_encode( $body ); |
|
| 55 | + if ('GET' !== $method) { |
|
| 56 | + $args['body'] = json_encode($body); |
|
| 57 | 57 | } |
| 58 | 58 | |
| 59 | 59 | // $tmpbody = isset( $args['body'] ) ? $args['body'] : ''; |
| 60 | 60 | // error_log( "writing-on-github-call $method $endpoint $tmpbody" ); |
| 61 | 61 | |
| 62 | - $response = wp_remote_request( $endpoint, $args ); |
|
| 63 | - $status = wp_remote_retrieve_header( $response, 'status' ); |
|
| 64 | - $body = json_decode( wp_remote_retrieve_body( $response ) ); |
|
| 62 | + $response = wp_remote_request($endpoint, $args); |
|
| 63 | + $status = wp_remote_retrieve_header($response, 'status'); |
|
| 64 | + $body = json_decode(wp_remote_retrieve_body($response)); |
|
| 65 | 65 | |
| 66 | - if ( '2' !== substr( $status, 0, 1 ) && '3' !== substr( $status, 0, 1 ) ) { |
|
| 66 | + if ('2' !== substr($status, 0, 1) && '3' !== substr($status, 0, 1)) { |
|
| 67 | 67 | return new WP_Error( |
| 68 | - strtolower( str_replace( ' ', '_', $status ) ), |
|
| 68 | + strtolower(str_replace(' ', '_', $status)), |
|
| 69 | 69 | sprintf( |
| 70 | - __( 'Method %s to endpoint %s failed with error: %s', 'writing-on-github' ), |
|
| 70 | + __('Method %s to endpoint %s failed with error: %s', 'writing-on-github'), |
|
| 71 | 71 | $method, |
| 72 | 72 | $endpoint, |
| 73 | - ( $body && $body->message ) ? $body->message : 'Unknown error' |
|
| 73 | + ($body && $body->message) ? $body->message : 'Unknown error' |
|
| 74 | 74 | ) |
| 75 | 75 | ); |
| 76 | 76 | } |
@@ -84,28 +84,28 @@ discard block |
||
| 84 | 84 | * @return true|WP_Error |
| 85 | 85 | */ |
| 86 | 86 | protected function can_call() { |
| 87 | - if ( ! $this->oauth_token() ) { |
|
| 87 | + if ( ! $this->oauth_token()) { |
|
| 88 | 88 | return new WP_Error( |
| 89 | 89 | 'missing_token', |
| 90 | - __( 'Writing On GitHub needs an auth token. Please update your settings.', 'writing-on-github' ) |
|
| 90 | + __('Writing On GitHub needs an auth token. Please update your settings.', 'writing-on-github') |
|
| 91 | 91 | ); |
| 92 | 92 | } |
| 93 | 93 | |
| 94 | 94 | $repo = $this->repository(); |
| 95 | 95 | |
| 96 | - if ( ! $repo ) { |
|
| 96 | + if ( ! $repo) { |
|
| 97 | 97 | return new WP_Error( |
| 98 | 98 | 'missing_repository', |
| 99 | - __( 'Writing On GitHub needs a repository. Please update your settings.', 'writing-on-github' ) |
|
| 99 | + __('Writing On GitHub needs a repository. Please update your settings.', 'writing-on-github') |
|
| 100 | 100 | ); |
| 101 | 101 | } |
| 102 | 102 | |
| 103 | - $parts = explode( '/', $repo ); |
|
| 103 | + $parts = explode('/', $repo); |
|
| 104 | 104 | |
| 105 | - if ( 2 !== count( $parts ) ) { |
|
| 105 | + if (2 !== count($parts)) { |
|
| 106 | 106 | return new WP_Error( |
| 107 | 107 | 'malformed_repository', |
| 108 | - __( 'Writing On GitHub needs a properly formed repository. Please update your settings.', 'writing-on-github' ) |
|
| 108 | + __('Writing On GitHub needs a properly formed repository. Please update your settings.', 'writing-on-github') |
|
| 109 | 109 | ); |
| 110 | 110 | } |
| 111 | 111 | |
@@ -118,7 +118,7 @@ discard block |
||
| 118 | 118 | * @return string |
| 119 | 119 | */ |
| 120 | 120 | public function repository() { |
| 121 | - return (string) get_option( self::REPO_OPTION_KEY ); |
|
| 121 | + return (string) get_option(self::REPO_OPTION_KEY); |
|
| 122 | 122 | } |
| 123 | 123 | |
| 124 | 124 | /** |
@@ -127,18 +127,18 @@ discard block |
||
| 127 | 127 | * @return string |
| 128 | 128 | */ |
| 129 | 129 | public function oauth_token() { |
| 130 | - return (string) get_option( self::TOKEN_OPTION_KEY ); |
|
| 130 | + return (string) get_option(self::TOKEN_OPTION_KEY); |
|
| 131 | 131 | } |
| 132 | 132 | |
| 133 | 133 | /** |
| 134 | 134 | * Returns the GitHub host to sync with (for GitHub Enterprise support) |
| 135 | 135 | */ |
| 136 | 136 | public function api_base() { |
| 137 | - return get_option( self::HOST_OPTION_KEY ); |
|
| 137 | + return get_option(self::HOST_OPTION_KEY); |
|
| 138 | 138 | } |
| 139 | 139 | |
| 140 | 140 | public function branch() { |
| 141 | - $branch = get_option( self::BRANCH_OPTION_KEY ); |
|
| 141 | + $branch = get_option(self::BRANCH_OPTION_KEY); |
|
| 142 | 142 | return $branch ? $branch : 'master'; |
| 143 | 143 | } |
| 144 | 144 | |
@@ -199,11 +199,11 @@ discard block |
||
| 199 | 199 | * |
| 200 | 200 | * Returns String the relative API call path |
| 201 | 201 | */ |
| 202 | - public function content_endpoint( $path = false ) { |
|
| 202 | + public function content_endpoint($path = false) { |
|
| 203 | 203 | $url = $this->api_base() . '/repos/'; |
| 204 | 204 | $url = $url . $this->repository() . '/contents'; |
| 205 | 205 | |
| 206 | - if ( ! empty($path) ) { |
|
| 206 | + if ( ! empty($path)) { |
|
| 207 | 207 | $url .= '/' . $path; |
| 208 | 208 | } |
| 209 | 209 | |
@@ -16,13 +16,13 @@ discard block |
||
| 16 | 16 | * |
| 17 | 17 | * @return Writing_On_GitHub_File_Info[]|WP_Error |
| 18 | 18 | */ |
| 19 | - public function compare( $sha ) { |
|
| 19 | + public function compare($sha) { |
|
| 20 | 20 | // https://api.github.com/repos/litefeel/testwpsync/compare/861f87e8851b8debb78db548269d29f8da4d94ac...master |
| 21 | 21 | $endpoint = $this->compare_endpoint(); |
| 22 | 22 | $branch = $this->branch(); |
| 23 | - $data = $this->call( 'GET', "$endpoint/$sha...$branch" ); |
|
| 23 | + $data = $this->call('GET', "$endpoint/$sha...$branch"); |
|
| 24 | 24 | |
| 25 | - if ( is_wp_error( $data ) ) { |
|
| 25 | + if (is_wp_error($data)) { |
|
| 26 | 26 | return $data; |
| 27 | 27 | } |
| 28 | 28 | |
@@ -44,13 +44,13 @@ discard block |
||
| 44 | 44 | * |
| 45 | 45 | * @return mixed |
| 46 | 46 | */ |
| 47 | - public function remote_contents( $post ) { |
|
| 48 | - return $this->call( 'GET', $this->content_endpoint( $post->github_path() ) ); |
|
| 47 | + public function remote_contents($post) { |
|
| 48 | + return $this->call('GET', $this->content_endpoint($post->github_path())); |
|
| 49 | 49 | } |
| 50 | 50 | |
| 51 | - public function exists( $path ) { |
|
| 52 | - $result = $this->call( 'GET', $this->content_endpoint( $path ) ); |
|
| 53 | - if ( is_wp_error( $result ) ) { |
|
| 51 | + public function exists($path) { |
|
| 52 | + $result = $this->call('GET', $this->content_endpoint($path)); |
|
| 53 | + if (is_wp_error($result)) { |
|
| 54 | 54 | return false; |
| 55 | 55 | } |
| 56 | 56 | return true; |
@@ -63,27 +63,27 @@ discard block |
||
| 63 | 63 | * |
| 64 | 64 | * @return Writing_On_GitHub_File_Info[]|WP_Error |
| 65 | 65 | */ |
| 66 | - public function tree_recursive( $sha = '_default' ) { |
|
| 66 | + public function tree_recursive($sha = '_default') { |
|
| 67 | 67 | |
| 68 | - if ( '_default' === $sha ) { |
|
| 68 | + if ('_default' === $sha) { |
|
| 69 | 69 | $sha = $this->branch(); |
| 70 | 70 | } |
| 71 | 71 | |
| 72 | - $data = $this->call( 'GET', $this->tree_endpoint() . '/' . $sha . '?recursive=1' ); |
|
| 72 | + $data = $this->call('GET', $this->tree_endpoint() . '/' . $sha . '?recursive=1'); |
|
| 73 | 73 | |
| 74 | - if ( is_wp_error( $data ) ) { |
|
| 74 | + if (is_wp_error($data)) { |
|
| 75 | 75 | return $data; |
| 76 | 76 | } |
| 77 | 77 | |
| 78 | 78 | $files = array(); |
| 79 | 79 | |
| 80 | - foreach ( $data->tree as $index => $thing ) { |
|
| 80 | + foreach ($data->tree as $index => $thing) { |
|
| 81 | 81 | // We need to remove the trees because |
| 82 | 82 | // the recursive tree includes both |
| 83 | 83 | // the subtrees as well the subtrees' blobs. |
| 84 | - if ( 'blob' === $thing->type ) { |
|
| 84 | + if ('blob' === $thing->type) { |
|
| 85 | 85 | $thing->status = ''; |
| 86 | - $files[] = new Writing_On_GitHub_File_Info( $thing ); |
|
| 86 | + $files[] = new Writing_On_GitHub_File_Info($thing); |
|
| 87 | 87 | } |
| 88 | 88 | } |
| 89 | 89 | |
@@ -97,14 +97,14 @@ discard block |
||
| 97 | 97 | * |
| 98 | 98 | * @return Writing_On_GitHub_Blob|WP_Error |
| 99 | 99 | */ |
| 100 | - public function blob( Writing_On_GitHub_File_Info $fileinfo ) { |
|
| 101 | - $data = $this->call( 'GET', $this->blob_endpoint() . '/' . $fileinfo->sha ); |
|
| 100 | + public function blob(Writing_On_GitHub_File_Info $fileinfo) { |
|
| 101 | + $data = $this->call('GET', $this->blob_endpoint() . '/' . $fileinfo->sha); |
|
| 102 | 102 | |
| 103 | - if ( is_wp_error( $data ) ) { |
|
| 103 | + if (is_wp_error($data)) { |
|
| 104 | 104 | return $data; |
| 105 | 105 | } |
| 106 | 106 | |
| 107 | 107 | $data->path = $fileinfo->path; |
| 108 | - return new Writing_On_GitHub_Blob( $data ); |
|
| 108 | + return new Writing_On_GitHub_Blob($data); |
|
| 109 | 109 | } |
| 110 | 110 | } |
@@ -16,9 +16,9 @@ discard block |
||
| 16 | 16 | */ |
| 17 | 17 | protected function export_user() { |
| 18 | 18 | $user_id = get_current_user_id(); |
| 19 | - $user = get_userdata( $user_id ); |
|
| 19 | + $user = get_userdata($user_id); |
|
| 20 | 20 | |
| 21 | - if ( $user ) { |
|
| 21 | + if ($user) { |
|
| 22 | 22 | return array( |
| 23 | 23 | 'name' => $user->display_name, |
| 24 | 24 | 'email' => $user->user_email, |
@@ -33,17 +33,17 @@ discard block |
||
| 33 | 33 | * |
| 34 | 34 | * @return array |
| 35 | 35 | */ |
| 36 | - public function delete_file( $path, $sha, $message ) { |
|
| 36 | + public function delete_file($path, $sha, $message) { |
|
| 37 | 37 | $body = new stdClass(); |
| 38 | 38 | $body->message = $message; |
| 39 | 39 | $body->sha = $sha; |
| 40 | 40 | $body->branch = $this->branch(); |
| 41 | 41 | |
| 42 | - if ( $author = $this->export_user() ) { |
|
| 42 | + if ($author = $this->export_user()) { |
|
| 43 | 43 | $body->author = $author; |
| 44 | 44 | } |
| 45 | 45 | |
| 46 | - return $this->call( 'DELETE', $this->content_endpoint( $path ), $body ); |
|
| 46 | + return $this->call('DELETE', $this->content_endpoint($path), $body); |
|
| 47 | 47 | } |
| 48 | 48 | |
| 49 | 49 | /** |
@@ -51,17 +51,17 @@ discard block |
||
| 51 | 51 | * |
| 52 | 52 | * @return array |
| 53 | 53 | */ |
| 54 | - public function create_file( $blob, $message ) { |
|
| 54 | + public function create_file($blob, $message) { |
|
| 55 | 55 | $body = $blob->to_body(); |
| 56 | 56 | $body->message = $message; |
| 57 | 57 | $body->branch = $this->branch(); |
| 58 | 58 | unset($body->sha); |
| 59 | 59 | |
| 60 | - if ( $author = $this->export_user() ) { |
|
| 60 | + if ($author = $this->export_user()) { |
|
| 61 | 61 | $body->author = $author; |
| 62 | 62 | } |
| 63 | 63 | |
| 64 | - return $this->call( 'PUT', $this->content_endpoint( $blob->path() ), $body ); |
|
| 64 | + return $this->call('PUT', $this->content_endpoint($blob->path()), $body); |
|
| 65 | 65 | } |
| 66 | 66 | |
| 67 | 67 | /** |
@@ -69,15 +69,15 @@ discard block |
||
| 69 | 69 | * |
| 70 | 70 | * @return array |
| 71 | 71 | */ |
| 72 | - public function update_file( $blob, $message ) { |
|
| 72 | + public function update_file($blob, $message) { |
|
| 73 | 73 | $body = $blob->to_body(); |
| 74 | 74 | $body->message = $message; |
| 75 | 75 | $body->branch = $this->branch(); |
| 76 | 76 | |
| 77 | - if ( $author = $this->export_user() ) { |
|
| 77 | + if ($author = $this->export_user()) { |
|
| 78 | 78 | $body->author = $author; |
| 79 | 79 | } |
| 80 | 80 | |
| 81 | - return $this->call( 'PUT', $this->content_endpoint( $blob->path() ), $body ); |
|
| 81 | + return $this->call('PUT', $this->content_endpoint($blob->path()), $body); |
|
| 82 | 82 | } |
| 83 | 83 | } |
@@ -21,7 +21,7 @@ discard block |
||
| 21 | 21 | * |
| 22 | 22 | * @param Writing_On_GitHub $app Application container. |
| 23 | 23 | */ |
| 24 | - public function __construct( Writing_On_GitHub $app ) { |
|
| 24 | + public function __construct(Writing_On_GitHub $app) { |
|
| 25 | 25 | $this->app = $app; |
| 26 | 26 | } |
| 27 | 27 | |
@@ -32,30 +32,30 @@ discard block |
||
| 32 | 32 | * |
| 33 | 33 | * @return false |
| 34 | 34 | */ |
| 35 | - public function error( WP_Error $error ) { |
|
| 35 | + public function error(WP_Error $error) { |
|
| 36 | 36 | global $wp_version; |
| 37 | 37 | |
| 38 | - $this->log( $error ); |
|
| 38 | + $this->log($error); |
|
| 39 | 39 | |
| 40 | - if ( defined( 'DOING_AJAX' ) && DOING_AJAX && defined( 'WOGH_AJAX' ) && WOGH_AJAX ) { |
|
| 40 | + if (defined('DOING_AJAX') && DOING_AJAX && defined('WOGH_AJAX') && WOGH_AJAX) { |
|
| 41 | 41 | /** |
| 42 | 42 | * WordPress 4.1.0 introduced allowing WP_Error objects to be |
| 43 | 43 | * passed directly into `wp_send_json_error`. This shims in |
| 44 | 44 | * compatibility for older versions. We're currently supporting 3.9+. |
| 45 | 45 | */ |
| 46 | - if ( version_compare( $wp_version, '4.1.0', '<' ) ) { |
|
| 46 | + if (version_compare($wp_version, '4.1.0', '<')) { |
|
| 47 | 47 | $result = array(); |
| 48 | 48 | |
| 49 | - foreach ( $error->errors as $code => $messages ) { |
|
| 50 | - foreach ( $messages as $message ) { |
|
| 51 | - $result[] = array( 'code' => $code, 'message' => $message ); |
|
| 49 | + foreach ($error->errors as $code => $messages) { |
|
| 50 | + foreach ($messages as $message) { |
|
| 51 | + $result[] = array('code' => $code, 'message' => $message); |
|
| 52 | 52 | } |
| 53 | 53 | } |
| 54 | 54 | |
| 55 | 55 | $error = $result; |
| 56 | 56 | } |
| 57 | 57 | |
| 58 | - wp_send_json_error( $error ); |
|
| 58 | + wp_send_json_error($error); |
|
| 59 | 59 | } |
| 60 | 60 | |
| 61 | 61 | return false; |
@@ -68,11 +68,11 @@ discard block |
||
| 68 | 68 | * |
| 69 | 69 | * @return true |
| 70 | 70 | */ |
| 71 | - public function success( $success ) { |
|
| 72 | - $this->log( $success ); |
|
| 71 | + public function success($success) { |
|
| 72 | + $this->log($success); |
|
| 73 | 73 | |
| 74 | - if ( defined( 'DOING_AJAX' ) && DOING_AJAX && defined( 'WOGH_AJAX' ) && WOGH_AJAX ) { |
|
| 75 | - wp_send_json_success( $success ); |
|
| 74 | + if (defined('DOING_AJAX') && DOING_AJAX && defined('WOGH_AJAX') && WOGH_AJAX) { |
|
| 75 | + wp_send_json_success($success); |
|
| 76 | 76 | } |
| 77 | 77 | |
| 78 | 78 | return true; |
@@ -85,11 +85,11 @@ discard block |
||
| 85 | 85 | * |
| 86 | 86 | * @param string|WP_Error $msg Message to log. |
| 87 | 87 | */ |
| 88 | - protected function log( $msg ) { |
|
| 89 | - if ( is_wp_error( $msg ) ) { |
|
| 88 | + protected function log($msg) { |
|
| 89 | + if (is_wp_error($msg)) { |
|
| 90 | 90 | $msg = $msg->get_error_message(); |
| 91 | 91 | } |
| 92 | 92 | |
| 93 | - Writing_On_GitHub::write_log( $msg ); |
|
| 93 | + Writing_On_GitHub::write_log($msg); |
|
| 94 | 94 | } |
| 95 | 95 | } |
@@ -21,7 +21,7 @@ discard block |
||
| 21 | 21 | * |
| 22 | 22 | * @param Writing_On_GitHub $app Applicatio container. |
| 23 | 23 | */ |
| 24 | - public function __construct( Writing_On_GitHub $app ) { |
|
| 24 | + public function __construct(Writing_On_GitHub $app) { |
|
| 25 | 25 | $this->app = $app; |
| 26 | 26 | } |
| 27 | 27 | |
@@ -34,58 +34,58 @@ discard block |
||
| 34 | 34 | */ |
| 35 | 35 | public function pull_posts() { |
| 36 | 36 | $this->set_ajax(); |
| 37 | - if ( ! $this->app->semaphore()->is_open() ) { |
|
| 38 | - return $this->app->response()->error( new WP_Error( |
|
| 37 | + if ( ! $this->app->semaphore()->is_open()) { |
|
| 38 | + return $this->app->response()->error(new WP_Error( |
|
| 39 | 39 | 'semaphore_locked', |
| 40 | - sprintf( __( '%s : Semaphore is locked, import/export already in progress.', 'writing-on-github' ), 'Controller::pull_posts()' ) |
|
| 41 | - ) ); |
|
| 40 | + sprintf(__('%s : Semaphore is locked, import/export already in progress.', 'writing-on-github'), 'Controller::pull_posts()') |
|
| 41 | + )); |
|
| 42 | 42 | } |
| 43 | 43 | |
| 44 | - if ( ! $this->app->request()->is_secret_valid() ) { |
|
| 45 | - return $this->app->response()->error( new WP_Error( |
|
| 44 | + if ( ! $this->app->request()->is_secret_valid()) { |
|
| 45 | + return $this->app->response()->error(new WP_Error( |
|
| 46 | 46 | 'invalid_headers', |
| 47 | - __( 'Failed to validate secret.', 'writing-on-github' ) |
|
| 48 | - ) ); |
|
| 47 | + __('Failed to validate secret.', 'writing-on-github') |
|
| 48 | + )); |
|
| 49 | 49 | } |
| 50 | 50 | |
| 51 | 51 | // ping |
| 52 | - if ( $this->app->request()->is_ping() ) { |
|
| 53 | - return $this->app->response()->success( __( 'Wordpress is ready.', 'writing-on-github' ) ); |
|
| 52 | + if ($this->app->request()->is_ping()) { |
|
| 53 | + return $this->app->response()->success(__('Wordpress is ready.', 'writing-on-github')); |
|
| 54 | 54 | } |
| 55 | 55 | |
| 56 | 56 | // push |
| 57 | - if ( ! $this->app->request()->is_push() ) { |
|
| 58 | - return $this->app->response()->error( new WP_Error( |
|
| 57 | + if ( ! $this->app->request()->is_push()) { |
|
| 58 | + return $this->app->response()->error(new WP_Error( |
|
| 59 | 59 | 'invalid_headers', |
| 60 | - __( 'Failed to validate webhook event.', 'writing-on-github' ) |
|
| 61 | - ) ); |
|
| 60 | + __('Failed to validate webhook event.', 'writing-on-github') |
|
| 61 | + )); |
|
| 62 | 62 | } |
| 63 | 63 | $payload = $this->app->request()->payload(); |
| 64 | 64 | |
| 65 | - if ( ! $payload->should_import() ) { |
|
| 66 | - return $this->app->response()->error( new WP_Error( |
|
| 65 | + if ( ! $payload->should_import()) { |
|
| 66 | + return $this->app->response()->error(new WP_Error( |
|
| 67 | 67 | 'invalid_payload', |
| 68 | 68 | sprintf( |
| 69 | - __( "%s won't be imported.", 'writing-on-github' ), |
|
| 70 | - strtolower( $payload->get_commit_id() ) ? : '[Missing Commit ID]' |
|
| 69 | + __("%s won't be imported.", 'writing-on-github'), |
|
| 70 | + strtolower($payload->get_commit_id()) ?: '[Missing Commit ID]' |
|
| 71 | 71 | ) |
| 72 | - ) ); |
|
| 72 | + )); |
|
| 73 | 73 | } |
| 74 | 74 | |
| 75 | 75 | $this->app->semaphore()->lock(); |
| 76 | - remove_action( 'save_post', array( $this, 'export_post' ) ); |
|
| 77 | - remove_action( 'delete_post', array( $this, 'delete_post' ) ); |
|
| 76 | + remove_action('save_post', array($this, 'export_post')); |
|
| 77 | + remove_action('delete_post', array($this, 'delete_post')); |
|
| 78 | 78 | |
| 79 | - $result = $this->app->import()->payload( $payload ); |
|
| 79 | + $result = $this->app->import()->payload($payload); |
|
| 80 | 80 | |
| 81 | 81 | $this->app->semaphore()->unlock(); |
| 82 | 82 | |
| 83 | - if ( is_wp_error( $result ) ) { |
|
| 83 | + if (is_wp_error($result)) { |
|
| 84 | 84 | /* @var WP_Error $result */ |
| 85 | - return $this->app->response()->error( $result ); |
|
| 85 | + return $this->app->response()->error($result); |
|
| 86 | 86 | } |
| 87 | 87 | |
| 88 | - return $this->app->response()->success( $result ); |
|
| 88 | + return $this->app->response()->success($result); |
|
| 89 | 89 | } |
| 90 | 90 | |
| 91 | 91 | /** |
@@ -93,36 +93,36 @@ discard block |
||
| 93 | 93 | * |
| 94 | 94 | * @return boolean |
| 95 | 95 | */ |
| 96 | - public function import_master( $user_id = 0 ) { |
|
| 97 | - if ( ! $this->app->semaphore()->is_open() ) { |
|
| 98 | - return $this->app->response()->error( new WP_Error( |
|
| 96 | + public function import_master($user_id = 0) { |
|
| 97 | + if ( ! $this->app->semaphore()->is_open()) { |
|
| 98 | + return $this->app->response()->error(new WP_Error( |
|
| 99 | 99 | 'semaphore_locked', |
| 100 | - sprintf( __( '%s : Semaphore is locked, import/export already in progress.', 'writing-on-github' ), 'Controller::import_master()' ) |
|
| 101 | - ) ); |
|
| 100 | + sprintf(__('%s : Semaphore is locked, import/export already in progress.', 'writing-on-github'), 'Controller::import_master()') |
|
| 101 | + )); |
|
| 102 | 102 | } |
| 103 | 103 | |
| 104 | 104 | $this->app->semaphore()->lock(); |
| 105 | - remove_action( 'save_post', array( $this, 'export_post' ) ); |
|
| 106 | - remove_action( 'save_post', array( $this, 'delete_post' ) ); |
|
| 105 | + remove_action('save_post', array($this, 'export_post')); |
|
| 106 | + remove_action('save_post', array($this, 'delete_post')); |
|
| 107 | 107 | |
| 108 | - if ( $user_id ) { |
|
| 109 | - wp_set_current_user( $user_id ); |
|
| 108 | + if ($user_id) { |
|
| 109 | + wp_set_current_user($user_id); |
|
| 110 | 110 | } |
| 111 | 111 | |
| 112 | 112 | $result = $this->app->import()->master(); |
| 113 | 113 | |
| 114 | 114 | $this->app->semaphore()->unlock(); |
| 115 | 115 | |
| 116 | - if ( is_wp_error( $result ) ) { |
|
| 116 | + if (is_wp_error($result)) { |
|
| 117 | 117 | /* @var WP_Error $result */ |
| 118 | - update_option( '_wogh_import_error', $result->get_error_message() ); |
|
| 118 | + update_option('_wogh_import_error', $result->get_error_message()); |
|
| 119 | 119 | |
| 120 | - return $this->app->response()->error( $result ); |
|
| 120 | + return $this->app->response()->error($result); |
|
| 121 | 121 | } |
| 122 | 122 | |
| 123 | - update_option( '_wogh_import_complete', 'yes' ); |
|
| 123 | + update_option('_wogh_import_complete', 'yes'); |
|
| 124 | 124 | |
| 125 | - return $this->app->response()->success( $result ); |
|
| 125 | + return $this->app->response()->success($result); |
|
| 126 | 126 | } |
| 127 | 127 | |
| 128 | 128 | /** |
@@ -132,34 +132,34 @@ discard block |
||
| 132 | 132 | * @param boolean $force |
| 133 | 133 | * @return boolean |
| 134 | 134 | */ |
| 135 | - public function export_all( $user_id = 0, $force = false ) { |
|
| 136 | - if ( ! $this->app->semaphore()->is_open() ) { |
|
| 137 | - return $this->app->response()->error( new WP_Error( |
|
| 135 | + public function export_all($user_id = 0, $force = false) { |
|
| 136 | + if ( ! $this->app->semaphore()->is_open()) { |
|
| 137 | + return $this->app->response()->error(new WP_Error( |
|
| 138 | 138 | 'semaphore_locked', |
| 139 | - sprintf( __( '%s : Semaphore is locked, import/export already in progress.', 'writing-on-github' ), 'Controller::export_all()' ) |
|
| 140 | - ) ); |
|
| 139 | + sprintf(__('%s : Semaphore is locked, import/export already in progress.', 'writing-on-github'), 'Controller::export_all()') |
|
| 140 | + )); |
|
| 141 | 141 | } |
| 142 | 142 | |
| 143 | 143 | $this->app->semaphore()->lock(); |
| 144 | 144 | |
| 145 | - if ( $user_id ) { |
|
| 146 | - wp_set_current_user( $user_id ); |
|
| 145 | + if ($user_id) { |
|
| 146 | + wp_set_current_user($user_id); |
|
| 147 | 147 | } |
| 148 | 148 | |
| 149 | 149 | $result = $this->app->export()->full($force); |
| 150 | 150 | $this->app->semaphore()->unlock(); |
| 151 | 151 | |
| 152 | 152 | // Maybe move option updating out of this class/upgrade message display? |
| 153 | - if ( is_wp_error( $result ) ) { |
|
| 153 | + if (is_wp_error($result)) { |
|
| 154 | 154 | /* @var WP_Error $result */ |
| 155 | - update_option( '_wogh_export_error', $result->get_error_message() ); |
|
| 155 | + update_option('_wogh_export_error', $result->get_error_message()); |
|
| 156 | 156 | |
| 157 | - return $this->app->response()->error( $result ); |
|
| 157 | + return $this->app->response()->error($result); |
|
| 158 | 158 | } else { |
| 159 | - update_option( '_wogh_export_complete', 'yes' ); |
|
| 160 | - update_option( '_wogh_fully_exported', 'yes' ); |
|
| 159 | + update_option('_wogh_export_complete', 'yes'); |
|
| 160 | + update_option('_wogh_fully_exported', 'yes'); |
|
| 161 | 161 | |
| 162 | - return $this->app->response()->success( $result ); |
|
| 162 | + return $this->app->response()->success($result); |
|
| 163 | 163 | } |
| 164 | 164 | } |
| 165 | 165 | |
@@ -172,28 +172,28 @@ discard block |
||
| 172 | 172 | * |
| 173 | 173 | * @return boolean |
| 174 | 174 | */ |
| 175 | - public function export_post( $post_id ) { |
|
| 176 | - if ( wp_is_post_revision( $post_id ) ) { |
|
| 175 | + public function export_post($post_id) { |
|
| 176 | + if (wp_is_post_revision($post_id)) { |
|
| 177 | 177 | return; |
| 178 | 178 | } |
| 179 | 179 | |
| 180 | - if ( ! $this->app->semaphore()->is_open() ) { |
|
| 181 | - return $this->app->response()->error( new WP_Error( |
|
| 180 | + if ( ! $this->app->semaphore()->is_open()) { |
|
| 181 | + return $this->app->response()->error(new WP_Error( |
|
| 182 | 182 | 'semaphore_locked', |
| 183 | - sprintf( __( '%s : Semaphore is locked, import/export already in progress.', 'writing-on-github' ), 'Controller::export_post()' ) |
|
| 184 | - ) ); |
|
| 183 | + sprintf(__('%s : Semaphore is locked, import/export already in progress.', 'writing-on-github'), 'Controller::export_post()') |
|
| 184 | + )); |
|
| 185 | 185 | } |
| 186 | 186 | |
| 187 | 187 | $this->app->semaphore()->lock(); |
| 188 | - $result = $this->app->export()->update( $post_id ); |
|
| 188 | + $result = $this->app->export()->update($post_id); |
|
| 189 | 189 | $this->app->semaphore()->unlock(); |
| 190 | 190 | |
| 191 | - if ( is_wp_error( $result ) ) { |
|
| 191 | + if (is_wp_error($result)) { |
|
| 192 | 192 | /* @var WP_Error $result */ |
| 193 | - return $this->app->response()->error( $result ); |
|
| 193 | + return $this->app->response()->error($result); |
|
| 194 | 194 | } |
| 195 | 195 | |
| 196 | - return $this->app->response()->success( $result ); |
|
| 196 | + return $this->app->response()->success($result); |
|
| 197 | 197 | } |
| 198 | 198 | |
| 199 | 199 | /** |
@@ -205,28 +205,28 @@ discard block |
||
| 205 | 205 | * |
| 206 | 206 | * @return boolean |
| 207 | 207 | */ |
| 208 | - public function delete_post( $post_id ) { |
|
| 209 | - if ( wp_is_post_revision( $post_id ) ) { |
|
| 208 | + public function delete_post($post_id) { |
|
| 209 | + if (wp_is_post_revision($post_id)) { |
|
| 210 | 210 | return; |
| 211 | 211 | } |
| 212 | 212 | |
| 213 | - if ( ! $this->app->semaphore()->is_open() ) { |
|
| 214 | - return $this->app->response()->error( new WP_Error( |
|
| 213 | + if ( ! $this->app->semaphore()->is_open()) { |
|
| 214 | + return $this->app->response()->error(new WP_Error( |
|
| 215 | 215 | 'semaphore_locked', |
| 216 | - sprintf( __( '%s : Semaphore is locked, import/export already in progress.', 'writing-on-github' ), 'Controller::delete_post()' ) |
|
| 217 | - ) ); |
|
| 216 | + sprintf(__('%s : Semaphore is locked, import/export already in progress.', 'writing-on-github'), 'Controller::delete_post()') |
|
| 217 | + )); |
|
| 218 | 218 | } |
| 219 | 219 | |
| 220 | 220 | $this->app->semaphore()->lock(); |
| 221 | - $result = $this->app->export()->delete( $post_id ); |
|
| 221 | + $result = $this->app->export()->delete($post_id); |
|
| 222 | 222 | $this->app->semaphore()->unlock(); |
| 223 | 223 | |
| 224 | - if ( is_wp_error( $result ) ) { |
|
| 224 | + if (is_wp_error($result)) { |
|
| 225 | 225 | /* @var WP_Error $result */ |
| 226 | - return $this->app->response()->error( $result ); |
|
| 226 | + return $this->app->response()->error($result); |
|
| 227 | 227 | } |
| 228 | 228 | |
| 229 | - return $this->app->response()->success( $result ); |
|
| 229 | + return $this->app->response()->success($result); |
|
| 230 | 230 | } |
| 231 | 231 | |
| 232 | 232 | /** |
@@ -235,8 +235,8 @@ discard block |
||
| 235 | 235 | * than just returning data. |
| 236 | 236 | */ |
| 237 | 237 | protected function set_ajax() { |
| 238 | - if ( ! defined( 'WOGH_AJAX' ) ) { |
|
| 239 | - define( 'WOGH_AJAX', true ); |
|
| 238 | + if ( ! defined('WOGH_AJAX')) { |
|
| 239 | + define('WOGH_AJAX', true); |
|
| 240 | 240 | } |
| 241 | 241 | } |
| 242 | 242 | } |
@@ -44,28 +44,28 @@ discard block |
||
| 44 | 44 | * |
| 45 | 45 | * @param array $args Command arguments. |
| 46 | 46 | */ |
| 47 | - public function export( $args ) { |
|
| 48 | - list( $post_id, $user_id ) = $args; |
|
| 47 | + public function export($args) { |
|
| 48 | + list($post_id, $user_id) = $args; |
|
| 49 | 49 | |
| 50 | - if ( ! is_numeric( $user_id ) ) { |
|
| 51 | - WP_CLI::error( __( 'Invalid user ID', 'writing-on-github' ) ); |
|
| 50 | + if ( ! is_numeric($user_id)) { |
|
| 51 | + WP_CLI::error(__('Invalid user ID', 'writing-on-github')); |
|
| 52 | 52 | } |
| 53 | 53 | |
| 54 | - $this->app->export()->set_user( $user_id ); |
|
| 54 | + $this->app->export()->set_user($user_id); |
|
| 55 | 55 | |
| 56 | - if ( 'all' === $post_id ) { |
|
| 57 | - WP_CLI::line( __( 'Starting full export to GitHub.', 'writing-on-github' ) ); |
|
| 56 | + if ('all' === $post_id) { |
|
| 57 | + WP_CLI::line(__('Starting full export to GitHub.', 'writing-on-github')); |
|
| 58 | 58 | $this->app->controller()->export_all(); |
| 59 | - } elseif ( is_numeric( $post_id ) ) { |
|
| 59 | + } elseif (is_numeric($post_id)) { |
|
| 60 | 60 | WP_CLI::line( |
| 61 | 61 | sprintf( |
| 62 | - __( 'Exporting post ID to GitHub: %d', 'writing-on-github' ), |
|
| 62 | + __('Exporting post ID to GitHub: %d', 'writing-on-github'), |
|
| 63 | 63 | $post_id |
| 64 | 64 | ) |
| 65 | 65 | ); |
| 66 | - $this->app->controller()->export_post( (int) $post_id ); |
|
| 66 | + $this->app->controller()->export_post((int) $post_id); |
|
| 67 | 67 | } else { |
| 68 | - WP_CLI::error( __( 'Invalid post ID', 'writing-on-github' ) ); |
|
| 68 | + WP_CLI::error(__('Invalid post ID', 'writing-on-github')); |
|
| 69 | 69 | } |
| 70 | 70 | } |
| 71 | 71 | |
@@ -86,16 +86,16 @@ discard block |
||
| 86 | 86 | * |
| 87 | 87 | * @param array $args Command arguments. |
| 88 | 88 | */ |
| 89 | - public function import( $args ) { |
|
| 90 | - list( $user_id ) = $args; |
|
| 89 | + public function import($args) { |
|
| 90 | + list($user_id) = $args; |
|
| 91 | 91 | |
| 92 | - if ( ! is_numeric( $user_id ) ) { |
|
| 93 | - WP_CLI::error( __( 'Invalid user ID', 'writing-on-github' ) ); |
|
| 92 | + if ( ! is_numeric($user_id)) { |
|
| 93 | + WP_CLI::error(__('Invalid user ID', 'writing-on-github')); |
|
| 94 | 94 | } |
| 95 | 95 | |
| 96 | - update_option( '_wogh_export_user_id', (int) $user_id ); |
|
| 96 | + update_option('_wogh_export_user_id', (int) $user_id); |
|
| 97 | 97 | |
| 98 | - WP_CLI::line( __( 'Starting import from GitHub.', 'writing-on-github' ) ); |
|
| 98 | + WP_CLI::line(__('Starting import from GitHub.', 'writing-on-github')); |
|
| 99 | 99 | |
| 100 | 100 | $this->app->controller()->import_master(); |
| 101 | 101 | } |
@@ -119,40 +119,40 @@ discard block |
||
| 119 | 119 | * @param array $args Command arguments. |
| 120 | 120 | * @param array $assoc_args Command associated arguments. |
| 121 | 121 | */ |
| 122 | - public function prime( $args, $assoc_args ) { |
|
| 123 | - if ( isset( $assoc_args['branch'] ) ) { |
|
| 124 | - WP_CLI::line( __( 'Starting branch import.', 'writing-on-github' ) ); |
|
| 122 | + public function prime($args, $assoc_args) { |
|
| 123 | + if (isset($assoc_args['branch'])) { |
|
| 124 | + WP_CLI::line(__('Starting branch import.', 'writing-on-github')); |
|
| 125 | 125 | |
| 126 | 126 | $commit = $this->app->api()->fetch()->master(); |
| 127 | 127 | |
| 128 | - if ( is_wp_error( $commit ) ) { |
|
| 128 | + if (is_wp_error($commit)) { |
|
| 129 | 129 | WP_CLI::error( |
| 130 | 130 | sprintf( |
| 131 | - __( 'Failed to import and cache branch with error: %s', 'writing-on-github' ), |
|
| 131 | + __('Failed to import and cache branch with error: %s', 'writing-on-github'), |
|
| 132 | 132 | $commit->get_error_message() |
| 133 | 133 | ) |
| 134 | 134 | ); |
| 135 | 135 | } else { |
| 136 | 136 | WP_CLI::success( |
| 137 | 137 | sprintf( |
| 138 | - __( 'Successfully imported and cached commit %s from branch.', 'writing-on-github' ), |
|
| 138 | + __('Successfully imported and cached commit %s from branch.', 'writing-on-github'), |
|
| 139 | 139 | $commit->sha() |
| 140 | 140 | ) |
| 141 | 141 | ); |
| 142 | 142 | } |
| 143 | - } else if ( isset( $assoc_args['sha'] ) ) { |
|
| 144 | - WP_CLI::line( 'Starting sha import.' ); |
|
| 143 | + } else if (isset($assoc_args['sha'])) { |
|
| 144 | + WP_CLI::line('Starting sha import.'); |
|
| 145 | 145 | |
| 146 | - $commit = $this->app->api()->fetch()->commit( $assoc_args['sha'] ); |
|
| 146 | + $commit = $this->app->api()->fetch()->commit($assoc_args['sha']); |
|
| 147 | 147 | |
| 148 | 148 | WP_CLI::success( |
| 149 | 149 | sprintf( |
| 150 | - __( 'Successfully imported and cached commit %s.', 'writing-on-github' ), |
|
| 150 | + __('Successfully imported and cached commit %s.', 'writing-on-github'), |
|
| 151 | 151 | $commit->sha() |
| 152 | 152 | ) |
| 153 | 153 | ); |
| 154 | 154 | } else { |
| 155 | - WP_CLI::error( 'Invalid fetch.' ); |
|
| 155 | + WP_CLI::error('Invalid fetch.'); |
|
| 156 | 156 | } |
| 157 | 157 | } |
| 158 | 158 | } |
@@ -35,7 +35,7 @@ discard block |
||
| 35 | 35 | * |
| 36 | 36 | * @param Writing_On_GitHub $app Application container. |
| 37 | 37 | */ |
| 38 | - public function __construct( Writing_On_GitHub $app ) { |
|
| 38 | + public function __construct(Writing_On_GitHub $app) { |
|
| 39 | 39 | $this->app = $app; |
| 40 | 40 | } |
| 41 | 41 | |
@@ -45,8 +45,8 @@ discard block |
||
| 45 | 45 | * @return Writing_On_GitHub_Fetch_Client |
| 46 | 46 | */ |
| 47 | 47 | public function fetch() { |
| 48 | - if ( ! $this->fetch ) { |
|
| 49 | - $this->fetch = new Writing_On_GitHub_Fetch_Client( $this->app ); |
|
| 48 | + if ( ! $this->fetch) { |
|
| 49 | + $this->fetch = new Writing_On_GitHub_Fetch_Client($this->app); |
|
| 50 | 50 | } |
| 51 | 51 | |
| 52 | 52 | return $this->fetch; |
@@ -58,8 +58,8 @@ discard block |
||
| 58 | 58 | * @return Writing_On_GitHub_Persist_Client |
| 59 | 59 | */ |
| 60 | 60 | public function persist() { |
| 61 | - if ( ! $this->persist ) { |
|
| 62 | - $this->persist = new Writing_On_GitHub_Persist_Client( $this->app ); |
|
| 61 | + if ( ! $this->persist) { |
|
| 62 | + $this->persist = new Writing_On_GitHub_Persist_Client($this->app); |
|
| 63 | 63 | } |
| 64 | 64 | |
| 65 | 65 | return $this->persist; |