@@ -84,13 +84,13 @@ discard block |
||
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( |
|
89 | - 'default' => '', |
|
90 | - 'name' => 'wogh_ignore_author', |
|
91 | - 'help_text' => __( 'Do not export author and do not use author info from GitHub.', 'writing-on-github' ), |
|
92 | - ) |
|
93 | - ); |
|
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 | + 'default' => '', |
|
90 | + 'name' => 'wogh_ignore_author', |
|
91 | + 'help_text' => __( 'Do not export author and do not use author info from GitHub.', 'writing-on-github' ), |
|
92 | + ) |
|
93 | + ); |
|
94 | 94 | |
95 | 95 | // register_setting( Writing_On_GitHub::$text_domain, 'wogh_ignore_metas' ); |
96 | 96 | // add_settings_field( 'wogh_ignore_metas', __( 'Ignore post metas', 'writing-on-github' ), array( &$this, 'textarea_field_callback' ), Writing_On_GitHub::$text_domain, 'general', array( |
@@ -128,14 +128,14 @@ discard block |
||
128 | 128 | include dirname( dirname( __FILE__ ) ) . '/views/textarea-setting-field.php'; |
129 | 129 | } |
130 | 130 | |
131 | - /** |
|
132 | - * Callback to render the checkbox field. |
|
133 | - * |
|
134 | - * @param array $args Field arguments. |
|
135 | - */ |
|
136 | - public function checkbox_field_callback( $args ) { |
|
137 | - include dirname( dirname( __FILE__ ) ) . '/views/checkbox-setting-field.php'; |
|
138 | - } |
|
131 | + /** |
|
132 | + * Callback to render the checkbox field. |
|
133 | + * |
|
134 | + * @param array $args Field arguments. |
|
135 | + */ |
|
136 | + public function checkbox_field_callback( $args ) { |
|
137 | + include dirname( dirname( __FILE__ ) ) . '/views/checkbox-setting-field.php'; |
|
138 | + } |
|
139 | 139 | |
140 | 140 | /** |
141 | 141 | * Displays settings messages from background processes |
@@ -221,9 +221,9 @@ discard block |
||
221 | 221 | Writing_On_GitHub::$instance->start_export(); |
222 | 222 | } |
223 | 223 | |
224 | - if ( 'force_export' === $_GET['action'] ) { |
|
225 | - Writing_On_GitHub::$instance->start_export(true); |
|
226 | - } |
|
224 | + if ( 'force_export' === $_GET['action'] ) { |
|
225 | + Writing_On_GitHub::$instance->start_export(true); |
|
226 | + } |
|
227 | 227 | |
228 | 228 | if ( 'import' === $_GET['action'] ) { |
229 | 229 | Writing_On_GitHub::$instance->start_import(); |
@@ -152,9 +152,9 @@ |
||
152 | 152 | array_pop( $matches ); |
153 | 153 | |
154 | 154 | $meta = spyc_load( $matches[2] ); |
155 | - if ( 'yes' == get_option('wogh_ignore_author') ) { |
|
156 | - unset($meta['author']); |
|
157 | - } |
|
155 | + if ( 'yes' == get_option('wogh_ignore_author') ) { |
|
156 | + unset($meta['author']); |
|
157 | + } |
|
158 | 158 | // if ( isset( $meta['link'] ) ) { |
159 | 159 | // $meta['link'] = str_replace( home_url(), '', $meta['link'] ); |
160 | 160 | // } |
@@ -14,7 +14,7 @@ discard block |
||
14 | 14 | // This fixes function duplication during unit testing. |
15 | 15 | $path = dirname( __FILE__ ) . '/vendor/autoload.php'; |
16 | 16 | if ( file_exists( $path ) ) { |
17 | - require_once( $path ); |
|
17 | + require_once( $path ); |
|
18 | 18 | } |
19 | 19 | |
20 | 20 | add_action( 'plugins_loaded', array( new Writing_On_GitHub, 'boot' ) ); |
@@ -131,7 +131,7 @@ discard block |
||
131 | 131 | add_action( 'save_post', array( $this->controller, 'export_post' ) ); |
132 | 132 | add_action( 'delete_post', array( $this->controller, 'delete_post' ) ); |
133 | 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 ); |
|
134 | + add_action( 'wogh_export', array( $this->controller, 'export_all' ), 10, 2 ); |
|
135 | 135 | add_action( 'wogh_import', array( $this->controller, 'import_master' ), 10, 1 ); |
136 | 136 | add_filter( 'get_edit_post_link', array( $this, 'edit_post_link' ), 10, 3 ); |
137 | 137 | |
@@ -150,7 +150,7 @@ discard block |
||
150 | 150 | } |
151 | 151 | } |
152 | 152 | |
153 | - return $link; |
|
153 | + return $link; |
|
154 | 154 | } |
155 | 155 | |
156 | 156 | public function ignore_post_meta($meta) { |
@@ -392,9 +392,9 @@ discard block |
||
392 | 392 | /** |
393 | 393 | * Kicks of an import or export cronjob. |
394 | 394 | * |
395 | - * @param bool $force |
|
396 | - * @param string $type |
|
397 | - */ |
|
395 | + * @param bool $force |
|
396 | + * @param string $type |
|
397 | + */ |
|
398 | 398 | protected function start_cron( $type, $force = false ) { |
399 | 399 | update_option( '_wogh_' . $type . '_started', 'yes' ); |
400 | 400 | $user_id = get_current_user_id(); |
@@ -81,7 +81,7 @@ discard block |
||
81 | 81 | $this->app->semaphore()->unlock(); |
82 | 82 | |
83 | 83 | if ( is_wp_error( $result ) ) { |
84 | - /* @var WP_Error $result */ |
|
84 | + /* @var WP_Error $result */ |
|
85 | 85 | return $this->app->response()->error( $result ); |
86 | 86 | } |
87 | 87 | |
@@ -113,9 +113,9 @@ discard block |
||
113 | 113 | |
114 | 114 | $this->app->semaphore()->unlock(); |
115 | 115 | |
116 | - if ( is_wp_error( $result ) ) { |
|
117 | - /* @var WP_Error $result */ |
|
118 | - update_option( '_wogh_import_error', $result->get_error_message() ); |
|
116 | + if ( is_wp_error( $result ) ) { |
|
117 | + /* @var WP_Error $result */ |
|
118 | + update_option( '_wogh_import_error', $result->get_error_message() ); |
|
119 | 119 | |
120 | 120 | return $this->app->response()->error( $result ); |
121 | 121 | } |
@@ -128,10 +128,10 @@ discard block |
||
128 | 128 | /** |
129 | 129 | * Export all the posts in the database to GitHub. |
130 | 130 | * |
131 | - * @param int $user_id |
|
132 | - * @param boolean $force |
|
133 | - * @return boolean |
|
134 | - */ |
|
131 | + * @param int $user_id |
|
132 | + * @param boolean $force |
|
133 | + * @return boolean |
|
134 | + */ |
|
135 | 135 | public function export_all( $user_id = 0, $force = false ) { |
136 | 136 | if ( ! $this->app->semaphore()->is_open() ) { |
137 | 137 | return $this->app->response()->error( new WP_Error( |
@@ -151,7 +151,7 @@ discard block |
||
151 | 151 | |
152 | 152 | // Maybe move option updating out of this class/upgrade message display? |
153 | 153 | if ( is_wp_error( $result ) ) { |
154 | - /* @var WP_Error $result */ |
|
154 | + /* @var WP_Error $result */ |
|
155 | 155 | update_option( '_wogh_export_error', $result->get_error_message() ); |
156 | 156 | |
157 | 157 | return $this->app->response()->error( $result ); |
@@ -189,7 +189,7 @@ discard block |
||
189 | 189 | $this->app->semaphore()->unlock(); |
190 | 190 | |
191 | 191 | if ( is_wp_error( $result ) ) { |
192 | - /* @var WP_Error $result */ |
|
192 | + /* @var WP_Error $result */ |
|
193 | 193 | return $this->app->response()->error( $result ); |
194 | 194 | } |
195 | 195 | |
@@ -222,7 +222,7 @@ discard block |
||
222 | 222 | $this->app->semaphore()->unlock(); |
223 | 223 | |
224 | 224 | if ( is_wp_error( $result ) ) { |
225 | - /* @var WP_Error $result */ |
|
225 | + /* @var WP_Error $result */ |
|
226 | 226 | return $this->app->response()->error( $result ); |
227 | 227 | } |
228 | 228 |
@@ -41,7 +41,7 @@ |
||
41 | 41 | */ |
42 | 42 | protected function call( $method, $endpoint, $body = array() ) { |
43 | 43 | if ( is_wp_error( $error = $this->can_call() ) ) { |
44 | - /* @var WP_Error $error */ |
|
44 | + /* @var WP_Error $error */ |
|
45 | 45 | return $error; |
46 | 46 | } |
47 | 47 |
@@ -29,34 +29,34 @@ discard block |
||
29 | 29 | /** |
30 | 30 | * Updates all of the current posts in the database on master. |
31 | 31 | * |
32 | - * @param bool $force |
|
33 | - * |
|
34 | - * @return string|WP_Error |
|
35 | - */ |
|
32 | + * @param bool $force |
|
33 | + * |
|
34 | + * @return string|WP_Error |
|
35 | + */ |
|
36 | 36 | public function full( $force = false ) { |
37 | 37 | $posts = $this->app->database()->fetch_all_supported( $force ); |
38 | 38 | |
39 | 39 | if ( is_wp_error( $posts ) ) { |
40 | - /* @var WP_Error $posts */ |
|
40 | + /* @var WP_Error $posts */ |
|
41 | 41 | return $posts; |
42 | 42 | } |
43 | 43 | |
44 | - $error = ''; |
|
44 | + $error = ''; |
|
45 | 45 | |
46 | - foreach ( $posts as $post ) { |
|
47 | - $result = $this->update( $post->id() ); |
|
48 | - if ( is_wp_error( $result ) ) { |
|
49 | - /* @var WP_Error $result */ |
|
50 | - $error = wogh_append_error( $error, $result ); |
|
51 | - } |
|
52 | - } |
|
46 | + foreach ( $posts as $post ) { |
|
47 | + $result = $this->update( $post->id() ); |
|
48 | + if ( is_wp_error( $result ) ) { |
|
49 | + /* @var WP_Error $result */ |
|
50 | + $error = wogh_append_error( $error, $result ); |
|
51 | + } |
|
52 | + } |
|
53 | 53 | |
54 | - if ( is_wp_error( $error ) ) { |
|
55 | - /* @var WP_Error $error */ |
|
56 | - return $error; |
|
57 | - } |
|
54 | + if ( is_wp_error( $error ) ) { |
|
55 | + /* @var WP_Error $error */ |
|
56 | + return $error; |
|
57 | + } |
|
58 | 58 | |
59 | - return __( 'Export to GitHub completed successfully.', 'writing-on-github' ); |
|
59 | + return __( 'Export to GitHub completed successfully.', 'writing-on-github' ); |
|
60 | 60 | } |
61 | 61 | |
62 | 62 | |
@@ -86,7 +86,7 @@ discard block |
||
86 | 86 | $post = $this->app->database()->fetch_by_id( $post_id ); |
87 | 87 | |
88 | 88 | if ( is_wp_error( $post ) ) { |
89 | - /* @var WP_Error $post */ |
|
89 | + /* @var WP_Error $post */ |
|
90 | 90 | return $post; |
91 | 91 | } |
92 | 92 | |
@@ -102,7 +102,7 @@ discard block |
||
102 | 102 | $result = $this->new_posts( array( $post ) ); |
103 | 103 | |
104 | 104 | if ( is_wp_error( $result ) ) { |
105 | - /* @var WP_Error $result */ |
|
105 | + /* @var WP_Error $result */ |
|
106 | 106 | return $result; |
107 | 107 | } |
108 | 108 | |
@@ -117,14 +117,14 @@ discard block |
||
117 | 117 | * @return string|WP_Error |
118 | 118 | */ |
119 | 119 | public function new_posts( array $posts ) { |
120 | - $persist = $this->app->api()->persist(); |
|
120 | + $persist = $this->app->api()->persist(); |
|
121 | 121 | |
122 | 122 | $error = ''; |
123 | 123 | foreach ( $posts as $post ) { |
124 | 124 | $result = $this->new_post( $post, $persist ); |
125 | 125 | if ( is_wp_error( $result ) ) { |
126 | - /* @var WP_Error $result */ |
|
127 | - $error = wogh_append_error( $error, $result ); |
|
126 | + /* @var WP_Error $result */ |
|
127 | + $error = wogh_append_error( $error, $result ); |
|
128 | 128 | } |
129 | 129 | } |
130 | 130 | |
@@ -132,7 +132,7 @@ discard block |
||
132 | 132 | return $error; |
133 | 133 | } |
134 | 134 | |
135 | - return __( 'Export to GitHub completed successfully.', 'writing-on-github' ); |
|
135 | + return __( 'Export to GitHub completed successfully.', 'writing-on-github' ); |
|
136 | 136 | } |
137 | 137 | |
138 | 138 | protected function new_post( $post, $persist ) { |
@@ -212,7 +212,7 @@ discard block |
||
212 | 212 | $post = $this->app->database()->fetch_by_id( $post_id ); |
213 | 213 | |
214 | 214 | if ( is_wp_error( $post ) ) { |
215 | - /* @var WP_Error $post */ |
|
215 | + /* @var WP_Error $post */ |
|
216 | 216 | return $post; |
217 | 217 | } |
218 | 218 | |
@@ -232,7 +232,7 @@ discard block |
||
232 | 232 | $result = $this->app->api()->persist()->delete_file( $github_path, $post->sha(), $message ); |
233 | 233 | |
234 | 234 | if ( is_wp_error( $result ) ) { |
235 | - /* @var WP_Error $result */ |
|
235 | + /* @var WP_Error $result */ |
|
236 | 236 | return $result; |
237 | 237 | } |
238 | 238 |
@@ -8,8 +8,8 @@ |
||
8 | 8 | * @return WP_Error |
9 | 9 | */ |
10 | 10 | function wogh_append_error( $error, $error2 ) { |
11 | - if ( is_wp_error( $error ) ) { |
|
12 | - $error->add( $error2->get_error_code(), $error2->get_error_message() ); |
|
13 | - } |
|
14 | - return $error2; |
|
11 | + if ( is_wp_error( $error ) ) { |
|
12 | + $error->add( $error2->get_error_code(), $error2->get_error_message() ); |
|
13 | + } |
|
14 | + return $error2; |
|
15 | 15 | } |
@@ -42,10 +42,10 @@ discard block |
||
42 | 42 | /** |
43 | 43 | * Queries the database for all of the supported posts. |
44 | 44 | * |
45 | - * @param bool $force |
|
46 | - * |
|
47 | - * @return Writing_On_GitHub_Post[]|WP_Error |
|
48 | - */ |
|
45 | + * @param bool $force |
|
46 | + * |
|
47 | + * @return Writing_On_GitHub_Post[]|WP_Error |
|
48 | + */ |
|
49 | 49 | public function fetch_all_supported( $force = false ) { |
50 | 50 | $args = array( |
51 | 51 | 'post_type' => $this->get_whitelisted_post_types(), |
@@ -65,7 +65,7 @@ discard block |
||
65 | 65 | ); |
66 | 66 | } |
67 | 67 | |
68 | - /* @var Writing_On_GitHub_Post[] $results */ |
|
68 | + /* @var Writing_On_GitHub_Post[] $results */ |
|
69 | 69 | $results = array(); |
70 | 70 | foreach ( $post_ids as $post_id ) { |
71 | 71 | // Do not export posts that have already been exported |
@@ -132,8 +132,8 @@ discard block |
||
132 | 132 | add_filter( 'content_save_pre', 'wp_filter_post_kses' ); |
133 | 133 | |
134 | 134 | if ( is_wp_error( $post_id ) ) { |
135 | - /* @var WP_Error $post_id */ |
|
136 | - $error = wogh_append_error( $error, $post_id ); |
|
135 | + /* @var WP_Error $post_id */ |
|
136 | + $error = wogh_append_error( $error, $post_id ); |
|
137 | 137 | |
138 | 138 | // Abort saving if updating the post fails. |
139 | 139 | continue; |
@@ -154,7 +154,7 @@ discard block |
||
154 | 154 | |
155 | 155 | $meta = apply_filters( 'wogh_pre_import_meta', $post->get_meta(), $post ); |
156 | 156 | |
157 | - update_post_meta( $post_id, '_wogh_sha', $meta['_wogh_sha'] ); |
|
157 | + update_post_meta( $post_id, '_wogh_sha', $meta['_wogh_sha'] ); |
|
158 | 158 | |
159 | 159 | // unset( $meta['tags'] ); |
160 | 160 | // unset( $meta['categories'] ); |
@@ -185,65 +185,65 @@ discard block |
||
185 | 185 | |
186 | 186 | // update tags |
187 | 187 | if ( ! empty( $meta['tags'] ) ) { |
188 | - $args['tags_input'] = $meta['tags']; |
|
188 | + $args['tags_input'] = $meta['tags']; |
|
189 | 189 | } |
190 | 190 | |
191 | 191 | // update categories |
192 | 192 | if ( ! empty( $meta['categories'] ) ) { |
193 | - $categories = $meta['categories']; |
|
194 | - if ( ! is_array( $categories ) ) { |
|
195 | - $categories = array( $categories ); |
|
196 | - } |
|
197 | - $terms = get_terms( array( |
|
198 | - 'taxonomy' => 'category', |
|
199 | - 'fields' => 'id=>name', |
|
200 | - 'hide_empty' => 0, |
|
201 | - 'name' => $categories |
|
202 | - ) |
|
203 | - ); |
|
204 | - $map = array(); |
|
205 | - foreach ( $categories as $name ) { |
|
206 | - $map[$name] = 1; |
|
207 | - } |
|
208 | - |
|
209 | - $ids = array(); |
|
210 | - if ( ! empty( $terms ) ) { |
|
211 | - foreach ( $terms as $id => $name ) { |
|
212 | - $ids[] = $id; |
|
213 | - unset( $map[$name] ); |
|
214 | - } |
|
215 | - } |
|
216 | - |
|
217 | - // create new terms |
|
218 | - if ( ! empty( $map ) ) { |
|
219 | - foreach ( $map as $name => $value ) { |
|
220 | - $term = wp_insert_term( $name, 'category', array( 'parent' => 0 ) ); |
|
221 | - // array('term_id' => $term_id, 'term_taxonomy_id' => $tt_id); |
|
222 | - $ids[] = $term['term_id']; |
|
223 | - } |
|
224 | - } |
|
225 | - |
|
226 | - $args['post_category'] = $ids; |
|
193 | + $categories = $meta['categories']; |
|
194 | + if ( ! is_array( $categories ) ) { |
|
195 | + $categories = array( $categories ); |
|
196 | + } |
|
197 | + $terms = get_terms( array( |
|
198 | + 'taxonomy' => 'category', |
|
199 | + 'fields' => 'id=>name', |
|
200 | + 'hide_empty' => 0, |
|
201 | + 'name' => $categories |
|
202 | + ) |
|
203 | + ); |
|
204 | + $map = array(); |
|
205 | + foreach ( $categories as $name ) { |
|
206 | + $map[$name] = 1; |
|
207 | + } |
|
208 | + |
|
209 | + $ids = array(); |
|
210 | + if ( ! empty( $terms ) ) { |
|
211 | + foreach ( $terms as $id => $name ) { |
|
212 | + $ids[] = $id; |
|
213 | + unset( $map[$name] ); |
|
214 | + } |
|
215 | + } |
|
216 | + |
|
217 | + // create new terms |
|
218 | + if ( ! empty( $map ) ) { |
|
219 | + foreach ( $map as $name => $value ) { |
|
220 | + $term = wp_insert_term( $name, 'category', array( 'parent' => 0 ) ); |
|
221 | + // array('term_id' => $term_id, 'term_taxonomy_id' => $tt_id); |
|
222 | + $ids[] = $term['term_id']; |
|
223 | + } |
|
224 | + } |
|
225 | + |
|
226 | + $args['post_category'] = $ids; |
|
227 | 227 | } |
228 | 228 | |
229 | 229 | return $args; |
230 | 230 | } |
231 | 231 | |
232 | - private function get_post_id_by_filename( $filename, $pattern ) { |
|
233 | - preg_match( $pattern , $filename, $matches ); |
|
234 | - $title = $matches[4]; |
|
232 | + private function get_post_id_by_filename( $filename, $pattern ) { |
|
233 | + preg_match( $pattern , $filename, $matches ); |
|
234 | + $title = $matches[4]; |
|
235 | 235 | |
236 | - $query = new WP_Query( array( |
|
237 | - 'name' => $title, |
|
238 | - 'posts_per_page' => 1, |
|
239 | - 'post_type' => $this->get_whitelisted_post_types(), |
|
240 | - 'fields' => 'ids', |
|
241 | - ) ); |
|
236 | + $query = new WP_Query( array( |
|
237 | + 'name' => $title, |
|
238 | + 'posts_per_page' => 1, |
|
239 | + 'post_type' => $this->get_whitelisted_post_types(), |
|
240 | + 'fields' => 'ids', |
|
241 | + ) ); |
|
242 | 242 | |
243 | - $post_id = $query->get_posts(); |
|
244 | - $post_id = array_pop( $post_id ); |
|
245 | - return $post_id; |
|
246 | - } |
|
243 | + $post_id = $query->get_posts(); |
|
244 | + $post_id = array_pop( $post_id ); |
|
245 | + return $post_id; |
|
246 | + } |
|
247 | 247 | |
248 | 248 | /** |
249 | 249 | * Deletes a post from the database based on its GitHub path. |
@@ -270,11 +270,11 @@ discard block |
||
270 | 270 | $directory = $parts ? array_shift( $parts ) : ''; |
271 | 271 | |
272 | 272 | if ( false !== strpos( $directory, 'post' ) ) { |
273 | - $post_id = get_post_id_by_filename( $filename, '/([0-9]{4})-([0-9]{2})-([0-9]{2})-(.*)\.md/' ); |
|
273 | + $post_id = get_post_id_by_filename( $filename, '/([0-9]{4})-([0-9]{2})-([0-9]{2})-(.*)\.md/' ); |
|
274 | 274 | } |
275 | 275 | |
276 | 276 | if ( ! $post_id ) { |
277 | - $post_id = get_post_id_by_filename( $filename, '/(.*)\.md/' ); |
|
277 | + $post_id = get_post_id_by_filename( $filename, '/(.*)\.md/' ); |
|
278 | 278 | } |
279 | 279 | } |
280 | 280 | |
@@ -419,12 +419,12 @@ discard block |
||
419 | 419 | if ( ! empty( $display_name ) ) { |
420 | 420 | $search_string = esc_attr( $display_name ); |
421 | 421 | $query = new WP_User_Query( array( |
422 | - 'search' => "{$search_string}", |
|
423 | - 'search_columns' => array( |
|
424 | - 'display_name', |
|
425 | - 'user_nicename', |
|
426 | - 'user_login', |
|
427 | - ) |
|
422 | + 'search' => "{$search_string}", |
|
423 | + 'search_columns' => array( |
|
424 | + 'display_name', |
|
425 | + 'user_nicename', |
|
426 | + 'user_login', |
|
427 | + ) |
|
428 | 428 | ) ); |
429 | 429 | $users = $query->get_results(); |
430 | 430 | $user = empty($users) ? false : $users[0]; |
@@ -9,452 +9,452 @@ |
||
9 | 9 | */ |
10 | 10 | class Writing_On_GitHub_Post { |
11 | 11 | |
12 | - /** |
|
13 | - * Api object |
|
14 | - * |
|
15 | - * @var Writing_On_GitHub_Api |
|
16 | - */ |
|
17 | - public $api; |
|
18 | - |
|
19 | - /** |
|
20 | - * Post ID |
|
21 | - * @var integer |
|
22 | - */ |
|
23 | - public $id = 0; |
|
24 | - |
|
25 | - /** |
|
26 | - * Post object |
|
27 | - * @var WP_Post |
|
28 | - */ |
|
29 | - public $post; |
|
30 | - |
|
31 | - /** |
|
32 | - * Post args. |
|
33 | - * |
|
34 | - * @var array |
|
35 | - */ |
|
36 | - protected $args; |
|
37 | - |
|
38 | - /** |
|
39 | - * Post meta. |
|
40 | - * |
|
41 | - * @var array |
|
42 | - */ |
|
43 | - protected $meta; |
|
44 | - |
|
45 | - /** |
|
46 | - * Whether the post has been saved. |
|
47 | - * |
|
48 | - * @var bool |
|
49 | - */ |
|
50 | - protected $new = true; |
|
51 | - |
|
52 | - |
|
53 | - protected $old_github_path; |
|
54 | - |
|
55 | - /** |
|
56 | - * Instantiates a new Post object |
|
57 | - * |
|
58 | - * @param int|array $id_or_args Either a post ID or an array of arguments. |
|
59 | - * @param Writing_On_GitHub_Api $api API object. |
|
60 | - * |
|
61 | - * @todo remove database operations from this method |
|
62 | - */ |
|
63 | - public function __construct( $id_or_args, Writing_On_GitHub_Api $api ) { |
|
64 | - $this->api = $api; |
|
65 | - |
|
66 | - if ( is_numeric( $id_or_args ) ) { |
|
67 | - $this->id = (int) $id_or_args; |
|
68 | - $this->post = get_post( $this->id ); |
|
69 | - $this->new = false; |
|
70 | - } |
|
71 | - |
|
72 | - if ( is_array( $id_or_args ) ) { |
|
73 | - $this->args = $id_or_args; |
|
74 | - |
|
75 | - if ( isset( $this->args['ID'] ) ) { |
|
76 | - $this->post = get_post( $this->args['ID'] ); |
|
77 | - |
|
78 | - if ( $this->post ) { |
|
79 | - $this->id = $this->post->ID; |
|
80 | - $this->new = false; |
|
81 | - } else { |
|
82 | - unset( $this->args['ID'] ); |
|
83 | - } |
|
84 | - } |
|
85 | - } |
|
86 | - } |
|
87 | - |
|
88 | - public function id() { |
|
89 | - return $this->id; |
|
90 | - } |
|
91 | - |
|
92 | - /** |
|
93 | - * Returns the post type |
|
94 | - */ |
|
95 | - public function type() { |
|
96 | - return $this->post->post_type; |
|
97 | - } |
|
98 | - |
|
99 | - /** |
|
100 | - * Returns the post type |
|
101 | - */ |
|
102 | - public function status() { |
|
103 | - return $this->post->post_status; |
|
104 | - } |
|
105 | - |
|
106 | - /** |
|
107 | - * Returns the post name |
|
108 | - */ |
|
109 | - public function name() { |
|
110 | - return $this->post->post_name; |
|
111 | - } |
|
112 | - |
|
113 | - /** |
|
114 | - * Returns true if the post has a password |
|
115 | - * @return bool |
|
116 | - */ |
|
117 | - public function has_password() { |
|
118 | - return ! empty( $this->post->post_password ); |
|
119 | - } |
|
120 | - |
|
121 | - /** |
|
122 | - * Combines the 2 content parts for GitHub |
|
123 | - */ |
|
124 | - public function github_content() { |
|
125 | - $content = $this->front_matter() . $this->post_content(); |
|
126 | - $ending = apply_filters( 'wogh_line_endings', "\n" ); |
|
127 | - |
|
128 | - return preg_replace( '~(*BSR_ANYCRLF)\R~', $ending, $content ); |
|
129 | - } |
|
130 | - |
|
131 | - /** |
|
132 | - * The post's YAML frontmatter |
|
133 | - * |
|
134 | - * Returns String the YAML frontmatter, ready to be written to the file |
|
135 | - */ |
|
136 | - public function front_matter() { |
|
137 | - return "---\n" . spyc_dump( $this->meta() ) . "---\n"; |
|
138 | - } |
|
139 | - |
|
140 | - /** |
|
141 | - * Returns the post_content |
|
142 | - * |
|
143 | - * Markdownify's the content if applicable |
|
144 | - */ |
|
145 | - public function post_content() { |
|
146 | - $content = $this->post->post_content; |
|
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 ) ) { |
|
152 | - $content = $this->post->post_content_filtered; |
|
153 | - } |
|
154 | - } |
|
155 | - |
|
156 | - return apply_filters( 'wogh_content_export', $content, $this ); |
|
157 | - } |
|
158 | - |
|
159 | - public function old_github_path() { |
|
160 | - return $this->old_github_path; |
|
161 | - } |
|
162 | - |
|
163 | - public function set_old_github_path( $path ) { |
|
164 | - $this->old_github_path = $path; |
|
165 | - update_post_meta( $this->id, '_wogh_github_path', $path ); |
|
166 | - } |
|
167 | - |
|
168 | - |
|
169 | - /** |
|
170 | - * Retrieves or calculates the proper GitHub path for a given post |
|
171 | - * |
|
172 | - * Returns (string) the path relative to repo root |
|
173 | - */ |
|
174 | - public function github_path() { |
|
175 | - $path = $this->github_directory() . $this->github_filename(); |
|
176 | - |
|
177 | - return $path; |
|
178 | - } |
|
179 | - |
|
180 | - /** |
|
181 | - * Get GitHub directory based on post |
|
182 | - * |
|
183 | - * @return string |
|
184 | - */ |
|
185 | - public function github_directory() { |
|
186 | - if ( 'publish' !== $this->status() ) { |
|
187 | - return apply_filters( 'wogh_directory_unpublished', '_drafts/', $this ); |
|
188 | - } |
|
189 | - |
|
190 | - $name = ''; |
|
191 | - |
|
192 | - switch ( $this->type() ) { |
|
193 | - case 'post': |
|
194 | - $name = 'posts'; |
|
195 | - break; |
|
196 | - case 'page': |
|
197 | - $name = 'pages'; |
|
198 | - break; |
|
199 | - default: |
|
200 | - $obj = get_post_type_object( $this->type() ); |
|
201 | - |
|
202 | - if ( $obj ) { |
|
203 | - $name = strtolower( $obj->labels->name ); |
|
204 | - } |
|
205 | - |
|
206 | - if ( ! $name ) { |
|
207 | - $name = ''; |
|
208 | - } |
|
209 | - } |
|
210 | - |
|
211 | - if ( $name ) { |
|
212 | - $name = '_' . $name . '/'; |
|
213 | - } |
|
214 | - |
|
215 | - return apply_filters( 'wogh_directory_published', $name, $this ); |
|
216 | - } |
|
217 | - |
|
218 | - /** |
|
219 | - * Build GitHub filename based on post |
|
220 | - */ |
|
221 | - public function github_filename() { |
|
222 | - if ( 'post' === $this->type() ) { |
|
223 | - $filename = get_the_time( 'Y-m-d-', $this->id ) . $this->get_name() . '.md'; |
|
224 | - } else { |
|
225 | - $filename = $this->get_name() . '.md'; |
|
226 | - } |
|
227 | - |
|
228 | - return apply_filters( 'wogh_filename', $filename, $this ); |
|
229 | - } |
|
230 | - |
|
231 | - /** |
|
232 | - * Returns a post slug we can use in the GitHub filename |
|
233 | - * |
|
234 | - * @return string |
|
235 | - */ |
|
236 | - protected function get_name() { |
|
237 | - if ( '' !== $this->name() ) { |
|
238 | - return $this->name(); |
|
239 | - } |
|
240 | - |
|
241 | - return sanitize_title( get_the_title( $this->post ) ); |
|
242 | - } |
|
243 | - |
|
244 | - /** |
|
245 | - * is put on github |
|
246 | - * @return boolean |
|
247 | - */ |
|
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 ) { |
|
252 | - return true; |
|
253 | - } |
|
254 | - return false; |
|
255 | - } |
|
256 | - |
|
257 | - /** |
|
258 | - * Returns the URL for the post on GitHub. |
|
259 | - * |
|
260 | - * @return string |
|
261 | - */ |
|
262 | - public function github_view_url() { |
|
263 | - $github_path = get_post_meta( $this->id, '_wogh_github_path', true ); |
|
264 | - $repository = $this->api->fetch()->repository(); |
|
265 | - $branch = $this->api->fetch()->branch(); |
|
266 | - |
|
267 | - return "https://github.com/$repository/blob/$branch/$github_path"; |
|
268 | - } |
|
269 | - |
|
270 | - /** |
|
271 | - * Returns the URL for the post on GitHub. |
|
272 | - * |
|
273 | - * @return string |
|
274 | - */ |
|
275 | - public function github_edit_url() { |
|
276 | - $github_path = get_post_meta( $this->id, '_wogh_github_path', true ); |
|
277 | - $repository = $this->api->fetch()->repository(); |
|
278 | - $branch = $this->api->fetch()->branch(); |
|
279 | - |
|
280 | - return "https://github.com/$repository/edit/$branch/$github_path"; |
|
281 | - } |
|
282 | - |
|
283 | - /** |
|
284 | - * Retrieve post type directory from blob path. |
|
285 | - * |
|
286 | - * @param string $path Path string. |
|
287 | - * |
|
288 | - * @return string |
|
289 | - */ |
|
290 | - public function get_directory_from_path( $path ) { |
|
291 | - $directory = explode( '/', $path ); |
|
292 | - $directory = count( $directory ) > 0 ? $directory[0] : ''; |
|
293 | - |
|
294 | - return $directory; |
|
295 | - } |
|
296 | - |
|
297 | - /** |
|
298 | - * Determines the last author to modify the post |
|
299 | - * |
|
300 | - * Returns Array an array containing the author name and email |
|
301 | - */ |
|
302 | - public function last_modified_author() { |
|
303 | - if ( $last_id = get_post_meta( $this->id, '_edit_last', true ) ) { |
|
304 | - $user = get_userdata( $last_id ); |
|
305 | - |
|
306 | - if ( $user ) { |
|
307 | - return array( 'name' => $user->display_name, 'email' => $user->user_email ); |
|
308 | - } |
|
309 | - } |
|
310 | - |
|
311 | - return array(); |
|
312 | - } |
|
313 | - |
|
314 | - /** |
|
315 | - * The post's sha |
|
316 | - * Cached as post meta, or will make a live call if need be |
|
317 | - * |
|
318 | - * Returns String the sha1 hash |
|
319 | - */ |
|
320 | - public function sha() { |
|
321 | - $sha = get_post_meta( $this->id, '_wogh_sha', true ); |
|
322 | - |
|
323 | - // If we've done a full export and we have no sha |
|
324 | - // then we should try a live check to see if it exists. |
|
325 | - // if ( ! $sha && 'yes' === get_option( '_wogh_fully_exported' ) ) { |
|
326 | - |
|
327 | - // // @todo could we eliminate this by calling down the full tree and searching it |
|
328 | - // $data = $this->api->fetch()->remote_contents( $this ); |
|
329 | - |
|
330 | - // if ( ! is_wp_error( $data ) ) { |
|
331 | - // update_post_meta( $this->id, '_wogh_sha', $data->sha ); |
|
332 | - // $sha = $data->sha; |
|
333 | - // } |
|
334 | - // } |
|
335 | - |
|
336 | - // if the sha still doesn't exist, then it's empty |
|
337 | - if ( ! $sha || is_wp_error( $sha ) ) { |
|
338 | - $sha = ''; |
|
339 | - } |
|
340 | - |
|
341 | - return $sha; |
|
342 | - } |
|
343 | - |
|
344 | - /** |
|
345 | - * Save the sha to post |
|
346 | - * |
|
347 | - * @param string $sha |
|
348 | - */ |
|
349 | - public function set_sha( $sha ) { |
|
350 | - update_post_meta( $this->id, '_wogh_sha', $sha ); |
|
351 | - } |
|
352 | - |
|
353 | - /** |
|
354 | - * The post's metadata |
|
355 | - * |
|
356 | - * Returns Array the post's metadata |
|
357 | - */ |
|
358 | - public function meta() { |
|
359 | - $meta = array( |
|
360 | - 'ID' => $this->id, |
|
361 | - 'post_title' => get_the_title( $this->post ), |
|
362 | - 'post_name' => $this->post->post_name, |
|
363 | - 'author' => ( $author = get_userdata( $this->post->post_author ) ) ? $author->display_name : '', |
|
364 | - 'post_date' => $this->post->post_date, |
|
365 | - 'post_excerpt' => $this->post->post_excerpt, |
|
366 | - 'layout' => get_post_type( $this->post ), |
|
367 | - 'link' => get_permalink( $this->post ), |
|
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' ) ) |
|
371 | - ); |
|
372 | - if ( empty($this->post->post_name) ) { |
|
373 | - unset($meta['post_name']); |
|
374 | - } |
|
375 | - if ( empty($this->post->post_excerpt) ) { |
|
376 | - unset($meta['post_excerpt']); |
|
377 | - } |
|
378 | - if ( 'yes' == get_option('wogh_ignore_author') ) { |
|
379 | - unset($meta['author']); |
|
380 | - } |
|
381 | - |
|
382 | - //convert traditional post_meta values, hide hidden values, skip already populated values |
|
383 | - // foreach ( get_post_custom( $this->id ) as $key => $value ) { |
|
384 | - |
|
385 | - // if ( '_' === substr( $key, 0, 1 ) || isset( $meta[ $key ] ) ) { |
|
386 | - // continue; |
|
387 | - // } |
|
388 | - |
|
389 | - // $meta[ $key ] = $value; |
|
390 | - |
|
391 | - // } |
|
392 | - |
|
393 | - return apply_filters( 'wogh_post_meta', $meta, $this ); |
|
394 | - } |
|
395 | - |
|
396 | - /** |
|
397 | - * Returns whether the Post has been saved in the DB yet. |
|
398 | - * |
|
399 | - * @return bool |
|
400 | - */ |
|
401 | - public function is_new() { |
|
402 | - return $this->new; |
|
403 | - } |
|
404 | - |
|
405 | - /** |
|
406 | - * Sets the Post's meta. |
|
407 | - * |
|
408 | - * @param array $meta |
|
409 | - */ |
|
410 | - public function set_meta( $meta ) { |
|
411 | - $this->meta = $meta; |
|
412 | - } |
|
413 | - |
|
414 | - /** |
|
415 | - * Returns the Post's arguments. |
|
416 | - * |
|
417 | - * @return array |
|
418 | - */ |
|
419 | - public function get_args() { |
|
420 | - return $this->args; |
|
421 | - } |
|
422 | - |
|
423 | - /** |
|
424 | - * Returns the Post's meta. |
|
425 | - * |
|
426 | - * @return array |
|
427 | - */ |
|
428 | - public function get_meta() { |
|
429 | - return $this->meta; |
|
430 | - } |
|
431 | - |
|
432 | - /** |
|
433 | - * Sets the Post's WP_Post object. |
|
434 | - * |
|
435 | - * @param WP_Post $post |
|
436 | - * |
|
437 | - * @return $this |
|
438 | - */ |
|
439 | - public function set_post( WP_Post $post ) { |
|
440 | - $this->post = $post; |
|
441 | - $this->id = $post->ID; |
|
442 | - |
|
443 | - return $this; |
|
444 | - } |
|
445 | - |
|
446 | - /** |
|
447 | - * Transforms the Post into a Blob. |
|
448 | - * |
|
449 | - * @return Writing_On_GitHub_Blob |
|
450 | - */ |
|
451 | - public function to_blob() { |
|
452 | - $data = new stdClass; |
|
453 | - |
|
454 | - $data->path = $this->github_path(); |
|
455 | - $data->content = $this->github_content(); |
|
456 | - $data->sha = $this->sha(); |
|
457 | - |
|
458 | - return new Writing_On_GitHub_Blob( $data ); |
|
459 | - } |
|
12 | + /** |
|
13 | + * Api object |
|
14 | + * |
|
15 | + * @var Writing_On_GitHub_Api |
|
16 | + */ |
|
17 | + public $api; |
|
18 | + |
|
19 | + /** |
|
20 | + * Post ID |
|
21 | + * @var integer |
|
22 | + */ |
|
23 | + public $id = 0; |
|
24 | + |
|
25 | + /** |
|
26 | + * Post object |
|
27 | + * @var WP_Post |
|
28 | + */ |
|
29 | + public $post; |
|
30 | + |
|
31 | + /** |
|
32 | + * Post args. |
|
33 | + * |
|
34 | + * @var array |
|
35 | + */ |
|
36 | + protected $args; |
|
37 | + |
|
38 | + /** |
|
39 | + * Post meta. |
|
40 | + * |
|
41 | + * @var array |
|
42 | + */ |
|
43 | + protected $meta; |
|
44 | + |
|
45 | + /** |
|
46 | + * Whether the post has been saved. |
|
47 | + * |
|
48 | + * @var bool |
|
49 | + */ |
|
50 | + protected $new = true; |
|
51 | + |
|
52 | + |
|
53 | + protected $old_github_path; |
|
54 | + |
|
55 | + /** |
|
56 | + * Instantiates a new Post object |
|
57 | + * |
|
58 | + * @param int|array $id_or_args Either a post ID or an array of arguments. |
|
59 | + * @param Writing_On_GitHub_Api $api API object. |
|
60 | + * |
|
61 | + * @todo remove database operations from this method |
|
62 | + */ |
|
63 | + public function __construct( $id_or_args, Writing_On_GitHub_Api $api ) { |
|
64 | + $this->api = $api; |
|
65 | + |
|
66 | + if ( is_numeric( $id_or_args ) ) { |
|
67 | + $this->id = (int) $id_or_args; |
|
68 | + $this->post = get_post( $this->id ); |
|
69 | + $this->new = false; |
|
70 | + } |
|
71 | + |
|
72 | + if ( is_array( $id_or_args ) ) { |
|
73 | + $this->args = $id_or_args; |
|
74 | + |
|
75 | + if ( isset( $this->args['ID'] ) ) { |
|
76 | + $this->post = get_post( $this->args['ID'] ); |
|
77 | + |
|
78 | + if ( $this->post ) { |
|
79 | + $this->id = $this->post->ID; |
|
80 | + $this->new = false; |
|
81 | + } else { |
|
82 | + unset( $this->args['ID'] ); |
|
83 | + } |
|
84 | + } |
|
85 | + } |
|
86 | + } |
|
87 | + |
|
88 | + public function id() { |
|
89 | + return $this->id; |
|
90 | + } |
|
91 | + |
|
92 | + /** |
|
93 | + * Returns the post type |
|
94 | + */ |
|
95 | + public function type() { |
|
96 | + return $this->post->post_type; |
|
97 | + } |
|
98 | + |
|
99 | + /** |
|
100 | + * Returns the post type |
|
101 | + */ |
|
102 | + public function status() { |
|
103 | + return $this->post->post_status; |
|
104 | + } |
|
105 | + |
|
106 | + /** |
|
107 | + * Returns the post name |
|
108 | + */ |
|
109 | + public function name() { |
|
110 | + return $this->post->post_name; |
|
111 | + } |
|
112 | + |
|
113 | + /** |
|
114 | + * Returns true if the post has a password |
|
115 | + * @return bool |
|
116 | + */ |
|
117 | + public function has_password() { |
|
118 | + return ! empty( $this->post->post_password ); |
|
119 | + } |
|
120 | + |
|
121 | + /** |
|
122 | + * Combines the 2 content parts for GitHub |
|
123 | + */ |
|
124 | + public function github_content() { |
|
125 | + $content = $this->front_matter() . $this->post_content(); |
|
126 | + $ending = apply_filters( 'wogh_line_endings', "\n" ); |
|
127 | + |
|
128 | + return preg_replace( '~(*BSR_ANYCRLF)\R~', $ending, $content ); |
|
129 | + } |
|
130 | + |
|
131 | + /** |
|
132 | + * The post's YAML frontmatter |
|
133 | + * |
|
134 | + * Returns String the YAML frontmatter, ready to be written to the file |
|
135 | + */ |
|
136 | + public function front_matter() { |
|
137 | + return "---\n" . spyc_dump( $this->meta() ) . "---\n"; |
|
138 | + } |
|
139 | + |
|
140 | + /** |
|
141 | + * Returns the post_content |
|
142 | + * |
|
143 | + * Markdownify's the content if applicable |
|
144 | + */ |
|
145 | + public function post_content() { |
|
146 | + $content = $this->post->post_content; |
|
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 ) ) { |
|
152 | + $content = $this->post->post_content_filtered; |
|
153 | + } |
|
154 | + } |
|
155 | + |
|
156 | + return apply_filters( 'wogh_content_export', $content, $this ); |
|
157 | + } |
|
158 | + |
|
159 | + public function old_github_path() { |
|
160 | + return $this->old_github_path; |
|
161 | + } |
|
162 | + |
|
163 | + public function set_old_github_path( $path ) { |
|
164 | + $this->old_github_path = $path; |
|
165 | + update_post_meta( $this->id, '_wogh_github_path', $path ); |
|
166 | + } |
|
167 | + |
|
168 | + |
|
169 | + /** |
|
170 | + * Retrieves or calculates the proper GitHub path for a given post |
|
171 | + * |
|
172 | + * Returns (string) the path relative to repo root |
|
173 | + */ |
|
174 | + public function github_path() { |
|
175 | + $path = $this->github_directory() . $this->github_filename(); |
|
176 | + |
|
177 | + return $path; |
|
178 | + } |
|
179 | + |
|
180 | + /** |
|
181 | + * Get GitHub directory based on post |
|
182 | + * |
|
183 | + * @return string |
|
184 | + */ |
|
185 | + public function github_directory() { |
|
186 | + if ( 'publish' !== $this->status() ) { |
|
187 | + return apply_filters( 'wogh_directory_unpublished', '_drafts/', $this ); |
|
188 | + } |
|
189 | + |
|
190 | + $name = ''; |
|
191 | + |
|
192 | + switch ( $this->type() ) { |
|
193 | + case 'post': |
|
194 | + $name = 'posts'; |
|
195 | + break; |
|
196 | + case 'page': |
|
197 | + $name = 'pages'; |
|
198 | + break; |
|
199 | + default: |
|
200 | + $obj = get_post_type_object( $this->type() ); |
|
201 | + |
|
202 | + if ( $obj ) { |
|
203 | + $name = strtolower( $obj->labels->name ); |
|
204 | + } |
|
205 | + |
|
206 | + if ( ! $name ) { |
|
207 | + $name = ''; |
|
208 | + } |
|
209 | + } |
|
210 | + |
|
211 | + if ( $name ) { |
|
212 | + $name = '_' . $name . '/'; |
|
213 | + } |
|
214 | + |
|
215 | + return apply_filters( 'wogh_directory_published', $name, $this ); |
|
216 | + } |
|
217 | + |
|
218 | + /** |
|
219 | + * Build GitHub filename based on post |
|
220 | + */ |
|
221 | + public function github_filename() { |
|
222 | + if ( 'post' === $this->type() ) { |
|
223 | + $filename = get_the_time( 'Y-m-d-', $this->id ) . $this->get_name() . '.md'; |
|
224 | + } else { |
|
225 | + $filename = $this->get_name() . '.md'; |
|
226 | + } |
|
227 | + |
|
228 | + return apply_filters( 'wogh_filename', $filename, $this ); |
|
229 | + } |
|
230 | + |
|
231 | + /** |
|
232 | + * Returns a post slug we can use in the GitHub filename |
|
233 | + * |
|
234 | + * @return string |
|
235 | + */ |
|
236 | + protected function get_name() { |
|
237 | + if ( '' !== $this->name() ) { |
|
238 | + return $this->name(); |
|
239 | + } |
|
240 | + |
|
241 | + return sanitize_title( get_the_title( $this->post ) ); |
|
242 | + } |
|
243 | + |
|
244 | + /** |
|
245 | + * is put on github |
|
246 | + * @return boolean |
|
247 | + */ |
|
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 ) { |
|
252 | + return true; |
|
253 | + } |
|
254 | + return false; |
|
255 | + } |
|
256 | + |
|
257 | + /** |
|
258 | + * Returns the URL for the post on GitHub. |
|
259 | + * |
|
260 | + * @return string |
|
261 | + */ |
|
262 | + public function github_view_url() { |
|
263 | + $github_path = get_post_meta( $this->id, '_wogh_github_path', true ); |
|
264 | + $repository = $this->api->fetch()->repository(); |
|
265 | + $branch = $this->api->fetch()->branch(); |
|
266 | + |
|
267 | + return "https://github.com/$repository/blob/$branch/$github_path"; |
|
268 | + } |
|
269 | + |
|
270 | + /** |
|
271 | + * Returns the URL for the post on GitHub. |
|
272 | + * |
|
273 | + * @return string |
|
274 | + */ |
|
275 | + public function github_edit_url() { |
|
276 | + $github_path = get_post_meta( $this->id, '_wogh_github_path', true ); |
|
277 | + $repository = $this->api->fetch()->repository(); |
|
278 | + $branch = $this->api->fetch()->branch(); |
|
279 | + |
|
280 | + return "https://github.com/$repository/edit/$branch/$github_path"; |
|
281 | + } |
|
282 | + |
|
283 | + /** |
|
284 | + * Retrieve post type directory from blob path. |
|
285 | + * |
|
286 | + * @param string $path Path string. |
|
287 | + * |
|
288 | + * @return string |
|
289 | + */ |
|
290 | + public function get_directory_from_path( $path ) { |
|
291 | + $directory = explode( '/', $path ); |
|
292 | + $directory = count( $directory ) > 0 ? $directory[0] : ''; |
|
293 | + |
|
294 | + return $directory; |
|
295 | + } |
|
296 | + |
|
297 | + /** |
|
298 | + * Determines the last author to modify the post |
|
299 | + * |
|
300 | + * Returns Array an array containing the author name and email |
|
301 | + */ |
|
302 | + public function last_modified_author() { |
|
303 | + if ( $last_id = get_post_meta( $this->id, '_edit_last', true ) ) { |
|
304 | + $user = get_userdata( $last_id ); |
|
305 | + |
|
306 | + if ( $user ) { |
|
307 | + return array( 'name' => $user->display_name, 'email' => $user->user_email ); |
|
308 | + } |
|
309 | + } |
|
310 | + |
|
311 | + return array(); |
|
312 | + } |
|
313 | + |
|
314 | + /** |
|
315 | + * The post's sha |
|
316 | + * Cached as post meta, or will make a live call if need be |
|
317 | + * |
|
318 | + * Returns String the sha1 hash |
|
319 | + */ |
|
320 | + public function sha() { |
|
321 | + $sha = get_post_meta( $this->id, '_wogh_sha', true ); |
|
322 | + |
|
323 | + // If we've done a full export and we have no sha |
|
324 | + // then we should try a live check to see if it exists. |
|
325 | + // if ( ! $sha && 'yes' === get_option( '_wogh_fully_exported' ) ) { |
|
326 | + |
|
327 | + // // @todo could we eliminate this by calling down the full tree and searching it |
|
328 | + // $data = $this->api->fetch()->remote_contents( $this ); |
|
329 | + |
|
330 | + // if ( ! is_wp_error( $data ) ) { |
|
331 | + // update_post_meta( $this->id, '_wogh_sha', $data->sha ); |
|
332 | + // $sha = $data->sha; |
|
333 | + // } |
|
334 | + // } |
|
335 | + |
|
336 | + // if the sha still doesn't exist, then it's empty |
|
337 | + if ( ! $sha || is_wp_error( $sha ) ) { |
|
338 | + $sha = ''; |
|
339 | + } |
|
340 | + |
|
341 | + return $sha; |
|
342 | + } |
|
343 | + |
|
344 | + /** |
|
345 | + * Save the sha to post |
|
346 | + * |
|
347 | + * @param string $sha |
|
348 | + */ |
|
349 | + public function set_sha( $sha ) { |
|
350 | + update_post_meta( $this->id, '_wogh_sha', $sha ); |
|
351 | + } |
|
352 | + |
|
353 | + /** |
|
354 | + * The post's metadata |
|
355 | + * |
|
356 | + * Returns Array the post's metadata |
|
357 | + */ |
|
358 | + public function meta() { |
|
359 | + $meta = array( |
|
360 | + 'ID' => $this->id, |
|
361 | + 'post_title' => get_the_title( $this->post ), |
|
362 | + 'post_name' => $this->post->post_name, |
|
363 | + 'author' => ( $author = get_userdata( $this->post->post_author ) ) ? $author->display_name : '', |
|
364 | + 'post_date' => $this->post->post_date, |
|
365 | + 'post_excerpt' => $this->post->post_excerpt, |
|
366 | + 'layout' => get_post_type( $this->post ), |
|
367 | + 'link' => get_permalink( $this->post ), |
|
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' ) ) |
|
371 | + ); |
|
372 | + if ( empty($this->post->post_name) ) { |
|
373 | + unset($meta['post_name']); |
|
374 | + } |
|
375 | + if ( empty($this->post->post_excerpt) ) { |
|
376 | + unset($meta['post_excerpt']); |
|
377 | + } |
|
378 | + if ( 'yes' == get_option('wogh_ignore_author') ) { |
|
379 | + unset($meta['author']); |
|
380 | + } |
|
381 | + |
|
382 | + //convert traditional post_meta values, hide hidden values, skip already populated values |
|
383 | + // foreach ( get_post_custom( $this->id ) as $key => $value ) { |
|
384 | + |
|
385 | + // if ( '_' === substr( $key, 0, 1 ) || isset( $meta[ $key ] ) ) { |
|
386 | + // continue; |
|
387 | + // } |
|
388 | + |
|
389 | + // $meta[ $key ] = $value; |
|
390 | + |
|
391 | + // } |
|
392 | + |
|
393 | + return apply_filters( 'wogh_post_meta', $meta, $this ); |
|
394 | + } |
|
395 | + |
|
396 | + /** |
|
397 | + * Returns whether the Post has been saved in the DB yet. |
|
398 | + * |
|
399 | + * @return bool |
|
400 | + */ |
|
401 | + public function is_new() { |
|
402 | + return $this->new; |
|
403 | + } |
|
404 | + |
|
405 | + /** |
|
406 | + * Sets the Post's meta. |
|
407 | + * |
|
408 | + * @param array $meta |
|
409 | + */ |
|
410 | + public function set_meta( $meta ) { |
|
411 | + $this->meta = $meta; |
|
412 | + } |
|
413 | + |
|
414 | + /** |
|
415 | + * Returns the Post's arguments. |
|
416 | + * |
|
417 | + * @return array |
|
418 | + */ |
|
419 | + public function get_args() { |
|
420 | + return $this->args; |
|
421 | + } |
|
422 | + |
|
423 | + /** |
|
424 | + * Returns the Post's meta. |
|
425 | + * |
|
426 | + * @return array |
|
427 | + */ |
|
428 | + public function get_meta() { |
|
429 | + return $this->meta; |
|
430 | + } |
|
431 | + |
|
432 | + /** |
|
433 | + * Sets the Post's WP_Post object. |
|
434 | + * |
|
435 | + * @param WP_Post $post |
|
436 | + * |
|
437 | + * @return $this |
|
438 | + */ |
|
439 | + public function set_post( WP_Post $post ) { |
|
440 | + $this->post = $post; |
|
441 | + $this->id = $post->ID; |
|
442 | + |
|
443 | + return $this; |
|
444 | + } |
|
445 | + |
|
446 | + /** |
|
447 | + * Transforms the Post into a Blob. |
|
448 | + * |
|
449 | + * @return Writing_On_GitHub_Blob |
|
450 | + */ |
|
451 | + public function to_blob() { |
|
452 | + $data = new stdClass; |
|
453 | + |
|
454 | + $data->path = $this->github_path(); |
|
455 | + $data->content = $this->github_content(); |
|
456 | + $data->sha = $this->sha(); |
|
457 | + |
|
458 | + return new Writing_On_GitHub_Blob( $data ); |
|
459 | + } |
|
460 | 460 | } |