@@ -21,309 +21,309 @@ |
||
21 | 21 | */ |
22 | 22 | class Wordlift_Term_JsonLd_Adapter { |
23 | 23 | |
24 | - /** |
|
25 | - * The {@link Wordlift_Entity_Uri_Service} instance. |
|
26 | - * |
|
27 | - * @since 3.20.0 |
|
28 | - * @access private |
|
29 | - * @var \Wordlift_Entity_Uri_Service $entity_uri_service The {@link Wordlift_Entity_Uri_Service} instance. |
|
30 | - */ |
|
31 | - private $entity_uri_service; |
|
32 | - |
|
33 | - /** |
|
34 | - * Instance. |
|
35 | - * |
|
36 | - * @var Wordlift_Term_JsonLd_Adapter |
|
37 | - */ |
|
38 | - private static $instance; |
|
39 | - |
|
40 | - /** |
|
41 | - * @var Wordlift_Post_Converter |
|
42 | - */ |
|
43 | - private $post_id_to_jsonld_converter; |
|
44 | - |
|
45 | - /** |
|
46 | - * Wordlift_Term_JsonLd_Adapter constructor. |
|
47 | - * |
|
48 | - * @param \Wordlift_Entity_Uri_Service $entity_uri_service The {@link Wordlift_Entity_Uri_Service} instance. |
|
49 | - * @param \Wordlift_Post_Converter $post_id_to_jsonld_converter The {@link Wordlift_Post_Converter} instance. |
|
50 | - * |
|
51 | - * @since 3.20.0 |
|
52 | - */ |
|
53 | - public function __construct( $entity_uri_service, $post_id_to_jsonld_converter ) { |
|
54 | - |
|
55 | - add_action( 'wp_head', array( $this, 'wp_head' ) ); |
|
56 | - |
|
57 | - $this->entity_uri_service = $entity_uri_service; |
|
58 | - $this->post_id_to_jsonld_converter = $post_id_to_jsonld_converter; |
|
59 | - |
|
60 | - self::$instance = $this; |
|
61 | - } |
|
62 | - |
|
63 | - /** |
|
64 | - * Get instance. |
|
65 | - * |
|
66 | - * @return Wordlift_Term_JsonLd_Adapter|static |
|
67 | - */ |
|
68 | - public static function get_instance() { |
|
69 | - return self::$instance; |
|
70 | - } |
|
71 | - |
|
72 | - /** |
|
73 | - * Adds carousel json ld data to term page if the conditions match |
|
74 | - * |
|
75 | - * @return array|boolean |
|
76 | - */ |
|
77 | - public function get_carousel_jsonld( $id = null ) { |
|
78 | - $posts = $this->get_posts( $id ); |
|
79 | - $post_jsonld = array(); |
|
80 | - if ( ! is_array( $posts ) || count( $posts ) < 2 ) { |
|
81 | - // Bail out if no posts are present. |
|
82 | - return false; |
|
83 | - } |
|
84 | - |
|
85 | - if ( $id !== null ) { |
|
86 | - $term = get_term( $id ); |
|
87 | - $post_jsonld['description'] = wp_strip_all_tags( strip_shortcodes( $term->description ) ); |
|
88 | - $thumbnail_id = get_term_meta( $id, 'thumbnail_id', true ); |
|
89 | - if ( ! empty( $thumbnail_id ) ) { |
|
90 | - $post_jsonld['image'] = wp_get_attachment_url( $thumbnail_id ); |
|
91 | - } |
|
92 | - } |
|
93 | - |
|
94 | - // More than 2 items are present, so construct the post_jsonld data |
|
95 | - $post_jsonld['@context'] = 'https://schema.org'; |
|
96 | - $post_jsonld['@type'] = 'ItemList'; |
|
97 | - $post_jsonld['url'] = $this->get_term_url( $id ); |
|
98 | - $post_jsonld['itemListElement'] = array(); |
|
99 | - $position = 1; |
|
100 | - |
|
101 | - foreach ( $posts as $post_id ) { |
|
102 | - $result = array( |
|
103 | - '@type' => 'ListItem', |
|
104 | - 'position' => $position, |
|
105 | - /** |
|
106 | - * We can't use `item` here unless we change the URL for the item to point to the current page. |
|
107 | - * |
|
108 | - * See https://developers.google.com/search/docs/data-types/carousel |
|
109 | - */ |
|
110 | - 'url' => apply_filters( 'wl_carousel_post_list_item_url', get_permalink( $post_id ), $post_id ), |
|
111 | - ); |
|
112 | - array_push( $post_jsonld['itemListElement'], $result ); |
|
113 | - ++ $position; |
|
114 | - } |
|
115 | - |
|
116 | - return $post_jsonld; |
|
117 | - } |
|
118 | - |
|
119 | - /** |
|
120 | - * Get posts. |
|
121 | - * |
|
122 | - * @param $id |
|
123 | - * |
|
124 | - * @return array|int[]|string[]|WP_Error|null |
|
125 | - */ |
|
126 | - private function get_posts( $id ) { |
|
127 | - global $wp_query; |
|
128 | - |
|
129 | - if ( $wp_query->posts !== null ) { |
|
130 | - return array_map( |
|
131 | - function ( $post ) { |
|
132 | - return $post->ID; |
|
133 | - }, |
|
134 | - $wp_query->posts |
|
135 | - ); |
|
136 | - } |
|
137 | - |
|
138 | - if ( $id === null ) { |
|
139 | - return null; |
|
140 | - } |
|
141 | - |
|
142 | - $term = get_term( $id ); |
|
143 | - |
|
144 | - return get_objects_in_term( $id, $term->taxonomy ); |
|
145 | - } |
|
146 | - |
|
147 | - /** |
|
148 | - * Hook to `wp_head` to print the JSON-LD. |
|
149 | - * |
|
150 | - * @since 3.20.0 |
|
151 | - */ |
|
152 | - public function wp_head() { |
|
153 | - $query_object = get_queried_object(); |
|
154 | - |
|
155 | - // Check if it is a term page. |
|
156 | - if ( ! $query_object instanceof WP_Term ) { |
|
157 | - return; |
|
158 | - } |
|
159 | - |
|
160 | - // Bail out if `wl_jsonld_enabled` isn't enabled. |
|
161 | - if ( ! apply_filters( 'wl_jsonld_enabled', true ) ) { |
|
162 | - return; |
|
163 | - } |
|
164 | - |
|
165 | - $term_id = $query_object->term_id; |
|
166 | - |
|
167 | - $jsonld = $this->get( $term_id, Jsonld_Context_Enum::PAGE ); |
|
168 | - |
|
169 | - // Bail out if the JSON-LD is empty. |
|
170 | - if ( empty( $jsonld ) ) { |
|
171 | - return; |
|
172 | - } |
|
173 | - |
|
174 | - $jsonld_string = wp_json_encode( $jsonld ); |
|
175 | - |
|
176 | - $jsonld_term_html_output = '<script type="application/ld+json" id="wl-jsonld-term">' . $jsonld_string . '</script>'; |
|
177 | - $jsonld_term_html_output = apply_filters( 'wl_jsonld_term_html_output', $jsonld_term_html_output, $term_id ); |
|
178 | - |
|
179 | - echo $jsonld_term_html_output; // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped -- It's an application/ld+json output. |
|
180 | - |
|
181 | - } |
|
182 | - |
|
183 | - /** |
|
184 | - * Get. |
|
185 | - * |
|
186 | - * @param $id |
|
187 | - * @param $context |
|
188 | - * @param $is_recursive_call |
|
189 | - * |
|
190 | - * @return array |
|
191 | - */ |
|
192 | - public function get( $id, $context, $is_recursive_call = false ) { |
|
193 | - /** |
|
194 | - * Support for carousel rich snippet, get jsonld data present |
|
195 | - * for all the posts shown in the term page, and add the jsonld data |
|
196 | - * to list |
|
197 | - * |
|
198 | - * see here: https://developers.google.com/search/docs/data-types/carousel |
|
199 | - * |
|
200 | - * @since 3.26.0 |
|
201 | - */ |
|
202 | - $jsonld_array = array(); |
|
203 | - |
|
204 | - if ( Jsonld_Context_Enum::PAGE === $context ) { |
|
205 | - $carousel_data = $this->get_carousel_jsonld( $id ); |
|
206 | - if ( $carousel_data ) { |
|
207 | - $jsonld_array[] = $carousel_data; |
|
208 | - } |
|
209 | - } |
|
210 | - |
|
211 | - $entities_jsonld_array = $this->get_entity_jsonld( $id, $context ); |
|
212 | - |
|
213 | - $result = array( |
|
214 | - 'jsonld' => array_merge( $jsonld_array, $entities_jsonld_array ), |
|
215 | - 'references' => array(), |
|
216 | - ); |
|
217 | - |
|
218 | - /** |
|
219 | - * @since 3.26.3 |
|
220 | - * Filter: wl_term_jsonld_array |
|
221 | - * @var $id int Term id |
|
222 | - * @var $jsonld_array array An array containing jsonld for term and entities. |
|
223 | - * @var $context int A context for the JSON-LD generation, valid values in Jsonld_Context_Enum |
|
224 | - */ |
|
225 | - $arr = apply_filters( 'wl_term_jsonld_array', $result, $id, $context ); |
|
226 | - |
|
227 | - $references = array(); |
|
228 | - |
|
229 | - // Don't expand nested references, it will lead to an infinite loop. |
|
230 | - if ( ! $is_recursive_call ) { |
|
231 | - /** |
|
232 | - * @since 3.32.0 |
|
233 | - * Expand the references returned by this filter. |
|
234 | - */ |
|
235 | - $references = $this->expand_references( $arr['references'] ); |
|
236 | - } |
|
237 | - |
|
238 | - $jsonld_array = array_merge( $arr['jsonld'], $references ); |
|
239 | - |
|
240 | - return $jsonld_array; |
|
241 | - } |
|
242 | - |
|
243 | - /** |
|
244 | - * Get term url. |
|
245 | - * |
|
246 | - * @param $id |
|
247 | - * |
|
248 | - * @return array|false|int|mixed|string|WP_Error|WP_Term|null |
|
249 | - */ |
|
250 | - private function get_term_url( $id ) { |
|
251 | - if ( null === $id ) { |
|
252 | - return isset( $_SERVER['REQUEST_URI'] ) ? filter_var( wp_unslash( $_SERVER['REQUEST_URI'] ), FILTER_SANITIZE_URL ) : ''; |
|
253 | - } |
|
254 | - |
|
255 | - $maybe_url = get_term_meta( $id, Wordlift_Url_Property_Service::META_KEY, true ); |
|
256 | - if ( ! empty( $maybe_url ) ) { |
|
257 | - return $maybe_url; |
|
258 | - } |
|
259 | - |
|
260 | - return get_term_link( $id ); |
|
261 | - } |
|
262 | - |
|
263 | - /** |
|
264 | - * Return jsonld for entities bound to terms. |
|
265 | - * |
|
266 | - * @param int $term_id Term ID. |
|
267 | - * @param int $context A context for the JSON-LD generation, valid values in Jsonld_Context_Enum. |
|
268 | - * |
|
269 | - * @return array |
|
270 | - */ |
|
271 | - // phpcs:ignore VariableAnalysis.CodeAnalysis.VariableAnalysis.UnusedVariable |
|
272 | - private function get_entity_jsonld( $term_id, $context ) { |
|
273 | - |
|
274 | - // The `_wl_entity_id` are URIs. |
|
275 | - $entity_ids = get_term_meta( $term_id, '_wl_entity_id' ); |
|
276 | - $entity_uri_service = $this->entity_uri_service; |
|
277 | - |
|
278 | - $wordlift_jsonld_service = Wordlift_Jsonld_Service::get_instance(); |
|
279 | - |
|
280 | - $local_entity_ids = array_filter( |
|
281 | - $entity_ids, |
|
282 | - function ( $uri ) use ( $entity_uri_service ) { |
|
283 | - return $entity_uri_service->is_internal( $uri ); |
|
284 | - } |
|
285 | - ); |
|
286 | - |
|
287 | - // Bail out if there are no entities. |
|
288 | - if ( empty( $local_entity_ids ) ) { |
|
289 | - return array(); |
|
290 | - } |
|
291 | - |
|
292 | - $post = $this->entity_uri_service->get_entity( array_shift( $local_entity_ids ) ); |
|
293 | - $entities_jsonld = $wordlift_jsonld_service->get_jsonld( false, $post->ID ); |
|
294 | - // Reset the `url` to the term page. |
|
295 | - $entities_jsonld[0]['url'] = get_term_link( $term_id ); |
|
296 | - |
|
297 | - return $entities_jsonld; |
|
298 | - } |
|
299 | - |
|
300 | - /** |
|
301 | - * @param $references |
|
302 | - * |
|
303 | - * @return array |
|
304 | - */ |
|
305 | - private function expand_references( $references ) { |
|
306 | - if ( ! is_array( $references ) ) { |
|
307 | - return array(); |
|
308 | - } |
|
309 | - $references_jsonld = array(); |
|
310 | - // Expand the references. |
|
311 | - foreach ( $references as $reference ) { |
|
312 | - if ( $reference instanceof Term_Reference ) { |
|
313 | - // Second level references won't be expanded. |
|
314 | - $references_jsonld[] = current( $this->get( $reference->get_id(), Jsonld_Context_Enum::UNKNOWN, true ) ); |
|
315 | - } elseif ( is_numeric( $reference ) ) { |
|
316 | - $ref_2 = array(); |
|
317 | - $ref_info_2 = array(); |
|
318 | - $references_jsonld[] = $this->post_id_to_jsonld_converter->convert( $reference, $ref_2, $ref_info_2, new Relations() ); |
|
319 | - } elseif ( $reference instanceof Post_Reference ) { |
|
320 | - $ref_2 = array(); |
|
321 | - $ref_info_2 = array(); |
|
322 | - $references_jsonld[] = $this->post_id_to_jsonld_converter->convert( $reference->get_id(), $ref_2, $ref_info_2, new Relations() ); |
|
323 | - } |
|
324 | - } |
|
325 | - |
|
326 | - return $references_jsonld; |
|
327 | - } |
|
24 | + /** |
|
25 | + * The {@link Wordlift_Entity_Uri_Service} instance. |
|
26 | + * |
|
27 | + * @since 3.20.0 |
|
28 | + * @access private |
|
29 | + * @var \Wordlift_Entity_Uri_Service $entity_uri_service The {@link Wordlift_Entity_Uri_Service} instance. |
|
30 | + */ |
|
31 | + private $entity_uri_service; |
|
32 | + |
|
33 | + /** |
|
34 | + * Instance. |
|
35 | + * |
|
36 | + * @var Wordlift_Term_JsonLd_Adapter |
|
37 | + */ |
|
38 | + private static $instance; |
|
39 | + |
|
40 | + /** |
|
41 | + * @var Wordlift_Post_Converter |
|
42 | + */ |
|
43 | + private $post_id_to_jsonld_converter; |
|
44 | + |
|
45 | + /** |
|
46 | + * Wordlift_Term_JsonLd_Adapter constructor. |
|
47 | + * |
|
48 | + * @param \Wordlift_Entity_Uri_Service $entity_uri_service The {@link Wordlift_Entity_Uri_Service} instance. |
|
49 | + * @param \Wordlift_Post_Converter $post_id_to_jsonld_converter The {@link Wordlift_Post_Converter} instance. |
|
50 | + * |
|
51 | + * @since 3.20.0 |
|
52 | + */ |
|
53 | + public function __construct( $entity_uri_service, $post_id_to_jsonld_converter ) { |
|
54 | + |
|
55 | + add_action( 'wp_head', array( $this, 'wp_head' ) ); |
|
56 | + |
|
57 | + $this->entity_uri_service = $entity_uri_service; |
|
58 | + $this->post_id_to_jsonld_converter = $post_id_to_jsonld_converter; |
|
59 | + |
|
60 | + self::$instance = $this; |
|
61 | + } |
|
62 | + |
|
63 | + /** |
|
64 | + * Get instance. |
|
65 | + * |
|
66 | + * @return Wordlift_Term_JsonLd_Adapter|static |
|
67 | + */ |
|
68 | + public static function get_instance() { |
|
69 | + return self::$instance; |
|
70 | + } |
|
71 | + |
|
72 | + /** |
|
73 | + * Adds carousel json ld data to term page if the conditions match |
|
74 | + * |
|
75 | + * @return array|boolean |
|
76 | + */ |
|
77 | + public function get_carousel_jsonld( $id = null ) { |
|
78 | + $posts = $this->get_posts( $id ); |
|
79 | + $post_jsonld = array(); |
|
80 | + if ( ! is_array( $posts ) || count( $posts ) < 2 ) { |
|
81 | + // Bail out if no posts are present. |
|
82 | + return false; |
|
83 | + } |
|
84 | + |
|
85 | + if ( $id !== null ) { |
|
86 | + $term = get_term( $id ); |
|
87 | + $post_jsonld['description'] = wp_strip_all_tags( strip_shortcodes( $term->description ) ); |
|
88 | + $thumbnail_id = get_term_meta( $id, 'thumbnail_id', true ); |
|
89 | + if ( ! empty( $thumbnail_id ) ) { |
|
90 | + $post_jsonld['image'] = wp_get_attachment_url( $thumbnail_id ); |
|
91 | + } |
|
92 | + } |
|
93 | + |
|
94 | + // More than 2 items are present, so construct the post_jsonld data |
|
95 | + $post_jsonld['@context'] = 'https://schema.org'; |
|
96 | + $post_jsonld['@type'] = 'ItemList'; |
|
97 | + $post_jsonld['url'] = $this->get_term_url( $id ); |
|
98 | + $post_jsonld['itemListElement'] = array(); |
|
99 | + $position = 1; |
|
100 | + |
|
101 | + foreach ( $posts as $post_id ) { |
|
102 | + $result = array( |
|
103 | + '@type' => 'ListItem', |
|
104 | + 'position' => $position, |
|
105 | + /** |
|
106 | + * We can't use `item` here unless we change the URL for the item to point to the current page. |
|
107 | + * |
|
108 | + * See https://developers.google.com/search/docs/data-types/carousel |
|
109 | + */ |
|
110 | + 'url' => apply_filters( 'wl_carousel_post_list_item_url', get_permalink( $post_id ), $post_id ), |
|
111 | + ); |
|
112 | + array_push( $post_jsonld['itemListElement'], $result ); |
|
113 | + ++ $position; |
|
114 | + } |
|
115 | + |
|
116 | + return $post_jsonld; |
|
117 | + } |
|
118 | + |
|
119 | + /** |
|
120 | + * Get posts. |
|
121 | + * |
|
122 | + * @param $id |
|
123 | + * |
|
124 | + * @return array|int[]|string[]|WP_Error|null |
|
125 | + */ |
|
126 | + private function get_posts( $id ) { |
|
127 | + global $wp_query; |
|
128 | + |
|
129 | + if ( $wp_query->posts !== null ) { |
|
130 | + return array_map( |
|
131 | + function ( $post ) { |
|
132 | + return $post->ID; |
|
133 | + }, |
|
134 | + $wp_query->posts |
|
135 | + ); |
|
136 | + } |
|
137 | + |
|
138 | + if ( $id === null ) { |
|
139 | + return null; |
|
140 | + } |
|
141 | + |
|
142 | + $term = get_term( $id ); |
|
143 | + |
|
144 | + return get_objects_in_term( $id, $term->taxonomy ); |
|
145 | + } |
|
146 | + |
|
147 | + /** |
|
148 | + * Hook to `wp_head` to print the JSON-LD. |
|
149 | + * |
|
150 | + * @since 3.20.0 |
|
151 | + */ |
|
152 | + public function wp_head() { |
|
153 | + $query_object = get_queried_object(); |
|
154 | + |
|
155 | + // Check if it is a term page. |
|
156 | + if ( ! $query_object instanceof WP_Term ) { |
|
157 | + return; |
|
158 | + } |
|
159 | + |
|
160 | + // Bail out if `wl_jsonld_enabled` isn't enabled. |
|
161 | + if ( ! apply_filters( 'wl_jsonld_enabled', true ) ) { |
|
162 | + return; |
|
163 | + } |
|
164 | + |
|
165 | + $term_id = $query_object->term_id; |
|
166 | + |
|
167 | + $jsonld = $this->get( $term_id, Jsonld_Context_Enum::PAGE ); |
|
168 | + |
|
169 | + // Bail out if the JSON-LD is empty. |
|
170 | + if ( empty( $jsonld ) ) { |
|
171 | + return; |
|
172 | + } |
|
173 | + |
|
174 | + $jsonld_string = wp_json_encode( $jsonld ); |
|
175 | + |
|
176 | + $jsonld_term_html_output = '<script type="application/ld+json" id="wl-jsonld-term">' . $jsonld_string . '</script>'; |
|
177 | + $jsonld_term_html_output = apply_filters( 'wl_jsonld_term_html_output', $jsonld_term_html_output, $term_id ); |
|
178 | + |
|
179 | + echo $jsonld_term_html_output; // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped -- It's an application/ld+json output. |
|
180 | + |
|
181 | + } |
|
182 | + |
|
183 | + /** |
|
184 | + * Get. |
|
185 | + * |
|
186 | + * @param $id |
|
187 | + * @param $context |
|
188 | + * @param $is_recursive_call |
|
189 | + * |
|
190 | + * @return array |
|
191 | + */ |
|
192 | + public function get( $id, $context, $is_recursive_call = false ) { |
|
193 | + /** |
|
194 | + * Support for carousel rich snippet, get jsonld data present |
|
195 | + * for all the posts shown in the term page, and add the jsonld data |
|
196 | + * to list |
|
197 | + * |
|
198 | + * see here: https://developers.google.com/search/docs/data-types/carousel |
|
199 | + * |
|
200 | + * @since 3.26.0 |
|
201 | + */ |
|
202 | + $jsonld_array = array(); |
|
203 | + |
|
204 | + if ( Jsonld_Context_Enum::PAGE === $context ) { |
|
205 | + $carousel_data = $this->get_carousel_jsonld( $id ); |
|
206 | + if ( $carousel_data ) { |
|
207 | + $jsonld_array[] = $carousel_data; |
|
208 | + } |
|
209 | + } |
|
210 | + |
|
211 | + $entities_jsonld_array = $this->get_entity_jsonld( $id, $context ); |
|
212 | + |
|
213 | + $result = array( |
|
214 | + 'jsonld' => array_merge( $jsonld_array, $entities_jsonld_array ), |
|
215 | + 'references' => array(), |
|
216 | + ); |
|
217 | + |
|
218 | + /** |
|
219 | + * @since 3.26.3 |
|
220 | + * Filter: wl_term_jsonld_array |
|
221 | + * @var $id int Term id |
|
222 | + * @var $jsonld_array array An array containing jsonld for term and entities. |
|
223 | + * @var $context int A context for the JSON-LD generation, valid values in Jsonld_Context_Enum |
|
224 | + */ |
|
225 | + $arr = apply_filters( 'wl_term_jsonld_array', $result, $id, $context ); |
|
226 | + |
|
227 | + $references = array(); |
|
228 | + |
|
229 | + // Don't expand nested references, it will lead to an infinite loop. |
|
230 | + if ( ! $is_recursive_call ) { |
|
231 | + /** |
|
232 | + * @since 3.32.0 |
|
233 | + * Expand the references returned by this filter. |
|
234 | + */ |
|
235 | + $references = $this->expand_references( $arr['references'] ); |
|
236 | + } |
|
237 | + |
|
238 | + $jsonld_array = array_merge( $arr['jsonld'], $references ); |
|
239 | + |
|
240 | + return $jsonld_array; |
|
241 | + } |
|
242 | + |
|
243 | + /** |
|
244 | + * Get term url. |
|
245 | + * |
|
246 | + * @param $id |
|
247 | + * |
|
248 | + * @return array|false|int|mixed|string|WP_Error|WP_Term|null |
|
249 | + */ |
|
250 | + private function get_term_url( $id ) { |
|
251 | + if ( null === $id ) { |
|
252 | + return isset( $_SERVER['REQUEST_URI'] ) ? filter_var( wp_unslash( $_SERVER['REQUEST_URI'] ), FILTER_SANITIZE_URL ) : ''; |
|
253 | + } |
|
254 | + |
|
255 | + $maybe_url = get_term_meta( $id, Wordlift_Url_Property_Service::META_KEY, true ); |
|
256 | + if ( ! empty( $maybe_url ) ) { |
|
257 | + return $maybe_url; |
|
258 | + } |
|
259 | + |
|
260 | + return get_term_link( $id ); |
|
261 | + } |
|
262 | + |
|
263 | + /** |
|
264 | + * Return jsonld for entities bound to terms. |
|
265 | + * |
|
266 | + * @param int $term_id Term ID. |
|
267 | + * @param int $context A context for the JSON-LD generation, valid values in Jsonld_Context_Enum. |
|
268 | + * |
|
269 | + * @return array |
|
270 | + */ |
|
271 | + // phpcs:ignore VariableAnalysis.CodeAnalysis.VariableAnalysis.UnusedVariable |
|
272 | + private function get_entity_jsonld( $term_id, $context ) { |
|
273 | + |
|
274 | + // The `_wl_entity_id` are URIs. |
|
275 | + $entity_ids = get_term_meta( $term_id, '_wl_entity_id' ); |
|
276 | + $entity_uri_service = $this->entity_uri_service; |
|
277 | + |
|
278 | + $wordlift_jsonld_service = Wordlift_Jsonld_Service::get_instance(); |
|
279 | + |
|
280 | + $local_entity_ids = array_filter( |
|
281 | + $entity_ids, |
|
282 | + function ( $uri ) use ( $entity_uri_service ) { |
|
283 | + return $entity_uri_service->is_internal( $uri ); |
|
284 | + } |
|
285 | + ); |
|
286 | + |
|
287 | + // Bail out if there are no entities. |
|
288 | + if ( empty( $local_entity_ids ) ) { |
|
289 | + return array(); |
|
290 | + } |
|
291 | + |
|
292 | + $post = $this->entity_uri_service->get_entity( array_shift( $local_entity_ids ) ); |
|
293 | + $entities_jsonld = $wordlift_jsonld_service->get_jsonld( false, $post->ID ); |
|
294 | + // Reset the `url` to the term page. |
|
295 | + $entities_jsonld[0]['url'] = get_term_link( $term_id ); |
|
296 | + |
|
297 | + return $entities_jsonld; |
|
298 | + } |
|
299 | + |
|
300 | + /** |
|
301 | + * @param $references |
|
302 | + * |
|
303 | + * @return array |
|
304 | + */ |
|
305 | + private function expand_references( $references ) { |
|
306 | + if ( ! is_array( $references ) ) { |
|
307 | + return array(); |
|
308 | + } |
|
309 | + $references_jsonld = array(); |
|
310 | + // Expand the references. |
|
311 | + foreach ( $references as $reference ) { |
|
312 | + if ( $reference instanceof Term_Reference ) { |
|
313 | + // Second level references won't be expanded. |
|
314 | + $references_jsonld[] = current( $this->get( $reference->get_id(), Jsonld_Context_Enum::UNKNOWN, true ) ); |
|
315 | + } elseif ( is_numeric( $reference ) ) { |
|
316 | + $ref_2 = array(); |
|
317 | + $ref_info_2 = array(); |
|
318 | + $references_jsonld[] = $this->post_id_to_jsonld_converter->convert( $reference, $ref_2, $ref_info_2, new Relations() ); |
|
319 | + } elseif ( $reference instanceof Post_Reference ) { |
|
320 | + $ref_2 = array(); |
|
321 | + $ref_info_2 = array(); |
|
322 | + $references_jsonld[] = $this->post_id_to_jsonld_converter->convert( $reference->get_id(), $ref_2, $ref_info_2, new Relations() ); |
|
323 | + } |
|
324 | + } |
|
325 | + |
|
326 | + return $references_jsonld; |
|
327 | + } |
|
328 | 328 | |
329 | 329 | } |
@@ -50,9 +50,9 @@ discard block |
||
50 | 50 | * |
51 | 51 | * @since 3.20.0 |
52 | 52 | */ |
53 | - public function __construct( $entity_uri_service, $post_id_to_jsonld_converter ) { |
|
53 | + public function __construct($entity_uri_service, $post_id_to_jsonld_converter) { |
|
54 | 54 | |
55 | - add_action( 'wp_head', array( $this, 'wp_head' ) ); |
|
55 | + add_action('wp_head', array($this, 'wp_head')); |
|
56 | 56 | |
57 | 57 | $this->entity_uri_service = $entity_uri_service; |
58 | 58 | $this->post_id_to_jsonld_converter = $post_id_to_jsonld_converter; |
@@ -74,31 +74,31 @@ discard block |
||
74 | 74 | * |
75 | 75 | * @return array|boolean |
76 | 76 | */ |
77 | - public function get_carousel_jsonld( $id = null ) { |
|
78 | - $posts = $this->get_posts( $id ); |
|
77 | + public function get_carousel_jsonld($id = null) { |
|
78 | + $posts = $this->get_posts($id); |
|
79 | 79 | $post_jsonld = array(); |
80 | - if ( ! is_array( $posts ) || count( $posts ) < 2 ) { |
|
80 | + if ( ! is_array($posts) || count($posts) < 2) { |
|
81 | 81 | // Bail out if no posts are present. |
82 | 82 | return false; |
83 | 83 | } |
84 | 84 | |
85 | - if ( $id !== null ) { |
|
86 | - $term = get_term( $id ); |
|
87 | - $post_jsonld['description'] = wp_strip_all_tags( strip_shortcodes( $term->description ) ); |
|
88 | - $thumbnail_id = get_term_meta( $id, 'thumbnail_id', true ); |
|
89 | - if ( ! empty( $thumbnail_id ) ) { |
|
90 | - $post_jsonld['image'] = wp_get_attachment_url( $thumbnail_id ); |
|
85 | + if ($id !== null) { |
|
86 | + $term = get_term($id); |
|
87 | + $post_jsonld['description'] = wp_strip_all_tags(strip_shortcodes($term->description)); |
|
88 | + $thumbnail_id = get_term_meta($id, 'thumbnail_id', true); |
|
89 | + if ( ! empty($thumbnail_id)) { |
|
90 | + $post_jsonld['image'] = wp_get_attachment_url($thumbnail_id); |
|
91 | 91 | } |
92 | 92 | } |
93 | 93 | |
94 | 94 | // More than 2 items are present, so construct the post_jsonld data |
95 | 95 | $post_jsonld['@context'] = 'https://schema.org'; |
96 | 96 | $post_jsonld['@type'] = 'ItemList'; |
97 | - $post_jsonld['url'] = $this->get_term_url( $id ); |
|
97 | + $post_jsonld['url'] = $this->get_term_url($id); |
|
98 | 98 | $post_jsonld['itemListElement'] = array(); |
99 | 99 | $position = 1; |
100 | 100 | |
101 | - foreach ( $posts as $post_id ) { |
|
101 | + foreach ($posts as $post_id) { |
|
102 | 102 | $result = array( |
103 | 103 | '@type' => 'ListItem', |
104 | 104 | 'position' => $position, |
@@ -107,10 +107,10 @@ discard block |
||
107 | 107 | * |
108 | 108 | * See https://developers.google.com/search/docs/data-types/carousel |
109 | 109 | */ |
110 | - 'url' => apply_filters( 'wl_carousel_post_list_item_url', get_permalink( $post_id ), $post_id ), |
|
110 | + 'url' => apply_filters('wl_carousel_post_list_item_url', get_permalink($post_id), $post_id), |
|
111 | 111 | ); |
112 | - array_push( $post_jsonld['itemListElement'], $result ); |
|
113 | - ++ $position; |
|
112 | + array_push($post_jsonld['itemListElement'], $result); |
|
113 | + ++$position; |
|
114 | 114 | } |
115 | 115 | |
116 | 116 | return $post_jsonld; |
@@ -123,25 +123,25 @@ discard block |
||
123 | 123 | * |
124 | 124 | * @return array|int[]|string[]|WP_Error|null |
125 | 125 | */ |
126 | - private function get_posts( $id ) { |
|
126 | + private function get_posts($id) { |
|
127 | 127 | global $wp_query; |
128 | 128 | |
129 | - if ( $wp_query->posts !== null ) { |
|
129 | + if ($wp_query->posts !== null) { |
|
130 | 130 | return array_map( |
131 | - function ( $post ) { |
|
131 | + function($post) { |
|
132 | 132 | return $post->ID; |
133 | 133 | }, |
134 | 134 | $wp_query->posts |
135 | 135 | ); |
136 | 136 | } |
137 | 137 | |
138 | - if ( $id === null ) { |
|
138 | + if ($id === null) { |
|
139 | 139 | return null; |
140 | 140 | } |
141 | 141 | |
142 | - $term = get_term( $id ); |
|
142 | + $term = get_term($id); |
|
143 | 143 | |
144 | - return get_objects_in_term( $id, $term->taxonomy ); |
|
144 | + return get_objects_in_term($id, $term->taxonomy); |
|
145 | 145 | } |
146 | 146 | |
147 | 147 | /** |
@@ -153,28 +153,28 @@ discard block |
||
153 | 153 | $query_object = get_queried_object(); |
154 | 154 | |
155 | 155 | // Check if it is a term page. |
156 | - if ( ! $query_object instanceof WP_Term ) { |
|
156 | + if ( ! $query_object instanceof WP_Term) { |
|
157 | 157 | return; |
158 | 158 | } |
159 | 159 | |
160 | 160 | // Bail out if `wl_jsonld_enabled` isn't enabled. |
161 | - if ( ! apply_filters( 'wl_jsonld_enabled', true ) ) { |
|
161 | + if ( ! apply_filters('wl_jsonld_enabled', true)) { |
|
162 | 162 | return; |
163 | 163 | } |
164 | 164 | |
165 | 165 | $term_id = $query_object->term_id; |
166 | 166 | |
167 | - $jsonld = $this->get( $term_id, Jsonld_Context_Enum::PAGE ); |
|
167 | + $jsonld = $this->get($term_id, Jsonld_Context_Enum::PAGE); |
|
168 | 168 | |
169 | 169 | // Bail out if the JSON-LD is empty. |
170 | - if ( empty( $jsonld ) ) { |
|
170 | + if (empty($jsonld)) { |
|
171 | 171 | return; |
172 | 172 | } |
173 | 173 | |
174 | - $jsonld_string = wp_json_encode( $jsonld ); |
|
174 | + $jsonld_string = wp_json_encode($jsonld); |
|
175 | 175 | |
176 | - $jsonld_term_html_output = '<script type="application/ld+json" id="wl-jsonld-term">' . $jsonld_string . '</script>'; |
|
177 | - $jsonld_term_html_output = apply_filters( 'wl_jsonld_term_html_output', $jsonld_term_html_output, $term_id ); |
|
176 | + $jsonld_term_html_output = '<script type="application/ld+json" id="wl-jsonld-term">'.$jsonld_string.'</script>'; |
|
177 | + $jsonld_term_html_output = apply_filters('wl_jsonld_term_html_output', $jsonld_term_html_output, $term_id); |
|
178 | 178 | |
179 | 179 | echo $jsonld_term_html_output; // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped -- It's an application/ld+json output. |
180 | 180 | |
@@ -189,7 +189,7 @@ discard block |
||
189 | 189 | * |
190 | 190 | * @return array |
191 | 191 | */ |
192 | - public function get( $id, $context, $is_recursive_call = false ) { |
|
192 | + public function get($id, $context, $is_recursive_call = false) { |
|
193 | 193 | /** |
194 | 194 | * Support for carousel rich snippet, get jsonld data present |
195 | 195 | * for all the posts shown in the term page, and add the jsonld data |
@@ -201,17 +201,17 @@ discard block |
||
201 | 201 | */ |
202 | 202 | $jsonld_array = array(); |
203 | 203 | |
204 | - if ( Jsonld_Context_Enum::PAGE === $context ) { |
|
205 | - $carousel_data = $this->get_carousel_jsonld( $id ); |
|
206 | - if ( $carousel_data ) { |
|
204 | + if (Jsonld_Context_Enum::PAGE === $context) { |
|
205 | + $carousel_data = $this->get_carousel_jsonld($id); |
|
206 | + if ($carousel_data) { |
|
207 | 207 | $jsonld_array[] = $carousel_data; |
208 | 208 | } |
209 | 209 | } |
210 | 210 | |
211 | - $entities_jsonld_array = $this->get_entity_jsonld( $id, $context ); |
|
211 | + $entities_jsonld_array = $this->get_entity_jsonld($id, $context); |
|
212 | 212 | |
213 | 213 | $result = array( |
214 | - 'jsonld' => array_merge( $jsonld_array, $entities_jsonld_array ), |
|
214 | + 'jsonld' => array_merge($jsonld_array, $entities_jsonld_array), |
|
215 | 215 | 'references' => array(), |
216 | 216 | ); |
217 | 217 | |
@@ -222,20 +222,20 @@ discard block |
||
222 | 222 | * @var $jsonld_array array An array containing jsonld for term and entities. |
223 | 223 | * @var $context int A context for the JSON-LD generation, valid values in Jsonld_Context_Enum |
224 | 224 | */ |
225 | - $arr = apply_filters( 'wl_term_jsonld_array', $result, $id, $context ); |
|
225 | + $arr = apply_filters('wl_term_jsonld_array', $result, $id, $context); |
|
226 | 226 | |
227 | 227 | $references = array(); |
228 | 228 | |
229 | 229 | // Don't expand nested references, it will lead to an infinite loop. |
230 | - if ( ! $is_recursive_call ) { |
|
230 | + if ( ! $is_recursive_call) { |
|
231 | 231 | /** |
232 | 232 | * @since 3.32.0 |
233 | 233 | * Expand the references returned by this filter. |
234 | 234 | */ |
235 | - $references = $this->expand_references( $arr['references'] ); |
|
235 | + $references = $this->expand_references($arr['references']); |
|
236 | 236 | } |
237 | 237 | |
238 | - $jsonld_array = array_merge( $arr['jsonld'], $references ); |
|
238 | + $jsonld_array = array_merge($arr['jsonld'], $references); |
|
239 | 239 | |
240 | 240 | return $jsonld_array; |
241 | 241 | } |
@@ -247,17 +247,17 @@ discard block |
||
247 | 247 | * |
248 | 248 | * @return array|false|int|mixed|string|WP_Error|WP_Term|null |
249 | 249 | */ |
250 | - private function get_term_url( $id ) { |
|
251 | - if ( null === $id ) { |
|
252 | - return isset( $_SERVER['REQUEST_URI'] ) ? filter_var( wp_unslash( $_SERVER['REQUEST_URI'] ), FILTER_SANITIZE_URL ) : ''; |
|
250 | + private function get_term_url($id) { |
|
251 | + if (null === $id) { |
|
252 | + return isset($_SERVER['REQUEST_URI']) ? filter_var(wp_unslash($_SERVER['REQUEST_URI']), FILTER_SANITIZE_URL) : ''; |
|
253 | 253 | } |
254 | 254 | |
255 | - $maybe_url = get_term_meta( $id, Wordlift_Url_Property_Service::META_KEY, true ); |
|
256 | - if ( ! empty( $maybe_url ) ) { |
|
255 | + $maybe_url = get_term_meta($id, Wordlift_Url_Property_Service::META_KEY, true); |
|
256 | + if ( ! empty($maybe_url)) { |
|
257 | 257 | return $maybe_url; |
258 | 258 | } |
259 | 259 | |
260 | - return get_term_link( $id ); |
|
260 | + return get_term_link($id); |
|
261 | 261 | } |
262 | 262 | |
263 | 263 | /** |
@@ -269,30 +269,30 @@ discard block |
||
269 | 269 | * @return array |
270 | 270 | */ |
271 | 271 | // phpcs:ignore VariableAnalysis.CodeAnalysis.VariableAnalysis.UnusedVariable |
272 | - private function get_entity_jsonld( $term_id, $context ) { |
|
272 | + private function get_entity_jsonld($term_id, $context) { |
|
273 | 273 | |
274 | 274 | // The `_wl_entity_id` are URIs. |
275 | - $entity_ids = get_term_meta( $term_id, '_wl_entity_id' ); |
|
275 | + $entity_ids = get_term_meta($term_id, '_wl_entity_id'); |
|
276 | 276 | $entity_uri_service = $this->entity_uri_service; |
277 | 277 | |
278 | 278 | $wordlift_jsonld_service = Wordlift_Jsonld_Service::get_instance(); |
279 | 279 | |
280 | 280 | $local_entity_ids = array_filter( |
281 | 281 | $entity_ids, |
282 | - function ( $uri ) use ( $entity_uri_service ) { |
|
283 | - return $entity_uri_service->is_internal( $uri ); |
|
282 | + function($uri) use ($entity_uri_service) { |
|
283 | + return $entity_uri_service->is_internal($uri); |
|
284 | 284 | } |
285 | 285 | ); |
286 | 286 | |
287 | 287 | // Bail out if there are no entities. |
288 | - if ( empty( $local_entity_ids ) ) { |
|
288 | + if (empty($local_entity_ids)) { |
|
289 | 289 | return array(); |
290 | 290 | } |
291 | 291 | |
292 | - $post = $this->entity_uri_service->get_entity( array_shift( $local_entity_ids ) ); |
|
293 | - $entities_jsonld = $wordlift_jsonld_service->get_jsonld( false, $post->ID ); |
|
292 | + $post = $this->entity_uri_service->get_entity(array_shift($local_entity_ids)); |
|
293 | + $entities_jsonld = $wordlift_jsonld_service->get_jsonld(false, $post->ID); |
|
294 | 294 | // Reset the `url` to the term page. |
295 | - $entities_jsonld[0]['url'] = get_term_link( $term_id ); |
|
295 | + $entities_jsonld[0]['url'] = get_term_link($term_id); |
|
296 | 296 | |
297 | 297 | return $entities_jsonld; |
298 | 298 | } |
@@ -302,24 +302,24 @@ discard block |
||
302 | 302 | * |
303 | 303 | * @return array |
304 | 304 | */ |
305 | - private function expand_references( $references ) { |
|
306 | - if ( ! is_array( $references ) ) { |
|
305 | + private function expand_references($references) { |
|
306 | + if ( ! is_array($references)) { |
|
307 | 307 | return array(); |
308 | 308 | } |
309 | 309 | $references_jsonld = array(); |
310 | 310 | // Expand the references. |
311 | - foreach ( $references as $reference ) { |
|
312 | - if ( $reference instanceof Term_Reference ) { |
|
311 | + foreach ($references as $reference) { |
|
312 | + if ($reference instanceof Term_Reference) { |
|
313 | 313 | // Second level references won't be expanded. |
314 | - $references_jsonld[] = current( $this->get( $reference->get_id(), Jsonld_Context_Enum::UNKNOWN, true ) ); |
|
315 | - } elseif ( is_numeric( $reference ) ) { |
|
314 | + $references_jsonld[] = current($this->get($reference->get_id(), Jsonld_Context_Enum::UNKNOWN, true)); |
|
315 | + } elseif (is_numeric($reference)) { |
|
316 | 316 | $ref_2 = array(); |
317 | 317 | $ref_info_2 = array(); |
318 | - $references_jsonld[] = $this->post_id_to_jsonld_converter->convert( $reference, $ref_2, $ref_info_2, new Relations() ); |
|
319 | - } elseif ( $reference instanceof Post_Reference ) { |
|
318 | + $references_jsonld[] = $this->post_id_to_jsonld_converter->convert($reference, $ref_2, $ref_info_2, new Relations()); |
|
319 | + } elseif ($reference instanceof Post_Reference) { |
|
320 | 320 | $ref_2 = array(); |
321 | 321 | $ref_info_2 = array(); |
322 | - $references_jsonld[] = $this->post_id_to_jsonld_converter->convert( $reference->get_id(), $ref_2, $ref_info_2, new Relations() ); |
|
322 | + $references_jsonld[] = $this->post_id_to_jsonld_converter->convert($reference->get_id(), $ref_2, $ref_info_2, new Relations()); |
|
323 | 323 | } |
324 | 324 | } |
325 | 325 |
@@ -21,469 +21,469 @@ |
||
21 | 21 | */ |
22 | 22 | class Wordlift_Jsonld_Service { |
23 | 23 | |
24 | - /** |
|
25 | - * Creative work types. |
|
26 | - * |
|
27 | - * @var string[] |
|
28 | - */ |
|
29 | - private static $creative_work_types = array( |
|
30 | - 'AmpStory', |
|
31 | - 'ArchiveComponent', |
|
32 | - 'Article', |
|
33 | - 'Atlas', |
|
34 | - 'Blog', |
|
35 | - 'Book', |
|
36 | - 'Chapter', |
|
37 | - 'Claim', |
|
38 | - 'Clip', |
|
39 | - 'Code', |
|
40 | - 'Collection', |
|
41 | - 'ComicStory', |
|
42 | - 'Comment', |
|
43 | - 'Conversation', |
|
44 | - 'Course', |
|
45 | - 'CreativeWork', |
|
46 | - 'CreativeWorkSeason', |
|
47 | - 'CreativeWorkSeries', |
|
48 | - 'DataCatalog', |
|
49 | - 'Dataset', |
|
50 | - 'DefinedTermSet', |
|
51 | - 'Diet', |
|
52 | - 'DigitalDocument', |
|
53 | - 'Drawing', |
|
54 | - 'EducationalOccupationalCredential', |
|
55 | - 'Episode', |
|
56 | - 'ExercisePlan', |
|
57 | - 'Game', |
|
58 | - 'Guide', |
|
59 | - 'HowTo', |
|
60 | - 'HowToDirection', |
|
61 | - 'HowToSection', |
|
62 | - 'HowToStep', |
|
63 | - 'HowToTip', |
|
64 | - 'HyperToc', |
|
65 | - 'HyperTocEntry', |
|
66 | - 'LearningResource', |
|
67 | - 'Legislation', |
|
68 | - 'Manuscript', |
|
69 | - 'Map', |
|
70 | - 'MathSolver', |
|
71 | - 'MediaObject', |
|
72 | - 'Menu', |
|
73 | - 'MenuSection', |
|
74 | - 'Message', |
|
75 | - 'Movie', |
|
76 | - 'MusicComposition', |
|
77 | - 'MusicPlaylist', |
|
78 | - 'MusicRecording', |
|
79 | - 'Painting', |
|
80 | - 'Photograph', |
|
81 | - 'Play', |
|
82 | - 'Poster', |
|
83 | - 'PublicationIssue', |
|
84 | - 'PublicationVolume', |
|
85 | - 'Quotation', |
|
86 | - 'Review', |
|
87 | - 'Sculpture', |
|
88 | - 'Season', |
|
89 | - 'SheetMusic', |
|
90 | - 'ShortStory', |
|
91 | - 'SoftwareApplication', |
|
92 | - 'SoftwareSourceCode', |
|
93 | - 'SpecialAnnouncement', |
|
94 | - 'Thesis', |
|
95 | - 'TvSeason', |
|
96 | - 'TvSeries', |
|
97 | - 'VisualArtwork', |
|
98 | - 'WebContent', |
|
99 | - 'WebPage', |
|
100 | - 'WebPageElement', |
|
101 | - 'WebSite', |
|
102 | - 'AdvertiserContentArticle', |
|
103 | - 'NewsArticle', |
|
104 | - 'Report', |
|
105 | - 'SatiricalArticle', |
|
106 | - 'ScholarlyArticle', |
|
107 | - 'SocialMediaPosting', |
|
108 | - 'TechArticle', |
|
109 | - 'AnalysisNewsArticle', |
|
110 | - 'AskPublicNewsArticle', |
|
111 | - 'BackgroundNewsArticle', |
|
112 | - 'OpinionNewsArticle', |
|
113 | - 'ReportageNewsArticle', |
|
114 | - 'ReviewNewsArticle', |
|
115 | - 'MedicalScholarlyArticle', |
|
116 | - 'BlogPosting', |
|
117 | - 'DiscussionForumPosting', |
|
118 | - 'LiveBlogPosting', |
|
119 | - 'ApiReference', |
|
120 | - 'Audiobook', |
|
121 | - 'MovieClip', |
|
122 | - 'RadioClip', |
|
123 | - 'TvClip', |
|
124 | - 'VideoGameClip', |
|
125 | - 'ProductCollection', |
|
126 | - 'ComicCoverArt', |
|
127 | - 'Answer', |
|
128 | - 'CorrectionComment', |
|
129 | - 'Question', |
|
130 | - 'PodcastSeason', |
|
131 | - 'RadioSeason', |
|
132 | - 'TvSeason', |
|
133 | - 'BookSeries', |
|
134 | - 'MovieSeries', |
|
135 | - 'Periodical', |
|
136 | - 'PodcastSeries', |
|
137 | - 'RadioSeries', |
|
138 | - 'TvSeries', |
|
139 | - 'VideoGameSeries', |
|
140 | - 'ComicSeries', |
|
141 | - 'Newspaper', |
|
142 | - 'DataFeed', |
|
143 | - 'CompleteDataFeed', |
|
144 | - 'CategoryCodeSet', |
|
145 | - 'NoteDigitalDocument', |
|
146 | - 'PresentationDigitalDocument', |
|
147 | - 'SpreadsheetDigitalDocument', |
|
148 | - 'TextDigitalDocument', |
|
149 | - 'PodcastEpisode', |
|
150 | - 'RadioEpisode', |
|
151 | - 'TvEpisode', |
|
152 | - 'VideoGame', |
|
153 | - 'Recipe', |
|
154 | - 'Course', |
|
155 | - 'Quiz', |
|
156 | - 'LegislationObject', |
|
157 | - 'AudioObject', |
|
158 | - 'DModel', |
|
159 | - 'DataDownload', |
|
160 | - 'ImageObject', |
|
161 | - 'LegislationObject', |
|
162 | - 'MusicVideoObject', |
|
163 | - 'VideoObject', |
|
164 | - 'Audiobook', |
|
165 | - 'Barcode', |
|
166 | - 'EmailMessage', |
|
167 | - 'MusicAlbum', |
|
168 | - 'MusicRelease', |
|
169 | - 'ComicIssue', |
|
170 | - 'ClaimReview', |
|
171 | - 'CriticReview', |
|
172 | - 'EmployerReview', |
|
173 | - 'MediaReview', |
|
174 | - 'Recommendation', |
|
175 | - 'UserReview', |
|
176 | - 'ReviewNewsArticle', |
|
177 | - 'MobileApplication', |
|
178 | - 'VideoGame', |
|
179 | - 'WebApplication', |
|
180 | - 'CoverArt', |
|
181 | - 'ComicCoverArt', |
|
182 | - 'HealthTopicContent', |
|
183 | - 'AboutPage', |
|
184 | - 'CheckoutPage', |
|
185 | - 'CollectionPage', |
|
186 | - 'ContactPage', |
|
187 | - 'FaqPage', |
|
188 | - 'ItemPage', |
|
189 | - 'MedicalWebPage', |
|
190 | - 'ProfilePage', |
|
191 | - 'QaPage', |
|
192 | - 'RealEstateListing', |
|
193 | - 'SearchResultsPage', |
|
194 | - 'MediaGallery', |
|
195 | - 'ImageGallery', |
|
196 | - 'VideoGallery', |
|
197 | - 'SiteNavigationElement', |
|
198 | - 'Table', |
|
199 | - 'WpAdBlock', |
|
200 | - 'WpFooter', |
|
201 | - 'WpHeader', |
|
202 | - 'WpSideBar', |
|
203 | - ); |
|
204 | - |
|
205 | - /** |
|
206 | - * The singleton instance for the JSON-LD service. |
|
207 | - * |
|
208 | - * @since 3.15.1 |
|
209 | - * |
|
210 | - * @var \Wordlift_Jsonld_Service $instance The singleton instance for the JSON-LD service. |
|
211 | - */ |
|
212 | - private static $instance; |
|
213 | - |
|
214 | - /** |
|
215 | - * A {@link Wordlift_Entity_Service} instance. |
|
216 | - * |
|
217 | - * @since 3.8.0 |
|
218 | - * @access private |
|
219 | - * @var Wordlift_Entity_Service $entity_service A {@link Wordlift_Entity_Service} instance. |
|
220 | - */ |
|
221 | - private $entity_service; |
|
222 | - |
|
223 | - /** |
|
224 | - * A {@link Wordlift_Term_JsonLd_Adapter} instance. |
|
225 | - * |
|
226 | - * @since 3.32.0 |
|
227 | - * @access private |
|
228 | - * @var Wordlift_Term_JsonLd_Adapter $entity_service A {@link Wordlift_Term_JsonLd_Adapter} instance. |
|
229 | - */ |
|
230 | - private $term_jsonld_adapter; |
|
231 | - |
|
232 | - /** |
|
233 | - * A {@link Wordlift_Post_Converter} instance. |
|
234 | - * |
|
235 | - * @since 3.8.0 |
|
236 | - * @access private |
|
237 | - * @var \Wordlift_Post_Converter A {@link Wordlift_Post_Converter} instance. |
|
238 | - */ |
|
239 | - private $converter; |
|
240 | - |
|
241 | - /** |
|
242 | - * A {@link Wordlift_Website_Jsonld_Converter} instance. |
|
243 | - * |
|
244 | - * @since 3.14.0 |
|
245 | - * @access private |
|
246 | - * @var \Wordlift_Website_Jsonld_Converter A {@link Wordlift_Website_Jsonld_Converter} instance. |
|
247 | - */ |
|
248 | - private $website_converter; |
|
249 | - |
|
250 | - /** |
|
251 | - * Create a JSON-LD service. |
|
252 | - * |
|
253 | - * @param \Wordlift_Entity_Service $entity_service A {@link Wordlift_Entity_Service} instance. |
|
254 | - * @param \Wordlift_Post_Converter $converter A {@link Wordlift_Uri_To_Jsonld_Converter} instance. |
|
255 | - * @param \Wordlift_Website_Jsonld_Converter $website_converter A {@link Wordlift_Website_Jsonld_Converter} instance. |
|
256 | - * @param \Wordlift_Term_JsonLd_Adapter $term_jsonld_adapter |
|
257 | - * |
|
258 | - * @since 3.8.0 |
|
259 | - */ |
|
260 | - public function __construct( $entity_service, $converter, $website_converter, $term_jsonld_adapter ) { |
|
261 | - $this->entity_service = $entity_service; |
|
262 | - $this->converter = $converter; |
|
263 | - $this->website_converter = $website_converter; |
|
264 | - $this->term_jsonld_adapter = $term_jsonld_adapter; |
|
265 | - self::$instance = $this; |
|
266 | - } |
|
267 | - |
|
268 | - /** |
|
269 | - * Get the singleton instance for the JSON-LD service. |
|
270 | - * |
|
271 | - * @return \Wordlift_Jsonld_Service The singleton instance for the JSON-LD service. |
|
272 | - * @since 3.15.1 |
|
273 | - */ |
|
274 | - public static function get_instance() { |
|
275 | - |
|
276 | - return self::$instance; |
|
277 | - } |
|
278 | - |
|
279 | - /** |
|
280 | - * Process calls to the AJAX 'wl_jsonld' endpoint. |
|
281 | - * |
|
282 | - * @since 3.8.0 |
|
283 | - */ |
|
284 | - public function get() { |
|
285 | - // Clear the buffer to be sure someone doesn't mess with our response. |
|
286 | - // |
|
287 | - // See https://github.com/insideout10/wordlift-plugin/issues/406. |
|
288 | - // See https://codex.wordpress.org/AJAX_in_Plugins. |
|
289 | - // phpcs:ignore WordPress.PHP.NoSilencedErrors.Discouraged |
|
290 | - @ob_clean(); |
|
291 | - |
|
292 | - // Get the parameter from the request. |
|
293 | - $is_homepage = isset( $_REQUEST['homepage'] ); //phpcs:ignore WordPress.Security.NonceVerification.Recommended |
|
294 | - $post_id = isset( $_REQUEST['id'] ) && is_numeric( $_REQUEST['id'] ) ? intval( $_REQUEST['id'] ) : null; //phpcs:ignore WordPress.Security.NonceVerification.Recommended |
|
295 | - |
|
296 | - // Send the generated JSON-LD. |
|
297 | - $this->send_jsonld( $this->get_jsonld( $is_homepage, $post_id ) ); |
|
298 | - |
|
299 | - } |
|
300 | - |
|
301 | - /** |
|
302 | - * A close of WP's own `wp_send_json` function which uses `application/ld+json` as content type. |
|
303 | - * |
|
304 | - * @param mixed $response Variable (usually an array or object) to encode as JSON, |
|
305 | - * then print and die. |
|
306 | - * |
|
307 | - * @since 3.18.5 |
|
308 | - */ |
|
309 | - private function send_jsonld( $response ) { |
|
310 | - // phpcs:ignore WordPress.PHP.NoSilencedErrors.Discouraged |
|
311 | - @header( 'Content-Type: application/ld+json; charset=' . get_option( 'blog_charset' ) ); |
|
312 | - echo wp_json_encode( $response ); |
|
313 | - if ( apply_filters( 'wp_doing_ajax', defined( 'DOING_AJAX' ) && DOING_AJAX ) ) { |
|
314 | - wp_die(); |
|
315 | - } else { |
|
316 | - die; |
|
317 | - } |
|
318 | - } |
|
319 | - |
|
320 | - /** |
|
321 | - * Get the JSON-LD. |
|
322 | - * |
|
323 | - * @param bool $is_homepage Whether the JSON-LD for the homepage is being requested. |
|
324 | - * @param int|null $post_id The JSON-LD for the specified {@link WP_Post} id. |
|
325 | - * @param int $context A context for the JSON-LD generation, valid values in Jsonld_Context_Enum. |
|
326 | - * |
|
327 | - * @return array A JSON-LD structure. |
|
328 | - * @since 3.15.1 |
|
329 | - */ |
|
330 | - public function get_jsonld( $is_homepage = false, $post_id = null, $context = Jsonld_Context_Enum::UNKNOWN ) { |
|
331 | - // Tell NewRelic to ignore us, otherwise NewRelic customers might receive |
|
332 | - // e-mails with a low apdex score. |
|
333 | - // |
|
334 | - // See https://github.com/insideout10/wordlift-plugin/issues/521 |
|
335 | - Wordlift_NewRelic_Adapter::ignore_apdex(); |
|
336 | - |
|
337 | - // Switch to Website converter if is home page. |
|
338 | - if ( $is_homepage ) { |
|
339 | - /** |
|
340 | - * Filter: 'wordlift_disable_website_json_ld' - Allow disabling of the json+ld output. |
|
341 | - * |
|
342 | - * @since 3.14.0 |
|
343 | - * @api bool $display_search Whether or not to display json+ld search on the frontend. |
|
344 | - */ |
|
345 | - if ( apply_filters( 'wordlift_disable_website_json_ld', false ) ) { |
|
346 | - return array(); |
|
347 | - } |
|
348 | - |
|
349 | - // Set a reference to the website_converter. |
|
350 | - $website_converter = $this->website_converter; |
|
351 | - |
|
352 | - // Send JSON-LD. |
|
353 | - return $website_converter->create_schema(); |
|
354 | - } |
|
355 | - |
|
356 | - // If no id has been provided return an empty array. |
|
357 | - if ( ! isset( $post_id ) ) { |
|
358 | - return array(); |
|
359 | - } |
|
360 | - |
|
361 | - // An array of references which is captured when converting an URI to a |
|
362 | - // json which we gather to further expand our json-ld. |
|
363 | - $references = array(); |
|
364 | - $references_infos = array(); |
|
365 | - |
|
366 | - // Set a reference to the entity_to_jsonld_converter to use in the closures. |
|
367 | - $entity_to_jsonld_converter = $this->converter; |
|
368 | - |
|
369 | - $relations = new Relations(); |
|
370 | - $jsonld = $entity_to_jsonld_converter->convert( $post_id, $references, $references_infos, $relations ); |
|
371 | - |
|
372 | - $graph = new Graph( $jsonld, $entity_to_jsonld_converter, Wordlift_Term_JsonLd_Adapter::get_instance() ); |
|
373 | - |
|
374 | - $schema_type = is_array( $jsonld['@type'] ) ? $jsonld['@type'] : array( $jsonld['@type'] ); |
|
375 | - |
|
376 | - // Add `about`/`mentions` only for `CreativeWork` and descendants. |
|
377 | - if ( array_intersect( $schema_type, self::$creative_work_types ) ) { |
|
378 | - |
|
379 | - foreach ( $relations->toArray() as $relation ) { |
|
380 | - |
|
381 | - // Setting about or mentions by label match is currently supported only for posts |
|
382 | - if ( Object_Type_Enum::POST !== $relation->get_object()->get_type() ) { |
|
383 | - continue; |
|
384 | - } |
|
385 | - |
|
386 | - // Add the `mentions`/`about` prop. |
|
387 | - $this->add_mention_or_about( $jsonld, $post_id, $relation ); |
|
388 | - } |
|
389 | - $graph->set_main_jsonld( $jsonld ); |
|
390 | - } |
|
391 | - |
|
392 | - $jsonld_arr = $graph->add_references( $references ) |
|
393 | - ->add_relations( $relations ) |
|
394 | - ->add_required_reference_infos( $references_infos ) |
|
395 | - ->render( $context ); |
|
396 | - |
|
397 | - /** |
|
398 | - * Filter name: wl_after_get_jsonld |
|
399 | - * |
|
400 | - * @return array |
|
401 | - * @since 3.27.2 |
|
402 | - * @var $jsonld_arr array The final jsonld before outputting to page. |
|
403 | - * @var $post_id int The post id for which the jsonld is generated. |
|
404 | - */ |
|
405 | - $jsonld_arr = apply_filters( 'wl_after_get_jsonld', $jsonld_arr, $post_id, $context ); |
|
406 | - |
|
407 | - return $jsonld_arr; |
|
408 | - } |
|
409 | - |
|
410 | - /** |
|
411 | - * Write the JSON-LD in the head. |
|
412 | - * |
|
413 | - * This function isn't actually used, but may be used to quickly enable writing the JSON-LD synchronously to the |
|
414 | - * document head, using the `wp_head` hook. |
|
415 | - * |
|
416 | - * @since 3.18.5 |
|
417 | - */ |
|
418 | - public function wp_head() { |
|
419 | - |
|
420 | - // Determine whether this is the home page or whether we're displaying a single post. |
|
421 | - $is_homepage = is_home() || is_front_page(); |
|
422 | - $post_id = is_singular() ? get_the_ID() : null; |
|
423 | - |
|
424 | - $jsonld = wp_json_encode( $this->get_jsonld( $is_homepage, $post_id, Jsonld_Context_Enum::PAGE ) ); |
|
425 | - ?> |
|
24 | + /** |
|
25 | + * Creative work types. |
|
26 | + * |
|
27 | + * @var string[] |
|
28 | + */ |
|
29 | + private static $creative_work_types = array( |
|
30 | + 'AmpStory', |
|
31 | + 'ArchiveComponent', |
|
32 | + 'Article', |
|
33 | + 'Atlas', |
|
34 | + 'Blog', |
|
35 | + 'Book', |
|
36 | + 'Chapter', |
|
37 | + 'Claim', |
|
38 | + 'Clip', |
|
39 | + 'Code', |
|
40 | + 'Collection', |
|
41 | + 'ComicStory', |
|
42 | + 'Comment', |
|
43 | + 'Conversation', |
|
44 | + 'Course', |
|
45 | + 'CreativeWork', |
|
46 | + 'CreativeWorkSeason', |
|
47 | + 'CreativeWorkSeries', |
|
48 | + 'DataCatalog', |
|
49 | + 'Dataset', |
|
50 | + 'DefinedTermSet', |
|
51 | + 'Diet', |
|
52 | + 'DigitalDocument', |
|
53 | + 'Drawing', |
|
54 | + 'EducationalOccupationalCredential', |
|
55 | + 'Episode', |
|
56 | + 'ExercisePlan', |
|
57 | + 'Game', |
|
58 | + 'Guide', |
|
59 | + 'HowTo', |
|
60 | + 'HowToDirection', |
|
61 | + 'HowToSection', |
|
62 | + 'HowToStep', |
|
63 | + 'HowToTip', |
|
64 | + 'HyperToc', |
|
65 | + 'HyperTocEntry', |
|
66 | + 'LearningResource', |
|
67 | + 'Legislation', |
|
68 | + 'Manuscript', |
|
69 | + 'Map', |
|
70 | + 'MathSolver', |
|
71 | + 'MediaObject', |
|
72 | + 'Menu', |
|
73 | + 'MenuSection', |
|
74 | + 'Message', |
|
75 | + 'Movie', |
|
76 | + 'MusicComposition', |
|
77 | + 'MusicPlaylist', |
|
78 | + 'MusicRecording', |
|
79 | + 'Painting', |
|
80 | + 'Photograph', |
|
81 | + 'Play', |
|
82 | + 'Poster', |
|
83 | + 'PublicationIssue', |
|
84 | + 'PublicationVolume', |
|
85 | + 'Quotation', |
|
86 | + 'Review', |
|
87 | + 'Sculpture', |
|
88 | + 'Season', |
|
89 | + 'SheetMusic', |
|
90 | + 'ShortStory', |
|
91 | + 'SoftwareApplication', |
|
92 | + 'SoftwareSourceCode', |
|
93 | + 'SpecialAnnouncement', |
|
94 | + 'Thesis', |
|
95 | + 'TvSeason', |
|
96 | + 'TvSeries', |
|
97 | + 'VisualArtwork', |
|
98 | + 'WebContent', |
|
99 | + 'WebPage', |
|
100 | + 'WebPageElement', |
|
101 | + 'WebSite', |
|
102 | + 'AdvertiserContentArticle', |
|
103 | + 'NewsArticle', |
|
104 | + 'Report', |
|
105 | + 'SatiricalArticle', |
|
106 | + 'ScholarlyArticle', |
|
107 | + 'SocialMediaPosting', |
|
108 | + 'TechArticle', |
|
109 | + 'AnalysisNewsArticle', |
|
110 | + 'AskPublicNewsArticle', |
|
111 | + 'BackgroundNewsArticle', |
|
112 | + 'OpinionNewsArticle', |
|
113 | + 'ReportageNewsArticle', |
|
114 | + 'ReviewNewsArticle', |
|
115 | + 'MedicalScholarlyArticle', |
|
116 | + 'BlogPosting', |
|
117 | + 'DiscussionForumPosting', |
|
118 | + 'LiveBlogPosting', |
|
119 | + 'ApiReference', |
|
120 | + 'Audiobook', |
|
121 | + 'MovieClip', |
|
122 | + 'RadioClip', |
|
123 | + 'TvClip', |
|
124 | + 'VideoGameClip', |
|
125 | + 'ProductCollection', |
|
126 | + 'ComicCoverArt', |
|
127 | + 'Answer', |
|
128 | + 'CorrectionComment', |
|
129 | + 'Question', |
|
130 | + 'PodcastSeason', |
|
131 | + 'RadioSeason', |
|
132 | + 'TvSeason', |
|
133 | + 'BookSeries', |
|
134 | + 'MovieSeries', |
|
135 | + 'Periodical', |
|
136 | + 'PodcastSeries', |
|
137 | + 'RadioSeries', |
|
138 | + 'TvSeries', |
|
139 | + 'VideoGameSeries', |
|
140 | + 'ComicSeries', |
|
141 | + 'Newspaper', |
|
142 | + 'DataFeed', |
|
143 | + 'CompleteDataFeed', |
|
144 | + 'CategoryCodeSet', |
|
145 | + 'NoteDigitalDocument', |
|
146 | + 'PresentationDigitalDocument', |
|
147 | + 'SpreadsheetDigitalDocument', |
|
148 | + 'TextDigitalDocument', |
|
149 | + 'PodcastEpisode', |
|
150 | + 'RadioEpisode', |
|
151 | + 'TvEpisode', |
|
152 | + 'VideoGame', |
|
153 | + 'Recipe', |
|
154 | + 'Course', |
|
155 | + 'Quiz', |
|
156 | + 'LegislationObject', |
|
157 | + 'AudioObject', |
|
158 | + 'DModel', |
|
159 | + 'DataDownload', |
|
160 | + 'ImageObject', |
|
161 | + 'LegislationObject', |
|
162 | + 'MusicVideoObject', |
|
163 | + 'VideoObject', |
|
164 | + 'Audiobook', |
|
165 | + 'Barcode', |
|
166 | + 'EmailMessage', |
|
167 | + 'MusicAlbum', |
|
168 | + 'MusicRelease', |
|
169 | + 'ComicIssue', |
|
170 | + 'ClaimReview', |
|
171 | + 'CriticReview', |
|
172 | + 'EmployerReview', |
|
173 | + 'MediaReview', |
|
174 | + 'Recommendation', |
|
175 | + 'UserReview', |
|
176 | + 'ReviewNewsArticle', |
|
177 | + 'MobileApplication', |
|
178 | + 'VideoGame', |
|
179 | + 'WebApplication', |
|
180 | + 'CoverArt', |
|
181 | + 'ComicCoverArt', |
|
182 | + 'HealthTopicContent', |
|
183 | + 'AboutPage', |
|
184 | + 'CheckoutPage', |
|
185 | + 'CollectionPage', |
|
186 | + 'ContactPage', |
|
187 | + 'FaqPage', |
|
188 | + 'ItemPage', |
|
189 | + 'MedicalWebPage', |
|
190 | + 'ProfilePage', |
|
191 | + 'QaPage', |
|
192 | + 'RealEstateListing', |
|
193 | + 'SearchResultsPage', |
|
194 | + 'MediaGallery', |
|
195 | + 'ImageGallery', |
|
196 | + 'VideoGallery', |
|
197 | + 'SiteNavigationElement', |
|
198 | + 'Table', |
|
199 | + 'WpAdBlock', |
|
200 | + 'WpFooter', |
|
201 | + 'WpHeader', |
|
202 | + 'WpSideBar', |
|
203 | + ); |
|
204 | + |
|
205 | + /** |
|
206 | + * The singleton instance for the JSON-LD service. |
|
207 | + * |
|
208 | + * @since 3.15.1 |
|
209 | + * |
|
210 | + * @var \Wordlift_Jsonld_Service $instance The singleton instance for the JSON-LD service. |
|
211 | + */ |
|
212 | + private static $instance; |
|
213 | + |
|
214 | + /** |
|
215 | + * A {@link Wordlift_Entity_Service} instance. |
|
216 | + * |
|
217 | + * @since 3.8.0 |
|
218 | + * @access private |
|
219 | + * @var Wordlift_Entity_Service $entity_service A {@link Wordlift_Entity_Service} instance. |
|
220 | + */ |
|
221 | + private $entity_service; |
|
222 | + |
|
223 | + /** |
|
224 | + * A {@link Wordlift_Term_JsonLd_Adapter} instance. |
|
225 | + * |
|
226 | + * @since 3.32.0 |
|
227 | + * @access private |
|
228 | + * @var Wordlift_Term_JsonLd_Adapter $entity_service A {@link Wordlift_Term_JsonLd_Adapter} instance. |
|
229 | + */ |
|
230 | + private $term_jsonld_adapter; |
|
231 | + |
|
232 | + /** |
|
233 | + * A {@link Wordlift_Post_Converter} instance. |
|
234 | + * |
|
235 | + * @since 3.8.0 |
|
236 | + * @access private |
|
237 | + * @var \Wordlift_Post_Converter A {@link Wordlift_Post_Converter} instance. |
|
238 | + */ |
|
239 | + private $converter; |
|
240 | + |
|
241 | + /** |
|
242 | + * A {@link Wordlift_Website_Jsonld_Converter} instance. |
|
243 | + * |
|
244 | + * @since 3.14.0 |
|
245 | + * @access private |
|
246 | + * @var \Wordlift_Website_Jsonld_Converter A {@link Wordlift_Website_Jsonld_Converter} instance. |
|
247 | + */ |
|
248 | + private $website_converter; |
|
249 | + |
|
250 | + /** |
|
251 | + * Create a JSON-LD service. |
|
252 | + * |
|
253 | + * @param \Wordlift_Entity_Service $entity_service A {@link Wordlift_Entity_Service} instance. |
|
254 | + * @param \Wordlift_Post_Converter $converter A {@link Wordlift_Uri_To_Jsonld_Converter} instance. |
|
255 | + * @param \Wordlift_Website_Jsonld_Converter $website_converter A {@link Wordlift_Website_Jsonld_Converter} instance. |
|
256 | + * @param \Wordlift_Term_JsonLd_Adapter $term_jsonld_adapter |
|
257 | + * |
|
258 | + * @since 3.8.0 |
|
259 | + */ |
|
260 | + public function __construct( $entity_service, $converter, $website_converter, $term_jsonld_adapter ) { |
|
261 | + $this->entity_service = $entity_service; |
|
262 | + $this->converter = $converter; |
|
263 | + $this->website_converter = $website_converter; |
|
264 | + $this->term_jsonld_adapter = $term_jsonld_adapter; |
|
265 | + self::$instance = $this; |
|
266 | + } |
|
267 | + |
|
268 | + /** |
|
269 | + * Get the singleton instance for the JSON-LD service. |
|
270 | + * |
|
271 | + * @return \Wordlift_Jsonld_Service The singleton instance for the JSON-LD service. |
|
272 | + * @since 3.15.1 |
|
273 | + */ |
|
274 | + public static function get_instance() { |
|
275 | + |
|
276 | + return self::$instance; |
|
277 | + } |
|
278 | + |
|
279 | + /** |
|
280 | + * Process calls to the AJAX 'wl_jsonld' endpoint. |
|
281 | + * |
|
282 | + * @since 3.8.0 |
|
283 | + */ |
|
284 | + public function get() { |
|
285 | + // Clear the buffer to be sure someone doesn't mess with our response. |
|
286 | + // |
|
287 | + // See https://github.com/insideout10/wordlift-plugin/issues/406. |
|
288 | + // See https://codex.wordpress.org/AJAX_in_Plugins. |
|
289 | + // phpcs:ignore WordPress.PHP.NoSilencedErrors.Discouraged |
|
290 | + @ob_clean(); |
|
291 | + |
|
292 | + // Get the parameter from the request. |
|
293 | + $is_homepage = isset( $_REQUEST['homepage'] ); //phpcs:ignore WordPress.Security.NonceVerification.Recommended |
|
294 | + $post_id = isset( $_REQUEST['id'] ) && is_numeric( $_REQUEST['id'] ) ? intval( $_REQUEST['id'] ) : null; //phpcs:ignore WordPress.Security.NonceVerification.Recommended |
|
295 | + |
|
296 | + // Send the generated JSON-LD. |
|
297 | + $this->send_jsonld( $this->get_jsonld( $is_homepage, $post_id ) ); |
|
298 | + |
|
299 | + } |
|
300 | + |
|
301 | + /** |
|
302 | + * A close of WP's own `wp_send_json` function which uses `application/ld+json` as content type. |
|
303 | + * |
|
304 | + * @param mixed $response Variable (usually an array or object) to encode as JSON, |
|
305 | + * then print and die. |
|
306 | + * |
|
307 | + * @since 3.18.5 |
|
308 | + */ |
|
309 | + private function send_jsonld( $response ) { |
|
310 | + // phpcs:ignore WordPress.PHP.NoSilencedErrors.Discouraged |
|
311 | + @header( 'Content-Type: application/ld+json; charset=' . get_option( 'blog_charset' ) ); |
|
312 | + echo wp_json_encode( $response ); |
|
313 | + if ( apply_filters( 'wp_doing_ajax', defined( 'DOING_AJAX' ) && DOING_AJAX ) ) { |
|
314 | + wp_die(); |
|
315 | + } else { |
|
316 | + die; |
|
317 | + } |
|
318 | + } |
|
319 | + |
|
320 | + /** |
|
321 | + * Get the JSON-LD. |
|
322 | + * |
|
323 | + * @param bool $is_homepage Whether the JSON-LD for the homepage is being requested. |
|
324 | + * @param int|null $post_id The JSON-LD for the specified {@link WP_Post} id. |
|
325 | + * @param int $context A context for the JSON-LD generation, valid values in Jsonld_Context_Enum. |
|
326 | + * |
|
327 | + * @return array A JSON-LD structure. |
|
328 | + * @since 3.15.1 |
|
329 | + */ |
|
330 | + public function get_jsonld( $is_homepage = false, $post_id = null, $context = Jsonld_Context_Enum::UNKNOWN ) { |
|
331 | + // Tell NewRelic to ignore us, otherwise NewRelic customers might receive |
|
332 | + // e-mails with a low apdex score. |
|
333 | + // |
|
334 | + // See https://github.com/insideout10/wordlift-plugin/issues/521 |
|
335 | + Wordlift_NewRelic_Adapter::ignore_apdex(); |
|
336 | + |
|
337 | + // Switch to Website converter if is home page. |
|
338 | + if ( $is_homepage ) { |
|
339 | + /** |
|
340 | + * Filter: 'wordlift_disable_website_json_ld' - Allow disabling of the json+ld output. |
|
341 | + * |
|
342 | + * @since 3.14.0 |
|
343 | + * @api bool $display_search Whether or not to display json+ld search on the frontend. |
|
344 | + */ |
|
345 | + if ( apply_filters( 'wordlift_disable_website_json_ld', false ) ) { |
|
346 | + return array(); |
|
347 | + } |
|
348 | + |
|
349 | + // Set a reference to the website_converter. |
|
350 | + $website_converter = $this->website_converter; |
|
351 | + |
|
352 | + // Send JSON-LD. |
|
353 | + return $website_converter->create_schema(); |
|
354 | + } |
|
355 | + |
|
356 | + // If no id has been provided return an empty array. |
|
357 | + if ( ! isset( $post_id ) ) { |
|
358 | + return array(); |
|
359 | + } |
|
360 | + |
|
361 | + // An array of references which is captured when converting an URI to a |
|
362 | + // json which we gather to further expand our json-ld. |
|
363 | + $references = array(); |
|
364 | + $references_infos = array(); |
|
365 | + |
|
366 | + // Set a reference to the entity_to_jsonld_converter to use in the closures. |
|
367 | + $entity_to_jsonld_converter = $this->converter; |
|
368 | + |
|
369 | + $relations = new Relations(); |
|
370 | + $jsonld = $entity_to_jsonld_converter->convert( $post_id, $references, $references_infos, $relations ); |
|
371 | + |
|
372 | + $graph = new Graph( $jsonld, $entity_to_jsonld_converter, Wordlift_Term_JsonLd_Adapter::get_instance() ); |
|
373 | + |
|
374 | + $schema_type = is_array( $jsonld['@type'] ) ? $jsonld['@type'] : array( $jsonld['@type'] ); |
|
375 | + |
|
376 | + // Add `about`/`mentions` only for `CreativeWork` and descendants. |
|
377 | + if ( array_intersect( $schema_type, self::$creative_work_types ) ) { |
|
378 | + |
|
379 | + foreach ( $relations->toArray() as $relation ) { |
|
380 | + |
|
381 | + // Setting about or mentions by label match is currently supported only for posts |
|
382 | + if ( Object_Type_Enum::POST !== $relation->get_object()->get_type() ) { |
|
383 | + continue; |
|
384 | + } |
|
385 | + |
|
386 | + // Add the `mentions`/`about` prop. |
|
387 | + $this->add_mention_or_about( $jsonld, $post_id, $relation ); |
|
388 | + } |
|
389 | + $graph->set_main_jsonld( $jsonld ); |
|
390 | + } |
|
391 | + |
|
392 | + $jsonld_arr = $graph->add_references( $references ) |
|
393 | + ->add_relations( $relations ) |
|
394 | + ->add_required_reference_infos( $references_infos ) |
|
395 | + ->render( $context ); |
|
396 | + |
|
397 | + /** |
|
398 | + * Filter name: wl_after_get_jsonld |
|
399 | + * |
|
400 | + * @return array |
|
401 | + * @since 3.27.2 |
|
402 | + * @var $jsonld_arr array The final jsonld before outputting to page. |
|
403 | + * @var $post_id int The post id for which the jsonld is generated. |
|
404 | + */ |
|
405 | + $jsonld_arr = apply_filters( 'wl_after_get_jsonld', $jsonld_arr, $post_id, $context ); |
|
406 | + |
|
407 | + return $jsonld_arr; |
|
408 | + } |
|
409 | + |
|
410 | + /** |
|
411 | + * Write the JSON-LD in the head. |
|
412 | + * |
|
413 | + * This function isn't actually used, but may be used to quickly enable writing the JSON-LD synchronously to the |
|
414 | + * document head, using the `wp_head` hook. |
|
415 | + * |
|
416 | + * @since 3.18.5 |
|
417 | + */ |
|
418 | + public function wp_head() { |
|
419 | + |
|
420 | + // Determine whether this is the home page or whether we're displaying a single post. |
|
421 | + $is_homepage = is_home() || is_front_page(); |
|
422 | + $post_id = is_singular() ? get_the_ID() : null; |
|
423 | + |
|
424 | + $jsonld = wp_json_encode( $this->get_jsonld( $is_homepage, $post_id, Jsonld_Context_Enum::PAGE ) ); |
|
425 | + ?> |
|
426 | 426 | <script type="application/ld+json"><?php echo esc_html( $jsonld ); ?></script> |
427 | 427 | <?php |
428 | - } |
|
429 | - |
|
430 | - /** |
|
431 | - * @param array $jsonld |
|
432 | - * @param Relation $relation |
|
433 | - * |
|
434 | - * @return void |
|
435 | - */ |
|
436 | - private function add_mention_or_about( &$jsonld, $post_id, $relation ) { |
|
437 | - $content_service = Wordpress_Content_Service::get_instance(); |
|
438 | - $entity_service = Wordlift_Entity_Service::get_instance(); |
|
439 | - |
|
440 | - $object = $relation->get_object(); |
|
441 | - $entity_uri = $content_service->get_entity_id( $object ); |
|
442 | - $labels = $entity_service->get_labels( $object->get_id(), $object->get_type() ); |
|
443 | - |
|
444 | - $escaped_labels = array_map( |
|
445 | - function ( $value ) { |
|
446 | - return preg_quote( $value, '/' ); |
|
447 | - }, |
|
448 | - $labels |
|
449 | - ); |
|
450 | - |
|
451 | - $matches = false; |
|
452 | - |
|
453 | - // When the title is empty, then we shouldn't yield a match to about section. |
|
454 | - if ( array_filter( $escaped_labels ) ) { |
|
455 | - // Check if the labels match any part of the title. |
|
456 | - $post = get_post( $post_id ); |
|
457 | - $matches = $this->check_title_match( $escaped_labels, $post->post_title ); |
|
458 | - } |
|
459 | - |
|
460 | - if ( $entity_uri ) { |
|
461 | - // If the title matches, assign the entity to the about, otherwise to the mentions. |
|
462 | - $property_name = $matches ? 'about' : 'mentions'; |
|
463 | - $jsonld[ $property_name ] = isset( $jsonld[ $property_name ] ) ? (array) $jsonld[ $property_name ] : array(); |
|
464 | - $jsonld[ $property_name ][] = array( '@id' => $entity_uri ); |
|
465 | - } |
|
466 | - |
|
467 | - } |
|
468 | - |
|
469 | - /** |
|
470 | - * Check if the labels match any part of the title. |
|
471 | - * |
|
472 | - * @param $labels array The labels to check. |
|
473 | - * @param $title string The title to check. |
|
474 | - * |
|
475 | - * @return boolean |
|
476 | - */ |
|
477 | - public function check_title_match( $labels, $title ) { |
|
478 | - |
|
479 | - // If the title is empty, then we shouldn't yield a match to about section. |
|
480 | - if ( empty( $title ) ) { |
|
481 | - return false; |
|
482 | - } |
|
483 | - |
|
484 | - // Check if the labels match any part of the title. |
|
485 | - return 1 === preg_match( '/\b(' . implode( '|', $labels ) . ')\b/iu', $title ); |
|
486 | - |
|
487 | - } |
|
428 | + } |
|
429 | + |
|
430 | + /** |
|
431 | + * @param array $jsonld |
|
432 | + * @param Relation $relation |
|
433 | + * |
|
434 | + * @return void |
|
435 | + */ |
|
436 | + private function add_mention_or_about( &$jsonld, $post_id, $relation ) { |
|
437 | + $content_service = Wordpress_Content_Service::get_instance(); |
|
438 | + $entity_service = Wordlift_Entity_Service::get_instance(); |
|
439 | + |
|
440 | + $object = $relation->get_object(); |
|
441 | + $entity_uri = $content_service->get_entity_id( $object ); |
|
442 | + $labels = $entity_service->get_labels( $object->get_id(), $object->get_type() ); |
|
443 | + |
|
444 | + $escaped_labels = array_map( |
|
445 | + function ( $value ) { |
|
446 | + return preg_quote( $value, '/' ); |
|
447 | + }, |
|
448 | + $labels |
|
449 | + ); |
|
450 | + |
|
451 | + $matches = false; |
|
452 | + |
|
453 | + // When the title is empty, then we shouldn't yield a match to about section. |
|
454 | + if ( array_filter( $escaped_labels ) ) { |
|
455 | + // Check if the labels match any part of the title. |
|
456 | + $post = get_post( $post_id ); |
|
457 | + $matches = $this->check_title_match( $escaped_labels, $post->post_title ); |
|
458 | + } |
|
459 | + |
|
460 | + if ( $entity_uri ) { |
|
461 | + // If the title matches, assign the entity to the about, otherwise to the mentions. |
|
462 | + $property_name = $matches ? 'about' : 'mentions'; |
|
463 | + $jsonld[ $property_name ] = isset( $jsonld[ $property_name ] ) ? (array) $jsonld[ $property_name ] : array(); |
|
464 | + $jsonld[ $property_name ][] = array( '@id' => $entity_uri ); |
|
465 | + } |
|
466 | + |
|
467 | + } |
|
468 | + |
|
469 | + /** |
|
470 | + * Check if the labels match any part of the title. |
|
471 | + * |
|
472 | + * @param $labels array The labels to check. |
|
473 | + * @param $title string The title to check. |
|
474 | + * |
|
475 | + * @return boolean |
|
476 | + */ |
|
477 | + public function check_title_match( $labels, $title ) { |
|
478 | + |
|
479 | + // If the title is empty, then we shouldn't yield a match to about section. |
|
480 | + if ( empty( $title ) ) { |
|
481 | + return false; |
|
482 | + } |
|
483 | + |
|
484 | + // Check if the labels match any part of the title. |
|
485 | + return 1 === preg_match( '/\b(' . implode( '|', $labels ) . ')\b/iu', $title ); |
|
486 | + |
|
487 | + } |
|
488 | 488 | |
489 | 489 | } |
@@ -257,7 +257,7 @@ discard block |
||
257 | 257 | * |
258 | 258 | * @since 3.8.0 |
259 | 259 | */ |
260 | - public function __construct( $entity_service, $converter, $website_converter, $term_jsonld_adapter ) { |
|
260 | + public function __construct($entity_service, $converter, $website_converter, $term_jsonld_adapter) { |
|
261 | 261 | $this->entity_service = $entity_service; |
262 | 262 | $this->converter = $converter; |
263 | 263 | $this->website_converter = $website_converter; |
@@ -290,11 +290,11 @@ discard block |
||
290 | 290 | @ob_clean(); |
291 | 291 | |
292 | 292 | // Get the parameter from the request. |
293 | - $is_homepage = isset( $_REQUEST['homepage'] ); //phpcs:ignore WordPress.Security.NonceVerification.Recommended |
|
294 | - $post_id = isset( $_REQUEST['id'] ) && is_numeric( $_REQUEST['id'] ) ? intval( $_REQUEST['id'] ) : null; //phpcs:ignore WordPress.Security.NonceVerification.Recommended |
|
293 | + $is_homepage = isset($_REQUEST['homepage']); //phpcs:ignore WordPress.Security.NonceVerification.Recommended |
|
294 | + $post_id = isset($_REQUEST['id']) && is_numeric($_REQUEST['id']) ? intval($_REQUEST['id']) : null; //phpcs:ignore WordPress.Security.NonceVerification.Recommended |
|
295 | 295 | |
296 | 296 | // Send the generated JSON-LD. |
297 | - $this->send_jsonld( $this->get_jsonld( $is_homepage, $post_id ) ); |
|
297 | + $this->send_jsonld($this->get_jsonld($is_homepage, $post_id)); |
|
298 | 298 | |
299 | 299 | } |
300 | 300 | |
@@ -306,11 +306,11 @@ discard block |
||
306 | 306 | * |
307 | 307 | * @since 3.18.5 |
308 | 308 | */ |
309 | - private function send_jsonld( $response ) { |
|
309 | + private function send_jsonld($response) { |
|
310 | 310 | // phpcs:ignore WordPress.PHP.NoSilencedErrors.Discouraged |
311 | - @header( 'Content-Type: application/ld+json; charset=' . get_option( 'blog_charset' ) ); |
|
312 | - echo wp_json_encode( $response ); |
|
313 | - if ( apply_filters( 'wp_doing_ajax', defined( 'DOING_AJAX' ) && DOING_AJAX ) ) { |
|
311 | + @header('Content-Type: application/ld+json; charset='.get_option('blog_charset')); |
|
312 | + echo wp_json_encode($response); |
|
313 | + if (apply_filters('wp_doing_ajax', defined('DOING_AJAX') && DOING_AJAX)) { |
|
314 | 314 | wp_die(); |
315 | 315 | } else { |
316 | 316 | die; |
@@ -327,7 +327,7 @@ discard block |
||
327 | 327 | * @return array A JSON-LD structure. |
328 | 328 | * @since 3.15.1 |
329 | 329 | */ |
330 | - public function get_jsonld( $is_homepage = false, $post_id = null, $context = Jsonld_Context_Enum::UNKNOWN ) { |
|
330 | + public function get_jsonld($is_homepage = false, $post_id = null, $context = Jsonld_Context_Enum::UNKNOWN) { |
|
331 | 331 | // Tell NewRelic to ignore us, otherwise NewRelic customers might receive |
332 | 332 | // e-mails with a low apdex score. |
333 | 333 | // |
@@ -335,14 +335,14 @@ discard block |
||
335 | 335 | Wordlift_NewRelic_Adapter::ignore_apdex(); |
336 | 336 | |
337 | 337 | // Switch to Website converter if is home page. |
338 | - if ( $is_homepage ) { |
|
338 | + if ($is_homepage) { |
|
339 | 339 | /** |
340 | 340 | * Filter: 'wordlift_disable_website_json_ld' - Allow disabling of the json+ld output. |
341 | 341 | * |
342 | 342 | * @since 3.14.0 |
343 | 343 | * @api bool $display_search Whether or not to display json+ld search on the frontend. |
344 | 344 | */ |
345 | - if ( apply_filters( 'wordlift_disable_website_json_ld', false ) ) { |
|
345 | + if (apply_filters('wordlift_disable_website_json_ld', false)) { |
|
346 | 346 | return array(); |
347 | 347 | } |
348 | 348 | |
@@ -354,7 +354,7 @@ discard block |
||
354 | 354 | } |
355 | 355 | |
356 | 356 | // If no id has been provided return an empty array. |
357 | - if ( ! isset( $post_id ) ) { |
|
357 | + if ( ! isset($post_id)) { |
|
358 | 358 | return array(); |
359 | 359 | } |
360 | 360 | |
@@ -367,32 +367,32 @@ discard block |
||
367 | 367 | $entity_to_jsonld_converter = $this->converter; |
368 | 368 | |
369 | 369 | $relations = new Relations(); |
370 | - $jsonld = $entity_to_jsonld_converter->convert( $post_id, $references, $references_infos, $relations ); |
|
370 | + $jsonld = $entity_to_jsonld_converter->convert($post_id, $references, $references_infos, $relations); |
|
371 | 371 | |
372 | - $graph = new Graph( $jsonld, $entity_to_jsonld_converter, Wordlift_Term_JsonLd_Adapter::get_instance() ); |
|
372 | + $graph = new Graph($jsonld, $entity_to_jsonld_converter, Wordlift_Term_JsonLd_Adapter::get_instance()); |
|
373 | 373 | |
374 | - $schema_type = is_array( $jsonld['@type'] ) ? $jsonld['@type'] : array( $jsonld['@type'] ); |
|
374 | + $schema_type = is_array($jsonld['@type']) ? $jsonld['@type'] : array($jsonld['@type']); |
|
375 | 375 | |
376 | 376 | // Add `about`/`mentions` only for `CreativeWork` and descendants. |
377 | - if ( array_intersect( $schema_type, self::$creative_work_types ) ) { |
|
377 | + if (array_intersect($schema_type, self::$creative_work_types)) { |
|
378 | 378 | |
379 | - foreach ( $relations->toArray() as $relation ) { |
|
379 | + foreach ($relations->toArray() as $relation) { |
|
380 | 380 | |
381 | 381 | // Setting about or mentions by label match is currently supported only for posts |
382 | - if ( Object_Type_Enum::POST !== $relation->get_object()->get_type() ) { |
|
382 | + if (Object_Type_Enum::POST !== $relation->get_object()->get_type()) { |
|
383 | 383 | continue; |
384 | 384 | } |
385 | 385 | |
386 | 386 | // Add the `mentions`/`about` prop. |
387 | - $this->add_mention_or_about( $jsonld, $post_id, $relation ); |
|
387 | + $this->add_mention_or_about($jsonld, $post_id, $relation); |
|
388 | 388 | } |
389 | - $graph->set_main_jsonld( $jsonld ); |
|
389 | + $graph->set_main_jsonld($jsonld); |
|
390 | 390 | } |
391 | 391 | |
392 | - $jsonld_arr = $graph->add_references( $references ) |
|
393 | - ->add_relations( $relations ) |
|
394 | - ->add_required_reference_infos( $references_infos ) |
|
395 | - ->render( $context ); |
|
392 | + $jsonld_arr = $graph->add_references($references) |
|
393 | + ->add_relations($relations) |
|
394 | + ->add_required_reference_infos($references_infos) |
|
395 | + ->render($context); |
|
396 | 396 | |
397 | 397 | /** |
398 | 398 | * Filter name: wl_after_get_jsonld |
@@ -402,7 +402,7 @@ discard block |
||
402 | 402 | * @var $jsonld_arr array The final jsonld before outputting to page. |
403 | 403 | * @var $post_id int The post id for which the jsonld is generated. |
404 | 404 | */ |
405 | - $jsonld_arr = apply_filters( 'wl_after_get_jsonld', $jsonld_arr, $post_id, $context ); |
|
405 | + $jsonld_arr = apply_filters('wl_after_get_jsonld', $jsonld_arr, $post_id, $context); |
|
406 | 406 | |
407 | 407 | return $jsonld_arr; |
408 | 408 | } |
@@ -421,9 +421,9 @@ discard block |
||
421 | 421 | $is_homepage = is_home() || is_front_page(); |
422 | 422 | $post_id = is_singular() ? get_the_ID() : null; |
423 | 423 | |
424 | - $jsonld = wp_json_encode( $this->get_jsonld( $is_homepage, $post_id, Jsonld_Context_Enum::PAGE ) ); |
|
424 | + $jsonld = wp_json_encode($this->get_jsonld($is_homepage, $post_id, Jsonld_Context_Enum::PAGE)); |
|
425 | 425 | ?> |
426 | - <script type="application/ld+json"><?php echo esc_html( $jsonld ); ?></script> |
|
426 | + <script type="application/ld+json"><?php echo esc_html($jsonld); ?></script> |
|
427 | 427 | <?php |
428 | 428 | } |
429 | 429 | |
@@ -433,17 +433,17 @@ discard block |
||
433 | 433 | * |
434 | 434 | * @return void |
435 | 435 | */ |
436 | - private function add_mention_or_about( &$jsonld, $post_id, $relation ) { |
|
436 | + private function add_mention_or_about(&$jsonld, $post_id, $relation) { |
|
437 | 437 | $content_service = Wordpress_Content_Service::get_instance(); |
438 | 438 | $entity_service = Wordlift_Entity_Service::get_instance(); |
439 | 439 | |
440 | 440 | $object = $relation->get_object(); |
441 | - $entity_uri = $content_service->get_entity_id( $object ); |
|
442 | - $labels = $entity_service->get_labels( $object->get_id(), $object->get_type() ); |
|
441 | + $entity_uri = $content_service->get_entity_id($object); |
|
442 | + $labels = $entity_service->get_labels($object->get_id(), $object->get_type()); |
|
443 | 443 | |
444 | 444 | $escaped_labels = array_map( |
445 | - function ( $value ) { |
|
446 | - return preg_quote( $value, '/' ); |
|
445 | + function($value) { |
|
446 | + return preg_quote($value, '/'); |
|
447 | 447 | }, |
448 | 448 | $labels |
449 | 449 | ); |
@@ -451,17 +451,17 @@ discard block |
||
451 | 451 | $matches = false; |
452 | 452 | |
453 | 453 | // When the title is empty, then we shouldn't yield a match to about section. |
454 | - if ( array_filter( $escaped_labels ) ) { |
|
454 | + if (array_filter($escaped_labels)) { |
|
455 | 455 | // Check if the labels match any part of the title. |
456 | - $post = get_post( $post_id ); |
|
457 | - $matches = $this->check_title_match( $escaped_labels, $post->post_title ); |
|
456 | + $post = get_post($post_id); |
|
457 | + $matches = $this->check_title_match($escaped_labels, $post->post_title); |
|
458 | 458 | } |
459 | 459 | |
460 | - if ( $entity_uri ) { |
|
460 | + if ($entity_uri) { |
|
461 | 461 | // If the title matches, assign the entity to the about, otherwise to the mentions. |
462 | 462 | $property_name = $matches ? 'about' : 'mentions'; |
463 | - $jsonld[ $property_name ] = isset( $jsonld[ $property_name ] ) ? (array) $jsonld[ $property_name ] : array(); |
|
464 | - $jsonld[ $property_name ][] = array( '@id' => $entity_uri ); |
|
463 | + $jsonld[$property_name] = isset($jsonld[$property_name]) ? (array) $jsonld[$property_name] : array(); |
|
464 | + $jsonld[$property_name][] = array('@id' => $entity_uri); |
|
465 | 465 | } |
466 | 466 | |
467 | 467 | } |
@@ -474,15 +474,15 @@ discard block |
||
474 | 474 | * |
475 | 475 | * @return boolean |
476 | 476 | */ |
477 | - public function check_title_match( $labels, $title ) { |
|
477 | + public function check_title_match($labels, $title) { |
|
478 | 478 | |
479 | 479 | // If the title is empty, then we shouldn't yield a match to about section. |
480 | - if ( empty( $title ) ) { |
|
480 | + if (empty($title)) { |
|
481 | 481 | return false; |
482 | 482 | } |
483 | 483 | |
484 | 484 | // Check if the labels match any part of the title. |
485 | - return 1 === preg_match( '/\b(' . implode( '|', $labels ) . ')\b/iu', $title ); |
|
485 | + return 1 === preg_match('/\b('.implode('|', $labels).')\b/iu', $title); |
|
486 | 486 | |
487 | 487 | } |
488 | 488 |
@@ -14,43 +14,43 @@ |
||
14 | 14 | * @package Wordlift\Vocabulary\Jsonld |
15 | 15 | */ |
16 | 16 | class Term_Jsonld { |
17 | - /** |
|
18 | - * Init. |
|
19 | - */ |
|
20 | - public function init() { |
|
21 | - add_filter( 'wl_term_jsonld_array', array( $this, 'wl_term_jsonld_array' ), 10, 2 ); |
|
22 | - } |
|
23 | - |
|
24 | - /** |
|
25 | - * Wl term jsonld array. |
|
26 | - * |
|
27 | - * @param $jsonld_array |
|
28 | - * @param $term_id |
|
29 | - * |
|
30 | - * @return array|mixed |
|
31 | - */ |
|
32 | - public function wl_term_jsonld_array( $jsonld_array, $term_id ) { |
|
33 | - |
|
34 | - $entities = Jsonld_Utils::get_matched_entities_for_term( $term_id ); |
|
35 | - |
|
36 | - if ( count( $entities ) > 0 ) { |
|
37 | - $entity = array_shift( $entities ); |
|
38 | - $entity['@context'] = 'http://schema.org'; |
|
39 | - |
|
40 | - $term_link = get_term_link( $term_id ); |
|
41 | - if ( is_wp_error( $term_link ) ) { |
|
42 | - Wordlift_Log_Service::get_logger( get_class() ) |
|
43 | - ->error( "Term $term_id returned an error: " . $term_link->get_error_message() ); |
|
44 | - |
|
45 | - return $jsonld_array; |
|
46 | - } |
|
47 | - |
|
48 | - $entity['@id'] = $term_link . '/#id'; |
|
49 | - $entity['url'] = $term_link; |
|
50 | - $entity['mainEntityOfPage'] = $term_link; |
|
51 | - $jsonld_array['jsonld'][] = $entity; |
|
52 | - } |
|
53 | - |
|
54 | - return $jsonld_array; |
|
55 | - } |
|
17 | + /** |
|
18 | + * Init. |
|
19 | + */ |
|
20 | + public function init() { |
|
21 | + add_filter( 'wl_term_jsonld_array', array( $this, 'wl_term_jsonld_array' ), 10, 2 ); |
|
22 | + } |
|
23 | + |
|
24 | + /** |
|
25 | + * Wl term jsonld array. |
|
26 | + * |
|
27 | + * @param $jsonld_array |
|
28 | + * @param $term_id |
|
29 | + * |
|
30 | + * @return array|mixed |
|
31 | + */ |
|
32 | + public function wl_term_jsonld_array( $jsonld_array, $term_id ) { |
|
33 | + |
|
34 | + $entities = Jsonld_Utils::get_matched_entities_for_term( $term_id ); |
|
35 | + |
|
36 | + if ( count( $entities ) > 0 ) { |
|
37 | + $entity = array_shift( $entities ); |
|
38 | + $entity['@context'] = 'http://schema.org'; |
|
39 | + |
|
40 | + $term_link = get_term_link( $term_id ); |
|
41 | + if ( is_wp_error( $term_link ) ) { |
|
42 | + Wordlift_Log_Service::get_logger( get_class() ) |
|
43 | + ->error( "Term $term_id returned an error: " . $term_link->get_error_message() ); |
|
44 | + |
|
45 | + return $jsonld_array; |
|
46 | + } |
|
47 | + |
|
48 | + $entity['@id'] = $term_link . '/#id'; |
|
49 | + $entity['url'] = $term_link; |
|
50 | + $entity['mainEntityOfPage'] = $term_link; |
|
51 | + $jsonld_array['jsonld'][] = $entity; |
|
52 | + } |
|
53 | + |
|
54 | + return $jsonld_array; |
|
55 | + } |
|
56 | 56 | } |
@@ -18,7 +18,7 @@ discard block |
||
18 | 18 | * Init. |
19 | 19 | */ |
20 | 20 | public function init() { |
21 | - add_filter( 'wl_term_jsonld_array', array( $this, 'wl_term_jsonld_array' ), 10, 2 ); |
|
21 | + add_filter('wl_term_jsonld_array', array($this, 'wl_term_jsonld_array'), 10, 2); |
|
22 | 22 | } |
23 | 23 | |
24 | 24 | /** |
@@ -29,23 +29,23 @@ discard block |
||
29 | 29 | * |
30 | 30 | * @return array|mixed |
31 | 31 | */ |
32 | - public function wl_term_jsonld_array( $jsonld_array, $term_id ) { |
|
32 | + public function wl_term_jsonld_array($jsonld_array, $term_id) { |
|
33 | 33 | |
34 | - $entities = Jsonld_Utils::get_matched_entities_for_term( $term_id ); |
|
34 | + $entities = Jsonld_Utils::get_matched_entities_for_term($term_id); |
|
35 | 35 | |
36 | - if ( count( $entities ) > 0 ) { |
|
37 | - $entity = array_shift( $entities ); |
|
36 | + if (count($entities) > 0) { |
|
37 | + $entity = array_shift($entities); |
|
38 | 38 | $entity['@context'] = 'http://schema.org'; |
39 | 39 | |
40 | - $term_link = get_term_link( $term_id ); |
|
41 | - if ( is_wp_error( $term_link ) ) { |
|
42 | - Wordlift_Log_Service::get_logger( get_class() ) |
|
43 | - ->error( "Term $term_id returned an error: " . $term_link->get_error_message() ); |
|
40 | + $term_link = get_term_link($term_id); |
|
41 | + if (is_wp_error($term_link)) { |
|
42 | + Wordlift_Log_Service::get_logger(get_class()) |
|
43 | + ->error("Term $term_id returned an error: ".$term_link->get_error_message()); |
|
44 | 44 | |
45 | 45 | return $jsonld_array; |
46 | 46 | } |
47 | 47 | |
48 | - $entity['@id'] = $term_link . '/#id'; |
|
48 | + $entity['@id'] = $term_link.'/#id'; |
|
49 | 49 | $entity['url'] = $term_link; |
50 | 50 | $entity['mainEntityOfPage'] = $term_link; |
51 | 51 | $jsonld_array['jsonld'][] = $entity; |
@@ -15,131 +15,131 @@ |
||
15 | 15 | * @package Wordlift\Vocabulary\Jsonld |
16 | 16 | */ |
17 | 17 | class Post_Jsonld { |
18 | - /** |
|
19 | - * Enhance post jsonld. |
|
20 | - */ |
|
21 | - public function enhance_post_jsonld() { |
|
22 | - add_filter( 'wl_post_jsonld_array', array( $this, 'wl_post_jsonld_array' ), 11, 2 ); |
|
23 | - add_filter( 'wl_after_get_jsonld', array( $this, 'wl_after_get_jsonld' ), 11 ); |
|
24 | - } |
|
25 | - |
|
26 | - /** |
|
27 | - * Wl post jsonld array. |
|
28 | - * |
|
29 | - * @param $arr |
|
30 | - * @param $post_id |
|
31 | - * |
|
32 | - * @return array |
|
33 | - */ |
|
34 | - public function wl_post_jsonld_array( $arr, $post_id ) { |
|
35 | - $jsonld = $arr['jsonld']; |
|
36 | - $references = $arr['references']; |
|
37 | - |
|
38 | - $this->add_mentions( $post_id, $jsonld ); |
|
39 | - |
|
40 | - return array( |
|
41 | - 'jsonld' => $jsonld, |
|
42 | - 'references' => $references, |
|
43 | - ); |
|
44 | - } |
|
45 | - |
|
46 | - /** |
|
47 | - * Add mentions. |
|
48 | - * |
|
49 | - * @param $post_id |
|
50 | - * @param $jsonld |
|
51 | - */ |
|
52 | - public function add_mentions( $post_id, &$jsonld ) { |
|
53 | - |
|
54 | - $taxonomies = Terms_Compat::get_public_taxonomies(); |
|
55 | - $terms = array(); |
|
56 | - |
|
57 | - foreach ( $taxonomies as $taxonomy ) { |
|
58 | - $taxonomy_terms = get_the_terms( $post_id, $taxonomy ); |
|
59 | - if ( ! $taxonomy_terms ) { |
|
60 | - continue; |
|
61 | - } |
|
62 | - $terms = array_merge( $taxonomy_terms, $terms ); |
|
63 | - } |
|
64 | - |
|
65 | - if ( ! $terms ) { |
|
66 | - return; |
|
67 | - } |
|
68 | - |
|
69 | - if ( ! array_key_exists( 'mentions', $jsonld ) && count( $terms ) > 0 ) { |
|
70 | - $jsonld['mentions'] = array(); |
|
71 | - } |
|
72 | - |
|
73 | - foreach ( $terms as $term ) { |
|
74 | - |
|
75 | - $is_matched = intval( get_term_meta( $term->term_id, Entity_Rest_Endpoint::IGNORE_TAG_FROM_LISTING, true ) ) === 1; |
|
76 | - |
|
77 | - if ( ! $is_matched ) { |
|
78 | - continue; |
|
79 | - } |
|
80 | - |
|
81 | - $entities = Jsonld_Utils::get_matched_entities_for_term( $term->term_id ); |
|
82 | - |
|
83 | - if ( count( $entities ) === 0 ) { |
|
84 | - continue; |
|
85 | - } |
|
86 | - |
|
87 | - $add_additional_attrs = self::add_additional_attrs( $term, $entities ); |
|
88 | - |
|
89 | - $jsonld['mentions'] = array_merge( $jsonld['mentions'], $add_additional_attrs ); |
|
90 | - } |
|
91 | - |
|
92 | - } |
|
93 | - |
|
94 | - /** |
|
95 | - * @param $term \WP_Term |
|
96 | - * @param $entities |
|
97 | - * |
|
98 | - * @return array |
|
99 | - */ |
|
100 | - public static function add_additional_attrs( $term, $entities ) { |
|
101 | - |
|
102 | - return array_map( |
|
103 | - function ( $entity ) use ( $term ) { |
|
104 | - $entity['@id'] = get_term_link( $term->term_id ) . '#id'; |
|
105 | - if ( ! empty( $term->description ) ) { |
|
106 | - $entity['description'] = $term->description; |
|
107 | - } |
|
108 | - |
|
109 | - return $entity; |
|
110 | - |
|
111 | - }, |
|
112 | - $entities |
|
113 | - ); |
|
114 | - |
|
115 | - } |
|
116 | - |
|
117 | - /** |
|
118 | - * Wl after get jsonld. |
|
119 | - * |
|
120 | - * @param $jsonld |
|
121 | - * |
|
122 | - * @return array|mixed |
|
123 | - */ |
|
124 | - public function wl_after_get_jsonld( $jsonld ) { |
|
125 | - |
|
126 | - if ( ! is_array( $jsonld ) || count( $jsonld ) === 0 ) { |
|
127 | - return $jsonld; |
|
128 | - } |
|
129 | - |
|
130 | - foreach ( $jsonld as $key => $value ) { |
|
131 | - if ( 'Article' === $value['@type'] && isset( $value['image'] ) ) { |
|
132 | - $image = $value['image']; |
|
133 | - } |
|
134 | - if ( 'Recipe' === $value['@type'] && ! isset( $value['image'] ) ) { |
|
135 | - $index = $key; |
|
136 | - } |
|
137 | - } |
|
138 | - |
|
139 | - if ( isset( $index ) && ! empty( $image ) ) { |
|
140 | - $jsonld[ $index ]['image'] = $image; |
|
141 | - } |
|
142 | - |
|
143 | - return $jsonld; |
|
144 | - } |
|
18 | + /** |
|
19 | + * Enhance post jsonld. |
|
20 | + */ |
|
21 | + public function enhance_post_jsonld() { |
|
22 | + add_filter( 'wl_post_jsonld_array', array( $this, 'wl_post_jsonld_array' ), 11, 2 ); |
|
23 | + add_filter( 'wl_after_get_jsonld', array( $this, 'wl_after_get_jsonld' ), 11 ); |
|
24 | + } |
|
25 | + |
|
26 | + /** |
|
27 | + * Wl post jsonld array. |
|
28 | + * |
|
29 | + * @param $arr |
|
30 | + * @param $post_id |
|
31 | + * |
|
32 | + * @return array |
|
33 | + */ |
|
34 | + public function wl_post_jsonld_array( $arr, $post_id ) { |
|
35 | + $jsonld = $arr['jsonld']; |
|
36 | + $references = $arr['references']; |
|
37 | + |
|
38 | + $this->add_mentions( $post_id, $jsonld ); |
|
39 | + |
|
40 | + return array( |
|
41 | + 'jsonld' => $jsonld, |
|
42 | + 'references' => $references, |
|
43 | + ); |
|
44 | + } |
|
45 | + |
|
46 | + /** |
|
47 | + * Add mentions. |
|
48 | + * |
|
49 | + * @param $post_id |
|
50 | + * @param $jsonld |
|
51 | + */ |
|
52 | + public function add_mentions( $post_id, &$jsonld ) { |
|
53 | + |
|
54 | + $taxonomies = Terms_Compat::get_public_taxonomies(); |
|
55 | + $terms = array(); |
|
56 | + |
|
57 | + foreach ( $taxonomies as $taxonomy ) { |
|
58 | + $taxonomy_terms = get_the_terms( $post_id, $taxonomy ); |
|
59 | + if ( ! $taxonomy_terms ) { |
|
60 | + continue; |
|
61 | + } |
|
62 | + $terms = array_merge( $taxonomy_terms, $terms ); |
|
63 | + } |
|
64 | + |
|
65 | + if ( ! $terms ) { |
|
66 | + return; |
|
67 | + } |
|
68 | + |
|
69 | + if ( ! array_key_exists( 'mentions', $jsonld ) && count( $terms ) > 0 ) { |
|
70 | + $jsonld['mentions'] = array(); |
|
71 | + } |
|
72 | + |
|
73 | + foreach ( $terms as $term ) { |
|
74 | + |
|
75 | + $is_matched = intval( get_term_meta( $term->term_id, Entity_Rest_Endpoint::IGNORE_TAG_FROM_LISTING, true ) ) === 1; |
|
76 | + |
|
77 | + if ( ! $is_matched ) { |
|
78 | + continue; |
|
79 | + } |
|
80 | + |
|
81 | + $entities = Jsonld_Utils::get_matched_entities_for_term( $term->term_id ); |
|
82 | + |
|
83 | + if ( count( $entities ) === 0 ) { |
|
84 | + continue; |
|
85 | + } |
|
86 | + |
|
87 | + $add_additional_attrs = self::add_additional_attrs( $term, $entities ); |
|
88 | + |
|
89 | + $jsonld['mentions'] = array_merge( $jsonld['mentions'], $add_additional_attrs ); |
|
90 | + } |
|
91 | + |
|
92 | + } |
|
93 | + |
|
94 | + /** |
|
95 | + * @param $term \WP_Term |
|
96 | + * @param $entities |
|
97 | + * |
|
98 | + * @return array |
|
99 | + */ |
|
100 | + public static function add_additional_attrs( $term, $entities ) { |
|
101 | + |
|
102 | + return array_map( |
|
103 | + function ( $entity ) use ( $term ) { |
|
104 | + $entity['@id'] = get_term_link( $term->term_id ) . '#id'; |
|
105 | + if ( ! empty( $term->description ) ) { |
|
106 | + $entity['description'] = $term->description; |
|
107 | + } |
|
108 | + |
|
109 | + return $entity; |
|
110 | + |
|
111 | + }, |
|
112 | + $entities |
|
113 | + ); |
|
114 | + |
|
115 | + } |
|
116 | + |
|
117 | + /** |
|
118 | + * Wl after get jsonld. |
|
119 | + * |
|
120 | + * @param $jsonld |
|
121 | + * |
|
122 | + * @return array|mixed |
|
123 | + */ |
|
124 | + public function wl_after_get_jsonld( $jsonld ) { |
|
125 | + |
|
126 | + if ( ! is_array( $jsonld ) || count( $jsonld ) === 0 ) { |
|
127 | + return $jsonld; |
|
128 | + } |
|
129 | + |
|
130 | + foreach ( $jsonld as $key => $value ) { |
|
131 | + if ( 'Article' === $value['@type'] && isset( $value['image'] ) ) { |
|
132 | + $image = $value['image']; |
|
133 | + } |
|
134 | + if ( 'Recipe' === $value['@type'] && ! isset( $value['image'] ) ) { |
|
135 | + $index = $key; |
|
136 | + } |
|
137 | + } |
|
138 | + |
|
139 | + if ( isset( $index ) && ! empty( $image ) ) { |
|
140 | + $jsonld[ $index ]['image'] = $image; |
|
141 | + } |
|
142 | + |
|
143 | + return $jsonld; |
|
144 | + } |
|
145 | 145 | } |
@@ -19,8 +19,8 @@ discard block |
||
19 | 19 | * Enhance post jsonld. |
20 | 20 | */ |
21 | 21 | public function enhance_post_jsonld() { |
22 | - add_filter( 'wl_post_jsonld_array', array( $this, 'wl_post_jsonld_array' ), 11, 2 ); |
|
23 | - add_filter( 'wl_after_get_jsonld', array( $this, 'wl_after_get_jsonld' ), 11 ); |
|
22 | + add_filter('wl_post_jsonld_array', array($this, 'wl_post_jsonld_array'), 11, 2); |
|
23 | + add_filter('wl_after_get_jsonld', array($this, 'wl_after_get_jsonld'), 11); |
|
24 | 24 | } |
25 | 25 | |
26 | 26 | /** |
@@ -31,11 +31,11 @@ discard block |
||
31 | 31 | * |
32 | 32 | * @return array |
33 | 33 | */ |
34 | - public function wl_post_jsonld_array( $arr, $post_id ) { |
|
34 | + public function wl_post_jsonld_array($arr, $post_id) { |
|
35 | 35 | $jsonld = $arr['jsonld']; |
36 | 36 | $references = $arr['references']; |
37 | 37 | |
38 | - $this->add_mentions( $post_id, $jsonld ); |
|
38 | + $this->add_mentions($post_id, $jsonld); |
|
39 | 39 | |
40 | 40 | return array( |
41 | 41 | 'jsonld' => $jsonld, |
@@ -49,44 +49,44 @@ discard block |
||
49 | 49 | * @param $post_id |
50 | 50 | * @param $jsonld |
51 | 51 | */ |
52 | - public function add_mentions( $post_id, &$jsonld ) { |
|
52 | + public function add_mentions($post_id, &$jsonld) { |
|
53 | 53 | |
54 | 54 | $taxonomies = Terms_Compat::get_public_taxonomies(); |
55 | 55 | $terms = array(); |
56 | 56 | |
57 | - foreach ( $taxonomies as $taxonomy ) { |
|
58 | - $taxonomy_terms = get_the_terms( $post_id, $taxonomy ); |
|
59 | - if ( ! $taxonomy_terms ) { |
|
57 | + foreach ($taxonomies as $taxonomy) { |
|
58 | + $taxonomy_terms = get_the_terms($post_id, $taxonomy); |
|
59 | + if ( ! $taxonomy_terms) { |
|
60 | 60 | continue; |
61 | 61 | } |
62 | - $terms = array_merge( $taxonomy_terms, $terms ); |
|
62 | + $terms = array_merge($taxonomy_terms, $terms); |
|
63 | 63 | } |
64 | 64 | |
65 | - if ( ! $terms ) { |
|
65 | + if ( ! $terms) { |
|
66 | 66 | return; |
67 | 67 | } |
68 | 68 | |
69 | - if ( ! array_key_exists( 'mentions', $jsonld ) && count( $terms ) > 0 ) { |
|
69 | + if ( ! array_key_exists('mentions', $jsonld) && count($terms) > 0) { |
|
70 | 70 | $jsonld['mentions'] = array(); |
71 | 71 | } |
72 | 72 | |
73 | - foreach ( $terms as $term ) { |
|
73 | + foreach ($terms as $term) { |
|
74 | 74 | |
75 | - $is_matched = intval( get_term_meta( $term->term_id, Entity_Rest_Endpoint::IGNORE_TAG_FROM_LISTING, true ) ) === 1; |
|
75 | + $is_matched = intval(get_term_meta($term->term_id, Entity_Rest_Endpoint::IGNORE_TAG_FROM_LISTING, true)) === 1; |
|
76 | 76 | |
77 | - if ( ! $is_matched ) { |
|
77 | + if ( ! $is_matched) { |
|
78 | 78 | continue; |
79 | 79 | } |
80 | 80 | |
81 | - $entities = Jsonld_Utils::get_matched_entities_for_term( $term->term_id ); |
|
81 | + $entities = Jsonld_Utils::get_matched_entities_for_term($term->term_id); |
|
82 | 82 | |
83 | - if ( count( $entities ) === 0 ) { |
|
83 | + if (count($entities) === 0) { |
|
84 | 84 | continue; |
85 | 85 | } |
86 | 86 | |
87 | - $add_additional_attrs = self::add_additional_attrs( $term, $entities ); |
|
87 | + $add_additional_attrs = self::add_additional_attrs($term, $entities); |
|
88 | 88 | |
89 | - $jsonld['mentions'] = array_merge( $jsonld['mentions'], $add_additional_attrs ); |
|
89 | + $jsonld['mentions'] = array_merge($jsonld['mentions'], $add_additional_attrs); |
|
90 | 90 | } |
91 | 91 | |
92 | 92 | } |
@@ -97,12 +97,12 @@ discard block |
||
97 | 97 | * |
98 | 98 | * @return array |
99 | 99 | */ |
100 | - public static function add_additional_attrs( $term, $entities ) { |
|
100 | + public static function add_additional_attrs($term, $entities) { |
|
101 | 101 | |
102 | 102 | return array_map( |
103 | - function ( $entity ) use ( $term ) { |
|
104 | - $entity['@id'] = get_term_link( $term->term_id ) . '#id'; |
|
105 | - if ( ! empty( $term->description ) ) { |
|
103 | + function($entity) use ($term) { |
|
104 | + $entity['@id'] = get_term_link($term->term_id).'#id'; |
|
105 | + if ( ! empty($term->description)) { |
|
106 | 106 | $entity['description'] = $term->description; |
107 | 107 | } |
108 | 108 | |
@@ -121,23 +121,23 @@ discard block |
||
121 | 121 | * |
122 | 122 | * @return array|mixed |
123 | 123 | */ |
124 | - public function wl_after_get_jsonld( $jsonld ) { |
|
124 | + public function wl_after_get_jsonld($jsonld) { |
|
125 | 125 | |
126 | - if ( ! is_array( $jsonld ) || count( $jsonld ) === 0 ) { |
|
126 | + if ( ! is_array($jsonld) || count($jsonld) === 0) { |
|
127 | 127 | return $jsonld; |
128 | 128 | } |
129 | 129 | |
130 | - foreach ( $jsonld as $key => $value ) { |
|
131 | - if ( 'Article' === $value['@type'] && isset( $value['image'] ) ) { |
|
130 | + foreach ($jsonld as $key => $value) { |
|
131 | + if ('Article' === $value['@type'] && isset($value['image'])) { |
|
132 | 132 | $image = $value['image']; |
133 | 133 | } |
134 | - if ( 'Recipe' === $value['@type'] && ! isset( $value['image'] ) ) { |
|
134 | + if ('Recipe' === $value['@type'] && ! isset($value['image'])) { |
|
135 | 135 | $index = $key; |
136 | 136 | } |
137 | 137 | } |
138 | 138 | |
139 | - if ( isset( $index ) && ! empty( $image ) ) { |
|
140 | - $jsonld[ $index ]['image'] = $image; |
|
139 | + if (isset($index) && ! empty($image)) { |
|
140 | + $jsonld[$index]['image'] = $image; |
|
141 | 141 | } |
142 | 142 | |
143 | 143 | return $jsonld; |
@@ -12,89 +12,89 @@ |
||
12 | 12 | */ |
13 | 13 | class Events_Post_Entity_Jsonld { |
14 | 14 | |
15 | - /** |
|
16 | - * The {@link Api_Service} used to communicate with the remote APIs. |
|
17 | - * |
|
18 | - * @access private |
|
19 | - * @var Default_Api_Service |
|
20 | - */ |
|
21 | - private $api_service; |
|
15 | + /** |
|
16 | + * The {@link Api_Service} used to communicate with the remote APIs. |
|
17 | + * |
|
18 | + * @access private |
|
19 | + * @var Default_Api_Service |
|
20 | + */ |
|
21 | + private $api_service; |
|
22 | 22 | |
23 | - /** |
|
24 | - * @param Default_Api_Service $api_service |
|
25 | - */ |
|
26 | - public function __construct( Default_Api_Service $api_service ) { |
|
27 | - $this->api_service = $api_service; |
|
28 | - } |
|
23 | + /** |
|
24 | + * @param Default_Api_Service $api_service |
|
25 | + */ |
|
26 | + public function __construct( Default_Api_Service $api_service ) { |
|
27 | + $this->api_service = $api_service; |
|
28 | + } |
|
29 | 29 | |
30 | - /** |
|
31 | - * Register hooks. |
|
32 | - */ |
|
33 | - public function register_hooks() { |
|
34 | - add_filter( 'wl_after_get_jsonld', array( $this, 'set_events_request' ), 90, 3 ); |
|
35 | - } |
|
30 | + /** |
|
31 | + * Register hooks. |
|
32 | + */ |
|
33 | + public function register_hooks() { |
|
34 | + add_filter( 'wl_after_get_jsonld', array( $this, 'set_events_request' ), 90, 3 ); |
|
35 | + } |
|
36 | 36 | |
37 | - /** |
|
38 | - * Set events request. |
|
39 | - * |
|
40 | - * @param $jsonld_arr array The final jsonld before outputting to page. |
|
41 | - * @param $post_id int The post id for which the jsonld is generated. |
|
42 | - * @param $context int A context for the JSON-LD generation, valid values in Jsonld_Context_Enum |
|
43 | - */ |
|
44 | - public function set_events_request( $jsonld_arr, $post_id, $context ) { |
|
45 | - // If context is not PAGE or the array is empty, return early. |
|
46 | - if ( Jsonld_Context_Enum::PAGE !== $context || empty( $jsonld_arr[0] ) ) { |
|
47 | - return; |
|
48 | - } |
|
37 | + /** |
|
38 | + * Set events request. |
|
39 | + * |
|
40 | + * @param $jsonld_arr array The final jsonld before outputting to page. |
|
41 | + * @param $post_id int The post id for which the jsonld is generated. |
|
42 | + * @param $context int A context for the JSON-LD generation, valid values in Jsonld_Context_Enum |
|
43 | + */ |
|
44 | + public function set_events_request( $jsonld_arr, $post_id, $context ) { |
|
45 | + // If context is not PAGE or the array is empty, return early. |
|
46 | + if ( Jsonld_Context_Enum::PAGE !== $context || empty( $jsonld_arr[0] ) ) { |
|
47 | + return; |
|
48 | + } |
|
49 | 49 | |
50 | - // Flag to indicate if we should make an API request. |
|
51 | - $change_status = false; |
|
50 | + // Flag to indicate if we should make an API request. |
|
51 | + $change_status = false; |
|
52 | 52 | |
53 | - // Get data from the array. |
|
54 | - $data = $jsonld_arr[0]; |
|
53 | + // Get data from the array. |
|
54 | + $data = $jsonld_arr[0]; |
|
55 | 55 | |
56 | - // Fetch the initial 'about' and 'mentions' counts from post meta. |
|
57 | - $counts = [ |
|
58 | - 'about' => get_post_meta( $post_id, 'wl_about_count', true ) ? : 0, |
|
59 | - 'mentions' => get_post_meta( $post_id, 'wl_mentions_count', true ) ? : 0, |
|
60 | - ]; |
|
56 | + // Fetch the initial 'about' and 'mentions' counts from post meta. |
|
57 | + $counts = [ |
|
58 | + 'about' => get_post_meta( $post_id, 'wl_about_count', true ) ? : 0, |
|
59 | + 'mentions' => get_post_meta( $post_id, 'wl_mentions_count', true ) ? : 0, |
|
60 | + ]; |
|
61 | 61 | |
62 | - // Iterate over the counts array. |
|
63 | - foreach ( $counts as $key => $count ) { |
|
64 | - // Check if data has 'about' or 'mentions' and the count is different from the existing meta value. |
|
65 | - if ( ! empty( $data[ $key ] ) ) { |
|
66 | - $new_count = count( $data[ $key ] ); |
|
67 | - if ( $count !== $new_count ) { |
|
68 | - // Set flag to true if counts have changed. |
|
69 | - $change_status = true; |
|
62 | + // Iterate over the counts array. |
|
63 | + foreach ( $counts as $key => $count ) { |
|
64 | + // Check if data has 'about' or 'mentions' and the count is different from the existing meta value. |
|
65 | + if ( ! empty( $data[ $key ] ) ) { |
|
66 | + $new_count = count( $data[ $key ] ); |
|
67 | + if ( $count !== $new_count ) { |
|
68 | + // Set flag to true if counts have changed. |
|
69 | + $change_status = true; |
|
70 | 70 | |
71 | - // Update the counts array with new count. |
|
72 | - $counts[ $key ] = $new_count; |
|
71 | + // Update the counts array with new count. |
|
72 | + $counts[ $key ] = $new_count; |
|
73 | 73 | |
74 | - // Update post meta with new count. |
|
75 | - update_post_meta( $post_id, 'wl_' . $key . '_count', $new_count ); |
|
76 | - } |
|
77 | - } |
|
78 | - } |
|
74 | + // Update post meta with new count. |
|
75 | + update_post_meta( $post_id, 'wl_' . $key . '_count', $new_count ); |
|
76 | + } |
|
77 | + } |
|
78 | + } |
|
79 | 79 | |
80 | - // If the count has changed, make the API request. |
|
81 | - if ( $change_status ) { |
|
82 | - $this->api_service->request( |
|
83 | - 'POST', |
|
84 | - '/plugin/events', |
|
85 | - [ 'Content-Type' => 'application/json' ], |
|
86 | - wp_json_encode( [ |
|
87 | - 'source' => 'jsonld', |
|
88 | - 'args' => [ |
|
89 | - [ 'about_count' => $counts['about'] ], |
|
90 | - [ 'mentions_count' => $counts['mentions'] ], |
|
91 | - ], |
|
92 | - 'url' => get_permalink( $post_id ), |
|
93 | - ] ), |
|
94 | - 0.001, |
|
95 | - null, |
|
96 | - [ 'blocking' => false ] |
|
97 | - ); |
|
98 | - } |
|
99 | - } |
|
80 | + // If the count has changed, make the API request. |
|
81 | + if ( $change_status ) { |
|
82 | + $this->api_service->request( |
|
83 | + 'POST', |
|
84 | + '/plugin/events', |
|
85 | + [ 'Content-Type' => 'application/json' ], |
|
86 | + wp_json_encode( [ |
|
87 | + 'source' => 'jsonld', |
|
88 | + 'args' => [ |
|
89 | + [ 'about_count' => $counts['about'] ], |
|
90 | + [ 'mentions_count' => $counts['mentions'] ], |
|
91 | + ], |
|
92 | + 'url' => get_permalink( $post_id ), |
|
93 | + ] ), |
|
94 | + 0.001, |
|
95 | + null, |
|
96 | + [ 'blocking' => false ] |
|
97 | + ); |
|
98 | + } |
|
99 | + } |
|
100 | 100 | } |
@@ -23,7 +23,7 @@ discard block |
||
23 | 23 | /** |
24 | 24 | * @param Default_Api_Service $api_service |
25 | 25 | */ |
26 | - public function __construct( Default_Api_Service $api_service ) { |
|
26 | + public function __construct(Default_Api_Service $api_service) { |
|
27 | 27 | $this->api_service = $api_service; |
28 | 28 | } |
29 | 29 | |
@@ -31,7 +31,7 @@ discard block |
||
31 | 31 | * Register hooks. |
32 | 32 | */ |
33 | 33 | public function register_hooks() { |
34 | - add_filter( 'wl_after_get_jsonld', array( $this, 'set_events_request' ), 90, 3 ); |
|
34 | + add_filter('wl_after_get_jsonld', array($this, 'set_events_request'), 90, 3); |
|
35 | 35 | } |
36 | 36 | |
37 | 37 | /** |
@@ -41,9 +41,9 @@ discard block |
||
41 | 41 | * @param $post_id int The post id for which the jsonld is generated. |
42 | 42 | * @param $context int A context for the JSON-LD generation, valid values in Jsonld_Context_Enum |
43 | 43 | */ |
44 | - public function set_events_request( $jsonld_arr, $post_id, $context ) { |
|
44 | + public function set_events_request($jsonld_arr, $post_id, $context) { |
|
45 | 45 | // If context is not PAGE or the array is empty, return early. |
46 | - if ( Jsonld_Context_Enum::PAGE !== $context || empty( $jsonld_arr[0] ) ) { |
|
46 | + if (Jsonld_Context_Enum::PAGE !== $context || empty($jsonld_arr[0])) { |
|
47 | 47 | return; |
48 | 48 | } |
49 | 49 | |
@@ -55,45 +55,45 @@ discard block |
||
55 | 55 | |
56 | 56 | // Fetch the initial 'about' and 'mentions' counts from post meta. |
57 | 57 | $counts = [ |
58 | - 'about' => get_post_meta( $post_id, 'wl_about_count', true ) ? : 0, |
|
59 | - 'mentions' => get_post_meta( $post_id, 'wl_mentions_count', true ) ? : 0, |
|
58 | + 'about' => get_post_meta($post_id, 'wl_about_count', true) ?: 0, |
|
59 | + 'mentions' => get_post_meta($post_id, 'wl_mentions_count', true) ?: 0, |
|
60 | 60 | ]; |
61 | 61 | |
62 | 62 | // Iterate over the counts array. |
63 | - foreach ( $counts as $key => $count ) { |
|
63 | + foreach ($counts as $key => $count) { |
|
64 | 64 | // Check if data has 'about' or 'mentions' and the count is different from the existing meta value. |
65 | - if ( ! empty( $data[ $key ] ) ) { |
|
66 | - $new_count = count( $data[ $key ] ); |
|
67 | - if ( $count !== $new_count ) { |
|
65 | + if ( ! empty($data[$key])) { |
|
66 | + $new_count = count($data[$key]); |
|
67 | + if ($count !== $new_count) { |
|
68 | 68 | // Set flag to true if counts have changed. |
69 | 69 | $change_status = true; |
70 | 70 | |
71 | 71 | // Update the counts array with new count. |
72 | - $counts[ $key ] = $new_count; |
|
72 | + $counts[$key] = $new_count; |
|
73 | 73 | |
74 | 74 | // Update post meta with new count. |
75 | - update_post_meta( $post_id, 'wl_' . $key . '_count', $new_count ); |
|
75 | + update_post_meta($post_id, 'wl_'.$key.'_count', $new_count); |
|
76 | 76 | } |
77 | 77 | } |
78 | 78 | } |
79 | 79 | |
80 | 80 | // If the count has changed, make the API request. |
81 | - if ( $change_status ) { |
|
81 | + if ($change_status) { |
|
82 | 82 | $this->api_service->request( |
83 | 83 | 'POST', |
84 | 84 | '/plugin/events', |
85 | - [ 'Content-Type' => 'application/json' ], |
|
86 | - wp_json_encode( [ |
|
85 | + ['Content-Type' => 'application/json'], |
|
86 | + wp_json_encode([ |
|
87 | 87 | 'source' => 'jsonld', |
88 | 88 | 'args' => [ |
89 | - [ 'about_count' => $counts['about'] ], |
|
90 | - [ 'mentions_count' => $counts['mentions'] ], |
|
89 | + ['about_count' => $counts['about']], |
|
90 | + ['mentions_count' => $counts['mentions']], |
|
91 | 91 | ], |
92 | - 'url' => get_permalink( $post_id ), |
|
93 | - ] ), |
|
92 | + 'url' => get_permalink($post_id), |
|
93 | + ]), |
|
94 | 94 | 0.001, |
95 | 95 | null, |
96 | - [ 'blocking' => false ] |
|
96 | + ['blocking' => false] |
|
97 | 97 | ); |
98 | 98 | } |
99 | 99 | } |
@@ -11,163 +11,163 @@ |
||
11 | 11 | * @package Wordlift\Modules\Events\Options_Entity |
12 | 12 | */ |
13 | 13 | class Events_Options_Entity_Include_Exclude { |
14 | - /** |
|
15 | - * The {@link Api_Service} used to communicate with the remote APIs. |
|
16 | - * |
|
17 | - * @access private |
|
18 | - * @var Default_Api_Service |
|
19 | - */ |
|
20 | - private $api_service; |
|
21 | - |
|
22 | - /** |
|
23 | - * @param Default_Api_Service $api_service |
|
24 | - */ |
|
25 | - public function __construct( Default_Api_Service $api_service ) { |
|
26 | - $this->api_service = $api_service; |
|
27 | - } |
|
28 | - |
|
29 | - /** |
|
30 | - * Register hooks. |
|
31 | - */ |
|
32 | - public function register_hooks() { |
|
33 | - add_action( 'update_option_wl_exclude_include_urls_settings', array( $this, 'event_update' ), 15, 0 ); |
|
34 | - add_action( 'update_option_wl_exclude_include_urls_settings', array( $this, 'save_old_config' ), 99, 0 ); |
|
35 | - } |
|
36 | - |
|
37 | - |
|
38 | - /** |
|
39 | - * Include exclude event update. |
|
40 | - * |
|
41 | - * @throws Exception If the application fails to load the services configuration file or if the URL cannot be processed. |
|
42 | - */ |
|
43 | - public function event_update() { |
|
44 | - // Get the configurations. |
|
45 | - $config = get_option( 'wl_exclude_include_urls_settings', array() ); |
|
46 | - $old_config = get_option( 'wl_exclude_include_urls_settings_old', array() ); |
|
47 | - |
|
48 | - // Get included and excluded URLs. |
|
49 | - $urls = $this->get_urls( $config, $old_config ); |
|
50 | - |
|
51 | - // Call API method for each URL. |
|
52 | - foreach ( $urls['included'] as $url ) { |
|
53 | - $this->send_event( $url, 'include' ); |
|
54 | - } |
|
55 | - foreach ( $urls['excluded'] as $url ) { |
|
56 | - $this->send_event( $url, 'exclude' ); |
|
57 | - } |
|
58 | - } |
|
59 | - |
|
60 | - /** |
|
61 | - * Save old config. |
|
62 | - */ |
|
63 | - public function save_old_config() { |
|
64 | - // Get the current configuration. |
|
65 | - $config = get_option( 'wl_exclude_include_urls_settings', array() ); |
|
66 | - |
|
67 | - // Save the current configuration to another option. |
|
68 | - update_option( 'wl_exclude_include_urls_settings_old', $config ); |
|
69 | - } |
|
70 | - |
|
71 | - |
|
72 | - /** |
|
73 | - * Get included and excluded urls. |
|
74 | - * |
|
75 | - * @param $config |
|
76 | - * @param $old_config |
|
77 | - * |
|
78 | - * @return array |
|
79 | - */ |
|
80 | - private function get_urls( $config, $old_config ) { |
|
81 | - // Get the payload for both new and old values: |
|
82 | - $payload_new = $this->get_payload( $config ); |
|
83 | - $payload_old = $this->get_payload( $old_config ); |
|
84 | - |
|
85 | - // Extract URLs from payloads. |
|
86 | - $urls_new = array_column( $payload_new, 'url' ); |
|
87 | - $urls_old = array_column( $payload_old, 'url' ); |
|
88 | - |
|
89 | - // If both $urls_new and $urls_old are empty, there is no URL to process. |
|
90 | - if ( empty( $urls_new ) && empty( $urls_old ) ) { |
|
91 | - return [ |
|
92 | - 'included' => [], |
|
93 | - 'excluded' => [], |
|
94 | - ]; |
|
95 | - } |
|
96 | - |
|
97 | - // Find added and removed URLs. |
|
98 | - $urls_added = array_diff( $urls_new, $urls_old ); |
|
99 | - $urls_removed = array_diff( $urls_old, $urls_new ); |
|
100 | - |
|
101 | - // Determine included and excluded URLs. |
|
102 | - $included = ( 'include' === strtolower( $config['include_exclude'] ) ) ? $urls_added : $urls_removed; |
|
103 | - $excluded = ( 'include' === strtolower( $config['include_exclude'] ) ) ? $urls_removed : $urls_added; |
|
104 | - |
|
105 | - // Check if filter type has changed. |
|
106 | - $filter_changed = strtolower( $config['include_exclude'] ) !== strtolower( $old_config['include_exclude'] ); |
|
107 | - |
|
108 | - if ( $filter_changed ) { |
|
109 | - // Filter type changed, so we reverse the logic of adding URLs to included and excluded arrays. |
|
110 | - $included = ( 'include' === strtolower( $config['include_exclude'] ) ) ? $urls_new : $urls_removed; |
|
111 | - $excluded = ( 'include' === strtolower( $config['include_exclude'] ) ) ? $urls_removed : $urls_new; |
|
112 | - } |
|
113 | - |
|
114 | - return [ |
|
115 | - 'included' => $included, |
|
116 | - 'excluded' => $excluded, |
|
117 | - ]; |
|
118 | - } |
|
119 | - |
|
120 | - /** |
|
121 | - * Get payload. |
|
122 | - * |
|
123 | - * @param $config |
|
124 | - * |
|
125 | - * @return array|array[] |
|
126 | - */ |
|
127 | - private function get_payload( $config ) { |
|
128 | - // Set the default data. |
|
129 | - if ( ! is_array( $config ) || empty( $config ) || ! isset( $config['include_exclude'] ) || ! isset( $config['urls'] ) ) { |
|
130 | - $config = array( |
|
131 | - 'include_exclude' => 'exclude', |
|
132 | - 'urls' => '', |
|
133 | - ); |
|
134 | - } |
|
135 | - |
|
136 | - // Map the configuration to the payload. |
|
137 | - return array_map( |
|
138 | - function ( $item ) use ( $config ) { |
|
139 | - return array( |
|
140 | - 'url' => ( 1 === preg_match( '@^https?://.*$@', $item ) ? $item : get_home_url( null, $item ) ), |
|
141 | - 'flag' => strtoupper( $config['include_exclude'] ), |
|
142 | - ); |
|
143 | - }, |
|
144 | - array_filter( preg_split( '/[\r\n]+/', $config['urls'] ) ) |
|
145 | - ); |
|
146 | - } |
|
147 | - |
|
148 | - /** |
|
149 | - * Send event. |
|
150 | - * |
|
151 | - * @param $url |
|
152 | - * @param $value |
|
153 | - */ |
|
154 | - private function send_event( $url, $value ) { |
|
155 | - $this->api_service->request( |
|
156 | - 'POST', |
|
157 | - '/plugin/events', |
|
158 | - array( 'content-type' => 'application/json' ), |
|
159 | - wp_json_encode( |
|
160 | - array( |
|
161 | - 'source' => 'include-exclude', |
|
162 | - 'args' => array( |
|
163 | - array( 'value' => $value ), |
|
164 | - ), |
|
165 | - 'url' => $url, |
|
166 | - ) |
|
167 | - ), |
|
168 | - 0.001, |
|
169 | - null, |
|
170 | - array( 'blocking' => false ) |
|
171 | - ); |
|
172 | - } |
|
14 | + /** |
|
15 | + * The {@link Api_Service} used to communicate with the remote APIs. |
|
16 | + * |
|
17 | + * @access private |
|
18 | + * @var Default_Api_Service |
|
19 | + */ |
|
20 | + private $api_service; |
|
21 | + |
|
22 | + /** |
|
23 | + * @param Default_Api_Service $api_service |
|
24 | + */ |
|
25 | + public function __construct( Default_Api_Service $api_service ) { |
|
26 | + $this->api_service = $api_service; |
|
27 | + } |
|
28 | + |
|
29 | + /** |
|
30 | + * Register hooks. |
|
31 | + */ |
|
32 | + public function register_hooks() { |
|
33 | + add_action( 'update_option_wl_exclude_include_urls_settings', array( $this, 'event_update' ), 15, 0 ); |
|
34 | + add_action( 'update_option_wl_exclude_include_urls_settings', array( $this, 'save_old_config' ), 99, 0 ); |
|
35 | + } |
|
36 | + |
|
37 | + |
|
38 | + /** |
|
39 | + * Include exclude event update. |
|
40 | + * |
|
41 | + * @throws Exception If the application fails to load the services configuration file or if the URL cannot be processed. |
|
42 | + */ |
|
43 | + public function event_update() { |
|
44 | + // Get the configurations. |
|
45 | + $config = get_option( 'wl_exclude_include_urls_settings', array() ); |
|
46 | + $old_config = get_option( 'wl_exclude_include_urls_settings_old', array() ); |
|
47 | + |
|
48 | + // Get included and excluded URLs. |
|
49 | + $urls = $this->get_urls( $config, $old_config ); |
|
50 | + |
|
51 | + // Call API method for each URL. |
|
52 | + foreach ( $urls['included'] as $url ) { |
|
53 | + $this->send_event( $url, 'include' ); |
|
54 | + } |
|
55 | + foreach ( $urls['excluded'] as $url ) { |
|
56 | + $this->send_event( $url, 'exclude' ); |
|
57 | + } |
|
58 | + } |
|
59 | + |
|
60 | + /** |
|
61 | + * Save old config. |
|
62 | + */ |
|
63 | + public function save_old_config() { |
|
64 | + // Get the current configuration. |
|
65 | + $config = get_option( 'wl_exclude_include_urls_settings', array() ); |
|
66 | + |
|
67 | + // Save the current configuration to another option. |
|
68 | + update_option( 'wl_exclude_include_urls_settings_old', $config ); |
|
69 | + } |
|
70 | + |
|
71 | + |
|
72 | + /** |
|
73 | + * Get included and excluded urls. |
|
74 | + * |
|
75 | + * @param $config |
|
76 | + * @param $old_config |
|
77 | + * |
|
78 | + * @return array |
|
79 | + */ |
|
80 | + private function get_urls( $config, $old_config ) { |
|
81 | + // Get the payload for both new and old values: |
|
82 | + $payload_new = $this->get_payload( $config ); |
|
83 | + $payload_old = $this->get_payload( $old_config ); |
|
84 | + |
|
85 | + // Extract URLs from payloads. |
|
86 | + $urls_new = array_column( $payload_new, 'url' ); |
|
87 | + $urls_old = array_column( $payload_old, 'url' ); |
|
88 | + |
|
89 | + // If both $urls_new and $urls_old are empty, there is no URL to process. |
|
90 | + if ( empty( $urls_new ) && empty( $urls_old ) ) { |
|
91 | + return [ |
|
92 | + 'included' => [], |
|
93 | + 'excluded' => [], |
|
94 | + ]; |
|
95 | + } |
|
96 | + |
|
97 | + // Find added and removed URLs. |
|
98 | + $urls_added = array_diff( $urls_new, $urls_old ); |
|
99 | + $urls_removed = array_diff( $urls_old, $urls_new ); |
|
100 | + |
|
101 | + // Determine included and excluded URLs. |
|
102 | + $included = ( 'include' === strtolower( $config['include_exclude'] ) ) ? $urls_added : $urls_removed; |
|
103 | + $excluded = ( 'include' === strtolower( $config['include_exclude'] ) ) ? $urls_removed : $urls_added; |
|
104 | + |
|
105 | + // Check if filter type has changed. |
|
106 | + $filter_changed = strtolower( $config['include_exclude'] ) !== strtolower( $old_config['include_exclude'] ); |
|
107 | + |
|
108 | + if ( $filter_changed ) { |
|
109 | + // Filter type changed, so we reverse the logic of adding URLs to included and excluded arrays. |
|
110 | + $included = ( 'include' === strtolower( $config['include_exclude'] ) ) ? $urls_new : $urls_removed; |
|
111 | + $excluded = ( 'include' === strtolower( $config['include_exclude'] ) ) ? $urls_removed : $urls_new; |
|
112 | + } |
|
113 | + |
|
114 | + return [ |
|
115 | + 'included' => $included, |
|
116 | + 'excluded' => $excluded, |
|
117 | + ]; |
|
118 | + } |
|
119 | + |
|
120 | + /** |
|
121 | + * Get payload. |
|
122 | + * |
|
123 | + * @param $config |
|
124 | + * |
|
125 | + * @return array|array[] |
|
126 | + */ |
|
127 | + private function get_payload( $config ) { |
|
128 | + // Set the default data. |
|
129 | + if ( ! is_array( $config ) || empty( $config ) || ! isset( $config['include_exclude'] ) || ! isset( $config['urls'] ) ) { |
|
130 | + $config = array( |
|
131 | + 'include_exclude' => 'exclude', |
|
132 | + 'urls' => '', |
|
133 | + ); |
|
134 | + } |
|
135 | + |
|
136 | + // Map the configuration to the payload. |
|
137 | + return array_map( |
|
138 | + function ( $item ) use ( $config ) { |
|
139 | + return array( |
|
140 | + 'url' => ( 1 === preg_match( '@^https?://.*$@', $item ) ? $item : get_home_url( null, $item ) ), |
|
141 | + 'flag' => strtoupper( $config['include_exclude'] ), |
|
142 | + ); |
|
143 | + }, |
|
144 | + array_filter( preg_split( '/[\r\n]+/', $config['urls'] ) ) |
|
145 | + ); |
|
146 | + } |
|
147 | + |
|
148 | + /** |
|
149 | + * Send event. |
|
150 | + * |
|
151 | + * @param $url |
|
152 | + * @param $value |
|
153 | + */ |
|
154 | + private function send_event( $url, $value ) { |
|
155 | + $this->api_service->request( |
|
156 | + 'POST', |
|
157 | + '/plugin/events', |
|
158 | + array( 'content-type' => 'application/json' ), |
|
159 | + wp_json_encode( |
|
160 | + array( |
|
161 | + 'source' => 'include-exclude', |
|
162 | + 'args' => array( |
|
163 | + array( 'value' => $value ), |
|
164 | + ), |
|
165 | + 'url' => $url, |
|
166 | + ) |
|
167 | + ), |
|
168 | + 0.001, |
|
169 | + null, |
|
170 | + array( 'blocking' => false ) |
|
171 | + ); |
|
172 | + } |
|
173 | 173 | } |
@@ -22,7 +22,7 @@ discard block |
||
22 | 22 | /** |
23 | 23 | * @param Default_Api_Service $api_service |
24 | 24 | */ |
25 | - public function __construct( Default_Api_Service $api_service ) { |
|
25 | + public function __construct(Default_Api_Service $api_service) { |
|
26 | 26 | $this->api_service = $api_service; |
27 | 27 | } |
28 | 28 | |
@@ -30,8 +30,8 @@ discard block |
||
30 | 30 | * Register hooks. |
31 | 31 | */ |
32 | 32 | public function register_hooks() { |
33 | - add_action( 'update_option_wl_exclude_include_urls_settings', array( $this, 'event_update' ), 15, 0 ); |
|
34 | - add_action( 'update_option_wl_exclude_include_urls_settings', array( $this, 'save_old_config' ), 99, 0 ); |
|
33 | + add_action('update_option_wl_exclude_include_urls_settings', array($this, 'event_update'), 15, 0); |
|
34 | + add_action('update_option_wl_exclude_include_urls_settings', array($this, 'save_old_config'), 99, 0); |
|
35 | 35 | } |
36 | 36 | |
37 | 37 | |
@@ -42,18 +42,18 @@ discard block |
||
42 | 42 | */ |
43 | 43 | public function event_update() { |
44 | 44 | // Get the configurations. |
45 | - $config = get_option( 'wl_exclude_include_urls_settings', array() ); |
|
46 | - $old_config = get_option( 'wl_exclude_include_urls_settings_old', array() ); |
|
45 | + $config = get_option('wl_exclude_include_urls_settings', array()); |
|
46 | + $old_config = get_option('wl_exclude_include_urls_settings_old', array()); |
|
47 | 47 | |
48 | 48 | // Get included and excluded URLs. |
49 | - $urls = $this->get_urls( $config, $old_config ); |
|
49 | + $urls = $this->get_urls($config, $old_config); |
|
50 | 50 | |
51 | 51 | // Call API method for each URL. |
52 | - foreach ( $urls['included'] as $url ) { |
|
53 | - $this->send_event( $url, 'include' ); |
|
52 | + foreach ($urls['included'] as $url) { |
|
53 | + $this->send_event($url, 'include'); |
|
54 | 54 | } |
55 | - foreach ( $urls['excluded'] as $url ) { |
|
56 | - $this->send_event( $url, 'exclude' ); |
|
55 | + foreach ($urls['excluded'] as $url) { |
|
56 | + $this->send_event($url, 'exclude'); |
|
57 | 57 | } |
58 | 58 | } |
59 | 59 | |
@@ -62,10 +62,10 @@ discard block |
||
62 | 62 | */ |
63 | 63 | public function save_old_config() { |
64 | 64 | // Get the current configuration. |
65 | - $config = get_option( 'wl_exclude_include_urls_settings', array() ); |
|
65 | + $config = get_option('wl_exclude_include_urls_settings', array()); |
|
66 | 66 | |
67 | 67 | // Save the current configuration to another option. |
68 | - update_option( 'wl_exclude_include_urls_settings_old', $config ); |
|
68 | + update_option('wl_exclude_include_urls_settings_old', $config); |
|
69 | 69 | } |
70 | 70 | |
71 | 71 | |
@@ -77,17 +77,17 @@ discard block |
||
77 | 77 | * |
78 | 78 | * @return array |
79 | 79 | */ |
80 | - private function get_urls( $config, $old_config ) { |
|
80 | + private function get_urls($config, $old_config) { |
|
81 | 81 | // Get the payload for both new and old values: |
82 | - $payload_new = $this->get_payload( $config ); |
|
83 | - $payload_old = $this->get_payload( $old_config ); |
|
82 | + $payload_new = $this->get_payload($config); |
|
83 | + $payload_old = $this->get_payload($old_config); |
|
84 | 84 | |
85 | 85 | // Extract URLs from payloads. |
86 | - $urls_new = array_column( $payload_new, 'url' ); |
|
87 | - $urls_old = array_column( $payload_old, 'url' ); |
|
86 | + $urls_new = array_column($payload_new, 'url'); |
|
87 | + $urls_old = array_column($payload_old, 'url'); |
|
88 | 88 | |
89 | 89 | // If both $urls_new and $urls_old are empty, there is no URL to process. |
90 | - if ( empty( $urls_new ) && empty( $urls_old ) ) { |
|
90 | + if (empty($urls_new) && empty($urls_old)) { |
|
91 | 91 | return [ |
92 | 92 | 'included' => [], |
93 | 93 | 'excluded' => [], |
@@ -95,20 +95,20 @@ discard block |
||
95 | 95 | } |
96 | 96 | |
97 | 97 | // Find added and removed URLs. |
98 | - $urls_added = array_diff( $urls_new, $urls_old ); |
|
99 | - $urls_removed = array_diff( $urls_old, $urls_new ); |
|
98 | + $urls_added = array_diff($urls_new, $urls_old); |
|
99 | + $urls_removed = array_diff($urls_old, $urls_new); |
|
100 | 100 | |
101 | 101 | // Determine included and excluded URLs. |
102 | - $included = ( 'include' === strtolower( $config['include_exclude'] ) ) ? $urls_added : $urls_removed; |
|
103 | - $excluded = ( 'include' === strtolower( $config['include_exclude'] ) ) ? $urls_removed : $urls_added; |
|
102 | + $included = ('include' === strtolower($config['include_exclude'])) ? $urls_added : $urls_removed; |
|
103 | + $excluded = ('include' === strtolower($config['include_exclude'])) ? $urls_removed : $urls_added; |
|
104 | 104 | |
105 | 105 | // Check if filter type has changed. |
106 | - $filter_changed = strtolower( $config['include_exclude'] ) !== strtolower( $old_config['include_exclude'] ); |
|
106 | + $filter_changed = strtolower($config['include_exclude']) !== strtolower($old_config['include_exclude']); |
|
107 | 107 | |
108 | - if ( $filter_changed ) { |
|
108 | + if ($filter_changed) { |
|
109 | 109 | // Filter type changed, so we reverse the logic of adding URLs to included and excluded arrays. |
110 | - $included = ( 'include' === strtolower( $config['include_exclude'] ) ) ? $urls_new : $urls_removed; |
|
111 | - $excluded = ( 'include' === strtolower( $config['include_exclude'] ) ) ? $urls_removed : $urls_new; |
|
110 | + $included = ('include' === strtolower($config['include_exclude'])) ? $urls_new : $urls_removed; |
|
111 | + $excluded = ('include' === strtolower($config['include_exclude'])) ? $urls_removed : $urls_new; |
|
112 | 112 | } |
113 | 113 | |
114 | 114 | return [ |
@@ -124,9 +124,9 @@ discard block |
||
124 | 124 | * |
125 | 125 | * @return array|array[] |
126 | 126 | */ |
127 | - private function get_payload( $config ) { |
|
127 | + private function get_payload($config) { |
|
128 | 128 | // Set the default data. |
129 | - if ( ! is_array( $config ) || empty( $config ) || ! isset( $config['include_exclude'] ) || ! isset( $config['urls'] ) ) { |
|
129 | + if ( ! is_array($config) || empty($config) || ! isset($config['include_exclude']) || ! isset($config['urls'])) { |
|
130 | 130 | $config = array( |
131 | 131 | 'include_exclude' => 'exclude', |
132 | 132 | 'urls' => '', |
@@ -135,13 +135,13 @@ discard block |
||
135 | 135 | |
136 | 136 | // Map the configuration to the payload. |
137 | 137 | return array_map( |
138 | - function ( $item ) use ( $config ) { |
|
138 | + function($item) use ($config) { |
|
139 | 139 | return array( |
140 | - 'url' => ( 1 === preg_match( '@^https?://.*$@', $item ) ? $item : get_home_url( null, $item ) ), |
|
141 | - 'flag' => strtoupper( $config['include_exclude'] ), |
|
140 | + 'url' => (1 === preg_match('@^https?://.*$@', $item) ? $item : get_home_url(null, $item)), |
|
141 | + 'flag' => strtoupper($config['include_exclude']), |
|
142 | 142 | ); |
143 | 143 | }, |
144 | - array_filter( preg_split( '/[\r\n]+/', $config['urls'] ) ) |
|
144 | + array_filter(preg_split('/[\r\n]+/', $config['urls'])) |
|
145 | 145 | ); |
146 | 146 | } |
147 | 147 | |
@@ -151,23 +151,23 @@ discard block |
||
151 | 151 | * @param $url |
152 | 152 | * @param $value |
153 | 153 | */ |
154 | - private function send_event( $url, $value ) { |
|
154 | + private function send_event($url, $value) { |
|
155 | 155 | $this->api_service->request( |
156 | 156 | 'POST', |
157 | 157 | '/plugin/events', |
158 | - array( 'content-type' => 'application/json' ), |
|
158 | + array('content-type' => 'application/json'), |
|
159 | 159 | wp_json_encode( |
160 | 160 | array( |
161 | 161 | 'source' => 'include-exclude', |
162 | 162 | 'args' => array( |
163 | - array( 'value' => $value ), |
|
163 | + array('value' => $value), |
|
164 | 164 | ), |
165 | 165 | 'url' => $url, |
166 | 166 | ) |
167 | 167 | ), |
168 | 168 | 0.001, |
169 | 169 | null, |
170 | - array( 'blocking' => false ) |
|
170 | + array('blocking' => false) |
|
171 | 171 | ); |
172 | 172 | } |
173 | 173 | } |
@@ -13,109 +13,109 @@ |
||
13 | 13 | */ |
14 | 14 | class Events_Term_Entity_Jsonld { |
15 | 15 | |
16 | - /** |
|
17 | - * The {@link Api_Service} used to communicate with the remote APIs. |
|
18 | - * |
|
19 | - * @access private |
|
20 | - * @var Default_Api_Service |
|
21 | - */ |
|
22 | - private $api_service; |
|
23 | - |
|
24 | - /** |
|
25 | - * @param Default_Api_Service $api_service |
|
26 | - */ |
|
27 | - public function __construct( Default_Api_Service $api_service ) { |
|
28 | - $this->api_service = $api_service; |
|
29 | - } |
|
30 | - |
|
31 | - /** |
|
32 | - * Register hooks. |
|
33 | - */ |
|
34 | - public function register_hooks() { |
|
35 | - add_filter( 'wl_term_jsonld_array', array( $this, 'set_events_request' ), 90, 3 ); |
|
36 | - } |
|
37 | - |
|
38 | - /** |
|
39 | - * Set term jsonld array event. |
|
40 | - * |
|
41 | - * @param $jsonld_arr array The final jsonld before outputting to page. |
|
42 | - * @param $term_id int The term id for which the jsonld is generated. |
|
43 | - * @param $context int A context for the JSON-LD generation, valid values in Jsonld_Context_Enum |
|
44 | - */ |
|
45 | - public function set_events_request( $jsonld_arr, $term_id, $context ) { |
|
46 | - // If context is not PAGE or the array is empty, return early. |
|
47 | - if ( Jsonld_Context_Enum::PAGE !== $context || empty( $jsonld_arr[0] ) ) { |
|
48 | - return; |
|
49 | - } |
|
50 | - |
|
51 | - // Flag to indicate if we should make an API request. |
|
52 | - $change_status = false; |
|
53 | - |
|
54 | - // Get data from the array. |
|
55 | - $data = $jsonld_arr[0]; |
|
56 | - |
|
57 | - // Fetch the initial 'about' and 'mentions' counts from term meta. |
|
58 | - $counts = [ |
|
59 | - 'about' => get_term_meta( $term_id, 'wl_about_count', true ) ? : 0, |
|
60 | - 'mentions' => get_term_meta( $term_id, 'wl_mentions_count', true ) ? : 0, |
|
61 | - ]; |
|
62 | - |
|
63 | - // Iterate over the counts array. |
|
64 | - foreach ( $counts as $key => $count ) { |
|
65 | - // Check if data has 'about' or 'mentions' and the count is different from the existing meta value. |
|
66 | - if ( ! empty( $data[ $key ] ) ) { |
|
67 | - $new_count = count( $data[ $key ] ); |
|
68 | - if ( $count !== $new_count ) { |
|
69 | - // Set flag to true if counts have changed. |
|
70 | - $change_status = true; |
|
71 | - |
|
72 | - // Update the counts array with new count. |
|
73 | - $counts[ $key ] = $new_count; |
|
74 | - |
|
75 | - // Update term meta with new count. |
|
76 | - update_term_meta( $term_id, 'wl_' . $key . '_count', $new_count ); |
|
77 | - } |
|
78 | - } |
|
79 | - } |
|
80 | - |
|
81 | - // If the count has changed, make the API request. |
|
82 | - if ( $change_status ) { |
|
83 | - $this->api_service->request( |
|
84 | - 'POST', |
|
85 | - '/plugin/events', |
|
86 | - [ 'Content-Type' => 'application/json' ], |
|
87 | - wp_json_encode( [ |
|
88 | - 'source' => 'jsonld', |
|
89 | - 'args' => [ |
|
90 | - [ 'about_count' => $counts['about'] ], |
|
91 | - [ 'mentions_count' => $counts['mentions'] ], |
|
92 | - ], |
|
93 | - 'url' => $this->get_term_url( $term_id ), |
|
94 | - ] ), |
|
95 | - 0.001, |
|
96 | - null, |
|
97 | - [ 'blocking' => false ] |
|
98 | - ); |
|
99 | - } |
|
100 | - } |
|
101 | - |
|
102 | - /** |
|
103 | - * Get term url. |
|
104 | - * |
|
105 | - * @param $id |
|
106 | - * |
|
107 | - * @return array|false|int|mixed|string|\WP_Error|\WP_Term|null |
|
108 | - */ |
|
109 | - private function get_term_url( $id ) { |
|
110 | - if ( null === $id ) { |
|
111 | - return isset( $_SERVER['REQUEST_URI'] ) ? filter_var( wp_unslash( $_SERVER['REQUEST_URI'] ), FILTER_SANITIZE_URL ) : ''; |
|
112 | - } |
|
113 | - |
|
114 | - $maybe_url = get_term_meta( $id, Wordlift_Url_Property_Service::META_KEY, true ); |
|
115 | - if ( ! empty( $maybe_url ) ) { |
|
116 | - return $maybe_url; |
|
117 | - } |
|
118 | - |
|
119 | - return get_term_link( $id ); |
|
120 | - } |
|
16 | + /** |
|
17 | + * The {@link Api_Service} used to communicate with the remote APIs. |
|
18 | + * |
|
19 | + * @access private |
|
20 | + * @var Default_Api_Service |
|
21 | + */ |
|
22 | + private $api_service; |
|
23 | + |
|
24 | + /** |
|
25 | + * @param Default_Api_Service $api_service |
|
26 | + */ |
|
27 | + public function __construct( Default_Api_Service $api_service ) { |
|
28 | + $this->api_service = $api_service; |
|
29 | + } |
|
30 | + |
|
31 | + /** |
|
32 | + * Register hooks. |
|
33 | + */ |
|
34 | + public function register_hooks() { |
|
35 | + add_filter( 'wl_term_jsonld_array', array( $this, 'set_events_request' ), 90, 3 ); |
|
36 | + } |
|
37 | + |
|
38 | + /** |
|
39 | + * Set term jsonld array event. |
|
40 | + * |
|
41 | + * @param $jsonld_arr array The final jsonld before outputting to page. |
|
42 | + * @param $term_id int The term id for which the jsonld is generated. |
|
43 | + * @param $context int A context for the JSON-LD generation, valid values in Jsonld_Context_Enum |
|
44 | + */ |
|
45 | + public function set_events_request( $jsonld_arr, $term_id, $context ) { |
|
46 | + // If context is not PAGE or the array is empty, return early. |
|
47 | + if ( Jsonld_Context_Enum::PAGE !== $context || empty( $jsonld_arr[0] ) ) { |
|
48 | + return; |
|
49 | + } |
|
50 | + |
|
51 | + // Flag to indicate if we should make an API request. |
|
52 | + $change_status = false; |
|
53 | + |
|
54 | + // Get data from the array. |
|
55 | + $data = $jsonld_arr[0]; |
|
56 | + |
|
57 | + // Fetch the initial 'about' and 'mentions' counts from term meta. |
|
58 | + $counts = [ |
|
59 | + 'about' => get_term_meta( $term_id, 'wl_about_count', true ) ? : 0, |
|
60 | + 'mentions' => get_term_meta( $term_id, 'wl_mentions_count', true ) ? : 0, |
|
61 | + ]; |
|
62 | + |
|
63 | + // Iterate over the counts array. |
|
64 | + foreach ( $counts as $key => $count ) { |
|
65 | + // Check if data has 'about' or 'mentions' and the count is different from the existing meta value. |
|
66 | + if ( ! empty( $data[ $key ] ) ) { |
|
67 | + $new_count = count( $data[ $key ] ); |
|
68 | + if ( $count !== $new_count ) { |
|
69 | + // Set flag to true if counts have changed. |
|
70 | + $change_status = true; |
|
71 | + |
|
72 | + // Update the counts array with new count. |
|
73 | + $counts[ $key ] = $new_count; |
|
74 | + |
|
75 | + // Update term meta with new count. |
|
76 | + update_term_meta( $term_id, 'wl_' . $key . '_count', $new_count ); |
|
77 | + } |
|
78 | + } |
|
79 | + } |
|
80 | + |
|
81 | + // If the count has changed, make the API request. |
|
82 | + if ( $change_status ) { |
|
83 | + $this->api_service->request( |
|
84 | + 'POST', |
|
85 | + '/plugin/events', |
|
86 | + [ 'Content-Type' => 'application/json' ], |
|
87 | + wp_json_encode( [ |
|
88 | + 'source' => 'jsonld', |
|
89 | + 'args' => [ |
|
90 | + [ 'about_count' => $counts['about'] ], |
|
91 | + [ 'mentions_count' => $counts['mentions'] ], |
|
92 | + ], |
|
93 | + 'url' => $this->get_term_url( $term_id ), |
|
94 | + ] ), |
|
95 | + 0.001, |
|
96 | + null, |
|
97 | + [ 'blocking' => false ] |
|
98 | + ); |
|
99 | + } |
|
100 | + } |
|
101 | + |
|
102 | + /** |
|
103 | + * Get term url. |
|
104 | + * |
|
105 | + * @param $id |
|
106 | + * |
|
107 | + * @return array|false|int|mixed|string|\WP_Error|\WP_Term|null |
|
108 | + */ |
|
109 | + private function get_term_url( $id ) { |
|
110 | + if ( null === $id ) { |
|
111 | + return isset( $_SERVER['REQUEST_URI'] ) ? filter_var( wp_unslash( $_SERVER['REQUEST_URI'] ), FILTER_SANITIZE_URL ) : ''; |
|
112 | + } |
|
113 | + |
|
114 | + $maybe_url = get_term_meta( $id, Wordlift_Url_Property_Service::META_KEY, true ); |
|
115 | + if ( ! empty( $maybe_url ) ) { |
|
116 | + return $maybe_url; |
|
117 | + } |
|
118 | + |
|
119 | + return get_term_link( $id ); |
|
120 | + } |
|
121 | 121 | } |
@@ -24,7 +24,7 @@ discard block |
||
24 | 24 | /** |
25 | 25 | * @param Default_Api_Service $api_service |
26 | 26 | */ |
27 | - public function __construct( Default_Api_Service $api_service ) { |
|
27 | + public function __construct(Default_Api_Service $api_service) { |
|
28 | 28 | $this->api_service = $api_service; |
29 | 29 | } |
30 | 30 | |
@@ -32,7 +32,7 @@ discard block |
||
32 | 32 | * Register hooks. |
33 | 33 | */ |
34 | 34 | public function register_hooks() { |
35 | - add_filter( 'wl_term_jsonld_array', array( $this, 'set_events_request' ), 90, 3 ); |
|
35 | + add_filter('wl_term_jsonld_array', array($this, 'set_events_request'), 90, 3); |
|
36 | 36 | } |
37 | 37 | |
38 | 38 | /** |
@@ -42,9 +42,9 @@ discard block |
||
42 | 42 | * @param $term_id int The term id for which the jsonld is generated. |
43 | 43 | * @param $context int A context for the JSON-LD generation, valid values in Jsonld_Context_Enum |
44 | 44 | */ |
45 | - public function set_events_request( $jsonld_arr, $term_id, $context ) { |
|
45 | + public function set_events_request($jsonld_arr, $term_id, $context) { |
|
46 | 46 | // If context is not PAGE or the array is empty, return early. |
47 | - if ( Jsonld_Context_Enum::PAGE !== $context || empty( $jsonld_arr[0] ) ) { |
|
47 | + if (Jsonld_Context_Enum::PAGE !== $context || empty($jsonld_arr[0])) { |
|
48 | 48 | return; |
49 | 49 | } |
50 | 50 | |
@@ -56,45 +56,45 @@ discard block |
||
56 | 56 | |
57 | 57 | // Fetch the initial 'about' and 'mentions' counts from term meta. |
58 | 58 | $counts = [ |
59 | - 'about' => get_term_meta( $term_id, 'wl_about_count', true ) ? : 0, |
|
60 | - 'mentions' => get_term_meta( $term_id, 'wl_mentions_count', true ) ? : 0, |
|
59 | + 'about' => get_term_meta($term_id, 'wl_about_count', true) ?: 0, |
|
60 | + 'mentions' => get_term_meta($term_id, 'wl_mentions_count', true) ?: 0, |
|
61 | 61 | ]; |
62 | 62 | |
63 | 63 | // Iterate over the counts array. |
64 | - foreach ( $counts as $key => $count ) { |
|
64 | + foreach ($counts as $key => $count) { |
|
65 | 65 | // Check if data has 'about' or 'mentions' and the count is different from the existing meta value. |
66 | - if ( ! empty( $data[ $key ] ) ) { |
|
67 | - $new_count = count( $data[ $key ] ); |
|
68 | - if ( $count !== $new_count ) { |
|
66 | + if ( ! empty($data[$key])) { |
|
67 | + $new_count = count($data[$key]); |
|
68 | + if ($count !== $new_count) { |
|
69 | 69 | // Set flag to true if counts have changed. |
70 | 70 | $change_status = true; |
71 | 71 | |
72 | 72 | // Update the counts array with new count. |
73 | - $counts[ $key ] = $new_count; |
|
73 | + $counts[$key] = $new_count; |
|
74 | 74 | |
75 | 75 | // Update term meta with new count. |
76 | - update_term_meta( $term_id, 'wl_' . $key . '_count', $new_count ); |
|
76 | + update_term_meta($term_id, 'wl_'.$key.'_count', $new_count); |
|
77 | 77 | } |
78 | 78 | } |
79 | 79 | } |
80 | 80 | |
81 | 81 | // If the count has changed, make the API request. |
82 | - if ( $change_status ) { |
|
82 | + if ($change_status) { |
|
83 | 83 | $this->api_service->request( |
84 | 84 | 'POST', |
85 | 85 | '/plugin/events', |
86 | - [ 'Content-Type' => 'application/json' ], |
|
87 | - wp_json_encode( [ |
|
86 | + ['Content-Type' => 'application/json'], |
|
87 | + wp_json_encode([ |
|
88 | 88 | 'source' => 'jsonld', |
89 | 89 | 'args' => [ |
90 | - [ 'about_count' => $counts['about'] ], |
|
91 | - [ 'mentions_count' => $counts['mentions'] ], |
|
90 | + ['about_count' => $counts['about']], |
|
91 | + ['mentions_count' => $counts['mentions']], |
|
92 | 92 | ], |
93 | - 'url' => $this->get_term_url( $term_id ), |
|
94 | - ] ), |
|
93 | + 'url' => $this->get_term_url($term_id), |
|
94 | + ]), |
|
95 | 95 | 0.001, |
96 | 96 | null, |
97 | - [ 'blocking' => false ] |
|
97 | + ['blocking' => false] |
|
98 | 98 | ); |
99 | 99 | } |
100 | 100 | } |
@@ -106,16 +106,16 @@ discard block |
||
106 | 106 | * |
107 | 107 | * @return array|false|int|mixed|string|\WP_Error|\WP_Term|null |
108 | 108 | */ |
109 | - private function get_term_url( $id ) { |
|
110 | - if ( null === $id ) { |
|
111 | - return isset( $_SERVER['REQUEST_URI'] ) ? filter_var( wp_unslash( $_SERVER['REQUEST_URI'] ), FILTER_SANITIZE_URL ) : ''; |
|
109 | + private function get_term_url($id) { |
|
110 | + if (null === $id) { |
|
111 | + return isset($_SERVER['REQUEST_URI']) ? filter_var(wp_unslash($_SERVER['REQUEST_URI']), FILTER_SANITIZE_URL) : ''; |
|
112 | 112 | } |
113 | 113 | |
114 | - $maybe_url = get_term_meta( $id, Wordlift_Url_Property_Service::META_KEY, true ); |
|
115 | - if ( ! empty( $maybe_url ) ) { |
|
114 | + $maybe_url = get_term_meta($id, Wordlift_Url_Property_Service::META_KEY, true); |
|
115 | + if ( ! empty($maybe_url)) { |
|
116 | 116 | return $maybe_url; |
117 | 117 | } |
118 | 118 | |
119 | - return get_term_link( $id ); |
|
119 | + return get_term_link($id); |
|
120 | 120 | } |
121 | 121 | } |
@@ -16,7 +16,7 @@ discard block |
||
16 | 16 | use Wordlift\Modules\Events\Term_Entity\Events_Term_Entity_Jsonld; |
17 | 17 | |
18 | 18 | if ( ! defined( 'ABSPATH' ) ) { |
19 | - exit; |
|
19 | + exit; |
|
20 | 20 | } |
21 | 21 | |
22 | 22 | /** |
@@ -29,33 +29,33 @@ discard block |
||
29 | 29 | * @throws Exception if there are issues during the service initialization |
30 | 30 | */ |
31 | 31 | function __wl_events__load() { |
32 | - // Autoloader for plugin itself. |
|
33 | - if ( file_exists( __DIR__ . '/vendor/autoload.php' ) ) { |
|
34 | - require __DIR__ . '/vendor/autoload.php'; |
|
35 | - } |
|
36 | - |
|
37 | - $container_builder = new ContainerBuilder(); |
|
38 | - $loader = new YamlFileLoader( $container_builder, new FileLocator( __DIR__ ) ); |
|
39 | - $loader->load( 'services.yml' ); |
|
40 | - $container_builder->compile(); |
|
41 | - |
|
42 | - /** |
|
43 | - * @var $post_entity Events_Post_Entity_Jsonld |
|
44 | - */ |
|
45 | - $post_entity = $container_builder->get( Events_Post_Entity_Jsonld::class ); |
|
46 | - $post_entity->register_hooks(); |
|
47 | - |
|
48 | - /** |
|
49 | - * @var $term_entity Events_Term_Entity_Jsonld |
|
50 | - */ |
|
51 | - $term_entity = $container_builder->get( Events_Term_Entity_Jsonld::class ); |
|
52 | - $term_entity->register_hooks(); |
|
53 | - |
|
54 | - /** |
|
55 | - * @var $include_exclude Events_Options_Entity_Include_Exclude |
|
56 | - */ |
|
57 | - $include_exclude = $container_builder->get( Events_Options_Entity_Include_Exclude::class ); |
|
58 | - $include_exclude->register_hooks(); |
|
32 | + // Autoloader for plugin itself. |
|
33 | + if ( file_exists( __DIR__ . '/vendor/autoload.php' ) ) { |
|
34 | + require __DIR__ . '/vendor/autoload.php'; |
|
35 | + } |
|
36 | + |
|
37 | + $container_builder = new ContainerBuilder(); |
|
38 | + $loader = new YamlFileLoader( $container_builder, new FileLocator( __DIR__ ) ); |
|
39 | + $loader->load( 'services.yml' ); |
|
40 | + $container_builder->compile(); |
|
41 | + |
|
42 | + /** |
|
43 | + * @var $post_entity Events_Post_Entity_Jsonld |
|
44 | + */ |
|
45 | + $post_entity = $container_builder->get( Events_Post_Entity_Jsonld::class ); |
|
46 | + $post_entity->register_hooks(); |
|
47 | + |
|
48 | + /** |
|
49 | + * @var $term_entity Events_Term_Entity_Jsonld |
|
50 | + */ |
|
51 | + $term_entity = $container_builder->get( Events_Term_Entity_Jsonld::class ); |
|
52 | + $term_entity->register_hooks(); |
|
53 | + |
|
54 | + /** |
|
55 | + * @var $include_exclude Events_Options_Entity_Include_Exclude |
|
56 | + */ |
|
57 | + $include_exclude = $container_builder->get( Events_Options_Entity_Include_Exclude::class ); |
|
58 | + $include_exclude->register_hooks(); |
|
59 | 59 | } |
60 | 60 | |
61 | 61 | add_action( 'plugins_loaded', '__wl_events__load' ); |
@@ -15,7 +15,7 @@ discard block |
||
15 | 15 | use Wordlift\Modules\Events\Post_Entity\Events_Post_Entity_Jsonld; |
16 | 16 | use Wordlift\Modules\Events\Term_Entity\Events_Term_Entity_Jsonld; |
17 | 17 | |
18 | -if ( ! defined( 'ABSPATH' ) ) { |
|
18 | +if ( ! defined('ABSPATH')) { |
|
19 | 19 | exit; |
20 | 20 | } |
21 | 21 | |
@@ -30,32 +30,32 @@ discard block |
||
30 | 30 | */ |
31 | 31 | function __wl_events__load() { |
32 | 32 | // Autoloader for plugin itself. |
33 | - if ( file_exists( __DIR__ . '/vendor/autoload.php' ) ) { |
|
34 | - require __DIR__ . '/vendor/autoload.php'; |
|
33 | + if (file_exists(__DIR__.'/vendor/autoload.php')) { |
|
34 | + require __DIR__.'/vendor/autoload.php'; |
|
35 | 35 | } |
36 | 36 | |
37 | 37 | $container_builder = new ContainerBuilder(); |
38 | - $loader = new YamlFileLoader( $container_builder, new FileLocator( __DIR__ ) ); |
|
39 | - $loader->load( 'services.yml' ); |
|
38 | + $loader = new YamlFileLoader($container_builder, new FileLocator(__DIR__)); |
|
39 | + $loader->load('services.yml'); |
|
40 | 40 | $container_builder->compile(); |
41 | 41 | |
42 | 42 | /** |
43 | 43 | * @var $post_entity Events_Post_Entity_Jsonld |
44 | 44 | */ |
45 | - $post_entity = $container_builder->get( Events_Post_Entity_Jsonld::class ); |
|
45 | + $post_entity = $container_builder->get(Events_Post_Entity_Jsonld::class); |
|
46 | 46 | $post_entity->register_hooks(); |
47 | 47 | |
48 | 48 | /** |
49 | 49 | * @var $term_entity Events_Term_Entity_Jsonld |
50 | 50 | */ |
51 | - $term_entity = $container_builder->get( Events_Term_Entity_Jsonld::class ); |
|
51 | + $term_entity = $container_builder->get(Events_Term_Entity_Jsonld::class); |
|
52 | 52 | $term_entity->register_hooks(); |
53 | 53 | |
54 | 54 | /** |
55 | 55 | * @var $include_exclude Events_Options_Entity_Include_Exclude |
56 | 56 | */ |
57 | - $include_exclude = $container_builder->get( Events_Options_Entity_Include_Exclude::class ); |
|
57 | + $include_exclude = $container_builder->get(Events_Options_Entity_Include_Exclude::class); |
|
58 | 58 | $include_exclude->register_hooks(); |
59 | 59 | } |
60 | 60 | |
61 | -add_action( 'plugins_loaded', '__wl_events__load' ); |
|
61 | +add_action('plugins_loaded', '__wl_events__load'); |
@@ -3,14 +3,14 @@ discard block |
||
3 | 3 | // autoload.php @generated by Composer |
4 | 4 | |
5 | 5 | if (PHP_VERSION_ID < 50600) { |
6 | - if (!headers_sent()) { |
|
6 | + if ( ! headers_sent()) { |
|
7 | 7 | header('HTTP/1.1 500 Internal Server Error'); |
8 | 8 | } |
9 | 9 | $err = 'Composer 2.3.0 dropped support for autoloading on PHP <5.6 and you are running '.PHP_VERSION.', please upgrade PHP or use Composer 2.2 LTS via "composer self-update --2.2". Aborting.'.PHP_EOL; |
10 | - if (!ini_get('display_errors')) { |
|
10 | + if ( ! ini_get('display_errors')) { |
|
11 | 11 | if (PHP_SAPI === 'cli' || PHP_SAPI === 'phpdbg') { |
12 | 12 | fwrite(STDERR, $err); |
13 | - } elseif (!headers_sent()) { |
|
13 | + } elseif ( ! headers_sent()) { |
|
14 | 14 | echo $err; |
15 | 15 | } |
16 | 16 | } |
@@ -20,6 +20,6 @@ discard block |
||
20 | 20 | ); |
21 | 21 | } |
22 | 22 | |
23 | -require_once __DIR__ . '/composer/autoload_real.php'; |
|
23 | +require_once __DIR__.'/composer/autoload_real.php'; |
|
24 | 24 | |
25 | 25 | return ComposerAutoloaderInitca2d76f00d9dc05bb61631fe434b572d::getLoader(); |