PluginProbe
Jetpack – WP Security, Backup, Speed, & Growth / 12.1
Jetpack – WP Security, Backup, Speed, & Growth v12.1
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 12.1, at modules/widgets/flickr.php

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