Conditions | 17 |
Paths | 522 |
Total Lines | 171 |
Lines | 3 |
Ratio | 1.75 % |
Changes | 0 |
Small methods make your code easier to understand, in particular if combined with a good name. Besides, if your method is small, finding a good name is usually much easier.
For example, if you find yourself adding comments to a method's body, this is usually a good sign to extract the commented part to a new method, and use the comment as a starting point when coming up with a good name for this new method.
Commonly applied refactorings include:
If many parameters/temporary variables are present:
1 | <?php //phpcs:ignore WordPress.Files.FileName.InvalidClassFileName |
||
44 | public static function jetpack_tweet_shortcode( $atts ) { |
||
45 | global $wp_embed; |
||
46 | |||
47 | $default_atts = array( |
||
48 | 'tweet' => '', |
||
49 | 'align' => 'none', |
||
50 | 'width' => '', |
||
51 | 'lang' => 'en', |
||
52 | 'hide_thread' => 'false', |
||
53 | 'hide_media' => 'false', |
||
54 | ); |
||
55 | |||
56 | $attr = shortcode_atts( $default_atts, $atts ); |
||
57 | |||
58 | self::$provider_args = $attr; |
||
59 | |||
60 | /* |
||
61 | * figure out the tweet id for the requested tweet |
||
62 | * supporting both omitted attributes and tweet="tweet_id" |
||
63 | * and supporting both an id and a URL |
||
64 | */ |
||
65 | if ( empty( $attr['tweet'] ) && ! empty( $atts[0] ) ) { |
||
66 | $attr['tweet'] = $atts[0]; |
||
67 | } |
||
68 | |||
69 | if ( ctype_digit( $attr['tweet'] ) ) { |
||
70 | $id = 'https://twitter.com/jetpack/status/' . $attr['tweet']; |
||
71 | $tweet_id = intval( $attr['tweet'] ); |
||
72 | } else { |
||
73 | preg_match( '/^http(s|):\/\/twitter\.com(\/\#\!\/|\/)([a-zA-Z0-9_]{1,20})\/status(es)*\/(\d+)$/', $attr['tweet'], $urlbits ); |
||
74 | |||
75 | if ( isset( $urlbits[5] ) && intval( $urlbits[5] ) ) { |
||
76 | $id = 'https://twitter.com/' . $urlbits[3] . '/status/' . intval( $urlbits[5] ); |
||
77 | $tweet_id = intval( $urlbits[5] ); |
||
78 | } else { |
||
79 | return '<!-- Invalid tweet id -->'; |
||
80 | } |
||
81 | } |
||
82 | |||
83 | /* |
||
84 | * Fetch tweet. |
||
85 | * |
||
86 | * On WordPress.com, we also cache tweets for better performance and less requests. |
||
87 | */ |
||
88 | if ( defined( 'IS_WPCOM' ) && IS_WPCOM ) { |
||
89 | /* |
||
90 | * See if we have the tweet stored in our tweet store |
||
91 | * if not get_tweet_store queues up a job to request |
||
92 | */ |
||
93 | $data = get_tweet_store( $tweet_id ); |
||
94 | if ( $data ) { |
||
95 | $tweet_handler = new Tweet_Handler(); |
||
96 | |||
97 | /* |
||
98 | * Replace Unicode characters with ther entities like Blackbird Pie v 0.3.2 did |
||
99 | * to store tweets from other languages (important for non-english bloggers) |
||
100 | */ |
||
101 | $data->text = $tweet_handler->unicode_replace_entities( $data->text ); |
||
102 | $data->user->screen_name = $tweet_handler->unicode_replace_entities( $data->user->screen_name ); |
||
103 | $data->user->name = $tweet_handler->unicode_replace_entities( $data->user->name ); |
||
104 | |||
105 | $tweet = esc_html( $data->text ); |
||
106 | $tweet = $tweet_handler->expand_tco_links( $tweet, $data ); |
||
107 | |||
108 | $tweet = $tweet_handler->autolink( $tweet ); |
||
109 | |||
110 | $screen_name = esc_html( $data->user->screen_name ); |
||
111 | $name = esc_html( $data->user->name ); |
||
112 | |||
113 | $url = 'https://twitter.com/' . $screen_name . '/status/' . intval( $data->id ); |
||
114 | |||
115 | // Only show the user's real name if they set it to something different from their screename. |
||
116 | if ( $screen_name !== $name ) { |
||
117 | $real_name = '<br />' . $name; |
||
118 | } else { |
||
119 | $real_name = '<br /> '; |
||
120 | } |
||
121 | |||
122 | $time = strtotime( $data->created_at ); |
||
123 | $human_readable = date( 'F d, Y', $time ); |
||
124 | $data_datetime = date( 'Y-m-d\TH:i:sP', $time ); |
||
125 | |||
126 | /* |
||
127 | * Additional params. |
||
128 | */ |
||
129 | |||
130 | // align (float). |
||
131 | $extra_classes = ''; |
||
132 | View Code Duplication | if ( in_array( $attr['align'], array( 'left', 'right', 'center' ), true ) ) { |
|
133 | $extra_classes = ' tw-align-' . $attr['align']; |
||
134 | } |
||
135 | |||
136 | if ( 'true' === $attr['hide_thread'] ) { |
||
137 | $extra_classes .= ' tw-hide-thread'; |
||
138 | } |
||
139 | |||
140 | if ( 'true' === $attr['hide_media'] ) { |
||
141 | $extra_classes .= ' tw-hide-media'; |
||
142 | } |
||
143 | |||
144 | // lang. |
||
145 | $lang = substr( $attr['lang'], 0, 2 ); |
||
146 | if ( empty( $lang ) ) { |
||
147 | $lang = 'en'; |
||
148 | } |
||
149 | |||
150 | // width. |
||
151 | $width_html = ''; |
||
152 | $width = intval( $attr['width'] ); |
||
153 | if ( $width > 100 ) { |
||
154 | $width_html = ' width="' . esc_attr( $width ) . '"'; |
||
155 | } |
||
156 | |||
157 | // in reply to id (conversation tweets). |
||
158 | $in_reply_to_html = ''; |
||
159 | $in_reply_to = intval( $data->in_reply_to_status_id ); |
||
160 | if ( ! empty( $in_reply_to ) && 'false' === $attr['hide_thread'] ) { |
||
161 | $in_reply_to_html = ' data-in-reply-to="' . esc_attr( $in_reply_to ) . '"'; |
||
162 | } |
||
163 | |||
164 | // Generate the HTML output. |
||
165 | $output = sprintf( |
||
166 | '<blockquote class="twitter-tweet%1$s"%2$s%3$s lang="%4$s"><p>%5$s</p>— %6$s (@%7$s) <a href="%8$s" data-datetime="%9$s">%10$s</a></blockquote>', |
||
167 | esc_attr( $extra_classes ), |
||
168 | $width_html, |
||
169 | $in_reply_to_html, |
||
170 | esc_attr( $lang ), |
||
171 | $tweet, |
||
172 | wp_kses( $real_name, array( 'br' => array() ) ), |
||
173 | esc_html( $screen_name ), |
||
174 | esc_url( $url ), |
||
175 | esc_attr( $data_datetime ), |
||
176 | esc_html( $human_readable ) |
||
177 | ); |
||
178 | } else { |
||
179 | /** |
||
180 | * Filter the default display when a tweet is not available in the store. |
||
181 | * Not available in Jetpack. |
||
182 | * |
||
183 | * @module shortcodes |
||
184 | * |
||
185 | * @since 5.1.0 |
||
186 | * |
||
187 | * @param string $message Default display when a tweet is not available. |
||
188 | * @param string $id Twitter URL. |
||
189 | * @param array $attr Shortcode attributes. |
||
190 | */ |
||
191 | return apply_filters( 'tweet_shortcode_pending_tweet', '', $id, $attr ); |
||
192 | } |
||
193 | } else { |
||
194 | // Add shortcode arguments to provider URL. |
||
195 | add_filter( 'oembed_fetch_url', array( 'Jetpack_Tweet', 'jetpack_tweet_url_extra_args' ), 10, 3 ); |
||
196 | |||
197 | /* |
||
198 | * In Jetpack, we use $wp_embed->shortcode() to return the tweet output. |
||
199 | * @see https://github.com/Automattic/jetpack/pull/11173 |
||
200 | */ |
||
201 | $output = $wp_embed->shortcode( $atts, $id ); |
||
202 | |||
203 | // Clean up filter. |
||
204 | remove_filter( 'oembed_fetch_url', array( 'Jetpack_Tweet', 'jetpack_tweet_url_extra_args' ), 10 ); |
||
205 | } |
||
206 | |||
207 | // Add Twitter widgets.js script to the footer. |
||
208 | add_action( 'wp_footer', array( 'Jetpack_Tweet', 'jetpack_tweet_shortcode_script' ) ); |
||
209 | |||
210 | /** This action is documented in modules/widgets/social-media-icons.php */ |
||
211 | do_action( 'jetpack_bump_stats_extras', 'embeds', 'tweet' ); |
||
212 | |||
213 | return $output; |
||
214 | } |
||
215 | |||
277 |