@@ -60,26 +60,26 @@ discard block |
||
60 | 60 | * |
61 | 61 | * @todo remove database operations from this method |
62 | 62 | */ |
63 | - public function __construct( $id_or_args, Writing_On_GitHub_Api $api ) { |
|
63 | + public function __construct($id_or_args, Writing_On_GitHub_Api $api) { |
|
64 | 64 | $this->api = $api; |
65 | 65 | |
66 | - if ( is_numeric( $id_or_args ) ) { |
|
66 | + if (is_numeric($id_or_args)) { |
|
67 | 67 | $this->id = (int) $id_or_args; |
68 | - $this->post = get_post( $this->id ); |
|
68 | + $this->post = get_post($this->id); |
|
69 | 69 | $this->new = false; |
70 | 70 | } |
71 | 71 | |
72 | - if ( is_array( $id_or_args ) ) { |
|
72 | + if (is_array($id_or_args)) { |
|
73 | 73 | $this->args = $id_or_args; |
74 | 74 | |
75 | - if ( isset( $this->args['ID'] ) ) { |
|
76 | - $this->post = get_post( $this->args['ID'] ); |
|
75 | + if (isset($this->args['ID'])) { |
|
76 | + $this->post = get_post($this->args['ID']); |
|
77 | 77 | |
78 | - if ( $this->post ) { |
|
78 | + if ($this->post) { |
|
79 | 79 | $this->id = $this->post->ID; |
80 | 80 | $this->new = false; |
81 | 81 | } else { |
82 | - unset( $this->args['ID'] ); |
|
82 | + unset($this->args['ID']); |
|
83 | 83 | } |
84 | 84 | } |
85 | 85 | } |
@@ -115,7 +115,7 @@ discard block |
||
115 | 115 | * @return bool |
116 | 116 | */ |
117 | 117 | public function has_password() { |
118 | - return ! empty( $this->post->post_password ); |
|
118 | + return ! empty($this->post->post_password); |
|
119 | 119 | } |
120 | 120 | |
121 | 121 | /** |
@@ -123,9 +123,9 @@ discard block |
||
123 | 123 | */ |
124 | 124 | public function github_content() { |
125 | 125 | $content = $this->front_matter() . $this->post_content(); |
126 | - $ending = apply_filters( 'wogh_line_endings', "\n" ); |
|
126 | + $ending = apply_filters('wogh_line_endings', "\n"); |
|
127 | 127 | |
128 | - return preg_replace( '~(*BSR_ANYCRLF)\R~', $ending, $content ); |
|
128 | + return preg_replace('~(*BSR_ANYCRLF)\R~', $ending, $content); |
|
129 | 129 | } |
130 | 130 | |
131 | 131 | /** |
@@ -134,7 +134,7 @@ discard block |
||
134 | 134 | * Returns String the YAML frontmatter, ready to be written to the file |
135 | 135 | */ |
136 | 136 | public function front_matter() { |
137 | - return "---\n" . spyc_dump( $this->meta() ) . "---\n"; |
|
137 | + return "---\n" . spyc_dump($this->meta()) . "---\n"; |
|
138 | 138 | } |
139 | 139 | |
140 | 140 | /** |
@@ -145,24 +145,24 @@ discard block |
||
145 | 145 | public function post_content() { |
146 | 146 | $content = $this->post->post_content; |
147 | 147 | |
148 | - if ( function_exists( 'wpmarkdown_html_to_markdown' ) ) { |
|
149 | - $content = wpmarkdown_html_to_markdown( $content ); |
|
150 | - } else if ( class_exists( 'WPCom_Markdown' ) ) { |
|
151 | - if ( WPCom_Markdown::get_instance()->is_markdown( $this->post->ID ) ) { |
|
148 | + if (function_exists('wpmarkdown_html_to_markdown')) { |
|
149 | + $content = wpmarkdown_html_to_markdown($content); |
|
150 | + } else if (class_exists('WPCom_Markdown')) { |
|
151 | + if (WPCom_Markdown::get_instance()->is_markdown($this->post->ID)) { |
|
152 | 152 | $content = $this->post->post_content_filtered; |
153 | 153 | } |
154 | 154 | } |
155 | 155 | |
156 | - return apply_filters( 'wogh_content_export', $content, $this ); |
|
156 | + return apply_filters('wogh_content_export', $content, $this); |
|
157 | 157 | } |
158 | 158 | |
159 | 159 | public function old_github_path() { |
160 | 160 | return $this->old_github_path; |
161 | 161 | } |
162 | 162 | |
163 | - public function set_old_github_path( $path ) { |
|
163 | + public function set_old_github_path($path) { |
|
164 | 164 | $this->old_github_path = $path; |
165 | - update_post_meta( $this->id, '_wogh_github_path', $path ); |
|
165 | + update_post_meta($this->id, '_wogh_github_path', $path); |
|
166 | 166 | } |
167 | 167 | |
168 | 168 | |
@@ -183,13 +183,13 @@ discard block |
||
183 | 183 | * @return string |
184 | 184 | */ |
185 | 185 | public function github_directory() { |
186 | - if ( 'publish' !== $this->status() ) { |
|
187 | - return apply_filters( 'wogh_directory_unpublished', '_drafts/', $this ); |
|
186 | + if ('publish' !== $this->status()) { |
|
187 | + return apply_filters('wogh_directory_unpublished', '_drafts/', $this); |
|
188 | 188 | } |
189 | 189 | |
190 | 190 | $name = ''; |
191 | 191 | |
192 | - switch ( $this->type() ) { |
|
192 | + switch ($this->type()) { |
|
193 | 193 | case 'post': |
194 | 194 | $name = 'posts'; |
195 | 195 | break; |
@@ -197,35 +197,35 @@ discard block |
||
197 | 197 | $name = 'pages'; |
198 | 198 | break; |
199 | 199 | default: |
200 | - $obj = get_post_type_object( $this->type() ); |
|
200 | + $obj = get_post_type_object($this->type()); |
|
201 | 201 | |
202 | - if ( $obj ) { |
|
203 | - $name = strtolower( $obj->labels->name ); |
|
202 | + if ($obj) { |
|
203 | + $name = strtolower($obj->labels->name); |
|
204 | 204 | } |
205 | 205 | |
206 | - if ( ! $name ) { |
|
206 | + if ( ! $name) { |
|
207 | 207 | $name = ''; |
208 | 208 | } |
209 | 209 | } |
210 | 210 | |
211 | - if ( $name ) { |
|
211 | + if ($name) { |
|
212 | 212 | $name = '_' . $name . '/'; |
213 | 213 | } |
214 | 214 | |
215 | - return apply_filters( 'wogh_directory_published', $name, $this ); |
|
215 | + return apply_filters('wogh_directory_published', $name, $this); |
|
216 | 216 | } |
217 | 217 | |
218 | 218 | /** |
219 | 219 | * Build GitHub filename based on post |
220 | 220 | */ |
221 | 221 | public function github_filename() { |
222 | - if ( 'post' === $this->type() ) { |
|
223 | - $filename = get_the_time( 'Y-m-d-', $this->id ) . $this->get_name() . '.md'; |
|
222 | + if ('post' === $this->type()) { |
|
223 | + $filename = get_the_time('Y-m-d-', $this->id) . $this->get_name() . '.md'; |
|
224 | 224 | } else { |
225 | 225 | $filename = $this->get_name() . '.md'; |
226 | 226 | } |
227 | 227 | |
228 | - return apply_filters( 'wogh_filename', $filename, $this ); |
|
228 | + return apply_filters('wogh_filename', $filename, $this); |
|
229 | 229 | } |
230 | 230 | |
231 | 231 | /** |
@@ -234,11 +234,11 @@ discard block |
||
234 | 234 | * @return string |
235 | 235 | */ |
236 | 236 | protected function get_name() { |
237 | - if ( '' !== $this->name() ) { |
|
237 | + if ('' !== $this->name()) { |
|
238 | 238 | return $this->name(); |
239 | 239 | } |
240 | 240 | |
241 | - return sanitize_title( get_the_title( $this->post ) ); |
|
241 | + return sanitize_title(get_the_title($this->post)); |
|
242 | 242 | } |
243 | 243 | |
244 | 244 | /** |
@@ -246,9 +246,9 @@ discard block |
||
246 | 246 | * @return boolean |
247 | 247 | */ |
248 | 248 | public function is_on_github() { |
249 | - $sha = get_post_meta( $this->id, '_wogh_sha', true ); |
|
250 | - $github_path = get_post_meta( $this->id, '_wogh_github_path', true ); |
|
251 | - if ( $sha && $github_path ) { |
|
249 | + $sha = get_post_meta($this->id, '_wogh_sha', true); |
|
250 | + $github_path = get_post_meta($this->id, '_wogh_github_path', true); |
|
251 | + if ($sha && $github_path) { |
|
252 | 252 | return true; |
253 | 253 | } |
254 | 254 | return false; |
@@ -260,7 +260,7 @@ discard block |
||
260 | 260 | * @return string |
261 | 261 | */ |
262 | 262 | public function github_view_url() { |
263 | - $github_path = get_post_meta( $this->id, '_wogh_github_path', true ); |
|
263 | + $github_path = get_post_meta($this->id, '_wogh_github_path', true); |
|
264 | 264 | $repository = $this->api->fetch()->repository(); |
265 | 265 | $branch = $this->api->fetch()->branch(); |
266 | 266 | |
@@ -273,7 +273,7 @@ discard block |
||
273 | 273 | * @return string |
274 | 274 | */ |
275 | 275 | public function github_edit_url() { |
276 | - $github_path = get_post_meta( $this->id, '_wogh_github_path', true ); |
|
276 | + $github_path = get_post_meta($this->id, '_wogh_github_path', true); |
|
277 | 277 | $repository = $this->api->fetch()->repository(); |
278 | 278 | $branch = $this->api->fetch()->branch(); |
279 | 279 | |
@@ -287,9 +287,9 @@ discard block |
||
287 | 287 | * |
288 | 288 | * @return string |
289 | 289 | */ |
290 | - public function get_directory_from_path( $path ) { |
|
291 | - $directory = explode( '/', $path ); |
|
292 | - $directory = count( $directory ) > 0 ? $directory[0] : ''; |
|
290 | + public function get_directory_from_path($path) { |
|
291 | + $directory = explode('/', $path); |
|
292 | + $directory = count($directory) > 0 ? $directory[0] : ''; |
|
293 | 293 | |
294 | 294 | return $directory; |
295 | 295 | } |
@@ -300,11 +300,11 @@ discard block |
||
300 | 300 | * Returns Array an array containing the author name and email |
301 | 301 | */ |
302 | 302 | public function last_modified_author() { |
303 | - if ( $last_id = get_post_meta( $this->id, '_edit_last', true ) ) { |
|
304 | - $user = get_userdata( $last_id ); |
|
303 | + if ($last_id = get_post_meta($this->id, '_edit_last', true)) { |
|
304 | + $user = get_userdata($last_id); |
|
305 | 305 | |
306 | - if ( $user ) { |
|
307 | - return array( 'name' => $user->display_name, 'email' => $user->user_email ); |
|
306 | + if ($user) { |
|
307 | + return array('name' => $user->display_name, 'email' => $user->user_email); |
|
308 | 308 | } |
309 | 309 | } |
310 | 310 | |
@@ -318,7 +318,7 @@ discard block |
||
318 | 318 | * Returns String the sha1 hash |
319 | 319 | */ |
320 | 320 | public function sha() { |
321 | - $sha = get_post_meta( $this->id, '_wogh_sha', true ); |
|
321 | + $sha = get_post_meta($this->id, '_wogh_sha', true); |
|
322 | 322 | |
323 | 323 | // If we've done a full export and we have no sha |
324 | 324 | // then we should try a live check to see if it exists. |
@@ -334,7 +334,7 @@ discard block |
||
334 | 334 | // } |
335 | 335 | |
336 | 336 | // if the sha still doesn't exist, then it's empty |
337 | - if ( ! $sha || is_wp_error( $sha ) ) { |
|
337 | + if ( ! $sha || is_wp_error($sha)) { |
|
338 | 338 | $sha = ''; |
339 | 339 | } |
340 | 340 | |
@@ -346,8 +346,8 @@ discard block |
||
346 | 346 | * |
347 | 347 | * @param string $sha |
348 | 348 | */ |
349 | - public function set_sha( $sha ) { |
|
350 | - update_post_meta( $this->id, '_wogh_sha', $sha ); |
|
349 | + public function set_sha($sha) { |
|
350 | + update_post_meta($this->id, '_wogh_sha', $sha); |
|
351 | 351 | } |
352 | 352 | |
353 | 353 | /** |
@@ -358,24 +358,24 @@ discard block |
||
358 | 358 | public function meta() { |
359 | 359 | $meta = array( |
360 | 360 | 'ID' => $this->id, |
361 | - 'post_title' => get_the_title( $this->post ), |
|
361 | + 'post_title' => get_the_title($this->post), |
|
362 | 362 | 'post_name' => $this->post->post_name, |
363 | - 'author' => ( $author = get_userdata( $this->post->post_author ) ) ? $author->display_name : '', |
|
363 | + 'author' => ($author = get_userdata($this->post->post_author)) ? $author->display_name : '', |
|
364 | 364 | 'post_date' => $this->post->post_date, |
365 | 365 | 'post_excerpt' => $this->post->post_excerpt, |
366 | - 'layout' => get_post_type( $this->post ), |
|
367 | - 'link' => get_permalink( $this->post ), |
|
366 | + 'layout' => get_post_type($this->post), |
|
367 | + 'link' => get_permalink($this->post), |
|
368 | 368 | 'published' => 'publish' === $this->status() ? true : false, |
369 | - 'tags' => wp_get_post_tags( $this->id, array( 'fields' => 'names' ) ), |
|
370 | - 'categories' => wp_get_post_categories( $this->id, array( 'fields' => 'names' ) ) |
|
369 | + 'tags' => wp_get_post_tags($this->id, array('fields' => 'names')), |
|
370 | + 'categories' => wp_get_post_categories($this->id, array('fields' => 'names')) |
|
371 | 371 | ); |
372 | - if ( empty($this->post->post_name) ) { |
|
372 | + if (empty($this->post->post_name)) { |
|
373 | 373 | unset($meta['post_name']); |
374 | 374 | } |
375 | - if ( empty($this->post->post_excerpt) ) { |
|
375 | + if (empty($this->post->post_excerpt)) { |
|
376 | 376 | unset($meta['post_excerpt']); |
377 | 377 | } |
378 | - if ( 'yes' == get_option('wogh_ignore_author') ) { |
|
378 | + if ('yes' == get_option('wogh_ignore_author')) { |
|
379 | 379 | unset($meta['author']); |
380 | 380 | } |
381 | 381 | |
@@ -390,7 +390,7 @@ discard block |
||
390 | 390 | |
391 | 391 | // } |
392 | 392 | |
393 | - return apply_filters( 'wogh_post_meta', $meta, $this ); |
|
393 | + return apply_filters('wogh_post_meta', $meta, $this); |
|
394 | 394 | } |
395 | 395 | |
396 | 396 | /** |
@@ -407,7 +407,7 @@ discard block |
||
407 | 407 | * |
408 | 408 | * @param array $meta |
409 | 409 | */ |
410 | - public function set_meta( $meta ) { |
|
410 | + public function set_meta($meta) { |
|
411 | 411 | $this->meta = $meta; |
412 | 412 | } |
413 | 413 | |
@@ -436,7 +436,7 @@ discard block |
||
436 | 436 | * |
437 | 437 | * @return $this |
438 | 438 | */ |
439 | - public function set_post( WP_Post $post ) { |
|
439 | + public function set_post(WP_Post $post) { |
|
440 | 440 | $this->post = $post; |
441 | 441 | $this->id = $post->ID; |
442 | 442 | |
@@ -455,6 +455,6 @@ discard block |
||
455 | 455 | $data->content = $this->github_content(); |
456 | 456 | $data->sha = $this->sha(); |
457 | 457 | |
458 | - return new Writing_On_GitHub_Blob( $data ); |
|
458 | + return new Writing_On_GitHub_Blob($data); |
|
459 | 459 | } |
460 | 460 | } |