PluginProbe
Parse.ly / 3.2.0
Parse.ly v3.2.0
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.2.0, at src/UI/class-recommended-widget.php

336 lines 16.3 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 /**
3 * Recommended Widget file
4 *
5 * This provides a widget to put on a page, will have parsely recommended articles
6 *
7 * @category Components
8 * @package WordPress
9 * @subpackage Parse.ly
10 */
11
12 declare(strict_types=1);
13
14 namespace Parsely\UI;
15
16 use WP_Widget;
17
18 use const Parsely\PARSELY_FILE;
19
20 /**
21 * This is the class for the recommended widget.
22 */
23 final class Recommended_Widget extends WP_Widget {
24 /**
25 * This is the constructor function.
26 */
27 public function __construct() {
28 parent::__construct(
29 'Parsely_Recommended_Widget',
30 __( 'Parse.ly Recommended Widget', 'wp-parsely' ),
31 array(
32 'classname' => 'Recommended_Widget parsely-recommended-widget-hidden',
33 'description' => __( 'Display a list of post recommendations, personalized for a visitor or the current post.', 'wp-parsely' ),
34 )
35 );
36 }
37
38 /**
39 * Get the URL for the Recommendations API (GET /related).
40 *
41 * @see https://www.parse.ly/help/api/recommendations#get-related
42 *
43 * @internal While this is a public method now, this should be moved to a new class.
44 *
45 * @since 2.5.0
46 *
47 * @param string $api_key Publisher Site ID (API key).
48 * @param int|null $published_within Publication filter start date; see https://www.parse.ly/help/api/time for
49 * formatting details. No restriction by default.
50 * @param string|null $sort What to sort the results by. There are currently 2 valid options: `score`, which
51 * will sort articles by overall relevance and `pub_date` which will sort results by
52 * their publication date. The default is `score`.
53 * @param string|null $boost Available for sort=score only. Sub-sort value to re-rank relevant posts that
54 * received high e.g. views; default is undefined.
55 * @param int $return_limit Number of records to retrieve; defaults to "10".
56 * @return string API URL.
57 */
58 private function get_api_url( string $api_key, ?int $published_within, ?string $sort, ?string $boost, int $return_limit ): string {
59 $related_api_endpoint = 'https://api.parsely.com/v2/related';
60
61 $query_args = array(
62 'apikey' => $api_key,
63 'sort' => $sort,
64 'limit' => $return_limit,
65 );
66
67 if ( 'score' === $sort && 'no-boost' !== $boost ) {
68 $query_args['boost'] = $boost;
69 }
70
71 if ( null !== $published_within && 0 !== $published_within ) {
72 $query_args['pub_date_start'] = $published_within . 'd';
73 }
74
75 return add_query_arg( $query_args, $related_api_endpoint );
76 }
77
78 /**
79 * This is the widget function
80 *
81 * @param array $args Widget Arguments.
82 * @param array $instance Values saved to the db.
83 * @return void
84 */
85 public function widget( $args, $instance ): void {
86 if ( ! $this->api_key_and_secret_are_populated() ) {
87 return;
88 }
89
90 $removed_title_esc = remove_filter( 'widget_title', 'esc_html' );
91
92 /** This filter is documented in wp-includes/widgets/class-wp-widget-pages.php */
93 $title = apply_filters( 'widget_title', $instance['title'] );
94
95 if ( $removed_title_esc ) {
96 add_filter( 'widget_title', 'esc_html' );
97 }
98
99 $title_html = $args['before_widget'] . $args['before_title'] . $title . $args['after_title'];
100 echo wp_kses_post( $title_html );
101
102 // Set up the variables.
103 $options = get_option( 'parsely' );
104 $api_url = $this->get_api_url(
105 $options['apikey'],
106 $instance['published_within'],
107 $instance['sort'],
108 $instance['boost'],
109 (int) $instance['return_limit']
110 );
111
112 $recommended_widget_script_asset = require plugin_dir_path( PARSELY_FILE ) . 'build/recommended-widget.asset.php';
113
114 ?>
115
116 <div class="parsely-recommended-widget"
117 data-parsely-widget-display-author="<?php echo esc_attr( wp_json_encode( isset( $instance['display_author'] ) && $instance['display_author'] ) ); ?>"
118 data-parsely-widget-display-direction="<?php echo esc_attr( $instance['display_direction'] ?? '' ); ?>"
119 data-parsely-widget-api-url="<?php echo esc_url( $api_url ); ?>"
120 data-parsely-widget-img-display="<?php echo esc_attr( $instance['img_src'] ?? '' ); ?>"
121 data-parsely-widget-permalink="<?php echo esc_url( get_permalink() ); ?>"
122 data-parsely-widget-personalized="<?php echo esc_attr( wp_json_encode( isset( $instance['personalize_results'] ) && $instance['personalize_results'] ) ); ?>"
123 data-parsely-widget-id="<?php echo esc_attr( $this->id ); ?>"
124 ></div>
125
126 <?php
127
128 wp_register_script(
129 'wp-parsely-recommended-widget',
130 plugin_dir_url( PARSELY_FILE ) . 'build/recommended-widget.js',
131 $recommended_widget_script_asset['dependencies'],
132 $recommended_widget_script_asset['version'],
133 true
134 );
135
136 wp_register_style(
137 'wp-parsely-recommended-widget',
138 plugin_dir_url( PARSELY_FILE ) . 'build/recommended-widget.css',
139 array(),
140 $recommended_widget_script_asset['version']
141 );
142
143 wp_enqueue_script( 'wp-parsely-recommended-widget' );
144 wp_enqueue_style( 'wp-parsely-recommended-widget' );
145
146 echo wp_kses_post( $args['after_widget'] );
147 }
148
149 /**
150 * This is the form function
151 *
152 * @param array $instance Values saved to the db.
153 */
154 public function form( $instance ): void {
155 if ( ! $this->api_key_and_secret_are_populated() ) {
156 $settings_page_url = add_query_arg( 'page', 'parsely', get_admin_url() . 'options-general.php' );
157
158 $message = sprintf(
159 /* translators: %s: Plugin settings page URL */
160 __( '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' ),
161 esc_url( $settings_page_url )
162 );
163
164 echo '<p>', wp_kses_post( $message ), '</p>';
165
166 return;
167 }
168
169 // editable fields: title.
170 $title = ! empty( $instance['title'] ) ? $instance['title'] : '';
171 $return_limit = ! empty( $instance['return_limit'] ) ? (int) $instance['return_limit'] : 5;
172 $display_direction = ! empty( $instance['display_direction'] ) ? $instance['display_direction'] : 'vertical';
173 $published_within = ! empty( $instance['published_within'] ) ? $instance['published_within'] : 0;
174 $sort = ! empty( $instance['sort'] ) ? $instance['sort'] : 'score';
175 $boost = ! empty( $instance['boost'] ) ? $instance['boost'] : 'views';
176 $personalize_results = ! empty( $instance['personalize_results'] ) ? $instance['personalize_results'] : false;
177 $img_src = ! empty( $instance['img_src'] ) ? $instance['img_src'] : 'parsely_thumb';
178 $display_author = ! empty( $instance['display_author'] ) ? $instance['display_author'] : false;
179
180 $instance['return_limit'] = $return_limit;
181 $instance['display_direction'] = $display_direction;
182 $instance['published_within'] = $published_within;
183 $instance['sort'] = $sort;
184 $instance['boost'] = $boost;
185 $instance['personalize_results'] = $personalize_results;
186 $instance['img_src'] = $img_src;
187 $instance['display_author'] = $display_author;
188
189 $boost_params = $this->get_boost_params();
190 ?>
191 <p>
192 <label for="<?php echo esc_attr( $this->get_field_id( 'title' ) ); ?>"><?php esc_html_e( 'Title:', 'wp-parsely' ); ?></label>
193 <br>
194 <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" />
195 </p>
196 <p>
197 <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>
198 <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"
199 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' ) ); ?>" />
200 <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>
201 </p>
202 <p>
203 <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>
204 <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( $instance['return_limit'] ); ?>" min="1" max="20" class="tiny-text" />
205 </p>
206 <p>
207 <fieldset>
208 <legend><?php esc_html_e( 'Display entries:', 'wp-parsely' ); ?></legend>
209 <p>
210 <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" />
211 <label for="<?php echo esc_attr( $this->get_field_id( 'display_direction_horizontal' ) ); ?>"><?php esc_html_e( 'Horizontally', 'wp-parsely' ); ?></label>
212 <br />
213 <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" />
214 <label for="<?php echo esc_attr( $this->get_field_id( 'display_direction_vertical' ) ); ?>"><?php esc_html_e( 'Vertically', 'wp-parsely' ); ?></label>
215 </p>
216 </fieldset>
217 </p>
218 <p>
219 <label for="<?php echo esc_attr( $this->get_field_id( 'sort' ) ); ?>"><?php esc_html_e( 'Sort by:', 'wp-parsely' ); ?></label>
220 <br>
221 <select id="<?php echo esc_attr( $this->get_field_id( 'sort' ) ); ?>" name="<?php echo esc_attr( $this->get_field_name( 'sort' ) ); ?>" class="widefat">
222 <option<?php selected( $instance['sort'], 'score' ); ?> value="score"><?php esc_html_e( 'Score (relevancy, boostable)', 'wp-parsely' ); ?></option>
223 <option<?php selected( $instance['sort'], 'pub_date' ); ?> value="pub_date"><?php esc_html_e( 'Publish date (not boostable)', 'wp-parsely' ); ?></option>
224 </select>
225 </p>
226 <p>
227 <label for="<?php echo esc_attr( $this->get_field_id( 'boost' ) ); ?>"><?php esc_html_e( 'Boost by:', 'wp-parsely' ); ?></label>
228 <br>
229 <select id="<?php echo esc_attr( $this->get_field_id( 'boost' ) ); ?>" name="<?php echo esc_attr( $this->get_field_name( 'boost' ) ); ?>" class="widefat">
230 <?php foreach ( $boost_params as $boost_param => $description ) { ?>
231 <option<?php selected( $instance['boost'], $boost_param ); ?> value="<?php echo esc_attr( $boost_param ); ?>"><?php echo esc_html( $description ); ?></option>
232 <?php } ?>
233 </select>
234
235 </p>
236 <p>
237 <label for="<?php echo esc_attr( $this->get_field_id( 'img_src' ) ); ?>"><?php esc_html_e( 'Image source:', 'wp-parsely' ); ?></label>
238 <br>
239 <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">
240 <option<?php selected( $instance['img_src'], 'parsely_thumb' ); ?> value="parsely_thumb"><?php esc_html_e( 'Parse.ly generated thumbnail (85x85px)', 'wp-parsely' ); ?></option>
241 <option<?php selected( $instance['img_src'], 'original' ); ?> value="original"><?php esc_html_e( 'Original image', 'wp-parsely' ); ?></option>
242 <option<?php selected( $instance['img_src'], 'none' ); ?> value="none"><?php esc_html_e( 'No image', 'wp-parsely' ); ?></option>
243 </select>
244 </p>
245 <p>
246 <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' ); ?> />
247 <label for="<?php echo esc_attr( $this->get_field_id( 'display_author' ) ); ?>"><?php esc_html_e( 'Display author', 'wp-parsely' ); ?></label>
248 <br />
249 <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' ); ?> />
250 <label for="<?php echo esc_attr( $this->get_field_id( 'personalize_results' ) ); ?>"><?php esc_html_e( 'Personalize recommended results', 'wp-parsely' ); ?></label>
251 </p>
252 <?php
253 }
254
255 /**
256 * This is the update function
257 *
258 * @param array $new_instance The new values for the db.
259 * @param array $old_instance Values saved to the db.
260 * @return array
261 */
262 public function update( $new_instance, $old_instance ): array {
263 $instance = $old_instance;
264 $instance['title'] = trim( wp_kses_post( $new_instance['title'] ) );
265 $instance['published_within'] = is_int( $new_instance['published_within'] ) ? $new_instance['published_within'] : (int) trim( $new_instance['published_within'] );
266 $instance['return_limit'] = (int) $new_instance['return_limit'] <= 20 ? (int) $new_instance['return_limit'] : 20;
267 $instance['display_direction'] = trim( $new_instance['display_direction'] );
268 $instance['sort'] = trim( $new_instance['sort'] );
269 $instance['boost'] = trim( $new_instance['boost'] );
270 $instance['display_author'] = $new_instance['display_author'];
271 $instance['personalize_results'] = $new_instance['personalize_results'];
272 $instance['img_src'] = trim( $new_instance['img_src'] );
273 return $instance;
274 }
275
276 /**
277 * Return the list of boost parameters, values and labels.
278 *
279 * @since 2.5.0
280 *
281 * @return array<string, string> Boost parameters values and labels.
282 */
283 private function get_boost_params(): array {
284 return array(
285 'no-boost' => __( 'No boost', 'wp-parsely' ),
286 'views' => __( 'Page views', 'wp-parsely' ),
287 'mobile_views' => __( 'Page views on mobile devices', 'wp-parsely' ),
288 'tablet_views' => __( 'Page views on tablet devices', 'wp-parsely' ),
289 'desktop_views' => __( 'Page views on desktop devices', 'wp-parsely' ),
290 'visitors' => __( 'Unique page visitors, total', 'wp-parsely' ),
291 'visitors_new' => __( 'New visitors', 'wp-parsely' ),
292 'visitors_returning' => __( 'Returning visitors', 'wp-parsely' ),
293 'engaged_minutes' => __( 'Total engagement time in minutes', 'wp-parsely' ),
294 'avg_engaged' => __( 'Engaged minutes spent by total visitors', 'wp-parsely' ),
295 'avg_engaged_new' => __( 'Average engaged minutes spent by new visitors', 'wp-parsely' ),
296 'avg_engaged_returning' => __( 'Average engaged minutes spent by returning visitors', 'wp-parsely' ),
297 'social_interactions' => __( 'Total for Facebook, Twitter, LinkedIn, and Pinterest', 'wp-parsely' ),
298 'fb_interactions' => __( 'Count of Facebook shares, likes, and comments', 'wp-parsely' ),
299 'tw_interactions' => __( 'Count of Twitter tweets and retweets', 'wp-parsely' ),
300 'pi_interactions' => __( 'Count of Pinterest pins', 'wp-parsely' ),
301 'social_referrals' => __( 'Page views where the referrer was any social network', 'wp-parsely' ),
302 'fb_referrals' => __( 'Page views where the referrer was facebook.com', 'wp-parsely' ),
303 'tw_referrals' => __( 'Page views where the referrer was twitter.com', 'wp-parsely' ),
304 'pi_referrals' => __( 'Page views where the referrer was pinterest.com', 'wp-parsely' ),
305 );
306 }
307
308 /**
309 * Check if both the API key and API secret settings are populated with non-empty values.
310 *
311 * @since 2.5.0
312 *
313 * @return bool True if apikey and api_secret settings are not empty strings. False otherwise.
314 */
315 private function api_key_and_secret_are_populated(): bool {
316 $options = get_option( 'parsely' );
317
318 // No options are saved, so API key is not available.
319 if ( ! is_array( $options ) ) {
320 return false;
321 }
322
323 // Parse.ly Site ID settings field is not populated.
324 if ( ! array_key_exists( 'apikey', $options ) || '' === $options['apikey'] ) {
325 return false;
326 }
327
328 // Parse.ly API Secret settings field is not populated.
329 if ( ! array_key_exists( 'api_secret', $options ) || '' === $options['api_secret'] ) {
330 return false;
331 }
332
333 return true;
334 }
335 }
336