Passed
Push — master ( 7ea632...5d850b )
by litefeel
02:25
created
views/options.php 1 patch
Spacing   +12 added lines, -12 removed lines patch added patch discarded remove patch
@@ -6,27 +6,27 @@
 block discarded – undo
6 6
 
7 7
 ?>
8 8
 <div class="wrap">
9
-	<h2><?php esc_html_e( 'Writing On GitHub', 'writing-on-github' ); ?></h2>
9
+	<h2><?php esc_html_e('Writing On GitHub', 'writing-on-github'); ?></h2>
10 10
 
11 11
 	<form method="post" action="options.php">
12
-		<?php settings_fields( Writing_On_GitHub::$text_domain ); ?>
13
-		<?php do_settings_sections( Writing_On_GitHub::$text_domain ); ?>
12
+		<?php settings_fields(Writing_On_GitHub::$text_domain); ?>
13
+		<?php do_settings_sections(Writing_On_GitHub::$text_domain); ?>
14 14
 		<table class="form-table">
15 15
 			<tr>
16
-				<th scope="row"><?php esc_html_e( 'Webhook callback', 'writing-on-github' ); ?></th>
17
-				<td><code><?php echo esc_url( admin_url( 'admin-ajax.php' ) ); ?>?action=wogh_push_request</code></td>
16
+				<th scope="row"><?php esc_html_e('Webhook callback', 'writing-on-github'); ?></th>
17
+				<td><code><?php echo esc_url(admin_url('admin-ajax.php')); ?>?action=wogh_push_request</code></td>
18 18
 			</tr>
19 19
 			<tr>
20
-				<th scope="row"><?php esc_html_e( 'Bulk actions', 'writing-on-github' ); ?></th>
20
+				<th scope="row"><?php esc_html_e('Bulk actions', 'writing-on-github'); ?></th>
21 21
 				<td>
22
-					<a href="<?php echo esc_url( add_query_arg( array( 'action' => 'export' ) ) ); ?>">
23
-						<?php esc_html_e( 'Export to GitHub', 'writing-on-github' ); ?>
22
+					<a href="<?php echo esc_url(add_query_arg(array('action' => 'export'))); ?>">
23
+						<?php esc_html_e('Export to GitHub', 'writing-on-github'); ?>
24 24
 					</a> |
25
-                    <a href="<?php echo esc_url( add_query_arg( array( 'action' => 'force_export' ) ) ); ?>">
26
-                        <?php esc_html_e( 'Force export to GitHub', 'writing-on-github' ); ?>
25
+                    <a href="<?php echo esc_url(add_query_arg(array('action' => 'force_export'))); ?>">
26
+                        <?php esc_html_e('Force export to GitHub', 'writing-on-github'); ?>
27 27
                     </a> |
28
-					<a href="<?php echo esc_url( add_query_arg( array( 'action' => 'import' ) ) ); ?>">
29
-						<?php esc_html_e( 'Import from GitHub', 'writing-on-github' ); ?>
28
+					<a href="<?php echo esc_url(add_query_arg(array('action' => 'import'))); ?>">
29
+						<?php esc_html_e('Import from GitHub', 'writing-on-github'); ?>
30 30
 					</a>
31 31
 				</td>
32 32
 		</table>
Please login to merge, or discard this patch.
views/user-setting-field.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -1,8 +1,8 @@
 block discarded – undo
1
-<?php $value = get_option( $args['name'], $args['default'] ); ?>
2
-<select name="<?php echo esc_attr( $args['name'] ) ?>" id="<?php echo esc_attr( $args['name'] ) ?>">
3
-	<?php foreach ( get_users() as $user ) : ?>
4
-		<option value="<?php echo esc_attr( $user->ID ); ?>"<?php echo (int) $value === $user->ID ? ' selected' : '';?>>
5
-			<?php echo esc_html( $user->display_name ); ?>
1
+<?php $value = get_option($args['name'], $args['default']); ?>
2
+<select name="<?php echo esc_attr($args['name']) ?>" id="<?php echo esc_attr($args['name']) ?>">
3
+	<?php foreach (get_users() as $user) : ?>
4
+		<option value="<?php echo esc_attr($user->ID); ?>"<?php echo (int) $value === $user->ID ? ' selected' : ''; ?>>
5
+			<?php echo esc_html($user->display_name); ?>
6 6
 		</option>
7 7
 	<?php endforeach; ?>
8 8
 </select>
Please login to merge, or discard this patch.
views/checkbox-setting-field.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -5,6 +5,6 @@
 block discarded – undo
5 5
  */
6 6
 
7 7
 ?>
8
-<?php $value = get_option( $args['name'], $args['default'] ); ?>
9
-<input type="checkbox" name="<?php echo esc_attr( $args['name'] ); ?>" id="<?php echo esc_attr( $args['name'] ); ?>" value="yes" <?php echo 'yes' === $value ? 'checked' : '';  ?> />
8
+<?php $value = get_option($args['name'], $args['default']); ?>
9
+<input type="checkbox" name="<?php echo esc_attr($args['name']); ?>" id="<?php echo esc_attr($args['name']); ?>" value="yes" <?php echo 'yes' === $value ? 'checked' : ''; ?> />
10 10
 <p class="description"><?php echo $args['help_text']; ?></p>
Please login to merge, or discard this patch.
views/setting-field.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -5,6 +5,6 @@
 block discarded – undo
5 5
  */
6 6
 
7 7
 ?>
8
-<?php $value = get_option( $args['name'], $args['default'] ); ?>
9
-<input name="<?php echo esc_attr( $args['name'] ); ?>" id="<?php echo esc_attr( $args['name'] ); ?>" type="<?php echo 'wogh_secret' === $args['name'] ? 'password' : 'text'; ?>" value="<?php echo esc_attr( $value ); ?>" />
8
+<?php $value = get_option($args['name'], $args['default']); ?>
9
+<input name="<?php echo esc_attr($args['name']); ?>" id="<?php echo esc_attr($args['name']); ?>" type="<?php echo 'wogh_secret' === $args['name'] ? 'password' : 'text'; ?>" value="<?php echo esc_attr($value); ?>" />
10 10
 <p class="description"><?php echo $args['help_text']; ?></p>
Please login to merge, or discard this patch.
writing-on-github.php 1 patch
Spacing   +58 added lines, -58 removed lines patch added patch discarded remove patch
@@ -12,12 +12,12 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 }
Please login to merge, or discard this patch.
lib/client/fetch.php 1 patch
Spacing   +19 added lines, -19 removed lines patch added patch discarded remove patch
@@ -16,13 +16,13 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 }
Please login to merge, or discard this patch.
lib/controller.php 1 patch
Spacing   +75 added lines, -75 removed lines patch added patch discarded remove patch
@@ -21,7 +21,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 }
Please login to merge, or discard this patch.
lib/request.php 1 patch
Spacing   +11 added lines, -11 removed lines patch added patch discarded remove patch
@@ -34,7 +34,7 @@  discard block
 block discarded – undo
34 34
 	 *
35 35
 	 * @param Writing_On_GitHub $app Application container.
36 36
 	 */
