Duplicate code is one of the most pungent code smells. A rule that is often used is to re-structure code once it is duplicated in three or more places.
Common duplication problems, and corresponding solutions are:
Complex classes like Publicize_Base often do a lot of different things. To break such a class down, we need to identify a cohesive component within that class. A common approach to find such a component is to look for fields/methods that share the same prefixes, or suffixes. You can also have a look at the cohesion graph to spot any un-connected, or weakly-connected components.
Once you have determined the fields that belong together, you can apply the Extract Class refactoring. If the component makes sense as a sub-class, Extract Subclass is also a candidate, and is often faster.
While breaking up the class, it is a good idea to analyze how other classes use Publicize_Base, and based on these observations, apply Extract Interface, too.
1 | <?php |
||
3 | abstract class Publicize_Base { |
||
4 | |||
5 | /** |
||
6 | * Services that are currently connected to the given user |
||
7 | * through publicize. |
||
8 | */ |
||
9 | public $connected_services = array(); |
||
10 | |||
11 | /** |
||
12 | * Services that are supported by publicize. They don't |
||
13 | * necessarily need to be connected to the current user. |
||
14 | */ |
||
15 | public $services; |
||
16 | |||
17 | /** |
||
18 | * key names for post meta |
||
19 | */ |
||
20 | public $ADMIN_PAGE = 'wpas'; |
||
21 | public $POST_MESS = '_wpas_mess'; |
||
22 | public $POST_SKIP = '_wpas_skip_'; // connection id appended to indicate that a connection should NOT be publicized to |
||
23 | public $POST_DONE = '_wpas_done_'; // connection id appended to indicate a connection has already been publicized to |
||
24 | public $USER_AUTH = 'wpas_authorize'; |
||
25 | public $USER_OPT = 'wpas_'; |
||
26 | public $PENDING = '_publicize_pending'; // ready for Publicize to do its thing |
||
27 | public $POST_SERVICE_DONE = '_publicize_done_external'; // array of external ids where we've Publicized |
||
28 | |||
29 | /** |
||
30 | * default pieces of the message used in constructing the |
||
31 | * content pushed out to other social networks |
||
32 | */ |
||
33 | |||
34 | public $default_prefix = ''; |
||
35 | public $default_message = '%title%'; |
||
36 | public $default_suffix = ' '; |
||
37 | |||
38 | /** |
||
39 | * What WP capability is require to create/delete global connections? |
||
40 | * All users with this cap can un-globalize all other global connections, and globalize any of their own |
||
41 | * Globalized connections cannot be unselected by users without this capability when publishing |
||
42 | */ |
||
43 | public $GLOBAL_CAP = 'publish_posts'; |
||
44 | |||
45 | /** |
||
46 | * Sets up the basics of Publicize |
||
47 | */ |
||
48 | function __construct() { |
||
49 | $this->default_message = self::build_sprintf( array( |
||
50 | /** |
||
51 | * Filter the default Publicize message. |
||
52 | * |
||
53 | * @module publicize |
||
54 | * |
||
55 | * @since 2.0.0 |
||
56 | * |
||
57 | * @param string $this->default_message Publicize's default message. Default is the post title. |
||
58 | */ |
||
59 | apply_filters( 'wpas_default_message', $this->default_message ), |
||
60 | 'title', |
||
61 | 'url', |
||
62 | ) ); |
||
63 | |||
64 | $this->default_prefix = self::build_sprintf( array( |
||
65 | /** |
||
66 | * Filter the message prepended to the Publicize custom message. |
||
67 | * |
||
68 | * @module publicize |
||
69 | * |
||
70 | * @since 2.0.0 |
||
71 | * |
||
72 | * @param string $this->default_prefix String prepended to the Publicize custom message. |
||
73 | */ |
||
74 | apply_filters( 'wpas_default_prefix', $this->default_prefix ), |
||
75 | 'url', |
||
76 | ) ); |
||
77 | |||
78 | $this->default_suffix = self::build_sprintf( array( |
||
79 | /** |
||
80 | * Filter the message appended to the Publicize custom message. |
||
81 | * |
||
82 | * @module publicize |
||
83 | * |
||
84 | * @since 2.0.0 |
||
85 | * |
||
86 | * @param string $this->default_suffix String appended to the Publicize custom message. |
||
87 | */ |
||
88 | apply_filters( 'wpas_default_suffix', $this->default_suffix ), |
||
89 | 'url', |
||
90 | ) ); |
||
91 | |||
92 | /** |
||
93 | * Filter the capability to change global Publicize connection options. |
||
94 | * |
||
95 | * All users with this cap can un-globalize all other global connections, and globalize any of their own |
||
96 | * Globalized connections cannot be unselected by users without this capability when publishing. |
||
97 | * |
||
98 | * @module publicize |
||
99 | * |
||
100 | * @since 2.2.1 |
||
101 | * |
||
102 | * @param string $this->GLOBAL_CAP default capability in control of global Publicize connection options. Default to edit_others_posts. |
||
103 | */ |
||
104 | $this->GLOBAL_CAP = apply_filters( 'jetpack_publicize_global_connections_cap', $this->GLOBAL_CAP ); |
||
105 | |||
106 | // stage 1 and 2 of 3-stage Publicize. Flag for Publicize on creation, save meta, |
||
107 | // then check meta and publicize based on that. stage 3 implemented on wpcom |
||
108 | add_action( 'transition_post_status', array( $this, 'flag_post_for_publicize' ), 10, 3 ); |
||
109 | add_action( 'save_post', array( &$this, 'save_meta' ), 20, 2 ); |
||
110 | |||
111 | // Default checkbox state for each Connection |
||
112 | add_filter( 'publicize_checkbox_default', array( $this, 'publicize_checkbox_default' ), 10, 4 ); |
||
113 | |||
114 | // Alter the "Post Publish" admin notice to mention the Connections we Publicized to. |
||
115 | add_filter( 'post_updated_messages', array( $this, 'update_published_message' ), 20, 1 ); |
||
116 | |||
117 | // Connection test callback |
||
118 | add_action( 'wp_ajax_test_publicize_conns', array( $this, 'test_publicize_conns' ) ); |
||
119 | |||
120 | add_action( 'init', array( $this, 'add_post_type_support' ) ); |
||
121 | add_action( 'init', array( $this, 'register_post_meta' ), 20 ); |
||
122 | add_action( 'jetpack_register_gutenberg_extensions', array( $this, 'register_gutenberg_extension' ) ); |
||
123 | } |
||
124 | |||
125 | /* |
||
126 | * Services: Facebook, Twitter, etc. |
||
127 | */ |
||
128 | |||
129 | /** |
||
130 | * Get services for the given blog and user. |
||
131 | * |
||
132 | * Can return all available services or just the ones with an active connection. |
||
133 | * |
||
134 | * @param string $filter |
||
135 | * 'all' (default) - Get all services available for connecting |
||
136 | * 'connected' - Get all services currently connected |
||
137 | * @param false|int $_blog_id The blog ID. Use false (default) for the current blog |
||
138 | * @param false|int $_user_id The user ID. Use false (default) for the current user |
||
139 | * @return array |
||
140 | */ |
||
141 | abstract function get_services( $filter = 'all', $_blog_id = false, $_user_id = false ); |
||
142 | |||
143 | function can_connect_service( $service_name ) { |
||
144 | return true; |
||
145 | } |
||
146 | |||
147 | /** |
||
148 | * Does the given user have a connection to the service on the given blog? |
||
149 | * |
||
150 | * @param string $service_name 'facebook', 'twitter', etc. |
||
151 | * @param false|int $_blog_id The blog ID. Use false (default) for the current blog |
||
152 | * @param false|int $_user_id The user ID. Use false (default) for the current user |
||
153 | * @return bool |
||
154 | */ |
||
155 | function is_enabled( $service_name, $_blog_id = false, $_user_id = false ) { |
||
156 | if ( !$_blog_id ) |
||
|
|||
157 | $_blog_id = $this->blog_id(); |
||
158 | |||
159 | if ( !$_user_id ) |
||
160 | $_user_id = $this->user_id(); |
||
161 | |||
162 | $connections = $this->get_connections( $service_name, $_blog_id, $_user_id ); |
||
163 | return ( is_array( $connections ) && count( $connections ) > 0 ? true : false ); |
||
164 | } |
||
165 | |||
166 | /** |
||
167 | * Generates a connection URL. |
||
168 | * |
||
169 | * This is the URL, which, when visited by the user, starts the authentication |
||
170 | * process required to forge a connection. |
||
171 | * |
||
172 | * @param string $service_name 'facebook', 'twitter', etc. |
||
173 | * @return string |
||
174 | */ |
||
175 | abstract function connect_url( $service_name ); |
||
176 | |||
177 | /** |
||
178 | * Generates a Connection refresh URL. |
||
179 | * |
||
180 | * This is the URL, which, when visited by the user, re-authenticates their |
||
181 | * connection to the service. |
||
182 | * |
||
183 | * @param string $service_name 'facebook', 'twitter', etc. |
||
184 | * @return string |
||
185 | */ |
||
186 | abstract function refresh_url( $service_name ); |
||
187 | |||
188 | /** |
||
189 | * Generates a disconnection URL. |
||
190 | * |
||
191 | * This is the URL, which, when visited by the user, breaks their connection |
||
192 | * with the service. |
||
193 | * |
||
194 | * @param string $service_name 'facebook', 'twitter', etc. |
||
195 | * @param string $connection_id Connection ID |
||
196 | * @return string |
||
197 | */ |
||
198 | abstract function disconnect_url( $service_name, $connection_id ); |
||
199 | |||
200 | /** |
||
201 | * Returns a display name for the Service |
||
202 | * |
||
203 | * @param string $service_name 'facebook', 'twitter', etc. |
||
204 | * @return string |
||
205 | */ |
||
206 | public static function get_service_label( $service_name ) { |
||
207 | switch ( $service_name ) { |
||
208 | case 'linkedin': |
||
209 | return 'LinkedIn'; |
||
210 | break; |
||
211 | case 'twitter': |
||
212 | case 'facebook': |
||
213 | case 'tumblr': |
||
214 | default: |
||
215 | return ucfirst( $service_name ); |
||
216 | break; |
||
217 | } |
||
218 | } |
||
219 | |||
220 | /* |
||
221 | * Connections: For each Service, there can be multiple connections |
||
222 | * for a given user. For example, one user could be connected to Twitter |
||
223 | * as both @jetpack and as @wordpressdotcom |
||
224 | * |
||
225 | * For historical reasons, Connections are represented as an object |
||
226 | * on WordPress.com and as an array in Jetpack. |
||
227 | */ |
||
228 | |||
229 | /** |
||
230 | * Get the active Connections of a Service |
||
231 | * |
||
232 | * @param string $service_name 'facebook', 'twitter', etc. |
||
233 | * @param false|int $_blog_id The blog ID. Use false (default) for the current blog |
||
234 | * @param false|int $_user_id The user ID. Use false (default) for the current user |
||
235 | * @return false|object[]|array[] false if no connections exist |
||
236 | */ |
||
237 | abstract function get_connections( $service_name, $_blog_id = false, $_user_id = false ); |
||
238 | |||
239 | /** |
||
240 | * Get a single Connection of a Service |
||
241 | * |
||
242 | * @param string $service_name 'facebook', 'twitter', etc. |
||
243 | * @param string $connection_id Connection ID |
||
244 | * @param false|int $_blog_id The blog ID. Use false (default) for the current blog |
||
245 | * @param false|int $_user_id The user ID. Use false (default) for the current user |
||
246 | * @return false|object[]|array[] false if no connections exist |
||
247 | */ |
||
248 | abstract function get_connection( $service_name, $connection_id, $_blog_id = false, $_user_id = false ); |
||
249 | |||
250 | /** |
||
251 | * Get the Connection ID. |
||
252 | * |
||
253 | * Note that this is different than the Connection's uniqueid. |
||
254 | * |
||
255 | * Via a quirk of history, ID is globally unique and unique_id |
||
256 | * is only unique per site. |
||
257 | * |
||
258 | * @param object|array The Connection object (WordPress.com) or array (Jetpack) |
||
259 | * @return string |
||
260 | */ |
||
261 | abstract function get_connection_id( $connection ); |
||
262 | |||
263 | /** |
||
264 | * Get the Connection unique_id |
||
265 | * |
||
266 | * Note that this is different than the Connections ID. |
||
267 | * |
||
268 | * Via a quirk of history, ID is globally unique and unique_id |
||
269 | * is only unique per site. |
||
270 | * |
||
271 | * @param object|array The Connection object (WordPress.com) or array (Jetpack) |
||
272 | * @return string |
||
273 | */ |
||
274 | abstract function get_connection_unique_id( $connection ); |
||
275 | |||
276 | /** |
||
277 | * Get the Connection's Meta data |
||
278 | * |
||
279 | * @param object|array Connection |
||
280 | * @return array Connection Meta |
||
281 | */ |
||
282 | abstract function get_connection_meta( $connection ); |
||
283 | |||
284 | /** |
||
285 | * Disconnect a Connection |
||
286 | * |
||
287 | * @param string $service_name 'facebook', 'twitter', etc. |
||
288 | * @param string $connection_id Connection ID |
||
289 | * @param false|int $_blog_id The blog ID. Use false (default) for the current blog |
||
290 | * @param false|int $_user_id The user ID. Use false (default) for the current user |
||
291 | * @param bool $force_delete Whether to skip permissions checks |
||
292 | * @return false|void False on failure. Void on success. |
||
293 | */ |
||
294 | abstract function disconnect( $service_name, $connection_id, $_blog_id = false, $_user_id = false, $force_delete = false ); |
||
295 | |||
296 | /** |
||
297 | * Globalizes a Connection |
||
298 | * |
||
299 | * @param string $connection_id Connection ID |
||
300 | * @return bool Falsey on failure. Truthy on success. |
||
301 | */ |
||
302 | abstract function globalize_connection( $connection_id ); |
||
303 | |||
304 | /** |
||
305 | * Unglobalizes a Connection |
||
306 | * |
||
307 | * @param string $connection_id Connection ID |
||
308 | * @return bool Falsey on failure. Truthy on success. |
||
309 | */ |
||
310 | abstract function unglobalize_connection( $connection_id ); |
||
311 | |||
312 | /** |
||
313 | * Returns an external URL to the Connection's profile |
||
314 | * |
||
315 | * @param string $service_name 'facebook', 'twitter', etc. |
||
316 | * @param object|array The Connection object (WordPress.com) or array (Jetpack) |
||
317 | * @return false|string False on failure. URL on success. |
||
318 | */ |
||
319 | function get_profile_link( $service_name, $connection ) { |
||
355 | |||
356 | /** |
||
357 | * Returns a display name for the Connection |
||
358 | * |
||
359 | * @param string $service_name 'facebook', 'twitter', etc. |
||
360 | * @param object|array The Connection object (WordPress.com) or array (Jetpack) |
||
361 | * @return string |
||
362 | */ |
||
363 | function get_display_name( $service_name, $connection ) { |
||
379 | |||
380 | /** |
||
381 | * Whether the user needs to select additional options after connecting |
||
382 | * |
||
383 | * @param string $service_name 'facebook', 'twitter', etc. |
||
384 | * @param object|array The Connection object (WordPress.com) or array (Jetpack) |
||
385 | * @return bool |
||
386 | */ |
||
387 | function show_options_popup( $service_name, $connection ) { |
||
410 | |||
411 | /** |
||
412 | * Whether the Connection is "valid" wrt Facebook's requirements. |
||
413 | * |
||
414 | * Must be connected to a Page (not a Profile). |
||
415 | * (Also returns true if we're in the middle of the connection process) |
||
416 | * |
||
417 | * @param object|array The Connection object (WordPress.com) or array (Jetpack) |
||
418 | * @return bool |
||
419 | */ |
||
420 | function is_valid_facebook_connection( $connection ) { |
||
428 | |||
429 | /** |
||
430 | * LinkedIn needs to be reauthenticated to use v2 of their API. |
||
431 | * If it's using LinkedIn old API, it's an 'invalid' connection |
||
432 | * |
||
433 | * @param object|array The Connection object (WordPress.com) or array (Jetpack) |
||
434 | * @return bool |
||
435 | */ |
||
436 | function is_invalid_linkedin_connection( $connection ) { |
||
441 | |||
442 | /** |
||
443 | * Whether the Connection currently being connected |
||
444 | * |
||
445 | * @param object|array The Connection object (WordPress.com) or array (Jetpack) |
||
446 | * @return bool |
||
447 | */ |
||
448 | function is_connecting_connection( $connection ) { |
||
453 | |||
454 | /** |
||
455 | * AJAX Handler to run connection tests on all Connections |
||
456 | * @return void |
||
457 | */ |
||
458 | function test_publicize_conns() { |
||
461 | |||
462 | /** |
||
463 | * Run connection tests on all Connections |
||
464 | * |
||
465 | * @return array { |
||
466 | * Array of connection test results. |
||
467 | * |
||
468 | * @type string 'connectionID' Connection identifier string that is unique for each connection |
||
469 | * @type string 'serviceName' Slug of the connection's service (facebook, twitter, ...) |
||
470 | * @type bool 'connectionTestPassed' Whether the connection test was successful |
||
471 | * @type string 'connectionTestMessage' Test success or error message |
||
472 | * @type bool 'userCanRefresh' Whether the user can re-authenticate their connection to the service |
||
473 | * @type string 'refreshText' Message instructing user to re-authenticate their connection to the service |
||
474 | * @type string 'refreshURL' URL, which, when visited by the user, re-authenticates their connection to the service. |
||
475 | * @type string 'unique_id' ID string representing connection |
||
476 | * } |
||
477 | */ |
||
478 | function get_publicize_conns_test_results() { |
||
479 | $test_results = array(); |
||
480 | |||
481 | foreach ( (array) $this->get_services( 'connected' ) as $service_name => $connections ) { |
||
482 | foreach ( $connections as $connection ) { |
||
483 | |||
484 | $id = $this->get_connection_id( $connection ); |
||
485 | |||
486 | $connection_test_passed = true; |
||
487 | $connection_test_message = __( 'This connection is working correctly.' , 'jetpack' ); |
||
488 | $user_can_refresh = false; |
||
489 | $refresh_text = ''; |
||
490 | $refresh_url = ''; |
||
491 | |||
492 | $connection_test_result = true; |
||
493 | if ( method_exists( $this, 'test_connection' ) ) { |
||
494 | $connection_test_result = $this->test_connection( $service_name, $connection ); |
||
495 | } |
||
496 | |||
497 | if ( is_wp_error( $connection_test_result ) ) { |
||
498 | $connection_test_passed = false; |
||
499 | $connection_test_message = $connection_test_result->get_error_message(); |
||
500 | $error_data = $connection_test_result->get_error_data(); |
||
501 | |||
502 | $user_can_refresh = $error_data['user_can_refresh']; |
||
503 | $refresh_text = $error_data['refresh_text']; |
||
504 | $refresh_url = $error_data['refresh_url']; |
||
505 | } |
||
506 | // Mark facebook profiles as deprecated |
||
507 | if ( 'facebook' === $service_name ) { |
||
508 | if ( ! $this->is_valid_facebook_connection( $connection ) ) { |
||
509 | $connection_test_passed = false; |
||
510 | $user_can_refresh = false; |
||
511 | $connection_test_message = __( 'Please select a Facebook Page to publish updates.', 'jetpack' ); |
||
512 | } |
||
513 | } |
||
514 | |||
515 | // LinkedIn needs reauthentication to be compatible with v2 of their API |
||
516 | if ( 'linkedin' === $service_name && $this->is_invalid_linkedin_connection( $connection ) ) { |
||
517 | $connection_test_passed = 'must_reauth'; |
||
518 | $user_can_refresh = false; |
||
519 | $connection_test_message = esc_html__( 'Your LinkedIn connection needs to be reauthenticated to continue working – head to Sharing to take care of it.', 'jetpack' ); |
||
520 | } |
||
521 | |||
522 | $unique_id = null; |
||
523 | View Code Duplication | if ( ! empty( $connection->unique_id ) ) { |
|
524 | $unique_id = $connection->unique_id; |
||
525 | } else if ( ! empty( $connection['connection_data']['token_id'] ) ) { |
||
526 | $unique_id = $connection['connection_data']['token_id']; |
||
527 | } |
||
528 | |||
529 | $test_results[] = array( |
||
530 | 'connectionID' => $id, |
||
531 | 'serviceName' => $service_name, |
||
532 | 'connectionTestPassed' => $connection_test_passed, |
||
533 | 'connectionTestMessage' => esc_attr( $connection_test_message ), |
||
534 | 'userCanRefresh' => $user_can_refresh, |
||
535 | 'refreshText' => esc_attr( $refresh_text ), |
||
536 | 'refreshURL' => $refresh_url, |
||
537 | 'unique_id' => $unique_id, |
||
538 | ); |
||
539 | } |
||
540 | } |
||
541 | |||
542 | return $test_results; |
||
543 | } |
||
544 | |||
545 | /** |
||
546 | * Run the connection test for the Connection |
||
547 | * |
||
548 | * @param string $service_name 'facebook', 'twitter', etc. |
||
549 | * @param object|array The Connection object (WordPress.com) or array (Jetpack) |
||
550 | * @return WP_Error|true WP_Error on failure. True on success |
||
551 | */ |
||
552 | abstract function test_connection( $service_name, $connection ); |
||
553 | |||
554 | /** |
||
555 | * Retrieves current list of connections and applies filters. |
||
556 | * |
||
557 | * Retrieves current available connections and checks if the connections |
||
558 | * have already been used to share current post. Finally, the checkbox |
||
559 | * form UI fields are calculated. This function exposes connection form |
||
560 | * data directly as array so it can be retrieved for static HTML generation |
||
561 | * or JSON consumption. |
||
562 | * |
||
563 | * @since 6.7.0 |
||
564 | * |
||
565 | * @param integer $selected_post_id Optional. Post ID to query connection status for. |
||
566 | * |
||
567 | * @return array { |
||
568 | * Array of UI setup data for connection list form. |
||
569 | * |
||
570 | * @type string 'unique_id' ID string representing connection |
||
571 | * @type string 'service_name' Slug of the connection's service (facebook, twitter, ...) |
||
572 | * @type string 'service_label' Service Label (Facebook, Twitter, ...) |
||
573 | * @type string 'display_name' Connection's human-readable Username: "@jetpack" |
||
574 | * @type bool 'enabled' Default value for the connection (e.g., for a checkbox). |
||
575 | * @type bool 'done' Has this connection already been publicized to? |
||
576 | * @type bool 'toggleable' Is the user allowed to change the value for the connection? |
||
577 | * @type bool 'global' Is this connection a global one? |
||
578 | * } |
||
579 | */ |
||
580 | public function get_filtered_connection_data( $selected_post_id = null ) { |
||
715 | |||
716 | /** |
||
717 | * Checks if post has already been shared by Publicize in the past. |
||
718 | * |
||
719 | * @since 6.7.0 |
||
720 | * |
||
721 | * @param integer $post_id Optional. Post ID to query connection status for: will use current post if missing. |
||
722 | * |
||
723 | * @return bool True if post has already been shared by Publicize, false otherwise. |
||
724 | */ |
||
725 | abstract public function post_is_done_sharing( $post_id = null ); |
||
726 | |||
727 | /** |
||
728 | * Retrieves full list of available Publicize connection services. |
||
729 | * |
||
730 | * Retrieves current available publicize service connections |
||
731 | * with associated labels and URLs. |
||
732 | * |
||
733 | * @since 6.7.0 |
||
734 | * |
||
735 | * @return array { |
||
736 | * Array of UI service connection data for all services |
||
737 | * |
||
738 | * @type string 'name' Name of service. |
||
739 | * @type string 'label' Display label for service. |
||
740 | * @type string 'url' URL for adding connection to service. |
||
741 | * } |
||
742 | */ |
||
743 | function get_available_service_data() { |
||
757 | |||
758 | /* |
||
759 | * Site Data |
||
760 | */ |
||
761 | |||
762 | function user_id() { |
||
765 | |||
766 | function blog_id() { |
||
769 | |||
770 | /* |
||
771 | * Posts |
||
772 | */ |
||
773 | |||
774 | /** |
||
775 | * Checks old and new status to see if the post should be flagged as |
||
776 | * ready to Publicize. |
||
777 | * |
||
778 | * Attached to the `transition_post_status` filter. |
||
779 | * |
||
780 | * @param string $new_status |
||
781 | * @param string $old_status |
||
782 | * @param WP_Post $post |
||
783 | * @return void |
||
784 | */ |
||
785 | abstract function flag_post_for_publicize( $new_status, $old_status, $post ); |
||
786 | |||
787 | /** |
||
788 | * Ensures the Post internal post-type supports `publicize` |
||
789 | * |
||
790 | * This feature support flag is used by the REST API. |
||
791 | */ |
||
792 | function add_post_type_support() { |
||
795 | |||
796 | /** |
||
797 | * Register the Publicize Gutenberg extension |
||
798 | */ |
||
799 | function register_gutenberg_extension() { |
||
810 | |||
811 | /** |
||
812 | * Can the current user access Publicize Data. |
||
813 | * |
||
814 | * @param int $post_id. 0 for general access. Post_ID for specific access. |
||
815 | * @return bool |
||
816 | */ |
||
817 | function current_user_can_access_publicize_data( $post_id = 0 ) { |
||
835 | |||
836 | /** |
||
837 | * Auth callback for the protected ->POST_MESS post_meta |
||
838 | * |
||
839 | * @param bool $allowed |
||
840 | * @param string $meta_key |
||
841 | * @param int $object_id Post ID |
||
842 | * @return bool |
||
843 | */ |
||
844 | function message_meta_auth_callback( $allowed, $meta_key, $object_id ) { |
||
847 | |||
848 | /** |
||
849 | * Registers the ->POST_MESS post_meta for use in the REST API. |
||
850 | * |
||
851 | * Registers for each post type that with `publicize` feature support. |
||
852 | */ |
||
853 | function register_post_meta() { |
||
875 | |||
876 | /** |
||
877 | * Fires when a post is saved, checks conditions and saves state in postmeta so that it |
||
878 | * can be picked up later by @see ::publicize_post() on WordPress.com codebase. |
||
879 | * |
||
880 | * Attached to the `save_post` action. |
||
881 | * |
||
882 | * @param int $post_id |
||
883 | * @param WP_Post $post |
||
884 | * @return void |
||
885 | */ |
||
886 | function save_meta( $post_id, $post ) { |
||
1041 | |||
1042 | /** |
||
1043 | * Alters the "Post Published" message to include information about where the post |
||
1044 | * was Publicized to. |
||
1045 | * |
||
1046 | * Attached to the `post_updated_messages` filter |
||
1047 | * |
||
1048 | * @param string[] $messages |
||
1049 | * @return string[] |
||
1050 | */ |
||
1051 | public function update_published_message( $messages ) { |
||
1117 | |||
1118 | /** |
||
1119 | * Get the Connections the Post was just Publicized to. |
||
1120 | * |
||
1121 | * Only reliable just after the Post was published. |
||
1122 | * |
||
1123 | * @param int $post_id |
||
1124 | * @return string[] Array of Service display name => Connection display name |
||
1125 | */ |
||
1126 | function get_publicizing_services( $post_id ) { |
||
1127 | $services = array(); |
||
1128 | |||
1129 | foreach ( (array) $this->get_services( 'connected' ) as $service_name => $connections ) { |
||
1130 | // services have multiple connections. |
||
1131 | foreach ( $connections as $connection ) { |
||
1132 | $unique_id = ''; |
||
1133 | View Code Duplication | if ( ! empty( $connection->unique_id ) ) |
|
1134 | $unique_id = $connection->unique_id; |
||
1135 | else if ( ! empty( $connection['connection_data']['token_id'] ) ) |
||
1136 | $unique_id = $connection['connection_data']['token_id']; |
||
1137 | |||
1138 | // Did we skip this connection? |
||
1139 | if ( get_post_meta( $post_id, $this->POST_SKIP . $unique_id, true ) ) { |
||
1140 | continue; |
||
1141 | } |
||
1142 | $services[ $this->get_service_label( $service_name ) ][] = $this->get_display_name( $service_name, $connection ); |
||
1143 | } |
||
1144 | } |
||
1145 | |||
1146 | return $services; |
||
1147 | } |
||
1148 | |||
1149 | /** |
||
1150 | * Is the post Publicize-able? |
||
1151 | * |
||
1152 | * Only valid prior to Publicizing a Post. |
||
1153 | * |
||
1154 | * @param WP_Post $post |
||
1155 | * @return bool |
||
1156 | */ |
||
1157 | function post_is_publicizeable( $post ) { |
||
1172 | |||
1173 | /** |
||
1174 | * Is a given post type Publicize-able? |
||
1175 | * |
||
1176 | * Not every CPT lends itself to Publicize-ation. Allow CPTs to register by adding their CPT via |
||
1177 | * the publicize_post_types array filter. |
||
1178 | * |
||
1179 | * @param string $post_type The post type to check. |
||
1180 | * @return bool True if the post type can be Publicized. |
||
1181 | */ |
||
1182 | function post_type_is_publicizeable( $post_type ) { |
||
1188 | |||
1189 | /** |
||
1190 | * Already-published posts should not be Publicized by default. This filter sets checked to |
||
1191 | * false if a post has already been published. |
||
1192 | * |
||
1193 | * Attached to the `publicize_checkbox_default` filter |
||
1194 | * |
||
1195 | * @param bool $checked |
||
1196 | * @param int $post_id |
||
1197 | * @param string $service_name 'facebook', 'twitter', etc |
||
1198 | * @param object|array The Connection object (WordPress.com) or array (Jetpack) |
||
1199 | * @return bool |
||
1200 | */ |
||
1201 | function publicize_checkbox_default( $checked, $post_id, $service_name, $connection ) { |
||
1208 | |||
1209 | /* |
||
1210 | * Util |
||
1211 | */ |
||
1212 | |||
1213 | /** |
||
1214 | * Converts a Publicize message template string into a sprintf format string |
||
1215 | * |
||
1216 | * @param string[] $args |
||
1217 | * 0 - The Publicize message template: 'Check out my post: %title% @ %url' |
||
1218 | * ... - The template tags 'title', 'url', etc. |
||
1219 | * @return string |
||
1220 | */ |
||
1221 | protected static function build_sprintf( $args ) { |
||
1234 | } |
||
1235 | |||
1236 | function publicize_calypso_url() { |
||
1250 |
In PHP, under loose comparison (like
==
, or!=
, orswitch
conditions), values of different types might be equal.For
integer
values, zero is a special case, in particular the following results might be unexpected: