PluginProbe
Jetpack – WP Security, Backup, Speed, & Growth / 13.2.2
Jetpack – WP Security, Backup, Speed, & Growth v13.2.2
16.2-beta 12.0.3 12.1.3 12.2.3 12.3.2 12.4.2 12.5.2 12.6.4 12.7.3 12.8.3 12.9.5 13.0.2 13.1.5 13.2.4 13.3.3 13.4.5 13.5.2 13.6.2 13.7.2 13.8.3 13.9.2 14.0.1 14.1.1 14.2.2 14.3.1 All 501 releases
jetpack / modules / widgets / flickr.php

flickr.php in Jetpack – WP Security, Backup, Speed, & Growth 13.2.2, at modules/widgets/flickr.php

229 lines 7.2 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php // phpcs:ignore WordPress.Files.FileName.InvalidClassFileName
2
3 // phpcs:disable Universal.Files.SeparateFunctionsFromOO.Mixed -- TODO: Move classes to appropriately-named class files.
4
5
6 /**
7 * Disable direct access/execution to/of the widget code.
8 */
9 if ( ! defined( 'ABSPATH' ) ) {
10 exit;
11 }
12
13 if ( ! class_exists( 'Jetpack_Flickr_Widget' ) ) {
14 /**
15 * Flickr Widget
16 *
17 * Display your recent Flickr photos.
18 */
19 class Jetpack_Flickr_Widget extends WP_Widget {
20 /**
21 * Constructor.
22 */
23 public function __construct() {
24 parent::__construct(
25 'flickr',
26 /** This filter is documented in modules/widgets/facebook-likebox.php */
27 apply_filters( 'jetpack_widget_name', esc_html__( 'Flickr', 'jetpack' ) ),
28 array(
29 'description' => esc_html__( 'Display your recent Flickr photos.', 'jetpack' ),
30 'customize_selective_refresh' => true,
31 ),
32 array()
33 );
34
35 if ( is_active_widget( false, false, $this->id_base ) || is_customize_preview() ) {
36 add_action( 'wp_enqueue_scripts', array( $this, 'enqueue_style' ) );
37 }
38 }
39
40 /**
41 * Enqueue style.
42 */
43 public function enqueue_style() {
44 wp_enqueue_style( 'flickr-widget-style', plugins_url( 'flickr/style.css', __FILE__ ), array(), '20170405' );
45 }
46
47 /**
48 * Return an associative array of default values.
49 *
50 * These values are used in new widgets.
51 *
52 * @return array Default values for the widget options.
53 */
54 public function defaults() {
55 return array(
56 'title' => esc_html__( 'Flickr Photos', 'jetpack' ),
57 'items' => 4,
58 'target' => false,
59 'flickr_image_size' => 'thumbnail',
60 'flickr_rss_url' => '',
61 );
62 }
63
64 /**
65 * Front-end display of the widget.
66 *
67 * @param array $args Widget arguments.
68 * @param array $instance Saved values from database.
69 */
70 public function widget( $args, $instance ) {
71 $instance = wp_parse_args( $instance, $this->defaults() );
72
73 if ( ! empty( $instance['flickr_rss_url'] ) ) {
74 /*
75 * Parse the URL, and rebuild a URL that's sure to display images.
76 * Some Flickr Feeds do not display images by default.
77 */
78 $flickr_parameters = wp_parse_url( htmlspecialchars_decode( $instance['flickr_rss_url'], ENT_QUOTES | ENT_SUBSTITUTE | ENT_HTML401 ) );
79
80 // Is it a Flickr Feed.
81 if (
82 ! empty( $flickr_parameters['host'] )
83 && ! empty( $flickr_parameters['query'] )
84 && str_contains( $flickr_parameters['host'], 'flickr' )
85 ) {
86 parse_str( $flickr_parameters['query'], $vars );
87
88 // Do we have an ID in the feed? Let's continue.
89 if ( isset( $vars['id'] ) ) {
90
91 // Flickr Feeds can be used for groups or for individuals.
92 if (
93 ! empty( $flickr_parameters['path'] )
94 && str_contains( $flickr_parameters['path'], 'groups' )
95 ) {
96 $feed_url = 'https://api.flickr.com/services/feeds/groups_pool.gne';
97 } else {
98 $feed_url = 'https://api.flickr.com/services/feeds/photos_public.gne';
99 }
100
101 // Build our new RSS feed.
102 $rss_url = sprintf(
103 '%1$s?id=%2$s&format=rss_200_enc',
104 esc_url( $feed_url ),
105 esc_attr( $vars['id'] )
106 );
107 }
108 }
109 }
110
111 // Still no RSS feed URL? Get a default feed from Flickr to grab interesting photos.
112 if ( empty( $rss_url ) ) {
113 $rss_url = 'https://api.flickr.com/services/feeds/photos_interesting.gne?format=rss_200';
114 }
115
116 $rss = fetch_feed( $rss_url );
117
118 $photos = '';
119 if ( ! is_wp_error( $rss ) ) {
120 foreach ( $rss->get_items( 0, $instance['items'] ) as $photo ) {
121 switch ( $instance['flickr_image_size'] ) {
122 case 'thumbnail':
123 $src = $photo->get_enclosure()->get_thumbnail();
124 break;
125 case 'small':
126 $src = preg_match( '/src="(.*?)"/i', $photo->get_description(), $p );
127 $src = $p[1];
128 break;
129 case 'large':
130 $src = $photo->get_enclosure()->get_link();
131 break;
132 }
133
134 $photos .= '<a href="' . esc_url( $photo->get_permalink(), array( 'http', 'https' ) ) . '" ';
135 if ( $instance['target'] ) {
136 $photos .= 'target="_blank" rel="noopener noreferrer" ';
137 }
138 $photos .= '><img src="' . esc_url( $src, array( 'http', 'https' ) ) . '" ';
139 $photos .= 'alt="' . esc_attr( $photo->get_title() ) . '" ';
140 $photos .= 'title="' . esc_attr( $photo->get_title() ) . '" ';
141 $photos .= ' /></a>';
142 }
143 if ( ! empty( $photos ) ) {
144 $photos = apply_filters( 'jetpack_image_cdn_content', $photos );
145 }
146
147 $flickr_home = $rss->get_link(); // phpcs:ignore VariableAnalysis.CodeAnalysis.VariableAnalysis.UnusedVariable -- Used in flickr/widget.php template file.
148 }
149
150 echo $args['before_widget']; // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped
151 if ( empty( $photos ) ) {
152 if ( current_user_can( 'edit_theme_options' ) ) {
153 printf(
154 '<p>%1$s<br />%2$s</p>',
155 esc_html__( 'There are no photos to display. Make sure your Flickr feed URL is correct, and that your pictures are publicly accessible.', 'jetpack' ),
156 esc_html__( '(Only admins can see this message)', 'jetpack' )
157 );
158 }
159 } else {
160 echo $args['before_title'] . $instance['title'] . $args['after_title']; // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped
161 require __DIR__ . '/flickr/widget.php';
162 }
163 echo $args['after_widget']; // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped
164 /** This action is already documented in modules/widgets/gravatar-profile.php */
165 do_action( 'jetpack_stats_extra', 'widget_view', 'flickr' );
166 }
167
168 /**
169 * Back-end widget form.
170 *
171 * @param array $instance Previously saved values from database.
172 */
173 public function form( $instance ) {
174 $instance = wp_parse_args( $instance, $this->defaults() );
175 require __DIR__ . '/flickr/form.php';
176 }
177
178 /**
179 * Sanitize widget form values as they are saved.
180 *
181 * @param array $new_instance Values just sent to be saved.
182 * @param array $old_instance Previously saved values from database.
183 * @return array Updated safe values to be saved.
184 */
185 public function update( $new_instance, $old_instance ) { // phpcs:ignore VariableAnalysis.CodeAnalysis.VariableAnalysis.UnusedVariable
186 $instance = array();
187
188 if ( isset( $new_instance['title'] ) ) {
189 $instance['title'] = wp_kses( $new_instance['title'], array() );
190 }
191
192 if ( isset( $new_instance['items'] ) ) {
193 $instance['items'] = (int) $new_instance['items'];
194 }
195
196 if ( isset( $new_instance['target'] ) ) {
197 $instance['target'] = (bool) $new_instance['target'];
198 }
199
200 if (
201 isset( $new_instance['flickr_image_size'] ) &&
202 in_array( $new_instance['flickr_image_size'], array( 'thumbnail', 'small', 'large' ), true )
203 ) {
204 $instance['flickr_image_size'] = $new_instance['flickr_image_size'];
205 } else {
206 $instance['flickr_image_size'] = 'thumbnail';
207 }
208
209 if ( isset( $new_instance['flickr_rss_url'] ) ) {
210 $instance['flickr_rss_url'] = esc_url( $new_instance['flickr_rss_url'], array( 'http', 'https' ) );
211
212 if ( strlen( $instance['flickr_rss_url'] ) < 10 ) {
213 $instance['flickr_rss_url'] = '';
214 }
215 }
216
217 return $instance;
218 }
219 }
220
221 /**
222 * Register Jetpack_Flickr_Widget widget.
223 */
224 function jetpack_register_flickr_widget() {
225 register_widget( 'Jetpack_Flickr_Widget' );
226 }
227 add_action( 'widgets_init', 'jetpack_register_flickr_widget' );
228 }
229