@@ -9,247 +9,247 @@ |
||
9 | 9 | */ |
10 | 10 | class Writing_On_GitHub_Blob { |
11 | 11 | |
12 | - /** |
|
13 | - * Complete blob content. |
|
14 | - * |
|
15 | - * @var string |
|
16 | - */ |
|
17 | - protected $content; |
|
18 | - |
|
19 | - /** |
|
20 | - * Blob sha. |
|
21 | - * |
|
22 | - * @var string |
|
23 | - */ |
|
24 | - protected $sha; |
|
25 | - |
|
26 | - /** |
|
27 | - * Blob path. |
|
28 | - * |
|
29 | - * @var string |
|
30 | - */ |
|
31 | - protected $path; |
|
32 | - |
|
33 | - /** |
|
34 | - * Post id. |
|
35 | - * |
|
36 | - * @var int |
|
37 | - */ |
|
38 | - protected $id; |
|
39 | - |
|
40 | - /** |
|
41 | - * Whether the blob has frontmatter. |
|
42 | - * |
|
43 | - * @var boolean |
|
44 | - */ |
|
45 | - protected $frontmatter = false; |
|
46 | - |
|
47 | - /** |
|
48 | - * The front matter of github post |
|
49 | - * @var string |
|
50 | - */ |
|
51 | - protected $front_matter = ''; |
|
52 | - |
|
53 | - /** |
|
54 | - * Content without front matter |
|
55 | - * @var string |
|
56 | - */ |
|
57 | - protected $post_content; |
|
58 | - |
|
59 | - /** |
|
60 | - * Instantiates a new Blob object. |
|
61 | - * |
|
62 | - * @param stdClass $data Raw blob data. |
|
63 | - */ |
|
64 | - public function __construct( stdClass $data ) { |
|
65 | - $this->interpret_data( $data ); |
|
66 | - } |
|
67 | - |
|
68 | - public function id() { |
|
69 | - return $this->id; |
|
70 | - } |
|
71 | - |
|
72 | - public function set_id($id) { |
|
73 | - $this->id = $id; |
|
74 | - } |
|
75 | - |
|
76 | - /** |
|
77 | - * Returns the raw blob content. |
|
78 | - * |
|
79 | - * @return string |
|
80 | - */ |
|
81 | - public function content() { |
|
82 | - return $this->content; |
|
83 | - } |
|
84 | - |
|
85 | - /** |
|
86 | - * Set's the blob's content. |
|
87 | - * |
|
88 | - * @param string $content Raw blob content. |
|
89 | - * @param bool $base64 Whether the content is base64 encoded. |
|
90 | - * |
|
91 | - * @return $this |
|
92 | - */ |
|
93 | - public function set_content( $content, $base64 = false ) { |
|
94 | - if ( $base64 ) { |
|
95 | - $content = base64_decode( $content ); |
|
96 | - } |
|
97 | - |
|
98 | - // remove whitespace from the beginning of content, |
|
99 | - // To prevent blank lines before yml |
|
100 | - $this->content = ltrim( $content ); |
|
101 | - |
|
102 | - $this->frontmatter = '---' === substr( $this->content, 0, 3 ); |
|
103 | - |
|
104 | - return $this; |
|
105 | - } |
|
106 | - /** |
|
107 | - * Returns the blob sha. |
|
108 | - * |
|
109 | - * @return string |
|
110 | - */ |
|
111 | - public function sha() { |
|
112 | - return $this->sha; |
|
113 | - } |
|
114 | - |
|
115 | - /** |
|
116 | - * Return's the blob path. |
|
117 | - * |
|
118 | - * @return string |
|
119 | - */ |
|
120 | - public function path() { |
|
121 | - return $this->path; |
|
122 | - } |
|
123 | - |
|
124 | - /** |
|
125 | - * Whether the blob has frontmatter. |
|
126 | - * |
|
127 | - * @return bool |
|
128 | - */ |
|
129 | - public function has_frontmatter() { |
|
130 | - return $this->frontmatter; |
|
131 | - } |
|
132 | - |
|
133 | - /** |
|
134 | - * The front matter of github post |
|
135 | - * @return string |
|
136 | - */ |
|
137 | - public function front_matter() { |
|
138 | - return $this->front_matter; |
|
139 | - } |
|
140 | - |
|
141 | - /** |
|
142 | - * Content without front matter |
|
143 | - * @return string |
|
144 | - */ |
|
145 | - public function post_content() { |
|
146 | - if ( ! $this->post_content ) { |
|
147 | - $this->content_import(); |
|
148 | - } |
|
149 | - return $this->post_content; |
|
150 | - } |
|
151 | - |
|
152 | - /** |
|
153 | - * Returns the formatted/filtered blob content used for import. |
|
154 | - * |
|
155 | - * @return string |
|
156 | - */ |
|
157 | - public function content_import() { |
|
158 | - $this->post_content = $content = $this->content(); |
|
159 | - |
|
160 | - if ( $this->has_frontmatter() ) { |
|
161 | - // Break out content. |
|
162 | - preg_match( '/(^---(.*?)---$(\r\n|\n|\r)?)?(.*)/ms', $content, $matches ); |
|
163 | - $this->front_matter = $matches[1]; |
|
164 | - $this->post_content = $content = array_pop( $matches ); |
|
165 | - } |
|
166 | - |
|
167 | - if ( function_exists( 'wpmarkdown_markdown_to_html' ) ) { |
|
168 | - $content = wpmarkdown_markdown_to_html( $content ); |
|
169 | - } |
|
170 | - |
|
171 | - /** |
|
172 | - * Filters the content for import. |
|
173 | - */ |
|
174 | - return apply_filters( 'wogh_content_import', trim( $content ) ); |
|
175 | - } |
|
176 | - |
|
177 | - /** |
|
178 | - * Returns the blob meta. |
|
179 | - * |
|
180 | - * @return array |
|
181 | - */ |
|
182 | - public function meta() { |
|
183 | - $meta = array(); |
|
184 | - |
|
185 | - if ( $this->has_frontmatter() ) { |
|
186 | - // Break out meta, if present. |
|
187 | - preg_match( '/(^---(.*?)---$)?(.*)/ms', $this->content(), $matches ); |
|
188 | - array_pop( $matches ); |
|
189 | - |
|
190 | - $meta = spyc_load( $matches[2] ); |
|
191 | - if ( 'yes' == get_option('wogh_ignore_author') ) { |
|
192 | - unset($meta['author']); |
|
193 | - } |
|
194 | - // if ( isset( $meta['link'] ) ) { |
|
195 | - // $meta['link'] = str_replace( home_url(), '', $meta['link'] ); |
|
196 | - // } |
|
197 | - } |
|
198 | - |
|
199 | - return $meta; |
|
200 | - } |
|
201 | - |
|
202 | - /** |
|
203 | - * Formats the blob into an API call body. |
|
204 | - * |
|
205 | - * @return stdClass |
|
206 | - */ |
|
207 | - // public function to_body() { |
|
208 | - // $data = new stdClass; |
|
209 | - |
|
210 | - // $data->mode = '100644'; |
|
211 | - // $data->type = 'blob'; |
|
212 | - |
|
213 | - // $data->path = $this->path(); |
|
214 | - |
|
215 | - // if ( $this->sha() ) { |
|
216 | - // $data->sha = $this->sha(); |
|
217 | - // } else { |
|
218 | - // $data->content = $this->content(); |
|
219 | - // } |
|
220 | - |
|
221 | - // return $data; |
|
222 | - // } |
|
223 | - |
|
224 | - |
|
225 | - /** |
|
226 | - * Formats the blob into an API call body. |
|
227 | - * |
|
228 | - * @return stdClass |
|
229 | - */ |
|
230 | - public function to_body() { |
|
231 | - $data = new stdClass; |
|
232 | - |
|
233 | - // $data->mode = '100644'; |
|
234 | - // $data->type = 'blob'; |
|
235 | - |
|
236 | - $data->path = $this->path(); |
|
237 | - $data->content = base64_encode( $this->content() ); |
|
238 | - $data->sha = $this->sha; |
|
239 | - |
|
240 | - return $data; |
|
241 | - } |
|
242 | - |
|
243 | - /** |
|
244 | - * Interprets the blob's data into properties. |
|
245 | - */ |
|
246 | - protected function interpret_data( $data ) { |
|
247 | - $this->sha = isset( $data->sha ) ? $data->sha : ''; |
|
248 | - $this->path = isset( $data->path ) ? $data->path : ''; |
|
249 | - |
|
250 | - $this->set_content( |
|
251 | - isset( $data->content ) ? $data->content : '', |
|
252 | - isset( $data->encoding ) && 'base64' === $data->encoding ? true : false |
|
253 | - ); |
|
254 | - } |
|
12 | + /** |
|
13 | + * Complete blob content. |
|
14 | + * |
|
15 | + * @var string |
|
16 | + */ |
|
17 | + protected $content; |
|
18 | + |
|
19 | + /** |
|
20 | + * Blob sha. |
|
21 | + * |
|
22 | + * @var string |
|
23 | + */ |
|
24 | + protected $sha; |
|
25 | + |
|
26 | + /** |
|
27 | + * Blob path. |
|
28 | + * |
|
29 | + * @var string |
|
30 | + */ |
|
31 | + protected $path; |
|
32 | + |
|
33 | + /** |
|
34 | + * Post id. |
|
35 | + * |
|
36 | + * @var int |
|
37 | + */ |
|
38 | + protected $id; |
|
39 | + |
|
40 | + /** |
|
41 | + * Whether the blob has frontmatter. |
|
42 | + * |
|
43 | + * @var boolean |
|
44 | + */ |
|
45 | + protected $frontmatter = false; |
|
46 | + |
|
47 | + /** |
|
48 | + * The front matter of github post |
|
49 | + * @var string |
|
50 | + */ |
|
51 | + protected $front_matter = ''; |
|
52 | + |
|
53 | + /** |
|
54 | + * Content without front matter |
|
55 | + * @var string |
|
56 | + */ |
|
57 | + protected $post_content; |
|
58 | + |
|
59 | + /** |
|
60 | + * Instantiates a new Blob object. |
|
61 | + * |
|
62 | + * @param stdClass $data Raw blob data. |
|
63 | + */ |
|
64 | + public function __construct( stdClass $data ) { |
|
65 | + $this->interpret_data( $data ); |
|
66 | + } |
|
67 | + |
|
68 | + public function id() { |
|
69 | + return $this->id; |
|
70 | + } |
|
71 | + |
|
72 | + public function set_id($id) { |
|
73 | + $this->id = $id; |
|
74 | + } |
|
75 | + |
|
76 | + /** |
|
77 | + * Returns the raw blob content. |
|
78 | + * |
|
79 | + * @return string |
|
80 | + */ |
|
81 | + public function content() { |
|
82 | + return $this->content; |
|
83 | + } |
|
84 | + |
|
85 | + /** |
|
86 | + * Set's the blob's content. |
|
87 | + * |
|
88 | + * @param string $content Raw blob content. |
|
89 | + * @param bool $base64 Whether the content is base64 encoded. |
|
90 | + * |
|
91 | + * @return $this |
|
92 | + */ |
|
93 | + public function set_content( $content, $base64 = false ) { |
|
94 | + if ( $base64 ) { |
|
95 | + $content = base64_decode( $content ); |
|
96 | + } |
|
97 | + |
|
98 | + // remove whitespace from the beginning of content, |
|
99 | + // To prevent blank lines before yml |
|
100 | + $this->content = ltrim( $content ); |
|
101 | + |
|
102 | + $this->frontmatter = '---' === substr( $this->content, 0, 3 ); |
|
103 | + |
|
104 | + return $this; |
|
105 | + } |
|
106 | + /** |
|
107 | + * Returns the blob sha. |
|
108 | + * |
|
109 | + * @return string |
|
110 | + */ |
|
111 | + public function sha() { |
|
112 | + return $this->sha; |
|
113 | + } |
|
114 | + |
|
115 | + /** |
|
116 | + * Return's the blob path. |
|
117 | + * |
|
118 | + * @return string |
|
119 | + */ |
|
120 | + public function path() { |
|
121 | + return $this->path; |
|
122 | + } |
|
123 | + |
|
124 | + /** |
|
125 | + * Whether the blob has frontmatter. |
|
126 | + * |
|
127 | + * @return bool |
|
128 | + */ |
|
129 | + public function has_frontmatter() { |
|
130 | + return $this->frontmatter; |
|
131 | + } |
|
132 | + |
|
133 | + /** |
|
134 | + * The front matter of github post |
|
135 | + * @return string |
|
136 | + */ |
|
137 | + public function front_matter() { |
|
138 | + return $this->front_matter; |
|
139 | + } |
|
140 | + |
|
141 | + /** |
|
142 | + * Content without front matter |
|
143 | + * @return string |
|
144 | + */ |
|
145 | + public function post_content() { |
|
146 | + if ( ! $this->post_content ) { |
|
147 | + $this->content_import(); |
|
148 | + } |
|
149 | + return $this->post_content; |
|
150 | + } |
|
151 | + |
|
152 | + /** |
|
153 | + * Returns the formatted/filtered blob content used for import. |
|
154 | + * |
|
155 | + * @return string |
|
156 | + */ |
|
157 | + public function content_import() { |
|
158 | + $this->post_content = $content = $this->content(); |
|
159 | + |
|
160 | + if ( $this->has_frontmatter() ) { |
|
161 | + // Break out content. |
|
162 | + preg_match( '/(^---(.*?)---$(\r\n|\n|\r)?)?(.*)/ms', $content, $matches ); |
|
163 | + $this->front_matter = $matches[1]; |
|
164 | + $this->post_content = $content = array_pop( $matches ); |
|
165 | + } |
|
166 | + |
|
167 | + if ( function_exists( 'wpmarkdown_markdown_to_html' ) ) { |
|
168 | + $content = wpmarkdown_markdown_to_html( $content ); |
|
169 | + } |
|
170 | + |
|
171 | + /** |
|
172 | + * Filters the content for import. |
|
173 | + */ |
|
174 | + return apply_filters( 'wogh_content_import', trim( $content ) ); |
|
175 | + } |
|
176 | + |
|
177 | + /** |
|
178 | + * Returns the blob meta. |
|
179 | + * |
|
180 | + * @return array |
|
181 | + */ |
|
182 | + public function meta() { |
|
183 | + $meta = array(); |
|
184 | + |
|
185 | + if ( $this->has_frontmatter() ) { |
|
186 | + // Break out meta, if present. |
|
187 | + preg_match( '/(^---(.*?)---$)?(.*)/ms', $this->content(), $matches ); |
|
188 | + array_pop( $matches ); |
|
189 | + |
|
190 | + $meta = spyc_load( $matches[2] ); |
|
191 | + if ( 'yes' == get_option('wogh_ignore_author') ) { |
|
192 | + unset($meta['author']); |
|
193 | + } |
|
194 | + // if ( isset( $meta['link'] ) ) { |
|
195 | + // $meta['link'] = str_replace( home_url(), '', $meta['link'] ); |
|
196 | + // } |
|
197 | + } |
|
198 | + |
|
199 | + return $meta; |
|
200 | + } |
|
201 | + |
|
202 | + /** |
|
203 | + * Formats the blob into an API call body. |
|
204 | + * |
|
205 | + * @return stdClass |
|
206 | + */ |
|
207 | + // public function to_body() { |
|
208 | + // $data = new stdClass; |
|
209 | + |
|
210 | + // $data->mode = '100644'; |
|
211 | + // $data->type = 'blob'; |
|
212 | + |
|
213 | + // $data->path = $this->path(); |
|
214 | + |
|
215 | + // if ( $this->sha() ) { |
|
216 | + // $data->sha = $this->sha(); |
|
217 | + // } else { |
|
218 | + // $data->content = $this->content(); |
|
219 | + // } |
|
220 | + |
|
221 | + // return $data; |
|
222 | + // } |
|
223 | + |
|
224 | + |
|
225 | + /** |
|
226 | + * Formats the blob into an API call body. |
|
227 | + * |
|
228 | + * @return stdClass |
|
229 | + */ |
|
230 | + public function to_body() { |
|
231 | + $data = new stdClass; |
|
232 | + |
|
233 | + // $data->mode = '100644'; |
|
234 | + // $data->type = 'blob'; |
|
235 | + |
|
236 | + $data->path = $this->path(); |
|
237 | + $data->content = base64_encode( $this->content() ); |
|
238 | + $data->sha = $this->sha; |
|
239 | + |
|
240 | + return $data; |
|
241 | + } |
|
242 | + |
|
243 | + /** |
|
244 | + * Interprets the blob's data into properties. |
|
245 | + */ |
|
246 | + protected function interpret_data( $data ) { |
|
247 | + $this->sha = isset( $data->sha ) ? $data->sha : ''; |
|
248 | + $this->path = isset( $data->path ) ? $data->path : ''; |
|
249 | + |
|
250 | + $this->set_content( |
|
251 | + isset( $data->content ) ? $data->content : '', |
|
252 | + isset( $data->encoding ) && 'base64' === $data->encoding ? true : false |
|
253 | + ); |
|
254 | + } |
|
255 | 255 | } |
@@ -61,8 +61,8 @@ discard block |
||
61 | 61 | * |
62 | 62 | * @param stdClass $data Raw blob data. |
63 | 63 | */ |
64 | - public function __construct( stdClass $data ) { |
|
65 | - $this->interpret_data( $data ); |
|
64 | + public function __construct(stdClass $data) { |
|
65 | + $this->interpret_data($data); |
|
66 | 66 | } |
67 | 67 | |
68 | 68 | public function id() { |
@@ -90,16 +90,16 @@ discard block |
||
90 | 90 | * |
91 | 91 | * @return $this |
92 | 92 | */ |
93 | - public function set_content( $content, $base64 = false ) { |
|
94 | - if ( $base64 ) { |
|
95 | - $content = base64_decode( $content ); |
|
93 | + public function set_content($content, $base64 = false) { |
|
94 | + if ($base64) { |
|
95 | + $content = base64_decode($content); |
|
96 | 96 | } |
97 | 97 | |
98 | 98 | // remove whitespace from the beginning of content, |
99 | 99 | // To prevent blank lines before yml |
100 | - $this->content = ltrim( $content ); |
|
100 | + $this->content = ltrim($content); |
|
101 | 101 | |
102 | - $this->frontmatter = '---' === substr( $this->content, 0, 3 ); |
|
102 | + $this->frontmatter = '---' === substr($this->content, 0, 3); |
|
103 | 103 | |
104 | 104 | return $this; |
105 | 105 | } |
@@ -143,7 +143,7 @@ discard block |
||
143 | 143 | * @return string |
144 | 144 | */ |
145 | 145 | public function post_content() { |
146 | - if ( ! $this->post_content ) { |
|
146 | + if ( ! $this->post_content) { |
|
147 | 147 | $this->content_import(); |
148 | 148 | } |
149 | 149 | return $this->post_content; |
@@ -157,21 +157,21 @@ discard block |
||
157 | 157 | public function content_import() { |
158 | 158 | $this->post_content = $content = $this->content(); |
159 | 159 | |
160 | - if ( $this->has_frontmatter() ) { |
|
160 | + if ($this->has_frontmatter()) { |
|
161 | 161 | // Break out content. |
162 | - preg_match( '/(^---(.*?)---$(\r\n|\n|\r)?)?(.*)/ms', $content, $matches ); |
|
162 | + preg_match('/(^---(.*?)---$(\r\n|\n|\r)?)?(.*)/ms', $content, $matches); |
|
163 | 163 | $this->front_matter = $matches[1]; |
164 | - $this->post_content = $content = array_pop( $matches ); |
|
164 | + $this->post_content = $content = array_pop($matches); |
|
165 | 165 | } |
166 | 166 | |
167 | - if ( function_exists( 'wpmarkdown_markdown_to_html' ) ) { |
|
168 | - $content = wpmarkdown_markdown_to_html( $content ); |
|
167 | + if (function_exists('wpmarkdown_markdown_to_html')) { |
|
168 | + $content = wpmarkdown_markdown_to_html($content); |
|
169 | 169 | } |
170 | 170 | |
171 | 171 | /** |
172 | 172 | * Filters the content for import. |
173 | 173 | */ |
174 | - return apply_filters( 'wogh_content_import', trim( $content ) ); |
|
174 | + return apply_filters('wogh_content_import', trim($content)); |
|
175 | 175 | } |
176 | 176 | |
177 | 177 | /** |
@@ -182,13 +182,13 @@ discard block |
||
182 | 182 | public function meta() { |
183 | 183 | $meta = array(); |
184 | 184 | |
185 | - if ( $this->has_frontmatter() ) { |
|
185 | + if ($this->has_frontmatter()) { |
|
186 | 186 | // Break out meta, if present. |
187 | - preg_match( '/(^---(.*?)---$)?(.*)/ms', $this->content(), $matches ); |
|
188 | - array_pop( $matches ); |
|
187 | + preg_match('/(^---(.*?)---$)?(.*)/ms', $this->content(), $matches); |
|
188 | + array_pop($matches); |
|
189 | 189 | |
190 | - $meta = spyc_load( $matches[2] ); |
|
191 | - if ( 'yes' == get_option('wogh_ignore_author') ) { |
|
190 | + $meta = spyc_load($matches[2]); |
|
191 | + if ('yes' == get_option('wogh_ignore_author')) { |
|
192 | 192 | unset($meta['author']); |
193 | 193 | } |
194 | 194 | // if ( isset( $meta['link'] ) ) { |
@@ -234,7 +234,7 @@ discard block |
||
234 | 234 | // $data->type = 'blob'; |
235 | 235 | |
236 | 236 | $data->path = $this->path(); |
237 | - $data->content = base64_encode( $this->content() ); |
|
237 | + $data->content = base64_encode($this->content()); |
|
238 | 238 | $data->sha = $this->sha; |
239 | 239 | |
240 | 240 | return $data; |
@@ -243,13 +243,13 @@ discard block |
||
243 | 243 | /** |
244 | 244 | * Interprets the blob's data into properties. |
245 | 245 | */ |
246 | - protected function interpret_data( $data ) { |
|
247 | - $this->sha = isset( $data->sha ) ? $data->sha : ''; |
|
248 | - $this->path = isset( $data->path ) ? $data->path : ''; |
|
246 | + protected function interpret_data($data) { |
|
247 | + $this->sha = isset($data->sha) ? $data->sha : ''; |
|
248 | + $this->path = isset($data->path) ? $data->path : ''; |
|
249 | 249 | |
250 | 250 | $this->set_content( |
251 | - isset( $data->content ) ? $data->content : '', |
|
252 | - isset( $data->encoding ) && 'base64' === $data->encoding ? true : false |
|
251 | + isset($data->content) ? $data->content : '', |
|
252 | + isset($data->encoding) && 'base64' === $data->encoding ? true : false |
|
253 | 253 | ); |
254 | 254 | } |
255 | 255 | } |
@@ -8,10 +8,10 @@ discard block |
||
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 | } |
16 | 16 | |
17 | 17 | /** |
@@ -21,9 +21,9 @@ discard block |
||
21 | 21 | * @return bool |
22 | 22 | */ |
23 | 23 | function wogh_equal_front_matter( $post, $blob ) { |
24 | - $str1 = $post->front_matter(); |
|
25 | - $str2 = $blob->front_matter(); |
|
26 | - return trim($str1) === trim($str2); |
|
24 | + $str1 = $post->front_matter(); |
|
25 | + $str2 = $blob->front_matter(); |
|
26 | + return trim($str1) === trim($str2); |
|
27 | 27 | } |
28 | 28 | |
29 | 29 | /** |
@@ -31,7 +31,7 @@ discard block |
||
31 | 31 | * @return bool |
32 | 32 | */ |
33 | 33 | function wogh_is_dont_export_content() { |
34 | - return 'yes' === get_option( 'wogh_dont_export_content' ); |
|
34 | + return 'yes' === get_option( 'wogh_dont_export_content' ); |
|
35 | 35 | } |
36 | 36 | |
37 | 37 | /** |
@@ -41,8 +41,8 @@ discard block |
||
41 | 41 | * @return string |
42 | 42 | */ |
43 | 43 | function wogh_git_sha( $content ) { |
44 | - // $header = "blob $len\0" |
|
45 | - // sha1($header . $content) |
|
46 | - $len = strlen( $content ); |
|
47 | - return sha1( "blob $len\0$content" ); |
|
44 | + // $header = "blob $len\0" |
|
45 | + // sha1($header . $content) |
|
46 | + $len = strlen( $content ); |
|
47 | + return sha1( "blob $len\0$content" ); |
|
48 | 48 | } |
@@ -7,9 +7,9 @@ discard block |
||
7 | 7 | * @param WP_Error $error2 |
8 | 8 | * @return WP_Error |
9 | 9 | */ |
10 | -function wogh_append_error( $error, $error2 ) { |
|
11 | - if ( is_wp_error( $error ) ) { |
|
12 | - $error->add( $error2->get_error_code(), $error2->get_error_message() ); |
|
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 | 13 | } |
14 | 14 | return $error2; |
15 | 15 | } |
@@ -20,7 +20,7 @@ discard block |
||
20 | 20 | * @param Writing_On_GitHub_Blob $blob |
21 | 21 | * @return bool |
22 | 22 | */ |
23 | -function wogh_equal_front_matter( $post, $blob ) { |
|
23 | +function wogh_equal_front_matter($post, $blob) { |
|
24 | 24 | $str1 = $post->front_matter(); |
25 | 25 | $str2 = $blob->front_matter(); |
26 | 26 | return trim($str1) === trim($str2); |
@@ -31,7 +31,7 @@ discard block |
||
31 | 31 | * @return bool |
32 | 32 | */ |
33 | 33 | function wogh_is_dont_export_content() { |
34 | - return 'yes' === get_option( 'wogh_dont_export_content' ); |
|
34 | + return 'yes' === get_option('wogh_dont_export_content'); |
|
35 | 35 | } |
36 | 36 | |
37 | 37 | /** |
@@ -40,9 +40,9 @@ discard block |
||
40 | 40 | * @param string $content |
41 | 41 | * @return string |
42 | 42 | */ |
43 | -function wogh_git_sha( $content ) { |
|
43 | +function wogh_git_sha($content) { |
|
44 | 44 | // $header = "blob $len\0" |
45 | 45 | // sha1($header . $content) |
46 | - $len = strlen( $content ); |
|
47 | - return sha1( "blob $len\0$content" ); |
|
46 | + $len = strlen($content); |
|
47 | + return sha1("blob $len\0$content"); |
|
48 | 48 | } |
@@ -9,263 +9,263 @@ |
||
9 | 9 | */ |
10 | 10 | class Writing_On_GitHub_Admin { |
11 | 11 | |
12 | - /** |
|
13 | - * plugin file name rel plugin dir. |
|
14 | - * @var string |
|
15 | - */ |
|
16 | - protected $plugin_file; |
|
17 | - |
|
18 | - /** |
|
19 | - * Hook into GitHub API |
|
20 | - */ |
|
21 | - public function __construct( $plugin_file ) { |
|
22 | - $this->plugin_file = $plugin_file; |
|
23 | - |
|
24 | - add_action( 'admin_menu', array( $this, 'add_admin_menu' ) ); |
|
25 | - add_action( 'admin_init', array( $this, 'register_settings' ) ); |
|
26 | - add_action( 'current_screen', array( $this, 'trigger_cron' ) ); |
|
27 | - add_filter( 'plugin_action_links', array($this, 'settings_links'), 10, 2 ); |
|
28 | - } |
|
29 | - |
|
30 | - /** |
|
31 | - * settings link |
|
32 | - * @param string[] $links |
|
33 | - * @param string $file |
|
34 | - * @return string[] |
|
35 | - */ |
|
36 | - public function settings_links( $links, $file ) { |
|
37 | - if ( $file != $this->plugin_file ) { |
|
38 | - return $links; |
|
39 | - } |
|
40 | - |
|
41 | - $settings_link = '<a href="options-general.php?page=' . |
|
42 | - Writing_On_GitHub::$text_domain . '">' . __( 'Settings', 'writing-on-github' ) . '</a>'; |
|
43 | - |
|
44 | - array_push( $links, $settings_link ); |
|
45 | - |
|
46 | - return $links; |
|
47 | - } |
|
48 | - |
|
49 | - /** |
|
50 | - * Callback to render the settings page view |
|
51 | - */ |
|
52 | - public function settings_page() { |
|
53 | - include dirname( dirname( __FILE__ ) ) . '/views/options.php'; |
|
54 | - } |
|
55 | - |
|
56 | - /** |
|
57 | - * Callback to register the plugin's options |
|
58 | - */ |
|
59 | - public function register_settings() { |
|
60 | - add_settings_section( |
|
61 | - 'general', |
|
62 | - 'General Settings', |
|
63 | - array( $this, 'section_callback' ), |
|
64 | - Writing_On_GitHub::$text_domain |
|
65 | - ); |
|
66 | - |
|
67 | - register_setting( Writing_On_GitHub::$text_domain, 'wogh_host' ); |
|
68 | - add_settings_field( 'wogh_host', __( 'GitHub hostname', 'writing-on-github' ), array( $this, 'field_callback' ), Writing_On_GitHub::$text_domain, 'general', array( |
|
69 | - 'default' => 'https://api.github.com', |
|
70 | - 'name' => 'wogh_host', |
|
71 | - 'help_text' => __( 'The GitHub host to use. This only needs to be changed to support a GitHub Enterprise installation.', 'writing-on-github' ), |
|
72 | - ) |
|
73 | - ); |
|
74 | - |
|
75 | - register_setting( Writing_On_GitHub::$text_domain, 'wogh_repository' ); |
|
76 | - add_settings_field( 'wogh_repository', __( 'Repository', 'writing-on-github' ), array( $this, 'field_callback' ), Writing_On_GitHub::$text_domain, 'general', array( |
|
77 | - 'default' => '', |
|
78 | - 'name' => 'wogh_repository', |
|
79 | - 'help_text' => __( 'The GitHub repository to commit to, with owner (<code>[OWNER]/[REPOSITORY]</code>), e.g., <code>github/hubot.github.com</code>. The repository should contain an initial commit, which is satisfied by including a README when you create the repository on GitHub.', 'writing-on-github' ), |
|
80 | - ) |
|
81 | - ); |
|
82 | - |
|
83 | - register_setting( Writing_On_GitHub::$text_domain, 'wogh_branch' ); |
|
84 | - add_settings_field( 'wogh_branch', __( 'Branch', 'writing-on-github' ), array( $this, 'field_callback' ), Writing_On_GitHub::$text_domain, 'general', array( |
|
85 | - 'default' => 'master', |
|
86 | - 'name' => 'wogh_branch', |
|
87 | - 'help_text' => __( 'The GitHub branch to commit to, default is master.', 'writing-on-github' ), |
|
88 | - ) |
|
89 | - ); |
|
90 | - |
|
91 | - register_setting( Writing_On_GitHub::$text_domain, 'wogh_oauth_token' ); |
|
92 | - add_settings_field( 'wogh_oauth_token', __( 'Oauth Token', 'writing-on-github' ), array( $this, 'field_callback' ), Writing_On_GitHub::$text_domain, 'general', array( |
|
93 | - 'default' => '', |
|
94 | - 'name' => 'wogh_oauth_token', |
|
95 | - 'help_text' => __( "A <a href='https://github.com/settings/tokens/new'>personal oauth token</a> with <code>public_repo</code> scope.", 'writing-on-github' ), |
|
96 | - ) |
|
97 | - ); |
|
98 | - |
|
99 | - register_setting( Writing_On_GitHub::$text_domain, 'wogh_secret' ); |
|
100 | - add_settings_field( 'wogh_secret', __( 'Webhook Secret', 'writing-on-github' ), array( $this, 'field_callback' ), Writing_On_GitHub::$text_domain, 'general', array( |
|
101 | - 'default' => '', |
|
102 | - 'name' => 'wogh_secret', |
|
103 | - 'help_text' => __( "The webhook's secret phrase. This should be password strength, as it is used to verify the webhook's payload.", 'writing-on-github' ), |
|
104 | - ) |
|
105 | - ); |
|
106 | - |
|
107 | - register_setting( Writing_On_GitHub::$text_domain, 'wogh_default_user' ); |
|
108 | - add_settings_field( 'wogh_default_user', __( 'Default Import User', 'writing-on-github' ), array( &$this, 'user_field_callback' ), Writing_On_GitHub::$text_domain, 'general', array( |
|
109 | - 'default' => '', |
|
110 | - 'name' => 'wogh_default_user', |
|
111 | - 'help_text' => __( 'The fallback user for import, in case Writing On GitHub cannot find the committer in the database.', 'writing-on-github' ), |
|
112 | - ) |
|
113 | - ); |
|
114 | - |
|
115 | - register_setting( Writing_On_GitHub::$text_domain, 'wogh_ignore_author' ); |
|
116 | - add_settings_field( 'wogh_ignore_author', __( 'Ignore author', 'writing-on-github' ), array( &$this, 'checkbox_field_callback' ), Writing_On_GitHub::$text_domain, 'general', array( |
|
117 | - 'default' => '', |
|
118 | - 'name' => 'wogh_ignore_author', |
|
119 | - 'help_text' => __( 'Do not export author and do not use author info from GitHub.', 'writing-on-github' ), |
|
120 | - ) |
|
121 | - ); |
|
122 | - |
|
123 | - register_setting( Writing_On_GitHub::$text_domain, 'wogh_dont_export_content' ); |
|
124 | - add_settings_field( 'wogh_dont_export_content', __( 'Don\'t export content', 'writing-on-github' ), array( &$this, 'checkbox_field_callback' ), Writing_On_GitHub::$text_domain, 'general', array( |
|
125 | - 'default' => '', |
|
126 | - 'name' => 'wogh_dont_export_content', |
|
127 | - 'help_text' => __( 'Do not export post content to github, only export meta.', 'writing-on-github' ), |
|
128 | - ) |
|
129 | - ); |
|
130 | - |
|
131 | - // register_setting( Writing_On_GitHub::$text_domain, 'wogh_ignore_metas' ); |
|
132 | - // add_settings_field( 'wogh_ignore_metas', __( 'Ignore post metas', 'writing-on-github' ), array( &$this, 'textarea_field_callback' ), Writing_On_GitHub::$text_domain, 'general', array( |
|
133 | - // 'default' => '', |
|
134 | - // 'name' => 'wogh_ignore_metas', |
|
135 | - // 'help_text' => __( 'These meta keys will be ignored and cannot be imported and exported. One meta key per line.', 'writing-on-github' ), |
|
136 | - // ) |
|
137 | - // ); |
|
138 | - } |
|
139 | - |
|
140 | - /** |
|
141 | - * Callback to render an individual options field |
|
142 | - * |
|
143 | - * @param array $args Field arguments. |
|
144 | - */ |
|
145 | - public function field_callback( $args ) { |
|
146 | - include dirname( dirname( __FILE__ ) ) . '/views/setting-field.php'; |
|
147 | - } |
|
148 | - |
|
149 | - /** |
|
150 | - * Callback to render the default import user field. |
|
151 | - * |
|
152 | - * @param array $args Field arguments. |
|
153 | - */ |
|
154 | - public function user_field_callback( $args ) { |
|
155 | - include dirname( dirname( __FILE__ ) ) . '/views/user-setting-field.php'; |
|
156 | - } |
|
157 | - |
|
158 | - /** |
|
159 | - * Callback to render the textarea field. |
|
160 | - * |
|
161 | - * @param array $args Field arguments. |
|
162 | - */ |
|
163 | - public function textarea_field_callback( $args ) { |
|
164 | - include dirname( dirname( __FILE__ ) ) . '/views/textarea-setting-field.php'; |
|
165 | - } |
|
166 | - |
|
167 | - /** |
|
168 | - * Callback to render the checkbox field. |
|
169 | - * |
|
170 | - * @param array $args Field arguments. |
|
171 | - */ |
|
172 | - public function checkbox_field_callback( $args ) { |
|
173 | - include dirname( dirname( __FILE__ ) ) . '/views/checkbox-setting-field.php'; |
|
174 | - } |
|
175 | - |
|
176 | - /** |
|
177 | - * Displays settings messages from background processes |
|
178 | - */ |
|
179 | - public function section_callback() { |
|
180 | - if ( get_current_screen()->id !== 'settings_page_' . Writing_On_GitHub::$text_domain ) { |
|
181 | - return; |
|
182 | - } |
|
183 | - |
|
184 | - if ( 'yes' === get_option( '_wogh_export_started' ) ) { ?> |
|
12 | + /** |
|
13 | + * plugin file name rel plugin dir. |
|
14 | + * @var string |
|
15 | + */ |
|
16 | + protected $plugin_file; |
|
17 | + |
|
18 | + /** |
|
19 | + * Hook into GitHub API |
|
20 | + */ |
|
21 | + public function __construct( $plugin_file ) { |
|
22 | + $this->plugin_file = $plugin_file; |
|
23 | + |
|
24 | + add_action( 'admin_menu', array( $this, 'add_admin_menu' ) ); |
|
25 | + add_action( 'admin_init', array( $this, 'register_settings' ) ); |
|
26 | + add_action( 'current_screen', array( $this, 'trigger_cron' ) ); |
|
27 | + add_filter( 'plugin_action_links', array($this, 'settings_links'), 10, 2 ); |
|
28 | + } |
|
29 | + |
|
30 | + /** |
|
31 | + * settings link |
|
32 | + * @param string[] $links |
|
33 | + * @param string $file |
|
34 | + * @return string[] |
|
35 | + */ |
|
36 | + public function settings_links( $links, $file ) { |
|
37 | + if ( $file != $this->plugin_file ) { |
|
38 | + return $links; |
|
39 | + } |
|
40 | + |
|
41 | + $settings_link = '<a href="options-general.php?page=' . |
|
42 | + Writing_On_GitHub::$text_domain . '">' . __( 'Settings', 'writing-on-github' ) . '</a>'; |
|
43 | + |
|
44 | + array_push( $links, $settings_link ); |
|
45 | + |
|
46 | + return $links; |
|
47 | + } |
|
48 | + |
|
49 | + /** |
|
50 | + * Callback to render the settings page view |
|
51 | + */ |
|
52 | + public function settings_page() { |
|
53 | + include dirname( dirname( __FILE__ ) ) . '/views/options.php'; |
|
54 | + } |
|
55 | + |
|
56 | + /** |
|
57 | + * Callback to register the plugin's options |
|
58 | + */ |
|
59 | + public function register_settings() { |
|
60 | + add_settings_section( |
|
61 | + 'general', |
|
62 | + 'General Settings', |
|
63 | + array( $this, 'section_callback' ), |
|
64 | + Writing_On_GitHub::$text_domain |
|
65 | + ); |
|
66 | + |
|
67 | + register_setting( Writing_On_GitHub::$text_domain, 'wogh_host' ); |
|
68 | + add_settings_field( 'wogh_host', __( 'GitHub hostname', 'writing-on-github' ), array( $this, 'field_callback' ), Writing_On_GitHub::$text_domain, 'general', array( |
|
69 | + 'default' => 'https://api.github.com', |
|
70 | + 'name' => 'wogh_host', |
|
71 | + 'help_text' => __( 'The GitHub host to use. This only needs to be changed to support a GitHub Enterprise installation.', 'writing-on-github' ), |
|
72 | + ) |
|
73 | + ); |
|
74 | + |
|
75 | + register_setting( Writing_On_GitHub::$text_domain, 'wogh_repository' ); |
|
76 | + add_settings_field( 'wogh_repository', __( 'Repository', 'writing-on-github' ), array( $this, 'field_callback' ), Writing_On_GitHub::$text_domain, 'general', array( |
|
77 | + 'default' => '', |
|
78 | + 'name' => 'wogh_repository', |
|
79 | + 'help_text' => __( 'The GitHub repository to commit to, with owner (<code>[OWNER]/[REPOSITORY]</code>), e.g., <code>github/hubot.github.com</code>. The repository should contain an initial commit, which is satisfied by including a README when you create the repository on GitHub.', 'writing-on-github' ), |
|
80 | + ) |
|
81 | + ); |
|
82 | + |
|
83 | + register_setting( Writing_On_GitHub::$text_domain, 'wogh_branch' ); |
|
84 | + add_settings_field( 'wogh_branch', __( 'Branch', 'writing-on-github' ), array( $this, 'field_callback' ), Writing_On_GitHub::$text_domain, 'general', array( |
|
85 | + 'default' => 'master', |
|
86 | + 'name' => 'wogh_branch', |
|
87 | + 'help_text' => __( 'The GitHub branch to commit to, default is master.', 'writing-on-github' ), |
|
88 | + ) |
|
89 | + ); |
|
90 | + |
|
91 | + register_setting( Writing_On_GitHub::$text_domain, 'wogh_oauth_token' ); |
|
92 | + add_settings_field( 'wogh_oauth_token', __( 'Oauth Token', 'writing-on-github' ), array( $this, 'field_callback' ), Writing_On_GitHub::$text_domain, 'general', array( |
|
93 | + 'default' => '', |
|
94 | + 'name' => 'wogh_oauth_token', |
|
95 | + 'help_text' => __( "A <a href='https://github.com/settings/tokens/new'>personal oauth token</a> with <code>public_repo</code> scope.", 'writing-on-github' ), |
|
96 | + ) |
|
97 | + ); |
|
98 | + |
|
99 | + register_setting( Writing_On_GitHub::$text_domain, 'wogh_secret' ); |
|
100 | + add_settings_field( 'wogh_secret', __( 'Webhook Secret', 'writing-on-github' ), array( $this, 'field_callback' ), Writing_On_GitHub::$text_domain, 'general', array( |
|
101 | + 'default' => '', |
|
102 | + 'name' => 'wogh_secret', |
|
103 | + 'help_text' => __( "The webhook's secret phrase. This should be password strength, as it is used to verify the webhook's payload.", 'writing-on-github' ), |
|
104 | + ) |
|
105 | + ); |
|
106 | + |
|
107 | + register_setting( Writing_On_GitHub::$text_domain, 'wogh_default_user' ); |
|
108 | + add_settings_field( 'wogh_default_user', __( 'Default Import User', 'writing-on-github' ), array( &$this, 'user_field_callback' ), Writing_On_GitHub::$text_domain, 'general', array( |
|
109 | + 'default' => '', |
|
110 | + 'name' => 'wogh_default_user', |
|
111 | + 'help_text' => __( 'The fallback user for import, in case Writing On GitHub cannot find the committer in the database.', 'writing-on-github' ), |
|
112 | + ) |
|
113 | + ); |
|
114 | + |
|
115 | + register_setting( Writing_On_GitHub::$text_domain, 'wogh_ignore_author' ); |
|
116 | + add_settings_field( 'wogh_ignore_author', __( 'Ignore author', 'writing-on-github' ), array( &$this, 'checkbox_field_callback' ), Writing_On_GitHub::$text_domain, 'general', array( |
|
117 | + 'default' => '', |
|
118 | + 'name' => 'wogh_ignore_author', |
|
119 | + 'help_text' => __( 'Do not export author and do not use author info from GitHub.', 'writing-on-github' ), |
|
120 | + ) |
|
121 | + ); |
|
122 | + |
|
123 | + register_setting( Writing_On_GitHub::$text_domain, 'wogh_dont_export_content' ); |
|
124 | + add_settings_field( 'wogh_dont_export_content', __( 'Don\'t export content', 'writing-on-github' ), array( &$this, 'checkbox_field_callback' ), Writing_On_GitHub::$text_domain, 'general', array( |
|
125 | + 'default' => '', |
|
126 | + 'name' => 'wogh_dont_export_content', |
|
127 | + 'help_text' => __( 'Do not export post content to github, only export meta.', 'writing-on-github' ), |
|
128 | + ) |
|
129 | + ); |
|
130 | + |
|
131 | + // register_setting( Writing_On_GitHub::$text_domain, 'wogh_ignore_metas' ); |
|
132 | + // add_settings_field( 'wogh_ignore_metas', __( 'Ignore post metas', 'writing-on-github' ), array( &$this, 'textarea_field_callback' ), Writing_On_GitHub::$text_domain, 'general', array( |
|
133 | + // 'default' => '', |
|
134 | + // 'name' => 'wogh_ignore_metas', |
|
135 | + // 'help_text' => __( 'These meta keys will be ignored and cannot be imported and exported. One meta key per line.', 'writing-on-github' ), |
|
136 | + // ) |
|
137 | + // ); |
|
138 | + } |
|
139 | + |
|
140 | + /** |
|
141 | + * Callback to render an individual options field |
|
142 | + * |
|
143 | + * @param array $args Field arguments. |
|
144 | + */ |
|
145 | + public function field_callback( $args ) { |
|
146 | + include dirname( dirname( __FILE__ ) ) . '/views/setting-field.php'; |
|
147 | + } |
|
148 | + |
|
149 | + /** |
|
150 | + * Callback to render the default import user field. |
|
151 | + * |
|
152 | + * @param array $args Field arguments. |
|
153 | + */ |
|
154 | + public function user_field_callback( $args ) { |
|
155 | + include dirname( dirname( __FILE__ ) ) . '/views/user-setting-field.php'; |
|
156 | + } |
|
157 | + |
|
158 | + /** |
|
159 | + * Callback to render the textarea field. |
|
160 | + * |
|
161 | + * @param array $args Field arguments. |
|
162 | + */ |
|
163 | + public function textarea_field_callback( $args ) { |
|
164 | + include dirname( dirname( __FILE__ ) ) . '/views/textarea-setting-field.php'; |
|
165 | + } |
|
166 | + |
|
167 | + /** |
|
168 | + * Callback to render the checkbox field. |
|
169 | + * |
|
170 | + * @param array $args Field arguments. |
|
171 | + */ |
|
172 | + public function checkbox_field_callback( $args ) { |
|
173 | + include dirname( dirname( __FILE__ ) ) . '/views/checkbox-setting-field.php'; |
|
174 | + } |
|
175 | + |
|
176 | + /** |
|
177 | + * Displays settings messages from background processes |
|
178 | + */ |
|
179 | + public function section_callback() { |
|
180 | + if ( get_current_screen()->id !== 'settings_page_' . Writing_On_GitHub::$text_domain ) { |
|
181 | + return; |
|
182 | + } |
|
183 | + |
|
184 | + if ( 'yes' === get_option( '_wogh_export_started' ) ) { ?> |
|
185 | 185 | <div class="updated"> |
186 | 186 | <p><?php esc_html_e( 'Export to GitHub started.', 'writing-on-github' ); ?></p> |
187 | 187 | </div><?php |
188 | - delete_option( '_wogh_export_started' ); |
|
189 | - } |
|
188 | + delete_option( '_wogh_export_started' ); |
|
189 | + } |
|
190 | 190 | |
191 | - if ( $message = get_option( '_wogh_export_error' ) ) { ?> |
|
191 | + if ( $message = get_option( '_wogh_export_error' ) ) { ?> |
|
192 | 192 | <div class="error"> |
193 | 193 | <p><?php esc_html_e( 'Export to GitHub failed with error:', 'writing-on-github' ); ?> <?php echo esc_html( $message );?></p> |
194 | 194 | </div><?php |
195 | - delete_option( '_wogh_export_error' ); |
|
196 | - } |
|
195 | + delete_option( '_wogh_export_error' ); |
|
196 | + } |
|
197 | 197 | |
198 | - if ( 'yes' === get_option( '_wogh_export_complete' ) ) { ?> |
|
198 | + if ( 'yes' === get_option( '_wogh_export_complete' ) ) { ?> |
|
199 | 199 | <div class="updated"> |
200 | 200 | <p><?php esc_html_e( 'Export to GitHub completed successfully.', 'writing-on-github' );?></p> |
201 | 201 | </div><?php |
202 | - delete_option( '_wogh_export_complete' ); |
|
203 | - } |
|
202 | + delete_option( '_wogh_export_complete' ); |
|
203 | + } |
|
204 | 204 | |
205 | - if ( 'yes' === get_option( '_wogh_import_started' ) ) { ?> |
|
205 | + if ( 'yes' === get_option( '_wogh_import_started' ) ) { ?> |
|
206 | 206 | <div class="updated"> |
207 | 207 | <p><?php esc_html_e( 'Import from GitHub started.', 'writing-on-github' ); ?></p> |
208 | 208 | </div><?php |
209 | - delete_option( '_wogh_import_started' ); |
|
210 | - } |
|
209 | + delete_option( '_wogh_import_started' ); |
|
210 | + } |
|
211 | 211 | |
212 | - if ( $message = get_option( '_wogh_import_error' ) ) { ?> |
|
212 | + if ( $message = get_option( '_wogh_import_error' ) ) { ?> |
|
213 | 213 | <div class="error"> |
214 | 214 | <p><?php esc_html_e( 'Import from GitHub failed with error:', 'writing-on-github' ); ?> <?php echo esc_html( $message );?></p> |
215 | 215 | </div><?php |
216 | - delete_option( '_wogh_import_error' ); |
|
217 | - } |
|
216 | + delete_option( '_wogh_import_error' ); |
|
217 | + } |
|
218 | 218 | |
219 | - if ( 'yes' === get_option( '_wogh_import_complete' ) ) { ?> |
|
219 | + if ( 'yes' === get_option( '_wogh_import_complete' ) ) { ?> |
|
220 | 220 | <div class="updated"> |
221 | 221 | <p><?php esc_html_e( 'Import from GitHub completed successfully.', 'writing-on-github' );?></p> |
222 | 222 | </div><?php |
223 | - delete_option( '_wogh_import_complete' ); |
|
224 | - } |
|
225 | - } |
|
226 | - |
|
227 | - /** |
|
228 | - * Add options menu to admin navbar |
|
229 | - */ |
|
230 | - public function add_admin_menu() { |
|
231 | - add_options_page( |
|
232 | - __( 'Writing On GitHub', 'writing-on-github' ), |
|
233 | - __( 'Writing On GitHub', 'writing-on-github' ), |
|
234 | - 'manage_options', |
|
235 | - Writing_On_GitHub::$text_domain, |
|
236 | - array( $this, 'settings_page' ) |
|
237 | - ); |
|
238 | - } |
|
239 | - |
|
240 | - /** |
|
241 | - * Admin callback to trigger import/export because WordPress admin routing lol |
|
242 | - */ |
|
243 | - public function trigger_cron() { |
|
244 | - if ( ! current_user_can( 'manage_options' ) ) { |
|
245 | - return; |
|
246 | - } |
|
247 | - |
|
248 | - if ( get_current_screen()->id !== 'settings_page_' . Writing_On_GitHub::$text_domain ) { |
|
249 | - return; |
|
250 | - } |
|
251 | - |
|
252 | - if ( ! isset( $_GET['action'] ) ) { |
|
253 | - return; |
|
254 | - } |
|
255 | - |
|
256 | - if ( 'export' === $_GET['action'] ) { |
|
257 | - Writing_On_GitHub::$instance->start_export(); |
|
258 | - } |
|
259 | - |
|
260 | - if ( 'force_export' === $_GET['action'] ) { |
|
261 | - Writing_On_GitHub::$instance->start_export(true); |
|
262 | - } |
|
263 | - |
|
264 | - if ( 'import' === $_GET['action'] ) { |
|
265 | - Writing_On_GitHub::$instance->start_import(); |
|
266 | - } |
|
267 | - |
|
268 | - wp_redirect( admin_url( 'options-general.php?page=writing-on-github' ) ); |
|
269 | - die; |
|
270 | - } |
|
223 | + delete_option( '_wogh_import_complete' ); |
|
224 | + } |
|
225 | + } |
|
226 | + |
|
227 | + /** |
|
228 | + * Add options menu to admin navbar |
|
229 | + */ |
|
230 | + public function add_admin_menu() { |
|
231 | + add_options_page( |
|
232 | + __( 'Writing On GitHub', 'writing-on-github' ), |
|
233 | + __( 'Writing On GitHub', 'writing-on-github' ), |
|
234 | + 'manage_options', |
|
235 | + Writing_On_GitHub::$text_domain, |
|
236 | + array( $this, 'settings_page' ) |
|
237 | + ); |
|
238 | + } |
|
239 | + |
|
240 | + /** |
|
241 | + * Admin callback to trigger import/export because WordPress admin routing lol |
|
242 | + */ |
|
243 | + public function trigger_cron() { |
|
244 | + if ( ! current_user_can( 'manage_options' ) ) { |
|
245 | + return; |
|
246 | + } |
|
247 | + |
|
248 | + if ( get_current_screen()->id !== 'settings_page_' . Writing_On_GitHub::$text_domain ) { |
|
249 | + return; |
|
250 | + } |
|
251 | + |
|
252 | + if ( ! isset( $_GET['action'] ) ) { |
|
253 | + return; |
|
254 | + } |
|
255 | + |
|
256 | + if ( 'export' === $_GET['action'] ) { |
|
257 | + Writing_On_GitHub::$instance->start_export(); |
|
258 | + } |
|
259 | + |
|
260 | + if ( 'force_export' === $_GET['action'] ) { |
|
261 | + Writing_On_GitHub::$instance->start_export(true); |
|
262 | + } |
|
263 | + |
|
264 | + if ( 'import' === $_GET['action'] ) { |
|
265 | + Writing_On_GitHub::$instance->start_import(); |
|
266 | + } |
|
267 | + |
|
268 | + wp_redirect( admin_url( 'options-general.php?page=writing-on-github' ) ); |
|
269 | + die; |
|
270 | + } |
|
271 | 271 | } |
@@ -18,13 +18,13 @@ discard block |
||
18 | 18 | /** |
19 | 19 | * Hook into GitHub API |
20 | 20 | */ |
21 | - public function __construct( $plugin_file ) { |
|
21 | + public function __construct($plugin_file) { |
|
22 | 22 | $this->plugin_file = $plugin_file; |
23 | 23 | |
24 | - add_action( 'admin_menu', array( $this, 'add_admin_menu' ) ); |
|
25 | - add_action( 'admin_init', array( $this, 'register_settings' ) ); |
|
26 | - add_action( 'current_screen', array( $this, 'trigger_cron' ) ); |
|
27 | - add_filter( 'plugin_action_links', array($this, 'settings_links'), 10, 2 ); |
|
24 | + add_action('admin_menu', array($this, 'add_admin_menu')); |
|
25 | + add_action('admin_init', array($this, 'register_settings')); |
|
26 | + add_action('current_screen', array($this, 'trigger_cron')); |
|
27 | + add_filter('plugin_action_links', array($this, 'settings_links'), 10, 2); |
|
28 | 28 | } |
29 | 29 | |
30 | 30 | /** |
@@ -33,15 +33,15 @@ discard block |
||
33 | 33 | * @param string $file |
34 | 34 | * @return string[] |
35 | 35 | */ |
36 | - public function settings_links( $links, $file ) { |
|
37 | - if ( $file != $this->plugin_file ) { |
|
36 | + public function settings_links($links, $file) { |
|
37 | + if ($file != $this->plugin_file) { |
|
38 | 38 | return $links; |
39 | 39 | } |
40 | 40 | |
41 | 41 | $settings_link = '<a href="options-general.php?page=' . |
42 | - Writing_On_GitHub::$text_domain . '">' . __( 'Settings', 'writing-on-github' ) . '</a>'; |
|
42 | + Writing_On_GitHub::$text_domain . '">' . __('Settings', 'writing-on-github') . '</a>'; |
|
43 | 43 | |
44 | - array_push( $links, $settings_link ); |
|
44 | + array_push($links, $settings_link); |
|
45 | 45 | |
46 | 46 | return $links; |
47 | 47 | } |
@@ -50,7 +50,7 @@ discard block |
||
50 | 50 | * Callback to render the settings page view |
51 | 51 | */ |
52 | 52 | public function settings_page() { |
53 | - include dirname( dirname( __FILE__ ) ) . '/views/options.php'; |
|
53 | + include dirname(dirname(__FILE__)) . '/views/options.php'; |
|
54 | 54 | } |
55 | 55 | |
56 | 56 | /** |
@@ -60,71 +60,71 @@ discard block |
||
60 | 60 | add_settings_section( |
61 | 61 | 'general', |
62 | 62 | 'General Settings', |
63 | - array( $this, 'section_callback' ), |
|
63 | + array($this, 'section_callback'), |
|
64 | 64 | Writing_On_GitHub::$text_domain |
65 | 65 | ); |
66 | 66 | |
67 | - register_setting( Writing_On_GitHub::$text_domain, 'wogh_host' ); |
|
68 | - add_settings_field( 'wogh_host', __( 'GitHub hostname', 'writing-on-github' ), array( $this, 'field_callback' ), Writing_On_GitHub::$text_domain, 'general', array( |
|
67 | + register_setting(Writing_On_GitHub::$text_domain, 'wogh_host'); |
|
68 | + add_settings_field('wogh_host', __('GitHub hostname', 'writing-on-github'), array($this, 'field_callback'), Writing_On_GitHub::$text_domain, 'general', array( |
|
69 | 69 | 'default' => 'https://api.github.com', |
70 | 70 | 'name' => 'wogh_host', |
71 | - 'help_text' => __( 'The GitHub host to use. This only needs to be changed to support a GitHub Enterprise installation.', 'writing-on-github' ), |
|
71 | + 'help_text' => __('The GitHub host to use. This only needs to be changed to support a GitHub Enterprise installation.', 'writing-on-github'), |
|
72 | 72 | ) |
73 | 73 | ); |
74 | 74 | |
75 | - register_setting( Writing_On_GitHub::$text_domain, 'wogh_repository' ); |
|
76 | - add_settings_field( 'wogh_repository', __( 'Repository', 'writing-on-github' ), array( $this, 'field_callback' ), Writing_On_GitHub::$text_domain, 'general', array( |
|
75 | + register_setting(Writing_On_GitHub::$text_domain, 'wogh_repository'); |
|
76 | + add_settings_field('wogh_repository', __('Repository', 'writing-on-github'), array($this, 'field_callback'), Writing_On_GitHub::$text_domain, 'general', array( |
|
77 | 77 | 'default' => '', |
78 | 78 | 'name' => 'wogh_repository', |
79 | - 'help_text' => __( 'The GitHub repository to commit to, with owner (<code>[OWNER]/[REPOSITORY]</code>), e.g., <code>github/hubot.github.com</code>. The repository should contain an initial commit, which is satisfied by including a README when you create the repository on GitHub.', 'writing-on-github' ), |
|
79 | + 'help_text' => __('The GitHub repository to commit to, with owner (<code>[OWNER]/[REPOSITORY]</code>), e.g., <code>github/hubot.github.com</code>. The repository should contain an initial commit, which is satisfied by including a README when you create the repository on GitHub.', 'writing-on-github'), |
|
80 | 80 | ) |
81 | 81 | ); |
82 | 82 | |
83 | - register_setting( Writing_On_GitHub::$text_domain, 'wogh_branch' ); |
|
84 | - add_settings_field( 'wogh_branch', __( 'Branch', 'writing-on-github' ), array( $this, 'field_callback' ), Writing_On_GitHub::$text_domain, 'general', array( |
|
83 | + register_setting(Writing_On_GitHub::$text_domain, 'wogh_branch'); |
|
84 | + add_settings_field('wogh_branch', __('Branch', 'writing-on-github'), array($this, 'field_callback'), Writing_On_GitHub::$text_domain, 'general', array( |
|
85 | 85 | 'default' => 'master', |
86 | 86 | 'name' => 'wogh_branch', |
87 | - 'help_text' => __( 'The GitHub branch to commit to, default is master.', 'writing-on-github' ), |
|
87 | + 'help_text' => __('The GitHub branch to commit to, default is master.', 'writing-on-github'), |
|
88 | 88 | ) |
89 | 89 | ); |
90 | 90 | |
91 | - register_setting( Writing_On_GitHub::$text_domain, 'wogh_oauth_token' ); |
|
92 | - add_settings_field( 'wogh_oauth_token', __( 'Oauth Token', 'writing-on-github' ), array( $this, 'field_callback' ), Writing_On_GitHub::$text_domain, 'general', array( |
|
91 | + register_setting(Writing_On_GitHub::$text_domain, 'wogh_oauth_token'); |
|
92 | + add_settings_field('wogh_oauth_token', __('Oauth Token', 'writing-on-github'), array($this, 'field_callback'), Writing_On_GitHub::$text_domain, 'general', array( |
|
93 | 93 | 'default' => '', |
94 | 94 | 'name' => 'wogh_oauth_token', |
95 | - 'help_text' => __( "A <a href='https://github.com/settings/tokens/new'>personal oauth token</a> with <code>public_repo</code> scope.", 'writing-on-github' ), |
|
95 | + 'help_text' => __("A <a href='https://github.com/settings/tokens/new'>personal oauth token</a> with <code>public_repo</code> scope.", 'writing-on-github'), |
|
96 | 96 | ) |
97 | 97 | ); |
98 | 98 | |
99 | - register_setting( Writing_On_GitHub::$text_domain, 'wogh_secret' ); |
|
100 | - add_settings_field( 'wogh_secret', __( 'Webhook Secret', 'writing-on-github' ), array( $this, 'field_callback' ), Writing_On_GitHub::$text_domain, 'general', array( |
|
99 | + register_setting(Writing_On_GitHub::$text_domain, 'wogh_secret'); |
|
100 | + add_settings_field('wogh_secret', __('Webhook Secret', 'writing-on-github'), array($this, 'field_callback'), Writing_On_GitHub::$text_domain, 'general', array( |
|
101 | 101 | 'default' => '', |
102 | 102 | 'name' => 'wogh_secret', |
103 | - 'help_text' => __( "The webhook's secret phrase. This should be password strength, as it is used to verify the webhook's payload.", 'writing-on-github' ), |
|
103 | + 'help_text' => __("The webhook's secret phrase. This should be password strength, as it is used to verify the webhook's payload.", 'writing-on-github'), |
|
104 | 104 | ) |
105 | 105 | ); |
106 | 106 | |
107 | - register_setting( Writing_On_GitHub::$text_domain, 'wogh_default_user' ); |
|
108 | - add_settings_field( 'wogh_default_user', __( 'Default Import User', 'writing-on-github' ), array( &$this, 'user_field_callback' ), Writing_On_GitHub::$text_domain, 'general', array( |
|
107 | + register_setting(Writing_On_GitHub::$text_domain, 'wogh_default_user'); |
|
108 | + add_settings_field('wogh_default_user', __('Default Import User', 'writing-on-github'), array(&$this, 'user_field_callback'), Writing_On_GitHub::$text_domain, 'general', array( |
|
109 | 109 | 'default' => '', |
110 | 110 | 'name' => 'wogh_default_user', |
111 | - 'help_text' => __( 'The fallback user for import, in case Writing On GitHub cannot find the committer in the database.', 'writing-on-github' ), |
|
111 | + 'help_text' => __('The fallback user for import, in case Writing On GitHub cannot find the committer in the database.', 'writing-on-github'), |
|
112 | 112 | ) |
113 | 113 | ); |
114 | 114 | |
115 | - register_setting( Writing_On_GitHub::$text_domain, 'wogh_ignore_author' ); |
|
116 | - add_settings_field( 'wogh_ignore_author', __( 'Ignore author', 'writing-on-github' ), array( &$this, 'checkbox_field_callback' ), Writing_On_GitHub::$text_domain, 'general', array( |
|
115 | + register_setting(Writing_On_GitHub::$text_domain, 'wogh_ignore_author'); |
|
116 | + add_settings_field('wogh_ignore_author', __('Ignore author', 'writing-on-github'), array(&$this, 'checkbox_field_callback'), Writing_On_GitHub::$text_domain, 'general', array( |
|
117 | 117 | 'default' => '', |
118 | 118 | 'name' => 'wogh_ignore_author', |
119 | - 'help_text' => __( 'Do not export author and do not use author info from GitHub.', 'writing-on-github' ), |
|
119 | + 'help_text' => __('Do not export author and do not use author info from GitHub.', 'writing-on-github'), |
|
120 | 120 | ) |
121 | 121 | ); |
122 | 122 | |
123 | - register_setting( Writing_On_GitHub::$text_domain, 'wogh_dont_export_content' ); |
|
124 | - add_settings_field( 'wogh_dont_export_content', __( 'Don\'t export content', 'writing-on-github' ), array( &$this, 'checkbox_field_callback' ), Writing_On_GitHub::$text_domain, 'general', array( |
|
123 | + register_setting(Writing_On_GitHub::$text_domain, 'wogh_dont_export_content'); |
|
124 | + add_settings_field('wogh_dont_export_content', __('Don\'t export content', 'writing-on-github'), array(&$this, 'checkbox_field_callback'), Writing_On_GitHub::$text_domain, 'general', array( |
|
125 | 125 | 'default' => '', |
126 | 126 | 'name' => 'wogh_dont_export_content', |
127 | - 'help_text' => __( 'Do not export post content to github, only export meta.', 'writing-on-github' ), |
|
127 | + 'help_text' => __('Do not export post content to github, only export meta.', 'writing-on-github'), |
|
128 | 128 | ) |
129 | 129 | ); |
130 | 130 | |
@@ -142,8 +142,8 @@ discard block |
||
142 | 142 | * |
143 | 143 | * @param array $args Field arguments. |
144 | 144 | */ |
145 | - public function field_callback( $args ) { |
|
146 | - include dirname( dirname( __FILE__ ) ) . '/views/setting-field.php'; |
|
145 | + public function field_callback($args) { |
|
146 | + include dirname(dirname(__FILE__)) . '/views/setting-field.php'; |
|
147 | 147 | } |
148 | 148 | |
149 | 149 | /** |
@@ -151,8 +151,8 @@ discard block |
||
151 | 151 | * |
152 | 152 | * @param array $args Field arguments. |
153 | 153 | */ |
154 | - public function user_field_callback( $args ) { |
|
155 | - include dirname( dirname( __FILE__ ) ) . '/views/user-setting-field.php'; |
|
154 | + public function user_field_callback($args) { |
|
155 | + include dirname(dirname(__FILE__)) . '/views/user-setting-field.php'; |
|
156 | 156 | } |
157 | 157 | |
158 | 158 | /** |
@@ -160,8 +160,8 @@ discard block |
||
160 | 160 | * |
161 | 161 | * @param array $args Field arguments. |
162 | 162 | */ |
163 | - public function textarea_field_callback( $args ) { |
|
164 | - include dirname( dirname( __FILE__ ) ) . '/views/textarea-setting-field.php'; |
|
163 | + public function textarea_field_callback($args) { |
|
164 | + include dirname(dirname(__FILE__)) . '/views/textarea-setting-field.php'; |
|
165 | 165 | } |
166 | 166 | |
167 | 167 | /** |
@@ -169,58 +169,58 @@ discard block |
||
169 | 169 | * |
170 | 170 | * @param array $args Field arguments. |
171 | 171 | */ |
172 | - public function checkbox_field_callback( $args ) { |
|
173 | - include dirname( dirname( __FILE__ ) ) . '/views/checkbox-setting-field.php'; |
|
172 | + public function checkbox_field_callback($args) { |
|
173 | + include dirname(dirname(__FILE__)) . '/views/checkbox-setting-field.php'; |
|
174 | 174 | } |
175 | 175 | |
176 | 176 | /** |
177 | 177 | * Displays settings messages from background processes |
178 | 178 | */ |
179 | 179 | public function section_callback() { |
180 | - if ( get_current_screen()->id !== 'settings_page_' . Writing_On_GitHub::$text_domain ) { |
|
180 | + if (get_current_screen()->id !== 'settings_page_' . Writing_On_GitHub::$text_domain) { |
|
181 | 181 | return; |
182 | 182 | } |
183 | 183 | |
184 | - if ( 'yes' === get_option( '_wogh_export_started' ) ) { ?> |
|
184 | + if ('yes' === get_option('_wogh_export_started')) { ?> |
|
185 | 185 | <div class="updated"> |
186 | - <p><?php esc_html_e( 'Export to GitHub started.', 'writing-on-github' ); ?></p> |
|
186 | + <p><?php esc_html_e('Export to GitHub started.', 'writing-on-github'); ?></p> |
|
187 | 187 | </div><?php |
188 | - delete_option( '_wogh_export_started' ); |
|
188 | + delete_option('_wogh_export_started'); |
|
189 | 189 | } |
190 | 190 | |
191 | - if ( $message = get_option( '_wogh_export_error' ) ) { ?> |
|
191 | + if ($message = get_option('_wogh_export_error')) { ?> |
|
192 | 192 | <div class="error"> |
193 | - <p><?php esc_html_e( 'Export to GitHub failed with error:', 'writing-on-github' ); ?> <?php echo esc_html( $message );?></p> |
|
193 | + <p><?php esc_html_e('Export to GitHub failed with error:', 'writing-on-github'); ?> <?php echo esc_html($message); ?></p> |
|
194 | 194 | </div><?php |
195 | - delete_option( '_wogh_export_error' ); |
|
195 | + delete_option('_wogh_export_error'); |
|
196 | 196 | } |
197 | 197 | |
198 | - if ( 'yes' === get_option( '_wogh_export_complete' ) ) { ?> |
|
198 | + if ('yes' === get_option('_wogh_export_complete')) { ?> |
|
199 | 199 | <div class="updated"> |
200 | - <p><?php esc_html_e( 'Export to GitHub completed successfully.', 'writing-on-github' );?></p> |
|
200 | + <p><?php esc_html_e('Export to GitHub completed successfully.', 'writing-on-github'); ?></p> |
|
201 | 201 | </div><?php |
202 | - delete_option( '_wogh_export_complete' ); |
|
202 | + delete_option('_wogh_export_complete'); |
|
203 | 203 | } |
204 | 204 | |
205 | - if ( 'yes' === get_option( '_wogh_import_started' ) ) { ?> |
|
205 | + if ('yes' === get_option('_wogh_import_started')) { ?> |
|
206 | 206 | <div class="updated"> |
207 | - <p><?php esc_html_e( 'Import from GitHub started.', 'writing-on-github' ); ?></p> |
|
207 | + <p><?php esc_html_e('Import from GitHub started.', 'writing-on-github'); ?></p> |
|
208 | 208 | </div><?php |
209 | - delete_option( '_wogh_import_started' ); |
|
209 | + delete_option('_wogh_import_started'); |
|
210 | 210 | } |
211 | 211 | |
212 | - if ( $message = get_option( '_wogh_import_error' ) ) { ?> |
|
212 | + if ($message = get_option('_wogh_import_error')) { ?> |
|
213 | 213 | <div class="error"> |
214 | - <p><?php esc_html_e( 'Import from GitHub failed with error:', 'writing-on-github' ); ?> <?php echo esc_html( $message );?></p> |
|
214 | + <p><?php esc_html_e('Import from GitHub failed with error:', 'writing-on-github'); ?> <?php echo esc_html($message); ?></p> |
|
215 | 215 | </div><?php |
216 | - delete_option( '_wogh_import_error' ); |
|
216 | + delete_option('_wogh_import_error'); |
|
217 | 217 | } |
218 | 218 | |
219 | - if ( 'yes' === get_option( '_wogh_import_complete' ) ) { ?> |
|
219 | + if ('yes' === get_option('_wogh_import_complete')) { ?> |
|
220 | 220 | <div class="updated"> |
221 | - <p><?php esc_html_e( 'Import from GitHub completed successfully.', 'writing-on-github' );?></p> |
|
221 | + <p><?php esc_html_e('Import from GitHub completed successfully.', 'writing-on-github'); ?></p> |
|
222 | 222 | </div><?php |
223 | - delete_option( '_wogh_import_complete' ); |
|
223 | + delete_option('_wogh_import_complete'); |
|
224 | 224 | } |
225 | 225 | } |
226 | 226 | |
@@ -229,11 +229,11 @@ discard block |
||
229 | 229 | */ |
230 | 230 | public function add_admin_menu() { |
231 | 231 | add_options_page( |
232 | - __( 'Writing On GitHub', 'writing-on-github' ), |
|
233 | - __( 'Writing On GitHub', 'writing-on-github' ), |
|
232 | + __('Writing On GitHub', 'writing-on-github'), |
|
233 | + __('Writing On GitHub', 'writing-on-github'), |
|
234 | 234 | 'manage_options', |
235 | 235 | Writing_On_GitHub::$text_domain, |
236 | - array( $this, 'settings_page' ) |
|
236 | + array($this, 'settings_page') |
|
237 | 237 | ); |
238 | 238 | } |
239 | 239 | |
@@ -241,31 +241,31 @@ discard block |
||
241 | 241 | * Admin callback to trigger import/export because WordPress admin routing lol |
242 | 242 | */ |
243 | 243 | public function trigger_cron() { |
244 | - if ( ! current_user_can( 'manage_options' ) ) { |
|
244 | + if ( ! current_user_can('manage_options')) { |
|
245 | 245 | return; |
246 | 246 | } |
247 | 247 | |
248 | - if ( get_current_screen()->id !== 'settings_page_' . Writing_On_GitHub::$text_domain ) { |
|
248 | + if (get_current_screen()->id !== 'settings_page_' . Writing_On_GitHub::$text_domain) { |
|
249 | 249 | return; |
250 | 250 | } |
251 | 251 | |
252 | - if ( ! isset( $_GET['action'] ) ) { |
|
252 | + if ( ! isset($_GET['action'])) { |
|
253 | 253 | return; |
254 | 254 | } |
255 | 255 | |
256 | - if ( 'export' === $_GET['action'] ) { |
|
256 | + if ('export' === $_GET['action']) { |
|
257 | 257 | Writing_On_GitHub::$instance->start_export(); |
258 | 258 | } |
259 | 259 | |
260 | - if ( 'force_export' === $_GET['action'] ) { |
|
260 | + if ('force_export' === $_GET['action']) { |
|
261 | 261 | Writing_On_GitHub::$instance->start_export(true); |
262 | 262 | } |
263 | 263 | |
264 | - if ( 'import' === $_GET['action'] ) { |
|
264 | + if ('import' === $_GET['action']) { |
|
265 | 265 | Writing_On_GitHub::$instance->start_import(); |
266 | 266 | } |
267 | 267 | |
268 | - wp_redirect( admin_url( 'options-general.php?page=writing-on-github' ) ); |
|
268 | + wp_redirect(admin_url('options-general.php?page=writing-on-github')); |
|
269 | 269 | die; |
270 | 270 | } |
271 | 271 | } |
@@ -14,391 +14,391 @@ |
||
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' ) ); |
21 | 21 | |
22 | 22 | class Writing_On_GitHub { |
23 | 23 | |
24 | - /** |
|
25 | - * Object instance |
|
26 | - * @var self |
|
27 | - */ |
|
28 | - public static $instance; |
|
29 | - |
|
30 | - /** |
|
31 | - * Language text domain |
|
32 | - * @var string |
|
33 | - */ |
|
34 | - public static $text_domain = 'writing-on-github'; |
|
35 | - |
|
36 | - /** |
|
37 | - * Controller object |
|
38 | - * @var Writing_On_GitHub_Controller |
|
39 | - */ |
|
40 | - public $controller; |
|
41 | - |
|
42 | - /** |
|
43 | - * Controller object |
|
44 | - * @var Writing_On_GitHub_Admin |
|
45 | - */ |
|
46 | - public $admin; |
|
47 | - |
|
48 | - /** |
|
49 | - * CLI object. |
|
50 | - * |
|
51 | - * @var Writing_On_GitHub_CLI |
|
52 | - */ |
|
53 | - protected $cli; |
|
54 | - |
|
55 | - /** |
|
56 | - * Request object. |
|
57 | - * |
|
58 | - * @var Writing_On_GitHub_Request |
|
59 | - */ |
|
60 | - protected $request; |
|
61 | - |
|
62 | - /** |
|
63 | - * Response object. |
|
64 | - * |
|
65 | - * @var Writing_On_GitHub_Response |
|
66 | - */ |
|
67 | - protected $response; |
|
68 | - |
|
69 | - /** |
|
70 | - * Api object. |
|
71 | - * |
|
72 | - * @var Writing_On_GitHub_Api |
|
73 | - */ |
|
74 | - protected $api; |
|
75 | - |
|
76 | - /** |
|
77 | - * Import object. |
|
78 | - * |
|
79 | - * @var Writing_On_GitHub_Import |
|
80 | - */ |
|
81 | - protected $import; |
|
82 | - |
|
83 | - /** |
|
84 | - * Export object. |
|
85 | - * |
|
86 | - * @var Writing_On_GitHub_Export |
|
87 | - */ |
|
88 | - protected $export; |
|
89 | - |
|
90 | - /** |
|
91 | - * Semaphore object. |
|
92 | - * |
|
93 | - * @var Writing_On_GitHub_Semaphore |
|
94 | - */ |
|
95 | - protected $semaphore; |
|
96 | - |
|
97 | - /** |
|
98 | - * Database object. |
|
99 | - * |
|
100 | - * @var Writing_On_GitHub_Database |
|
101 | - */ |
|
102 | - protected $database; |
|
103 | - |
|
104 | - /** |
|
105 | - * Called at load time, hooks into WP core |
|
106 | - */ |
|
107 | - public function __construct() { |
|
108 | - self::$instance = $this; |
|
109 | - |
|
110 | - if ( is_admin() ) { |
|
111 | - $this->admin = new Writing_On_GitHub_Admin( plugin_basename( __FILE__ ) ); |
|
112 | - } |
|
113 | - |
|
114 | - $this->controller = new Writing_On_GitHub_Controller( $this ); |
|
115 | - |
|
116 | - if ( defined( 'WP_CLI' ) && WP_CLI ) { |
|
117 | - WP_CLI::add_command( 'wogh', $this->cli() ); |
|
118 | - } |
|
119 | - } |
|
120 | - |
|
121 | - /** |
|
122 | - * Attaches the plugin's hooks into WordPress. |
|
123 | - */ |
|
124 | - public function boot() { |
|
125 | - register_activation_hook( __FILE__, array( $this, 'activate' ) ); |
|
126 | - add_action( 'admin_notices', array( $this, 'activation_notice' ) ); |
|
127 | - |
|
128 | - add_action( 'init', array( $this, 'l10n' ) ); |
|
129 | - |
|
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 ); |
|
137 | - |
|
138 | - // add_filter( 'wogh_post_meta', array( $this, 'ignore_post_meta' ), 10, 1 ); |
|
139 | - // add_filter( 'wogh_pre_import_meta', array( $this, 'ignore_post_meta' ), 10, 1 ); |
|
140 | - add_filter( 'the_content', array( $this, 'the_content' ) ); |
|
141 | - |
|
142 | - do_action( 'wogh_boot', $this ); |
|
143 | - } |
|
144 | - |
|
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() ) { |
|
149 | - return $post->github_edit_url(); |
|
150 | - } |
|
151 | - } |
|
152 | - |
|
153 | - return $link; |
|
154 | - } |
|
155 | - |
|
156 | - public function ignore_post_meta($meta) { |
|
157 | - $ignore_meta_keys = get_option('wogh_ignore_metas'); |
|
158 | - if (empty($ignore_meta_keys)) { |
|
159 | - return $meta; |
|
160 | - } |
|
161 | - |
|
162 | - $keys = preg_split("/\\r\\n|\\r|\\n/", $ignore_meta_keys); |
|
163 | - if (empty($keys)) { |
|
164 | - return $meta; |
|
165 | - } |
|
166 | - foreach ($keys as $key => $value) { |
|
167 | - $keys[$key] = trim($value); |
|
168 | - } |
|
169 | - |
|
170 | - foreach ($meta as $key => $value) { |
|
171 | - if (in_array($key, $keys)) { |
|
172 | - unset($meta[$key]); |
|
173 | - } |
|
174 | - } |
|
175 | - |
|
176 | - return $meta; |
|
177 | - } |
|
178 | - |
|
179 | - public function the_content($content) { |
|
180 | - $arr = wp_upload_dir(); |
|
181 | - $baseurl = $arr['baseurl'] . '/writing-on-github'; |
|
182 | - |
|
183 | - $content = preg_replace_callback( |
|
184 | - '/(<img [^>]*?src=[\'"])\s*(\/images\/[^\s#]\S+)\s*([\'"][^>]*?>)/', |
|
185 | - function($matchs) use ($baseurl) { |
|
186 | - $url = $baseurl . $matchs[2]; |
|
187 | - return "${matchs[1]}$url${matchs[3]}"; |
|
188 | - }, |
|
189 | - $content |
|
190 | - ); |
|
191 | - |
|
192 | - $content = preg_replace_callback( |
|
193 | - '/(<a [^>]*?href=[\'"])\s*(\/images\/[^\s#]\S+)\s*([\'"][^>]*?>)/', |
|
194 | - function($matchs) use ($baseurl) { |
|
195 | - $url = $baseurl . $matchs[2]; |
|
196 | - return "${matchs[1]}$url${matchs[3]}"; |
|
197 | - }, |
|
198 | - $content |
|
199 | - ); |
|
200 | - return $content; |
|
201 | - } |
|
202 | - |
|
203 | - /** |
|
204 | - * Init i18n files |
|
205 | - */ |
|
206 | - public function l10n() { |
|
207 | - load_plugin_textdomain( self::$text_domain ); |
|
208 | - } |
|
209 | - |
|
210 | - /** |
|
211 | - * Sets and kicks off the export cronjob |
|
212 | - */ |
|
213 | - public function start_export( $force = false ) { |
|
214 | - $this->start_cron( 'export', $force ); |
|
215 | - } |
|
216 | - |
|
217 | - /** |
|
218 | - * Sets and kicks off the import cronjob |
|
219 | - */ |
|
220 | - public function start_import() { |
|
221 | - $this->start_cron( 'import' ); |
|
222 | - } |
|
223 | - |
|
224 | - /** |
|
225 | - * Enables the admin notice on initial activation |
|
226 | - */ |
|
227 | - public function activate() { |
|
228 | - if ( 'yes' !== get_option( '_wogh_fully_exported' ) ) { |
|
229 | - set_transient( '_wogh_activated', 'yes' ); |
|
230 | - } |
|
231 | - } |
|
232 | - |
|
233 | - /** |
|
234 | - * Displays the activation admin notice |
|
235 | - */ |
|
236 | - public function activation_notice() { |
|
237 | - if ( ! get_transient( '_wogh_activated' ) ) { |
|
238 | - return; |
|
239 | - } |
|
240 | - |
|
241 | - delete_transient( '_wogh_activated' ); |
|
242 | - |
|
243 | - ?><div class="updated"> |
|
24 | + /** |
|
25 | + * Object instance |
|
26 | + * @var self |
|
27 | + */ |
|
28 | + public static $instance; |
|
29 | + |
|
30 | + /** |
|
31 | + * Language text domain |
|
32 | + * @var string |
|
33 | + */ |
|
34 | + public static $text_domain = 'writing-on-github'; |
|
35 | + |
|
36 | + /** |
|
37 | + * Controller object |
|
38 | + * @var Writing_On_GitHub_Controller |
|
39 | + */ |
|
40 | + public $controller; |
|
41 | + |
|
42 | + /** |
|
43 | + * Controller object |
|
44 | + * @var Writing_On_GitHub_Admin |
|
45 | + */ |
|
46 | + public $admin; |
|
47 | + |
|
48 | + /** |
|
49 | + * CLI object. |
|
50 | + * |
|
51 | + * @var Writing_On_GitHub_CLI |
|
52 | + */ |
|
53 | + protected $cli; |
|
54 | + |
|
55 | + /** |
|
56 | + * Request object. |
|
57 | + * |
|
58 | + * @var Writing_On_GitHub_Request |
|
59 | + */ |
|
60 | + protected $request; |
|
61 | + |
|
62 | + /** |
|
63 | + * Response object. |
|
64 | + * |
|
65 | + * @var Writing_On_GitHub_Response |
|
66 | + */ |
|
67 | + protected $response; |
|
68 | + |
|
69 | + /** |
|
70 | + * Api object. |
|
71 | + * |
|
72 | + * @var Writing_On_GitHub_Api |
|
73 | + */ |
|
74 | + protected $api; |
|
75 | + |
|
76 | + /** |
|
77 | + * Import object. |
|
78 | + * |
|
79 | + * @var Writing_On_GitHub_Import |
|
80 | + */ |
|
81 | + protected $import; |
|
82 | + |
|
83 | + /** |
|
84 | + * Export object. |
|
85 | + * |
|
86 | + * @var Writing_On_GitHub_Export |
|
87 | + */ |
|
88 | + protected $export; |
|
89 | + |
|
90 | + /** |
|
91 | + * Semaphore object. |
|
92 | + * |
|
93 | + * @var Writing_On_GitHub_Semaphore |
|
94 | + */ |
|
95 | + protected $semaphore; |
|
96 | + |
|
97 | + /** |
|
98 | + * Database object. |
|
99 | + * |
|
100 | + * @var Writing_On_GitHub_Database |
|
101 | + */ |
|
102 | + protected $database; |
|
103 | + |
|
104 | + /** |
|
105 | + * Called at load time, hooks into WP core |
|
106 | + */ |
|
107 | + public function __construct() { |
|
108 | + self::$instance = $this; |
|
109 | + |
|
110 | + if ( is_admin() ) { |
|
111 | + $this->admin = new Writing_On_GitHub_Admin( plugin_basename( __FILE__ ) ); |
|
112 | + } |
|
113 | + |
|
114 | + $this->controller = new Writing_On_GitHub_Controller( $this ); |
|
115 | + |
|
116 | + if ( defined( 'WP_CLI' ) && WP_CLI ) { |
|
117 | + WP_CLI::add_command( 'wogh', $this->cli() ); |
|
118 | + } |
|
119 | + } |
|
120 | + |
|
121 | + /** |
|
122 | + * Attaches the plugin's hooks into WordPress. |
|
123 | + */ |
|
124 | + public function boot() { |
|
125 | + register_activation_hook( __FILE__, array( $this, 'activate' ) ); |
|
126 | + add_action( 'admin_notices', array( $this, 'activation_notice' ) ); |
|
127 | + |
|
128 | + add_action( 'init', array( $this, 'l10n' ) ); |
|
129 | + |
|
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 ); |
|
137 | + |
|
138 | + // add_filter( 'wogh_post_meta', array( $this, 'ignore_post_meta' ), 10, 1 ); |
|
139 | + // add_filter( 'wogh_pre_import_meta', array( $this, 'ignore_post_meta' ), 10, 1 ); |
|
140 | + add_filter( 'the_content', array( $this, 'the_content' ) ); |
|
141 | + |
|
142 | + do_action( 'wogh_boot', $this ); |
|
143 | + } |
|
144 | + |
|
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() ) { |
|
149 | + return $post->github_edit_url(); |
|
150 | + } |
|
151 | + } |
|
152 | + |
|
153 | + return $link; |
|
154 | + } |
|
155 | + |
|
156 | + public function ignore_post_meta($meta) { |
|
157 | + $ignore_meta_keys = get_option('wogh_ignore_metas'); |
|
158 | + if (empty($ignore_meta_keys)) { |
|
159 | + return $meta; |
|
160 | + } |
|
161 | + |
|
162 | + $keys = preg_split("/\\r\\n|\\r|\\n/", $ignore_meta_keys); |
|
163 | + if (empty($keys)) { |
|
164 | + return $meta; |
|
165 | + } |
|
166 | + foreach ($keys as $key => $value) { |
|
167 | + $keys[$key] = trim($value); |
|
168 | + } |
|
169 | + |
|
170 | + foreach ($meta as $key => $value) { |
|
171 | + if (in_array($key, $keys)) { |
|
172 | + unset($meta[$key]); |
|
173 | + } |
|
174 | + } |
|
175 | + |
|
176 | + return $meta; |
|
177 | + } |
|
178 | + |
|
179 | + public function the_content($content) { |
|
180 | + $arr = wp_upload_dir(); |
|
181 | + $baseurl = $arr['baseurl'] . '/writing-on-github'; |
|
182 | + |
|
183 | + $content = preg_replace_callback( |
|
184 | + '/(<img [^>]*?src=[\'"])\s*(\/images\/[^\s#]\S+)\s*([\'"][^>]*?>)/', |
|
185 | + function($matchs) use ($baseurl) { |
|
186 | + $url = $baseurl . $matchs[2]; |
|
187 | + return "${matchs[1]}$url${matchs[3]}"; |
|
188 | + }, |
|
189 | + $content |
|
190 | + ); |
|
191 | + |
|
192 | + $content = preg_replace_callback( |
|
193 | + '/(<a [^>]*?href=[\'"])\s*(\/images\/[^\s#]\S+)\s*([\'"][^>]*?>)/', |
|
194 | + function($matchs) use ($baseurl) { |
|
195 | + $url = $baseurl . $matchs[2]; |
|
196 | + return "${matchs[1]}$url${matchs[3]}"; |
|
197 | + }, |
|
198 | + $content |
|
199 | + ); |
|
200 | + return $content; |
|
201 | + } |
|
202 | + |
|
203 | + /** |
|
204 | + * Init i18n files |
|
205 | + */ |
|
206 | + public function l10n() { |
|
207 | + load_plugin_textdomain( self::$text_domain ); |
|
208 | + } |
|
209 | + |
|
210 | + /** |
|
211 | + * Sets and kicks off the export cronjob |
|
212 | + */ |
|
213 | + public function start_export( $force = false ) { |
|
214 | + $this->start_cron( 'export', $force ); |
|
215 | + } |
|
216 | + |
|
217 | + /** |
|
218 | + * Sets and kicks off the import cronjob |
|
219 | + */ |
|
220 | + public function start_import() { |
|
221 | + $this->start_cron( 'import' ); |
|
222 | + } |
|
223 | + |
|
224 | + /** |
|
225 | + * Enables the admin notice on initial activation |
|
226 | + */ |
|
227 | + public function activate() { |
|
228 | + if ( 'yes' !== get_option( '_wogh_fully_exported' ) ) { |
|
229 | + set_transient( '_wogh_activated', 'yes' ); |
|
230 | + } |
|
231 | + } |
|
232 | + |
|
233 | + /** |
|
234 | + * Displays the activation admin notice |
|
235 | + */ |
|
236 | + public function activation_notice() { |
|
237 | + if ( ! get_transient( '_wogh_activated' ) ) { |
|
238 | + return; |
|
239 | + } |
|
240 | + |
|
241 | + delete_transient( '_wogh_activated' ); |
|
242 | + |
|
243 | + ?><div class="updated"> |
|
244 | 244 | <p> |
245 | 245 | <?php |
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) |
|
249 | - ); |
|
250 | - ?> |
|
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) |
|
249 | + ); |
|
250 | + ?> |
|
251 | 251 | </p> |
252 | 252 | </div><?php |
253 | - } |
|
254 | - |
|
255 | - /** |
|
256 | - * Get the Controller object. |
|
257 | - * |
|
258 | - * @return Writing_On_GitHub_Controller |
|
259 | - */ |
|
260 | - public function controller() { |
|
261 | - return $this->controller; |
|
262 | - } |
|
263 | - |
|
264 | - /** |
|
265 | - * Lazy-load the CLI object. |
|
266 | - * |
|
267 | - * @return Writing_On_GitHub_CLI |
|
268 | - */ |
|
269 | - public function cli() { |
|
270 | - if ( ! $this->cli ) { |
|
271 | - $this->cli = new Writing_On_GitHub_CLI; |
|
272 | - } |
|
273 | - |
|
274 | - return $this->cli; |
|
275 | - } |
|
276 | - |
|
277 | - /** |
|
278 | - * Lazy-load the Request object. |
|
279 | - * |
|
280 | - * @return Writing_On_GitHub_Request |
|
281 | - */ |
|
282 | - public function request() { |
|
283 | - if ( ! $this->request ) { |
|
284 | - $this->request = new Writing_On_GitHub_Request( $this ); |
|
285 | - } |
|
286 | - |
|
287 | - return $this->request; |
|
288 | - } |
|
289 | - |
|
290 | - /** |
|
291 | - * Lazy-load the Response object. |
|
292 | - * |
|
293 | - * @return Writing_On_GitHub_Response |
|
294 | - */ |
|
295 | - public function response() { |
|
296 | - if ( ! $this->response ) { |
|
297 | - $this->response = new Writing_On_GitHub_Response( $this ); |
|
298 | - } |
|
299 | - |
|
300 | - return $this->response; |
|
301 | - } |
|
302 | - |
|
303 | - /** |
|
304 | - * Lazy-load the Api object. |
|
305 | - * |
|
306 | - * @return Writing_On_GitHub_Api |
|
307 | - */ |
|
308 | - public function api() { |
|
309 | - if ( ! $this->api ) { |
|
310 | - $this->api = new Writing_On_GitHub_Api( $this ); |
|
311 | - } |
|
312 | - |
|
313 | - return $this->api; |
|
314 | - } |
|
315 | - |
|
316 | - /** |
|
317 | - * Lazy-load the Import object. |
|
318 | - * |
|
319 | - * @return Writing_On_GitHub_Import |
|
320 | - */ |
|
321 | - public function import() { |
|
322 | - if ( ! $this->import ) { |
|
323 | - $this->import = new Writing_On_GitHub_Import( $this ); |
|
324 | - } |
|
325 | - |
|
326 | - return $this->import; |
|
327 | - } |
|
328 | - |
|
329 | - /** |
|
330 | - * Lazy-load the Export object. |
|
331 | - * |
|
332 | - * @return Writing_On_GitHub_Export |
|
333 | - */ |
|
334 | - public function export() { |
|
335 | - if ( ! $this->export ) { |
|
336 | - $this->export = new Writing_On_GitHub_Export( $this ); |
|
337 | - } |
|
338 | - |
|
339 | - return $this->export; |
|
340 | - } |
|
341 | - |
|
342 | - /** |
|
343 | - * Lazy-load the Semaphore object. |
|
344 | - * |
|
345 | - * @return Writing_On_GitHub_Semaphore |
|
346 | - */ |
|
347 | - public function semaphore() { |
|
348 | - if ( ! $this->semaphore ) { |
|
349 | - $this->semaphore = new Writing_On_GitHub_Semaphore; |
|
350 | - } |
|
351 | - |
|
352 | - return $this->semaphore; |
|
353 | - } |
|
354 | - |
|
355 | - /** |
|
356 | - * Lazy-load the Database object. |
|
357 | - * |
|
358 | - * @return Writing_On_GitHub_Database |
|
359 | - */ |
|
360 | - public function database() { |
|
361 | - if ( ! $this->database ) { |
|
362 | - $this->database = new Writing_On_GitHub_Database( $this ); |
|
363 | - } |
|
364 | - |
|
365 | - return $this->database; |
|
366 | - } |
|
367 | - |
|
368 | - /** |
|
369 | - * Print to WP_CLI if in CLI environment or |
|
370 | - * write to debug.log if WP_DEBUG is enabled |
|
371 | - * @source http://www.stumiller.me/sending-output-to-the-wordpress-debug-log/ |
|
372 | - * |
|
373 | - * @param mixed $msg |
|
374 | - * @param string $write |
|
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 ); |
|
380 | - } else { |
|
381 | - WP_CLI::$write( $msg ); |
|
382 | - } |
|
383 | - } elseif ( true === WP_DEBUG ) { |
|
384 | - if ( is_array( $msg ) || is_object( $msg ) ) { |
|
385 | - error_log( print_r( $msg, true ) ); |
|
386 | - } else { |
|
387 | - error_log( $msg ); |
|
388 | - } |
|
389 | - } |
|
390 | - } |
|
391 | - |
|
392 | - /** |
|
393 | - * Kicks of an import or export cronjob. |
|
394 | - * |
|
395 | - * @param bool $force |
|
396 | - * @param string $type |
|
397 | - */ |
|
398 | - protected function start_cron( $type, $force = false ) { |
|
399 | - update_option( '_wogh_' . $type . '_started', 'yes' ); |
|
400 | - $user_id = get_current_user_id(); |
|
401 | - wp_schedule_single_event( time(), 'wogh_' . $type . '', array( $user_id, $force ) ); |
|
402 | - spawn_cron(); |
|
403 | - } |
|
253 | + } |
|
254 | + |
|
255 | + /** |
|
256 | + * Get the Controller object. |
|
257 | + * |
|
258 | + * @return Writing_On_GitHub_Controller |
|
259 | + */ |
|
260 | + public function controller() { |
|
261 | + return $this->controller; |
|
262 | + } |
|
263 | + |
|
264 | + /** |
|
265 | + * Lazy-load the CLI object. |
|
266 | + * |
|
267 | + * @return Writing_On_GitHub_CLI |
|
268 | + */ |
|
269 | + public function cli() { |
|
270 | + if ( ! $this->cli ) { |
|
271 | + $this->cli = new Writing_On_GitHub_CLI; |
|
272 | + } |
|
273 | + |
|
274 | + return $this->cli; |
|
275 | + } |
|
276 | + |
|
277 | + /** |
|
278 | + * Lazy-load the Request object. |
|
279 | + * |
|
280 | + * @return Writing_On_GitHub_Request |
|
281 | + */ |
|
282 | + public function request() { |
|
283 | + if ( ! $this->request ) { |
|
284 | + $this->request = new Writing_On_GitHub_Request( $this ); |
|
285 | + } |
|
286 | + |
|
287 | + return $this->request; |
|
288 | + } |
|
289 | + |
|
290 | + /** |
|
291 | + * Lazy-load the Response object. |
|
292 | + * |
|
293 | + * @return Writing_On_GitHub_Response |
|
294 | + */ |
|
295 | + public function response() { |
|
296 | + if ( ! $this->response ) { |
|
297 | + $this->response = new Writing_On_GitHub_Response( $this ); |
|
298 | + } |
|
299 | + |
|
300 | + return $this->response; |
|
301 | + } |
|
302 | + |
|
303 | + /** |
|
304 | + * Lazy-load the Api object. |
|
305 | + * |
|
306 | + * @return Writing_On_GitHub_Api |
|
307 | + */ |
|
308 | + public function api() { |
|
309 | + if ( ! $this->api ) { |
|
310 | + $this->api = new Writing_On_GitHub_Api( $this ); |
|
311 | + } |
|
312 | + |
|
313 | + return $this->api; |
|
314 | + } |
|
315 | + |
|
316 | + /** |
|
317 | + * Lazy-load the Import object. |
|
318 | + * |
|
319 | + * @return Writing_On_GitHub_Import |
|
320 | + */ |
|
321 | + public function import() { |
|
322 | + if ( ! $this->import ) { |
|
323 | + $this->import = new Writing_On_GitHub_Import( $this ); |
|
324 | + } |
|
325 | + |
|
326 | + return $this->import; |
|
327 | + } |
|
328 | + |
|
329 | + /** |
|
330 | + * Lazy-load the Export object. |
|
331 | + * |
|
332 | + * @return Writing_On_GitHub_Export |
|
333 | + */ |
|
334 | + public function export() { |
|
335 | + if ( ! $this->export ) { |
|
336 | + $this->export = new Writing_On_GitHub_Export( $this ); |
|
337 | + } |
|
338 | + |
|
339 | + return $this->export; |
|
340 | + } |
|
341 | + |
|
342 | + /** |
|
343 | + * Lazy-load the Semaphore object. |
|
344 | + * |
|
345 | + * @return Writing_On_GitHub_Semaphore |
|
346 | + */ |
|
347 | + public function semaphore() { |
|
348 | + if ( ! $this->semaphore ) { |
|
349 | + $this->semaphore = new Writing_On_GitHub_Semaphore; |
|
350 | + } |
|
351 | + |
|
352 | + return $this->semaphore; |
|
353 | + } |
|
354 | + |
|
355 | + /** |
|
356 | + * Lazy-load the Database object. |
|
357 | + * |
|
358 | + * @return Writing_On_GitHub_Database |
|
359 | + */ |
|
360 | + public function database() { |
|
361 | + if ( ! $this->database ) { |
|
362 | + $this->database = new Writing_On_GitHub_Database( $this ); |
|
363 | + } |
|
364 | + |
|
365 | + return $this->database; |
|
366 | + } |
|
367 | + |
|
368 | + /** |
|
369 | + * Print to WP_CLI if in CLI environment or |
|
370 | + * write to debug.log if WP_DEBUG is enabled |
|
371 | + * @source http://www.stumiller.me/sending-output-to-the-wordpress-debug-log/ |
|
372 | + * |
|
373 | + * @param mixed $msg |
|
374 | + * @param string $write |
|
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 ); |
|
380 | + } else { |
|
381 | + WP_CLI::$write( $msg ); |
|
382 | + } |
|
383 | + } elseif ( true === WP_DEBUG ) { |
|
384 | + if ( is_array( $msg ) || is_object( $msg ) ) { |
|
385 | + error_log( print_r( $msg, true ) ); |
|
386 | + } else { |
|
387 | + error_log( $msg ); |
|
388 | + } |
|
389 | + } |
|
390 | + } |
|
391 | + |
|
392 | + /** |
|
393 | + * Kicks of an import or export cronjob. |
|
394 | + * |
|
395 | + * @param bool $force |
|
396 | + * @param string $type |
|
397 | + */ |
|
398 | + protected function start_cron( $type, $force = false ) { |
|
399 | + update_option( '_wogh_' . $type . '_started', 'yes' ); |
|
400 | + $user_id = get_current_user_id(); |
|
401 | + wp_schedule_single_event( time(), 'wogh_' . $type . '', array( $user_id, $force ) ); |
|
402 | + spawn_cron(); |
|
403 | + } |
|
404 | 404 | } |
@@ -12,12 +12,12 @@ discard block |
||
12 | 12 | |
13 | 13 | // If the functions have already been autoloaded, don't reload. |
14 | 14 | // This fixes function duplication during unit testing. |
15 | -$path = dirname( __FILE__ ) . '/vendor/autoload.php'; |
|
16 | -if ( file_exists( $path ) ) { |
|
17 | - require_once( $path ); |
|
15 | +$path = dirname(__FILE__) . '/vendor/autoload.php'; |
|
16 | +if (file_exists($path)) { |
|
17 | + require_once($path); |
|
18 | 18 | } |
19 | 19 | |
20 | -add_action( 'plugins_loaded', array( new Writing_On_GitHub, 'boot' ) ); |
|
20 | +add_action('plugins_loaded', array(new Writing_On_GitHub, 'boot')); |
|
21 | 21 | |
22 | 22 | class Writing_On_GitHub { |
23 | 23 | |
@@ -107,14 +107,14 @@ discard block |
||
107 | 107 | public function __construct() { |
108 | 108 | self::$instance = $this; |
109 | 109 | |
110 | - if ( is_admin() ) { |
|
111 | - $this->admin = new Writing_On_GitHub_Admin( plugin_basename( __FILE__ ) ); |
|
110 | + if (is_admin()) { |
|
111 | + $this->admin = new Writing_On_GitHub_Admin(plugin_basename(__FILE__)); |
|
112 | 112 | } |
113 | 113 | |
114 | - $this->controller = new Writing_On_GitHub_Controller( $this ); |
|
114 | + $this->controller = new Writing_On_GitHub_Controller($this); |
|
115 | 115 | |
116 | - if ( defined( 'WP_CLI' ) && WP_CLI ) { |
|
117 | - WP_CLI::add_command( 'wogh', $this->cli() ); |
|
116 | + if (defined('WP_CLI') && WP_CLI) { |
|
117 | + WP_CLI::add_command('wogh', $this->cli()); |
|
118 | 118 | } |
119 | 119 | } |
120 | 120 | |
@@ -122,30 +122,30 @@ discard block |
||
122 | 122 | * Attaches the plugin's hooks into WordPress. |
123 | 123 | */ |
124 | 124 | public function boot() { |
125 | - register_activation_hook( __FILE__, array( $this, 'activate' ) ); |
|
126 | - add_action( 'admin_notices', array( $this, 'activation_notice' ) ); |
|
125 | + register_activation_hook(__FILE__, array($this, 'activate')); |
|
126 | + add_action('admin_notices', array($this, 'activation_notice')); |
|
127 | 127 | |
128 | - add_action( 'init', array( $this, 'l10n' ) ); |
|
128 | + add_action('init', array($this, 'l10n')); |
|
129 | 129 | |
130 | 130 | // Controller actions. |
131 | - add_action( 'save_post', array( $this->controller, 'export_post' ) ); |
|
132 | - add_action( 'delete_post', array( $this->controller, 'delete_post' ) ); |
|
133 | - add_action( 'wp_ajax_nopriv_wogh_push_request', array( $this->controller, 'pull_posts' ) ); |
|
134 | - add_action( 'wogh_export', array( $this->controller, 'export_all' ), 10, 2 ); |
|
135 | - add_action( 'wogh_import', array( $this->controller, 'import_master' ), 10, 1 ); |
|
136 | - add_filter( 'get_edit_post_link', array( $this, 'edit_post_link' ), 10, 3 ); |
|
131 | + add_action('save_post', array($this->controller, 'export_post')); |
|
132 | + add_action('delete_post', array($this->controller, 'delete_post')); |
|
133 | + add_action('wp_ajax_nopriv_wogh_push_request', array($this->controller, 'pull_posts')); |
|
134 | + add_action('wogh_export', array($this->controller, 'export_all'), 10, 2); |
|
135 | + add_action('wogh_import', array($this->controller, 'import_master'), 10, 1); |
|
136 | + add_filter('get_edit_post_link', array($this, 'edit_post_link'), 10, 3); |
|
137 | 137 | |
138 | 138 | // add_filter( 'wogh_post_meta', array( $this, 'ignore_post_meta' ), 10, 1 ); |
139 | 139 | // add_filter( 'wogh_pre_import_meta', array( $this, 'ignore_post_meta' ), 10, 1 ); |
140 | - add_filter( 'the_content', array( $this, 'the_content' ) ); |
|
140 | + add_filter('the_content', array($this, 'the_content')); |
|
141 | 141 | |
142 | - do_action( 'wogh_boot', $this ); |
|
142 | + do_action('wogh_boot', $this); |
|
143 | 143 | } |
144 | 144 | |
145 | 145 | public function edit_post_link($link, $postID, $context) { |
146 | - if ( ! wp_is_post_revision( $postID ) ) { |
|
147 | - $post = new Writing_On_GitHub_Post( $postID, Writing_On_GitHub::$instance->api() ); |
|
148 | - if ( $post->is_on_github() ) { |
|
146 | + if ( ! wp_is_post_revision($postID)) { |
|
147 | + $post = new Writing_On_GitHub_Post($postID, Writing_On_GitHub::$instance->api()); |
|
148 | + if ($post->is_on_github()) { |
|
149 | 149 | return $post->github_edit_url(); |
150 | 150 | } |
151 | 151 | } |
@@ -204,29 +204,29 @@ discard block |
||
204 | 204 | * Init i18n files |
205 | 205 | */ |
206 | 206 | public function l10n() { |
207 | - load_plugin_textdomain( self::$text_domain ); |
|
207 | + load_plugin_textdomain(self::$text_domain); |
|
208 | 208 | } |
209 | 209 | |
210 | 210 | /** |
211 | 211 | * Sets and kicks off the export cronjob |
212 | 212 | */ |
213 | - public function start_export( $force = false ) { |
|
214 | - $this->start_cron( 'export', $force ); |
|
213 | + public function start_export($force = false) { |
|
214 | + $this->start_cron('export', $force); |
|
215 | 215 | } |
216 | 216 | |
217 | 217 | /** |
218 | 218 | * Sets and kicks off the import cronjob |
219 | 219 | */ |
220 | 220 | public function start_import() { |
221 | - $this->start_cron( 'import' ); |
|
221 | + $this->start_cron('import'); |
|
222 | 222 | } |
223 | 223 | |
224 | 224 | /** |
225 | 225 | * Enables the admin notice on initial activation |
226 | 226 | */ |
227 | 227 | public function activate() { |
228 | - if ( 'yes' !== get_option( '_wogh_fully_exported' ) ) { |
|
229 | - set_transient( '_wogh_activated', 'yes' ); |
|
228 | + if ('yes' !== get_option('_wogh_fully_exported')) { |
|
229 | + set_transient('_wogh_activated', 'yes'); |
|
230 | 230 | } |
231 | 231 | } |
232 | 232 | |
@@ -234,18 +234,18 @@ discard block |
||
234 | 234 | * Displays the activation admin notice |
235 | 235 | */ |
236 | 236 | public function activation_notice() { |
237 | - if ( ! get_transient( '_wogh_activated' ) ) { |
|
237 | + if ( ! get_transient('_wogh_activated')) { |
|
238 | 238 | return; |
239 | 239 | } |
240 | 240 | |
241 | - delete_transient( '_wogh_activated' ); |
|
241 | + delete_transient('_wogh_activated'); |
|
242 | 242 | |
243 | 243 | ?><div class="updated"> |
244 | 244 | <p> |
245 | 245 | <?php |
246 | 246 | printf( |
247 | - __( 'To set up your site to sync with GitHub, update your <a href="%s">settings</a> and click "Export to GitHub."', 'writing-on-github' ), |
|
248 | - admin_url( 'options-general.php?page=' . static::$text_domain) |
|
247 | + __('To set up your site to sync with GitHub, update your <a href="%s">settings</a> and click "Export to GitHub."', 'writing-on-github'), |
|
248 | + admin_url('options-general.php?page=' . static::$text_domain) |
|
249 | 249 | ); |
250 | 250 | ?> |
251 | 251 | </p> |
@@ -267,7 +267,7 @@ discard block |
||
267 | 267 | * @return Writing_On_GitHub_CLI |
268 | 268 | */ |
269 | 269 | public function cli() { |
270 | - if ( ! $this->cli ) { |
|
270 | + if ( ! $this->cli) { |
|
271 | 271 | $this->cli = new Writing_On_GitHub_CLI; |
272 | 272 | } |
273 | 273 | |
@@ -280,8 +280,8 @@ discard block |
||
280 | 280 | * @return Writing_On_GitHub_Request |
281 | 281 | */ |
282 | 282 | public function request() { |
283 | - if ( ! $this->request ) { |
|
284 | - $this->request = new Writing_On_GitHub_Request( $this ); |
|
283 | + if ( ! $this->request) { |
|
284 | + $this->request = new Writing_On_GitHub_Request($this); |
|
285 | 285 | } |
286 | 286 | |
287 | 287 | return $this->request; |
@@ -293,8 +293,8 @@ discard block |
||
293 | 293 | * @return Writing_On_GitHub_Response |
294 | 294 | */ |
295 | 295 | public function response() { |
296 | - if ( ! $this->response ) { |
|
297 | - $this->response = new Writing_On_GitHub_Response( $this ); |
|
296 | + if ( ! $this->response) { |
|
297 | + $this->response = new Writing_On_GitHub_Response($this); |
|
298 | 298 | } |
299 | 299 | |
300 | 300 | return $this->response; |
@@ -306,8 +306,8 @@ discard block |
||
306 | 306 | * @return Writing_On_GitHub_Api |
307 | 307 | */ |
308 | 308 | public function api() { |
309 | - if ( ! $this->api ) { |
|
310 | - $this->api = new Writing_On_GitHub_Api( $this ); |
|
309 | + if ( ! $this->api) { |
|
310 | + $this->api = new Writing_On_GitHub_Api($this); |
|
311 | 311 | } |
312 | 312 | |
313 | 313 | return $this->api; |
@@ -319,8 +319,8 @@ discard block |
||
319 | 319 | * @return Writing_On_GitHub_Import |
320 | 320 | */ |
321 | 321 | public function import() { |
322 | - if ( ! $this->import ) { |
|
323 | - $this->import = new Writing_On_GitHub_Import( $this ); |
|
322 | + if ( ! $this->import) { |
|
323 | + $this->import = new Writing_On_GitHub_Import($this); |
|
324 | 324 | } |
325 | 325 | |
326 | 326 | return $this->import; |
@@ -332,8 +332,8 @@ discard block |
||
332 | 332 | * @return Writing_On_GitHub_Export |
333 | 333 | */ |
334 | 334 | public function export() { |
335 | - if ( ! $this->export ) { |
|
336 | - $this->export = new Writing_On_GitHub_Export( $this ); |
|
335 | + if ( ! $this->export) { |
|
336 | + $this->export = new Writing_On_GitHub_Export($this); |
|
337 | 337 | } |
338 | 338 | |
339 | 339 | return $this->export; |
@@ -345,7 +345,7 @@ discard block |
||
345 | 345 | * @return Writing_On_GitHub_Semaphore |
346 | 346 | */ |
347 | 347 | public function semaphore() { |
348 | - if ( ! $this->semaphore ) { |
|
348 | + if ( ! $this->semaphore) { |
|
349 | 349 | $this->semaphore = new Writing_On_GitHub_Semaphore; |
350 | 350 | } |
351 | 351 | |
@@ -358,8 +358,8 @@ discard block |
||
358 | 358 | * @return Writing_On_GitHub_Database |
359 | 359 | */ |
360 | 360 | public function database() { |
361 | - if ( ! $this->database ) { |
|
362 | - $this->database = new Writing_On_GitHub_Database( $this ); |
|
361 | + if ( ! $this->database) { |
|
362 | + $this->database = new Writing_On_GitHub_Database($this); |
|
363 | 363 | } |
364 | 364 | |
365 | 365 | return $this->database; |
@@ -373,18 +373,18 @@ discard block |
||
373 | 373 | * @param mixed $msg |
374 | 374 | * @param string $write |
375 | 375 | */ |
376 | - public static function write_log( $msg, $write = 'line' ) { |
|
377 | - if ( defined( 'WP_CLI' ) && WP_CLI ) { |
|
378 | - if ( is_array( $msg ) || is_object( $msg ) ) { |
|
379 | - WP_CLI::print_value( $msg ); |
|
376 | + public static function write_log($msg, $write = 'line') { |
|
377 | + if (defined('WP_CLI') && WP_CLI) { |
|
378 | + if (is_array($msg) || is_object($msg)) { |
|
379 | + WP_CLI::print_value($msg); |
|
380 | 380 | } else { |
381 | - WP_CLI::$write( $msg ); |
|
381 | + WP_CLI::$write($msg); |
|
382 | 382 | } |
383 | - } elseif ( true === WP_DEBUG ) { |
|
384 | - if ( is_array( $msg ) || is_object( $msg ) ) { |
|
385 | - error_log( print_r( $msg, true ) ); |
|
383 | + } elseif (true === WP_DEBUG) { |
|
384 | + if (is_array($msg) || is_object($msg)) { |
|
385 | + error_log(print_r($msg, true)); |
|
386 | 386 | } else { |
387 | - error_log( $msg ); |
|
387 | + error_log($msg); |
|
388 | 388 | } |
389 | 389 | } |
390 | 390 | } |
@@ -395,10 +395,10 @@ discard block |
||
395 | 395 | * @param bool $force |
396 | 396 | * @param string $type |
397 | 397 | */ |
398 | - protected function start_cron( $type, $force = false ) { |
|
399 | - update_option( '_wogh_' . $type . '_started', 'yes' ); |
|
398 | + protected function start_cron($type, $force = false) { |
|
399 | + update_option('_wogh_' . $type . '_started', 'yes'); |
|
400 | 400 | $user_id = get_current_user_id(); |
401 | - wp_schedule_single_event( time(), 'wogh_' . $type . '', array( $user_id, $force ) ); |
|
401 | + wp_schedule_single_event(time(), 'wogh_' . $type . '', array($user_id, $force)); |
|
402 | 402 | spawn_cron(); |
403 | 403 | } |
404 | 404 | } |