PluginProbe
Parse.ly / 3.13.1
Parse.ly v3.13.1
3.24.1 3.24.0 3.23.7 3.23.6 3.23.5 3.23.4 3.23.3 3.16.0 3.16.1 3.16.2 3.16.3 3.16.4 3.17.0 3.18.0 3.18.1 3.19.0 3.19.1 3.19.2 3.19.3 3.2.0 3.2.1 3.20.0 3.20.1 3.20.2 3.20.3 All 105 releases
wp-parsely / src / UI / class-recommended-widget.php

class-recommended-widget.php in Parse.ly 3.13.1, at src/UI/class-recommended-widget.php

330 lines 13.7 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 /**
3 * UI: Recommended Widget class
4 *
5 * Provides a widget with Parse.ly recommended articles.
6 *
7 * @package Parsely
8 */
9
10 declare(strict_types=1);
11
12 namespace Parsely\UI;
13
14 use Parsely\Parsely;
15 use WP_Widget;
16
17 use function Parsely\Utils\get_asset_info;
18
19 use const Parsely\PARSELY_FILE;
20
21 /**
22 * Provides a widget with Parse.ly recommended articles.
23 *
24 * @phpstan-type Widget_Settings array{
25 * title: string,
26 * return_limit: int,
27 * display_direction: string,
28 * published_within: int,
29 * sort: string,
30 * personalize_results: bool,
31 * img_src: string,
32 * display_author: bool,
33 * }
34 */
35 final class Recommended_Widget extends WP_Widget {
36 /**
37 * Instance of Parsely class.
38 *
39 * @var Parsely
40 */
41 private $parsely;
42
43 /**
44 * Default values of widget settings
45 *
46 * @var Widget_Settings
47 */
48 private static $default_widget_settings = array(
49 'title' => '',
50 'return_limit' => 5,
51 'display_direction' => 'vertical',
52 'published_within' => 0,
53 'sort' => 'score',
54 'personalize_results' => false,
55 'img_src' => 'parsely_thumb',
56 'display_author' => false,
57 );
58
59 /**
60 * Constructor.
61 *
62 * @param Parsely $parsely Instance of Parsely class.
63 */
64 public function __construct( Parsely $parsely ) {
65 parent::__construct(
66 'Parsely_Recommended_Widget',
67 __( 'Parse.ly Recommended Widget', 'wp-parsely' ),
68 array(
69 'classname' => 'Recommended_Widget parsely-recommended-widget-hidden',
70 'description' => __( 'Display a list of post recommendations, personalized for a visitor or the current post.', 'wp-parsely' ),
71 )
72 );
73
74 $this->parsely = $parsely;
75 }
76
77 /**
78 * Gets the URL for the Recommendations API (GET /related).
79 *
80 * @since 2.5.0
81 *
82 * @see https://docs.parse.ly/content-recommendations/
83 *
84 * @internal While this is a public method now, this should be moved to a new class.
85 *
86 * @param string $site_id Publisher Site ID.
87 * @param int|null $published_within Publication filter start date; see https://docs.parse.ly/api-date-time/ for
88 * formatting details. No restriction by default.
89 * @param string|null $sort What to sort the results by. There are currently 2 valid options: `score`,
90 * which will sort articles by overall relevance and `pub_date` which will sort
91 * results by their publication date. The default is `score`.
92 * @param int $return_limit Number of records to retrieve; defaults to "10".
93 * @return string API URL.
94 */
95 private function get_api_url( string $site_id, ?int $published_within, ?string $sort, int $return_limit ): string {
96 $related_api_endpoint = Parsely::PUBLIC_API_BASE_URL . '/related';
97
98 $query_args = array(
99 'apikey' => $site_id,
100 'sort' => $sort,
101 'limit' => $return_limit,
102 );
103
104 if ( null !== $published_within && 0 !== $published_within ) {
105 $query_args['pub_date_start'] = $published_within . 'd';
106 }
107
108 return add_query_arg( $query_args, $related_api_endpoint );
109 }
110
111 /**
112 * This is the widget function.
113 *
114 * @param array<string, string> $args Widget Arguments.
115 * @param array<mixed> $widget_settings Values saved to the db.
116 */
117 public function widget( $args, $widget_settings ): void /* @phpstan-ignore-line */ {
118 if ( ! $this->site_id_and_secret_are_populated() ) {
119 return;
120 }
121
122 $instance = $this->get_widget_settings( $widget_settings );
123 $removed_title_esc = remove_filter( 'widget_title', 'esc_html' );
124
125 /** This filter is documented in wp-includes/widgets/class-wp-widget-pages.php */
126 $title = apply_filters( 'widget_title', $instance['title'] );
127
128 if ( $removed_title_esc ) {
129 add_filter( 'widget_title', 'esc_html' );
130 }
131
132 $title_html = $args['before_widget'] . $args['before_title'] . $title . $args['after_title'];
133 echo wp_kses_post( $title_html );
134
135 // Set up the variables.
136 $api_url = $this->get_api_url(
137 $this->parsely->get_site_id(),
138 (int) $instance['published_within'], // @phpstan-ignore-line
139 $instance['sort'],
140 (int) $instance['return_limit'] // @phpstan-ignore-line
141 );
142
143 ?>
144
145 <div class="parsely-recommended-widget"
146 data-parsely-widget-display-author="<?php echo esc_attr( (string) wp_json_encode( $instance['display_author'] ) ); ?>"
147 data-parsely-widget-display-direction="<?php echo esc_attr( $instance['display_direction'] ); ?>"
148 data-parsely-widget-api-url="<?php echo esc_url( $api_url ); ?>"
149 data-parsely-widget-img-display="<?php echo esc_attr( $instance['img_src'] ); ?>"
150 data-parsely-widget-permalink="<?php echo esc_url( (string) get_permalink() ); ?>"
151 data-parsely-widget-personalized="<?php echo esc_attr( (string) wp_json_encode( $instance['personalize_results'] ) ); ?>"
152 data-parsely-widget-id="<?php echo esc_attr( (string) $this->id ); ?>"
153 ></div>
154
155 <?php
156
157 $recommended_widget_script_asset = get_asset_info( 'build/recommended-widget.asset.php' );
158
159 wp_register_script(
160 'wp-parsely-recommended-widget',
161 plugin_dir_url( PARSELY_FILE ) . 'build/recommended-widget.js',
162 $recommended_widget_script_asset['dependencies'],
163 $recommended_widget_script_asset['version'],
164 true
165 );
166
167 wp_register_style(
168 'wp-parsely-recommended-widget',
169 plugin_dir_url( PARSELY_FILE ) . 'build/recommended-widget.css',
170 array(),
171 $recommended_widget_script_asset['version']
172 );
173
174 wp_enqueue_script( 'wp-parsely-recommended-widget' );
175 wp_enqueue_style( 'wp-parsely-recommended-widget' );
176
177 echo wp_kses_post( $args['after_widget'] );
178 }
179
180 /**
181 * This is the form function.
182 *
183 * @param array<mixed> $current_settings Values saved to the db.
184 */
185 public function form( $current_settings ): string {
186 if ( ! $this->site_id_and_secret_are_populated() ) {
187 $settings_page_url = add_query_arg( 'page', 'parsely', get_admin_url() . 'options-general.php' );
188
189 $message = sprintf(
190 /* translators: %s: Plugin settings page URL */
191 __( 'The <i>Parse.ly Site ID</i> and <i>Parse.ly API Secret</i> fields need to be populated on the <a href="%s">Parse.ly settings page</a> for this widget to work.', 'wp-parsely' ),
192 esc_url( $settings_page_url )
193 );
194
195 echo '<p>', wp_kses_post( $message ), '</p>';
196
197 return '';
198 }
199
200 $instance = $this->get_widget_settings( $current_settings );
201
202 // editable fields: title.
203 $title = $instance['title'];
204 $return_limit = $instance['return_limit'];
205 $display_direction = $instance['display_direction'];
206 $published_within = $instance['published_within'];
207 $sort = $instance['sort'];
208 $personalize_results = $instance['personalize_results'];
209 $img_src = $instance['img_src'];
210 $display_author = $instance['display_author'];
211
212 $instance['return_limit'] = $return_limit;
213 $instance['display_direction'] = $display_direction;
214 $instance['published_within'] = $published_within;
215 $instance['sort'] = $sort;
216 $instance['personalize_results'] = $personalize_results;
217 $instance['img_src'] = $img_src;
218 $instance['display_author'] = $display_author;
219
220 ?>
221 <p>
222 <label for="<?php echo esc_attr( $this->get_field_id( 'title' ) ); ?>"><?php esc_html_e( 'Title:', 'wp-parsely' ); ?></label>
223 <br>
224 <input type="text" id="<?php echo esc_attr( $this->get_field_id( 'title' ) ); ?>" name="<?php echo esc_attr( $this->get_field_name( 'title' ) ); ?>" value="<?php echo esc_attr( $title ); ?>" class="widefat" />
225 </p>
226 <p>
227 <label for="<?php echo esc_attr( $this->get_field_id( 'published_within' ) ); ?>" id="<?php echo esc_attr( $this->get_field_id( 'published_within_label' ) ); ?>"><?php esc_html_e( 'Published within', 'wp-parsely' ); ?></label>
228 <input type="number" id="<?php echo esc_attr( $this->get_field_id( 'published_within' ) ); ?>" name="<?php echo esc_attr( $this->get_field_name( 'published_within' ) ); ?>" value="<?php echo esc_attr( (string) $instance['published_within'] ); ?>" min="0" max="30"
229 class="tiny-text" aria-labelledby="<?php echo esc_attr( $this->get_field_id( 'published_within_label' ) ); ?> <?php echo esc_attr( $this->get_field_id( 'published_within' ) ); ?> <?php echo esc_attr( $this->get_field_id( 'published_within_unit' ) ); ?>" />
230 <span id="<?php echo esc_attr( $this->get_field_id( 'published_within_unit' ) ); ?>"> <?php esc_html_e( 'days (0 for no limit).', 'wp-parsely' ); ?></span>
231 </p>
232 <p>
233 <label for="<?php echo esc_attr( $this->get_field_id( 'return_limit' ) ); ?>"><?php esc_html_e( 'Number of posts to show (max 20):', 'wp-parsely' ); ?></label>
234 <input type="number" id="<?php echo esc_attr( $this->get_field_id( 'return_limit' ) ); ?>" name="<?php echo esc_attr( $this->get_field_name( 'return_limit' ) ); ?>" value="<?php echo esc_attr( (string) $instance['return_limit'] ); ?>" min="1" max="20" class="tiny-text" />
235 </p>
236 <p>
237 <fieldset>
238 <legend><?php esc_html_e( 'Display entries:', 'wp-parsely' ); ?></legend>
239 <p>
240 <input type="radio" id="<?php echo esc_attr( $this->get_field_id( 'display_direction_horizontal' ) ); ?>" name="<?php echo esc_attr( $this->get_field_name( 'display_direction' ) ); ?>"<?php checked( $instance['display_direction'], 'horizontal' ); ?> value="horizontal" />
241 <label for="<?php echo esc_attr( $this->get_field_id( 'display_direction_horizontal' ) ); ?>"><?php esc_html_e( 'Horizontally', 'wp-parsely' ); ?></label>
242 <br />
243 <input type="radio" id="<?php echo esc_attr( $this->get_field_id( 'display_direction_vertical' ) ); ?>" name="<?php echo esc_attr( $this->get_field_name( 'display_direction' ) ); ?>"<?php checked( $instance['display_direction'], 'vertical' ); ?> value="vertical" />
244 <label for="<?php echo esc_attr( $this->get_field_id( 'display_direction_vertical' ) ); ?>"><?php esc_html_e( 'Vertically', 'wp-parsely' ); ?></label>
245 </p>
246 </fieldset>
247 </p>
248 <p>
249 <label for="<?php echo esc_attr( $this->get_field_id( 'sort' ) ); ?>"><?php esc_html_e( 'Sort by:', 'wp-parsely' ); ?></label>
250 <br>
251 <select id="<?php echo esc_attr( $this->get_field_id( 'sort' ) ); ?>" name="<?php echo esc_attr( $this->get_field_name( 'sort' ) ); ?>" class="widefat">
252 <option<?php selected( $instance['sort'], 'score' ); ?> value="score"><?php esc_html_e( 'Score', 'wp-parsely' ); ?></option>
253 <option<?php selected( $instance['sort'], 'pub_date' ); ?> value="pub_date"><?php esc_html_e( 'Publish date', 'wp-parsely' ); ?></option>
254 </select>
255 </p>
256 <p>
257 <label for="<?php echo esc_attr( $this->get_field_id( 'img_src' ) ); ?>"><?php esc_html_e( 'Image source:', 'wp-parsely' ); ?></label>
258 <br>
259 <select id="<?php echo esc_attr( $this->get_field_id( 'img_src' ) ); ?>" name="<?php echo esc_attr( $this->get_field_name( 'img_src' ) ); ?>" class="widefat">
260 <option<?php selected( $instance['img_src'], 'parsely_thumb' ); ?> value="parsely_thumb"><?php esc_html_e( 'Parse.ly generated thumbnail (85x85px)', 'wp-parsely' ); ?></option>
261 <option<?php selected( $instance['img_src'], 'original' ); ?> value="original"><?php esc_html_e( 'Original image', 'wp-parsely' ); ?></option>
262 <option<?php selected( $instance['img_src'], 'none' ); ?> value="none"><?php esc_html_e( 'No image', 'wp-parsely' ); ?></option>
263 </select>
264 </p>
265 <p>
266 <input type="checkbox" id="<?php echo esc_attr( $this->get_field_id( 'display_author' ) ); ?>" name="<?php echo esc_attr( $this->get_field_name( 'display_author' ) ); ?>" value="display_author"<?php checked( $instance['display_author'], 'display_author' ); ?> />
267 <label for="<?php echo esc_attr( $this->get_field_id( 'display_author' ) ); ?>"><?php esc_html_e( 'Display author', 'wp-parsely' ); ?></label>
268 <br />
269 <input type="checkbox" id="<?php echo esc_attr( $this->get_field_id( 'personalize_results' ) ); ?>" name="<?php echo esc_attr( $this->get_field_name( 'personalize_results' ) ); ?>" value="personalize_results"<?php checked( $instance['personalize_results'], 'personalize_results' ); ?> />
270 <label for="<?php echo esc_attr( $this->get_field_id( 'personalize_results' ) ); ?>"><?php esc_html_e( 'Personalize recommended results', 'wp-parsely' ); ?></label>
271 </p>
272 <?php
273
274 return '';
275 }
276
277 /**
278 * This is the update function.
279 *
280 * @param Widget_Settings $new_instance The new values for the db.
281 * @param Widget_Settings $old_instance Values saved to the db.
282 * @return Widget_Settings
283 */
284 public function update( $new_instance, $old_instance ) /* @phpstan-ignore-line */ {
285 $instance = $old_instance;
286 $instance['title'] = trim( wp_kses_post( $new_instance['title'] ) );
287 $instance['published_within'] = $new_instance['published_within'];
288 $instance['return_limit'] = $new_instance['return_limit'] <= 20 ? $new_instance['return_limit'] : 20;
289 $instance['display_direction'] = trim( $new_instance['display_direction'] );
290 $instance['sort'] = trim( $new_instance['sort'] );
291 $instance['display_author'] = $new_instance['display_author'];
292 $instance['personalize_results'] = $new_instance['personalize_results'];
293 $instance['img_src'] = trim( $new_instance['img_src'] );
294
295 return $instance;
296 }
297
298 /**
299 * Checks if both the Site ID and API secret settings are populated with
300 * non-empty values.
301 *
302 * @since 2.5.0
303 *
304 * @return bool True if Site ID and API Secret settings are set.
305 * False otherwise.
306 */
307 private function site_id_and_secret_are_populated(): bool {
308 return $this->parsely->site_id_is_set() && $this->parsely->api_secret_is_set();
309 }
310
311 /**
312 * Returns all widget settings by assigning defaults if a setting isn't present
313 *
314 * @since 3.7.0
315 *
316 * @param array<string, mixed> $settings Widget Options.
317 * @return Widget_Settings
318 */
319 public function get_widget_settings( array $settings ) {
320 /**
321 * Variable.
322 *
323 * @var Widget_Settings
324 */
325 $widget_settings = $settings;
326
327 return array_merge( self::$default_widget_settings, $widget_settings );
328 }
329 }
330