37
-	public function __construct( Writing_On_GitHub $app ) {
37
+	public function __construct(Writing_On_GitHub $app) {
38 38
 		$this->app = $app;
39 39
 	}
40 40
 
@@ -49,8 +49,8 @@  discard block
 block discarded – undo
49 49
 		$this->raw_data = $this->read_raw_data();
50 50
 
51 51
 		// Validate request secret.
52
-		$hash = hash_hmac( 'sha1', $this->raw_data, $this->secret() );
53
-		if ( 'sha1=' . $hash !== $headers['X-Hub-Signature'] ) {
52
+		$hash = hash_hmac('sha1', $this->raw_data, $this->secret());
53
+		if ('sha1=' . $hash !== $headers['X-Hub-Signature']) {
54 54
 			return false;
55 55
 		}
56 56
 
@@ -90,7 +90,7 @@  discard block
 block discarded – undo
90 90
 	 * @return Writing_On_GitHub_Payload
91 91
 	 */
92 92
 	public function payload() {
93
-		return new Writing_On_GitHub_Payload( $this->app, $this->raw_data );
93
+		return new Writing_On_GitHub_Payload($this->app, $this->raw_data);
94 94
 	}
95 95
 
96 96
 	/**
@@ -101,11 +101,11 @@  discard block
 block discarded – undo
101 101
 	 * @return array
102 102
 	 */
103 103
 	protected function headers() {
104
-		if ( ! empty( $this->headers ) ) {
104
+		if ( ! empty($this->headers)) {
105 105
 			return $this->headers;
106 106
 		}
107 107
 
108
-		if ( function_exists( 'getallheaders' ) ) {
108
+		if (function_exists('getallheaders')) {
109 109
 
110 110
 			$this->headers = getallheaders();
111 111
 			return $this->headers;
@@ -115,9 +115,9 @@  discard block
 block discarded – undo
115 115
 		 * @see http://www.php.net/manual/en/function.getallheaders.php
116 116
 		 */
117 117
 		$this->headers = array();
118
-		foreach ( $_SERVER as $name => $value ) {
119
-			if ( 'HTTP_' === substr( $name, 0, 5 ) ) {
120
-				$this->headers[ str_replace( ' ', '-', ucwords( strtolower( str_replace( '_', ' ', substr( $name, 5 ) ) ) ) ) ] = $value;
118
+		foreach ($_SERVER as $name => $value) {
119
+			if ('HTTP_' === substr($name, 0, 5)) {
120
+				$this->headers[str_replace(' ', '-', ucwords(strtolower(str_replace('_', ' ', substr($name, 5)))))] = $value;
121 121
 			}
122 122
 		}
123 123
 
@@ -130,7 +130,7 @@  discard block
 block discarded – undo
130 130
 	 * @return string
131 131
 	 */
132 132
 	protected function read_raw_data() {
133
-		return file_get_contents( 'php://input' );
133
+		return file_get_contents('php://input');
134 134
 	}
135 135
 
136 136
 	/**
@@ -139,6 +139,6 @@  discard block
 block discarded – undo
139 139
 	 * @return string
140 140
 	 */
141 141
 	protected function secret() {
142
-		return get_option( 'wogh_secret' );
142
+		return get_option('wogh_secret');
143 143
 	}
144 144
 }
Please login to merge, or discard this patch.
lib/import.php 1 patch
Spacing   +79 added lines, -79 removed lines patch added patch discarded remove patch
@@ -22,7 +22,7 @@  discard block
 block discarded – undo
22 22
 	 *
23 23
 	 * @param Writing_On_GitHub $app Application container.
24 24
 	 */
25
-	public function __construct( Writing_On_GitHub $app ) {
25
+	public function __construct(Writing_On_GitHub $app) {
26 26
 		$this->app = $app;
27 27
 	}
28 28
 
@@ -32,24 +32,24 @@  discard block
 block discarded – undo
32 32
      *
33 33
      * @return string|WP_Error
34 34
      */
35
-	public function payload( Writing_On_GitHub_Payload $payload ) {
35
+	public function payload(Writing_On_GitHub_Payload $payload) {
36 36
 
37
-		$result = $this->app->api()->fetch()->compare( $payload->get_before_commit_id() );
37
+		$result = $this->app->api()->fetch()->compare($payload->get_before_commit_id());
38 38
 
39
-		if ( is_wp_error( $result ) ) {
39
+		if (is_wp_error($result)) {
40 40
             /* @var WP_Error $result */
41 41
 			return $result;
42 42
 		}
43 43
 
44
-        if ( is_array( $result ) ) {
45
-            $result = $this->import_files( $result );
44
+        if (is_array($result)) {
45
+            $result = $this->import_files($result);
46 46
         }
47 47
 
48
-		if ( is_wp_error( $result ) ) {
48
+		if (is_wp_error($result)) {
49 49
 			return $files;
50 50
 		}
51 51
 
52
-		return __( 'Payload processed', 'writing-on-github' );
52
+		return __('Payload processed', 'writing-on-github');
53 53
 	}
54 54
 
55 55
 	/**
@@ -58,23 +58,23 @@  discard block
 block discarded – undo
58 58
      *
59 59
 	 * @return string|WP_Error
60 60
 	 */
61
-	protected function import_files( $files ) {
61
+	protected function import_files($files) {
62 62
 
63
-		$error 		= false;
63
+		$error = false;
64 64
 		$delete_ids = false;
65 65
 
66
-		$result = $this->compare( $files, $delete_ids );
66
+		$result = $this->compare($files, $delete_ids);
67 67
 
68
-		if ( is_wp_error( $result ) ) {
68
+		if (is_wp_error($result)) {
69 69
 			return $result;
70 70
 		}
71 71
 
72
-		if ( $delete_ids ) {
72
+		if ($delete_ids) {
73 73
 			foreach ($delete_ids as $id) {
74
-				$result = $this->app->database()->delete_post( $id );
75
-				if ( is_wp_error( $result ) ) {
74
+				$result = $this->app->database()->delete_post($id);
75
+				if (is_wp_error($result)) {
76 76
                     /* @var WP_Error $result */
77
-                    $error = wogh_append_error( $error, $result );
77
+                    $error = wogh_append_error($error, $result);
78 78
 				}
79 79
 			}
80 80
 		}
@@ -90,21 +90,21 @@  discard block
 block discarded – undo
90 90
 	public function master() {
91 91
 		$result = $this->app->api()->fetch()->tree_recursive();
92 92
 
93
-		if ( is_wp_error( $result ) ) {
93
+		if (is_wp_error($result)) {
94 94
             /* @var WP_Error $result */
95 95
 			return $result;
96 96
 		}
97 97
 
98
-        if ( is_array( $result ) ) {
99
-            $result = $this->import_files( $result );
98
+        if (is_array($result)) {
99
+            $result = $this->import_files($result);
100 100
         }
101 101
 
102
-		if ( is_wp_error( $result ) ) {
102
+		if (is_wp_error($result)) {
103 103
             /* @var WP_Error $result */
104 104
 			return $result;
105 105
 		}
106 106
 
107
-		return __( 'Payload processed', 'writing-on-github' );
107
+		return __('Payload processed', 'writing-on-github');
108 108
 	}
109 109
 
110 110
     /**
@@ -114,8 +114,8 @@  discard block
 block discarded – undo
114 114
      *
115 115
      * @return string|WP_Error
116 116
      */
117
-	protected function compare( $files, &$delete_ids ) {
118
-		if ( is_wp_error( $files ) ) {
117
+	protected function compare($files, &$delete_ids) {
118
+		if (is_wp_error($files)) {
119 119
             /* @var WP_Error $files */
120 120
 			return $files;
121 121
 		}
@@ -125,62 +125,62 @@  discard block
 block discarded – undo
125 125
 
126 126
 		$idsmap = array();
127 127
 
128
-		foreach ( $files as $file ) {
129
-			if ( ! $this->importable_file( $file ) ) {
128
+		foreach ($files as $file) {
129
+			if ( ! $this->importable_file($file)) {
130 130
 				continue;
131 131
 			}
132 132
 
133
-			$blob = $this->app->api()->fetch()->blob( $file );
133
+			$blob = $this->app->api()->fetch()->blob($file);
134 134
 			// network error ?
135
-			if ( ! $blob instanceof Writing_On_GitHub_Blob ) {
135
+			if ( ! $blob instanceof Writing_On_GitHub_Blob) {
136 136
 				continue;
137 137
 			}
138 138
 
139
-			if ( $this->importable_raw_file( $blob ) ) {
140
-				$this->import_raw_file( $blob, $file->status == 'removed' );
139
+			if ($this->importable_raw_file($blob)) {
140
+				$this->import_raw_file($blob, $file->status == 'removed');
141 141
 				continue;
142 142
 			}
143 143
 
144
-			if ( ! $this->importable_blob( $blob ) ) {
144
+			if ( ! $this->importable_blob($blob)) {
145 145
 				continue;
146 146
 			}
147 147
 
148
-			$post = $this->blob_to_post( $blob );
148
+			$post = $this->blob_to_post($blob);
149 149
 
150
-			if ( $file->status == 'removed' ) {
151
-				if ( $blob->id() ) {
150
+			if ($file->status == 'removed') {
151
+				if ($blob->id()) {
152 152
 					$idsmap[$blob->id()] = true;
153 153
 				}
154
-			} elseif ( $post != false ) {
154
+			} elseif ($post != false) {
155 155
 				$posts[] = $post;
156
-				if ( $post->is_new() ) {
156
+				if ($post->is_new()) {
157 157
 					$new[] = $post;
158 158
 				}
159 159
 			}
160 160
 		}
161 161
 
162
-		foreach ( $posts as $post ) {
163
-			if ( $post->id() && isset( $idsmap[ $post->id() ] ) ) {
164
-				unset( $idsmap[ $post->id() ] );
162
+		foreach ($posts as $post) {
163
+			if ($post->id() && isset($idsmap[$post->id()])) {
164
+				unset($idsmap[$post->id()]);
165 165
 			}
166 166
 		}
167 167
 		$delete_ids = array();
168
-		foreach ( $idsmap as $id => $value ) {
168
+		foreach ($idsmap as $id => $value) {
169 169
 			$delete_ids[] = $id;
170 170
 		}
171 171
 
172 172
 		// $this->app->database()->save_posts( $posts, $commit->author_email() );
173 173
 
174
-		$result = $this->app->database()->save_posts( $posts );
174
+		$result = $this->app->database()->save_posts($posts);
175 175
 
176
-		if ( is_wp_error( $result ) ) {
176
+		if (is_wp_error($result)) {
177 177
 			return $result;
178 178
 		}
179 179
 
180
-		if ( ! empty( $new ) ) {
181
-			$result = $this->app->export()->new_posts( $new );
180
+		if ( ! empty($new)) {
181
+			$result = $this->app->export()->new_posts($new);
182 182
 
183
-			if ( is_wp_error( $result ) ) {
183
+			if (is_wp_error($result)) {
184 184
 				return $result;
185 185
 			}
186 186
 		}
@@ -195,12 +195,12 @@  discard block
 block discarded – undo
195 195
 	 *
196 196
 	 * @return bool
197 197
 	 */
198
-	protected function importable_file( Writing_On_GitHub_File_Info $file ) {
198
+	protected function importable_file(Writing_On_GitHub_File_Info $file) {
199 199
 
200 200
 		// only _pages and _posts
201
-		if ( strncasecmp($file->path, '_pages/', strlen('_pages/') ) != 0 &&
202
-			 strncasecmp($file->path, '_posts/', strlen('_posts/') ) != 0 &&
203
-			 strncasecmp($file->path, 'images/', strlen('images/') ) != 0 ) {
201
+		if (strncasecmp($file->path, '_pages/', strlen('_pages/')) != 0 &&
202
+			 strncasecmp($file->path, '_posts/', strlen('_posts/')) != 0 &&
203
+			 strncasecmp($file->path, 'images/', strlen('images/')) != 0) {
204 204
 			return false;
205 205
 		}
206 206
 
@@ -219,7 +219,7 @@  discard block
 block discarded – undo
219 219
 	 *
220 220
 	 * @return bool
221 221
 	 */
222
-	protected function importable_blob( Writing_On_GitHub_Blob $blob ) {
222
+	protected function importable_blob(Writing_On_GitHub_Blob $blob) {
223 223
 		// global $wpdb;
224 224
 
225 225
 		// // Skip the repo's readme.
@@ -232,20 +232,20 @@  discard block
 block discarded – undo
232 232
 		// 	return false;
233 233
 		// }
234 234
 
235
-		if ( ! $blob->has_frontmatter() ) {
235
+		if ( ! $blob->has_frontmatter()) {
236 236
 			return false;
237 237
 		}
238 238
 
239 239
 		return true;
240 240
 	}
241 241
 
242
-	protected function importable_raw_file( Writing_On_GitHub_Blob $blob ) {
243
-		if ( $blob->has_frontmatter() ) {
242
+	protected function importable_raw_file(Writing_On_GitHub_Blob $blob) {
243
+		if ($blob->has_frontmatter()) {
244 244
 			return false;
245 245
 		}
246 246
 
247 247
 		// only images
248
-		if ( strncasecmp($blob->path(), 'images/', strlen('images/') ) != 0) {
248
+		if (strncasecmp($blob->path(), 'images/', strlen('images/')) != 0) {
249 249
 			return false;
250 250
 		}
251 251
 
@@ -257,16 +257,16 @@  discard block
 block discarded – undo
257 257
 	 * @param  Writing_On_GitHub_Blob $blob
258 258
 	 * @param  bool                   $is_remove
259 259
 	 */
260
-	protected function import_raw_file( Writing_On_GitHub_Blob $blob, $is_remove ) {
260
+	protected function import_raw_file(Writing_On_GitHub_Blob $blob, $is_remove) {
261 261
 		$arr = wp_upload_dir();
262 262
 		$path = $arr['basedir'] . '/writing-on-github/' . $blob->path();
263
-		if ( $is_remove ) {
264
-			if ( file_exists($path) ) {
263
+		if ($is_remove) {
264
+			if (file_exists($path)) {
265 265
 				unlink($path);
266 266
 			}
267 267
 		} else {
268 268
 			$dirname = dirname($path);
269
-			if ( ! file_exists($dirname) ) {
269
+			if ( ! file_exists($dirname)) {
270 270
 				wp_mkdir_p($dirname);
271 271
 			}
272 272
 
@@ -281,57 +281,57 @@  discard block
 block discarded – undo
281 281
 	 *
282 282
 	 * @return Writing_On_GitHub_Post|false
283 283
 	 */
284
-	protected function blob_to_post( Writing_On_GitHub_Blob $blob ) {
285
-		$args = array( 'post_content' => $blob->content_import() );
284
+	protected function blob_to_post(Writing_On_GitHub_Blob $blob) {
285
+		$args = array('post_content' => $blob->content_import());
286 286
 		$meta = $blob->meta();
287 287
 
288 288
 		$id = false;
289 289
 
290
-		if ( ! empty( $meta ) ) {
291
-			if ( array_key_exists( 'layout', $meta ) ) {
290
+		if ( ! empty($meta)) {
291
+			if (array_key_exists('layout', $meta)) {
292 292
 				$args['post_type'] = $meta['layout'];
293
-				unset( $meta['layout'] );
293
+				unset($meta['layout']);
294 294
 			}
295 295
 
296
-			if ( array_key_exists( 'published', $meta ) ) {
296
+			if (array_key_exists('published', $meta)) {
297 297
 				$args['post_status'] = true === $meta['published'] ? 'publish' : 'draft';
298
-				unset( $meta['published'] );
298
+				unset($meta['published']);
299 299
 			}
300 300
 
301
-			if ( array_key_exists( 'post_title', $meta ) ) {
301
+			if (array_key_exists('post_title', $meta)) {
302 302
 				$args['post_title'] = $meta['post_title'];
303
-				unset( $meta['post_title'] );
303
+				unset($meta['post_title']);
304 304
 			}
305 305
 
306
-			if ( array_key_exists( 'post_name', $meta ) ) {
306
+			if (array_key_exists('post_name', $meta)) {
307 307
 				$args['post_name'] = $meta['post_name'];
308
-				unset( $meta['post_name'] );
308
+				unset($meta['post_name']);
309 309
 			}
310 310
 
311
-			if ( array_key_exists( 'ID', $meta ) ) {
311
+			if (array_key_exists('ID', $meta)) {
312 312
 				$id = $args['ID'] = $meta['ID'];
313 313
 				$blob->set_id($id);
314
-				unset( $meta['ID'] );
314
+				unset($meta['ID']);
315 315
 			}
316 316
 		}
317 317
 
318 318
 		$meta['_wogh_sha'] = $blob->sha();
319 319
 
320
-		if ( $id ) {
321
-			$old_sha = get_post_meta( $id, '_wogh_sha', true );
322
-			$old_github_path = get_post_meta( $id, '_wogh_github_path', true );
320
+		if ($id) {
321
+			$old_sha = get_post_meta($id, '_wogh_sha', true);
322
+			$old_github_path = get_post_meta($id, '_wogh_github_path', true);
323 323
 
324 324
 			// dont save post when has same sha
325
-			if ( $old_sha  && $old_sha == $meta['_wogh_sha'] &&
326
-				 $old_github_path && $old_github_path == $blob->path() ) {
325
+			if ($old_sha && $old_sha == $meta['_wogh_sha'] &&
326
+				 $old_github_path && $old_github_path == $blob->path()) {
327 327
 				return false;
328 328
 			}
329 329
 		}
330 330
 
331
-		$post = new Writing_On_GitHub_Post( $args, $this->app->api() );
332
-		$post->set_old_github_path( $blob->path() );
333
-		$post->set_meta( $meta );
334
-		$blob->set_id( $post->id() );
331
+		$post = new Writing_On_GitHub_Post($args, $this->app->api());
332
+		$post->set_old_github_path($blob->path());
333
+		$post->set_meta($meta);
334
+		$blob->set_id($post->id());
335 335
 
336 336
 		return $post;
337 337
 	}
Please login to merge, or discard this patch.