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