@@ -4,243 +4,243 @@ discard block |
||
| 4 | 4 | |
| 5 | 5 | class Wordlift_Products_Navigator_Shortcode_REST extends Wordlift_Shortcode_REST { |
| 6 | 6 | |
| 7 | - const CACHE_TTL = 3600; // 1 hour |
|
| 8 | - |
|
| 9 | - public function __construct() { |
|
| 10 | - parent::__construct( |
|
| 11 | - '/products-navigator', |
|
| 12 | - array( |
|
| 13 | - 'post_id' => array( |
|
| 14 | - 'description' => __( 'Post ID for which Navigator has to be queried', 'wordlift' ), |
|
| 15 | - 'type' => 'integer', |
|
| 16 | - 'required' => true, |
|
| 17 | - ), |
|
| 18 | - 'uniqid' => array( |
|
| 19 | - 'description' => __( 'Navigator uniqueid', 'wordlift' ), |
|
| 20 | - 'type' => 'string', |
|
| 21 | - 'required' => true, |
|
| 22 | - ), |
|
| 23 | - 'limit' => array( |
|
| 24 | - 'default' => 4, |
|
| 25 | - 'type' => 'integer', |
|
| 26 | - 'sanitize_callback' => 'absint', |
|
| 27 | - ), |
|
| 28 | - 'offset' => array( |
|
| 29 | - 'default' => 0, |
|
| 30 | - 'type' => 'integer', |
|
| 31 | - 'sanitize_callback' => 'absint', |
|
| 32 | - ), |
|
| 33 | - 'sort' => array( |
|
| 34 | - 'default' => 'ID DESC', |
|
| 35 | - 'sanitize_callback' => 'sanitize_sql_orderby', |
|
| 36 | - ), |
|
| 37 | - 'amp' => array( |
|
| 38 | - 'sanitize_callback' => 'rest_sanitize_boolean', |
|
| 39 | - ), |
|
| 40 | - ) |
|
| 41 | - ); |
|
| 42 | - } |
|
| 43 | - |
|
| 44 | - public function get_data( $request ) { |
|
| 45 | - |
|
| 46 | - // Sanitize and set defaults |
|
| 47 | - $navigator_length = $request['limit']; |
|
| 48 | - $navigator_offset = $request['offset']; |
|
| 49 | - $order_by = $request['sort']; |
|
| 50 | - $post_id = $request['post_id']; |
|
| 51 | - $navigator_id = $request['uniqid']; |
|
| 52 | - $amp = $request['amp']; |
|
| 53 | - |
|
| 54 | - $post = get_post( $post_id ); |
|
| 55 | - |
|
| 56 | - // Post ID has to match an existing item |
|
| 57 | - if ( null === $post ) { |
|
| 58 | - return new WP_Error( 'rest_invalid_post_id', __( 'Invalid post_id', 'wordlift' ), array( 'status' => 404 ) ); |
|
| 59 | - } |
|
| 60 | - |
|
| 61 | - // Determine navigator type and call respective get_*_results |
|
| 62 | - if ( get_post_type( $post_id ) === Wordlift_Entity_Service::TYPE_NAME ) { |
|
| 63 | - $referencing_posts = $this->get_entity_results( |
|
| 64 | - $post_id, |
|
| 65 | - array( |
|
| 66 | - 'ID', |
|
| 67 | - 'post_title', |
|
| 68 | - ), |
|
| 69 | - $order_by, |
|
| 70 | - $navigator_length, |
|
| 71 | - $navigator_offset |
|
| 72 | - ); |
|
| 73 | - } else { |
|
| 74 | - $referencing_posts = $this->get_post_results( |
|
| 75 | - $post_id, |
|
| 76 | - array( |
|
| 77 | - 'ID', |
|
| 78 | - 'post_title', |
|
| 79 | - ), |
|
| 80 | - $order_by, |
|
| 81 | - $navigator_length, |
|
| 82 | - $navigator_offset |
|
| 83 | - ); |
|
| 84 | - } |
|
| 85 | - |
|
| 86 | - // Fetch directly referencing posts excluding referencing posts via entities |
|
| 87 | - $directly_referencing_posts = $this->get_directly_referencing_posts( |
|
| 88 | - $post_id, |
|
| 89 | - array_map( |
|
| 90 | - function ( $referencing_post ) { |
|
| 91 | - return $referencing_post->ID; |
|
| 92 | - }, |
|
| 93 | - $referencing_posts |
|
| 94 | - ) |
|
| 95 | - ); |
|
| 96 | - |
|
| 97 | - // Combine directly referencing posts and referencing posts via entities |
|
| 98 | - $referencing_posts = array_merge( $directly_referencing_posts, $referencing_posts ); |
|
| 99 | - |
|
| 100 | - // loop over them and take the first one which is not already in the $related_posts |
|
| 101 | - $results = array(); |
|
| 102 | - foreach ( $referencing_posts as $referencing_post ) { |
|
| 103 | - $serialized_entity = wl_serialize_entity( $referencing_post->entity_id ); |
|
| 104 | - $product = wc_get_product( $referencing_post->ID ); |
|
| 105 | - |
|
| 106 | - $result = array( |
|
| 107 | - 'product' => array( |
|
| 108 | - 'id' => $referencing_post->ID, |
|
| 109 | - 'permalink' => get_permalink( $referencing_post->ID ), |
|
| 110 | - 'title' => $referencing_post->post_title, |
|
| 111 | - 'thumbnail' => get_the_post_thumbnail_url( $referencing_post, 'medium' ), |
|
| 112 | - 'regular_price' => $product->get_regular_price(), |
|
| 113 | - 'sale_price' => $product->get_sale_price(), |
|
| 114 | - 'price' => $product->get_price(), |
|
| 115 | - 'currency_symbol' => get_woocommerce_currency_symbol(), |
|
| 116 | - 'discount_pc' => ( $product->get_sale_price() && ( $product->get_regular_price() > 0 ) ) ? round( 1 - ( $product->get_sale_price() / $product->get_regular_price() ), 2 ) * 100 : 0, |
|
| 117 | - 'average_rating' => $product->get_average_rating(), |
|
| 118 | - 'rating_count' => $product->get_rating_count(), |
|
| 119 | - 'rating_html' => wc_get_rating_html( $product->get_average_rating(), $product->get_rating_count() ), |
|
| 120 | - ), |
|
| 121 | - 'entity' => array( |
|
| 122 | - 'id' => $referencing_post->entity_id, |
|
| 123 | - 'label' => $serialized_entity['label'], |
|
| 124 | - 'mainType' => $serialized_entity['mainType'], |
|
| 125 | - 'permalink' => get_permalink( $referencing_post->entity_id ), |
|
| 126 | - ), |
|
| 127 | - ); |
|
| 128 | - |
|
| 129 | - $results[] = $result; |
|
| 130 | - |
|
| 131 | - } |
|
| 132 | - |
|
| 133 | - if ( count( $results ) < $navigator_length ) { |
|
| 134 | - $results = apply_filters( 'wl_products_navigator_data_placeholder', $results, $navigator_id, $navigator_offset, $navigator_length ); |
|
| 135 | - } |
|
| 136 | - |
|
| 137 | - // Add filler posts if needed |
|
| 138 | - $filler_count = $navigator_length - count( $results ); |
|
| 139 | - if ( $filler_count > 0 ) { |
|
| 140 | - $referencing_post_ids = array_map( |
|
| 141 | - function ( $p ) { |
|
| 142 | - return $p->ID; |
|
| 143 | - }, |
|
| 144 | - $referencing_posts |
|
| 145 | - ); |
|
| 146 | - /** |
|
| 147 | - * @since 3.28.0 |
|
| 148 | - * Filler posts are fetched using this util. |
|
| 149 | - */ |
|
| 150 | - $filler_posts_util = new Filler_Posts_Util( $post_id, 'product' ); |
|
| 151 | - $post_ids_to_be_excluded = array_merge( array( $post_id ), $referencing_post_ids ); |
|
| 152 | - $filler_posts = $filler_posts_util->get_product_navigator_response( $filler_count, $post_ids_to_be_excluded ); |
|
| 153 | - $results = array_merge( $results, $filler_posts ); |
|
| 154 | - } |
|
| 155 | - |
|
| 156 | - // Apply filters after fillers are added |
|
| 157 | - foreach ( $results as $result_index => $result ) { |
|
| 158 | - $results[ $result_index ]['product'] = apply_filters( 'wl_products_navigator_data_post', $result['product'], intval( $result['product']['id'] ), $navigator_id ); |
|
| 159 | - $results[ $result_index ]['entity'] = apply_filters( 'wl_products_navigator_data_entity', $result['entity'], intval( $result['entity']['id'] ), $navigator_id ); |
|
| 160 | - } |
|
| 161 | - |
|
| 162 | - $results = apply_filters( 'wl_products_navigator_results', $results, $navigator_id ); |
|
| 163 | - |
|
| 164 | - return $amp ? array( |
|
| 165 | - 'items' => array( |
|
| 166 | - array( 'values' => $results ), |
|
| 167 | - ), |
|
| 168 | - ) : $results; |
|
| 169 | - |
|
| 170 | - } |
|
| 171 | - |
|
| 172 | - private function get_directly_referencing_posts( $post_id, $referencing_post_ids ) { |
|
| 173 | - |
|
| 174 | - $directly_referencing_post_ids = Wordlift_Entity_Service::get_instance()->get_related_entities( $post_id ); |
|
| 175 | - |
|
| 176 | - $post__in = array_diff( $directly_referencing_post_ids, $referencing_post_ids ); |
|
| 177 | - |
|
| 178 | - $directly_referencing_posts = get_posts( |
|
| 179 | - array( |
|
| 180 | - 'meta_query' => array( |
|
| 181 | - array( |
|
| 182 | - 'key' => '_thumbnail_id', |
|
| 183 | - ), |
|
| 184 | - array( |
|
| 185 | - 'key' => '_stock_status', |
|
| 186 | - 'value' => 'instock', |
|
| 187 | - ), |
|
| 188 | - ), |
|
| 189 | - 'post__in' => $post__in, |
|
| 190 | - 'post_type' => 'product', |
|
| 191 | - 'ignore_sticky_posts' => 1, |
|
| 192 | - ) |
|
| 193 | - ); |
|
| 194 | - |
|
| 195 | - $results = array(); |
|
| 196 | - |
|
| 197 | - foreach ( $directly_referencing_posts as $post ) { |
|
| 198 | - $result = new stdClass(); |
|
| 199 | - $result->ID = $post->ID; |
|
| 200 | - $result->post_title = $post->post_title; |
|
| 201 | - $result->entity_id = $post->ID; |
|
| 202 | - $results[] = $result; |
|
| 203 | - } |
|
| 204 | - |
|
| 205 | - return $results; |
|
| 206 | - } |
|
| 207 | - |
|
| 208 | - private function get_entity_results( |
|
| 209 | - $post_id, |
|
| 210 | - $fields = array( |
|
| 211 | - 'ID', |
|
| 212 | - 'post_title', |
|
| 213 | - ), |
|
| 214 | - $order_by = 'ID DESC', |
|
| 215 | - $limit = 10, |
|
| 216 | - $offset = 0 |
|
| 217 | - ) { |
|
| 218 | - global $wpdb; |
|
| 219 | - |
|
| 220 | - $select = implode( |
|
| 221 | - ', ', |
|
| 222 | - array_map( |
|
| 223 | - function ( $item ) { |
|
| 224 | - return "p.$item AS $item"; |
|
| 225 | - }, |
|
| 226 | - (array) $fields |
|
| 227 | - ) |
|
| 228 | - ); |
|
| 229 | - |
|
| 230 | - $order_by = implode( |
|
| 231 | - ', ', |
|
| 232 | - array_map( |
|
| 233 | - function ( $item ) { |
|
| 234 | - return "p.$item"; |
|
| 235 | - }, |
|
| 236 | - (array) $order_by |
|
| 237 | - ) |
|
| 238 | - ); |
|
| 7 | + const CACHE_TTL = 3600; // 1 hour |
|
| 8 | + |
|
| 9 | + public function __construct() { |
|
| 10 | + parent::__construct( |
|
| 11 | + '/products-navigator', |
|
| 12 | + array( |
|
| 13 | + 'post_id' => array( |
|
| 14 | + 'description' => __( 'Post ID for which Navigator has to be queried', 'wordlift' ), |
|
| 15 | + 'type' => 'integer', |
|
| 16 | + 'required' => true, |
|
| 17 | + ), |
|
| 18 | + 'uniqid' => array( |
|
| 19 | + 'description' => __( 'Navigator uniqueid', 'wordlift' ), |
|
| 20 | + 'type' => 'string', |
|
| 21 | + 'required' => true, |
|
| 22 | + ), |
|
| 23 | + 'limit' => array( |
|
| 24 | + 'default' => 4, |
|
| 25 | + 'type' => 'integer', |
|
| 26 | + 'sanitize_callback' => 'absint', |
|
| 27 | + ), |
|
| 28 | + 'offset' => array( |
|
| 29 | + 'default' => 0, |
|
| 30 | + 'type' => 'integer', |
|
| 31 | + 'sanitize_callback' => 'absint', |
|
| 32 | + ), |
|
| 33 | + 'sort' => array( |
|
| 34 | + 'default' => 'ID DESC', |
|
| 35 | + 'sanitize_callback' => 'sanitize_sql_orderby', |
|
| 36 | + ), |
|
| 37 | + 'amp' => array( |
|
| 38 | + 'sanitize_callback' => 'rest_sanitize_boolean', |
|
| 39 | + ), |
|
| 40 | + ) |
|
| 41 | + ); |
|
| 42 | + } |
|
| 43 | + |
|
| 44 | + public function get_data( $request ) { |
|
| 45 | + |
|
| 46 | + // Sanitize and set defaults |
|
| 47 | + $navigator_length = $request['limit']; |
|
| 48 | + $navigator_offset = $request['offset']; |
|
| 49 | + $order_by = $request['sort']; |
|
| 50 | + $post_id = $request['post_id']; |
|
| 51 | + $navigator_id = $request['uniqid']; |
|
| 52 | + $amp = $request['amp']; |
|
| 53 | + |
|
| 54 | + $post = get_post( $post_id ); |
|
| 55 | + |
|
| 56 | + // Post ID has to match an existing item |
|
| 57 | + if ( null === $post ) { |
|
| 58 | + return new WP_Error( 'rest_invalid_post_id', __( 'Invalid post_id', 'wordlift' ), array( 'status' => 404 ) ); |
|
| 59 | + } |
|
| 60 | + |
|
| 61 | + // Determine navigator type and call respective get_*_results |
|
| 62 | + if ( get_post_type( $post_id ) === Wordlift_Entity_Service::TYPE_NAME ) { |
|
| 63 | + $referencing_posts = $this->get_entity_results( |
|
| 64 | + $post_id, |
|
| 65 | + array( |
|
| 66 | + 'ID', |
|
| 67 | + 'post_title', |
|
| 68 | + ), |
|
| 69 | + $order_by, |
|
| 70 | + $navigator_length, |
|
| 71 | + $navigator_offset |
|
| 72 | + ); |
|
| 73 | + } else { |
|
| 74 | + $referencing_posts = $this->get_post_results( |
|
| 75 | + $post_id, |
|
| 76 | + array( |
|
| 77 | + 'ID', |
|
| 78 | + 'post_title', |
|
| 79 | + ), |
|
| 80 | + $order_by, |
|
| 81 | + $navigator_length, |
|
| 82 | + $navigator_offset |
|
| 83 | + ); |
|
| 84 | + } |
|
| 85 | + |
|
| 86 | + // Fetch directly referencing posts excluding referencing posts via entities |
|
| 87 | + $directly_referencing_posts = $this->get_directly_referencing_posts( |
|
| 88 | + $post_id, |
|
| 89 | + array_map( |
|
| 90 | + function ( $referencing_post ) { |
|
| 91 | + return $referencing_post->ID; |
|
| 92 | + }, |
|
| 93 | + $referencing_posts |
|
| 94 | + ) |
|
| 95 | + ); |
|
| 96 | + |
|
| 97 | + // Combine directly referencing posts and referencing posts via entities |
|
| 98 | + $referencing_posts = array_merge( $directly_referencing_posts, $referencing_posts ); |
|
| 99 | + |
|
| 100 | + // loop over them and take the first one which is not already in the $related_posts |
|
| 101 | + $results = array(); |
|
| 102 | + foreach ( $referencing_posts as $referencing_post ) { |
|
| 103 | + $serialized_entity = wl_serialize_entity( $referencing_post->entity_id ); |
|
| 104 | + $product = wc_get_product( $referencing_post->ID ); |
|
| 105 | + |
|
| 106 | + $result = array( |
|
| 107 | + 'product' => array( |
|
| 108 | + 'id' => $referencing_post->ID, |
|
| 109 | + 'permalink' => get_permalink( $referencing_post->ID ), |
|
| 110 | + 'title' => $referencing_post->post_title, |
|
| 111 | + 'thumbnail' => get_the_post_thumbnail_url( $referencing_post, 'medium' ), |
|
| 112 | + 'regular_price' => $product->get_regular_price(), |
|
| 113 | + 'sale_price' => $product->get_sale_price(), |
|
| 114 | + 'price' => $product->get_price(), |
|
| 115 | + 'currency_symbol' => get_woocommerce_currency_symbol(), |
|
| 116 | + 'discount_pc' => ( $product->get_sale_price() && ( $product->get_regular_price() > 0 ) ) ? round( 1 - ( $product->get_sale_price() / $product->get_regular_price() ), 2 ) * 100 : 0, |
|
| 117 | + 'average_rating' => $product->get_average_rating(), |
|
| 118 | + 'rating_count' => $product->get_rating_count(), |
|
| 119 | + 'rating_html' => wc_get_rating_html( $product->get_average_rating(), $product->get_rating_count() ), |
|
| 120 | + ), |
|
| 121 | + 'entity' => array( |
|
| 122 | + 'id' => $referencing_post->entity_id, |
|
| 123 | + 'label' => $serialized_entity['label'], |
|
| 124 | + 'mainType' => $serialized_entity['mainType'], |
|
| 125 | + 'permalink' => get_permalink( $referencing_post->entity_id ), |
|
| 126 | + ), |
|
| 127 | + ); |
|
| 128 | + |
|
| 129 | + $results[] = $result; |
|
| 130 | + |
|
| 131 | + } |
|
| 132 | + |
|
| 133 | + if ( count( $results ) < $navigator_length ) { |
|
| 134 | + $results = apply_filters( 'wl_products_navigator_data_placeholder', $results, $navigator_id, $navigator_offset, $navigator_length ); |
|
| 135 | + } |
|
| 136 | + |
|
| 137 | + // Add filler posts if needed |
|
| 138 | + $filler_count = $navigator_length - count( $results ); |
|
| 139 | + if ( $filler_count > 0 ) { |
|
| 140 | + $referencing_post_ids = array_map( |
|
| 141 | + function ( $p ) { |
|
| 142 | + return $p->ID; |
|
| 143 | + }, |
|
| 144 | + $referencing_posts |
|
| 145 | + ); |
|
| 146 | + /** |
|
| 147 | + * @since 3.28.0 |
|
| 148 | + * Filler posts are fetched using this util. |
|
| 149 | + */ |
|
| 150 | + $filler_posts_util = new Filler_Posts_Util( $post_id, 'product' ); |
|
| 151 | + $post_ids_to_be_excluded = array_merge( array( $post_id ), $referencing_post_ids ); |
|
| 152 | + $filler_posts = $filler_posts_util->get_product_navigator_response( $filler_count, $post_ids_to_be_excluded ); |
|
| 153 | + $results = array_merge( $results, $filler_posts ); |
|
| 154 | + } |
|
| 155 | + |
|
| 156 | + // Apply filters after fillers are added |
|
| 157 | + foreach ( $results as $result_index => $result ) { |
|
| 158 | + $results[ $result_index ]['product'] = apply_filters( 'wl_products_navigator_data_post', $result['product'], intval( $result['product']['id'] ), $navigator_id ); |
|
| 159 | + $results[ $result_index ]['entity'] = apply_filters( 'wl_products_navigator_data_entity', $result['entity'], intval( $result['entity']['id'] ), $navigator_id ); |
|
| 160 | + } |
|
| 161 | + |
|
| 162 | + $results = apply_filters( 'wl_products_navigator_results', $results, $navigator_id ); |
|
| 163 | + |
|
| 164 | + return $amp ? array( |
|
| 165 | + 'items' => array( |
|
| 166 | + array( 'values' => $results ), |
|
| 167 | + ), |
|
| 168 | + ) : $results; |
|
| 169 | + |
|
| 170 | + } |
|
| 171 | + |
|
| 172 | + private function get_directly_referencing_posts( $post_id, $referencing_post_ids ) { |
|
| 173 | + |
|
| 174 | + $directly_referencing_post_ids = Wordlift_Entity_Service::get_instance()->get_related_entities( $post_id ); |
|
| 175 | + |
|
| 176 | + $post__in = array_diff( $directly_referencing_post_ids, $referencing_post_ids ); |
|
| 177 | + |
|
| 178 | + $directly_referencing_posts = get_posts( |
|
| 179 | + array( |
|
| 180 | + 'meta_query' => array( |
|
| 181 | + array( |
|
| 182 | + 'key' => '_thumbnail_id', |
|
| 183 | + ), |
|
| 184 | + array( |
|
| 185 | + 'key' => '_stock_status', |
|
| 186 | + 'value' => 'instock', |
|
| 187 | + ), |
|
| 188 | + ), |
|
| 189 | + 'post__in' => $post__in, |
|
| 190 | + 'post_type' => 'product', |
|
| 191 | + 'ignore_sticky_posts' => 1, |
|
| 192 | + ) |
|
| 193 | + ); |
|
| 194 | + |
|
| 195 | + $results = array(); |
|
| 196 | + |
|
| 197 | + foreach ( $directly_referencing_posts as $post ) { |
|
| 198 | + $result = new stdClass(); |
|
| 199 | + $result->ID = $post->ID; |
|
| 200 | + $result->post_title = $post->post_title; |
|
| 201 | + $result->entity_id = $post->ID; |
|
| 202 | + $results[] = $result; |
|
| 203 | + } |
|
| 204 | + |
|
| 205 | + return $results; |
|
| 206 | + } |
|
| 207 | + |
|
| 208 | + private function get_entity_results( |
|
| 209 | + $post_id, |
|
| 210 | + $fields = array( |
|
| 211 | + 'ID', |
|
| 212 | + 'post_title', |
|
| 213 | + ), |
|
| 214 | + $order_by = 'ID DESC', |
|
| 215 | + $limit = 10, |
|
| 216 | + $offset = 0 |
|
| 217 | + ) { |
|
| 218 | + global $wpdb; |
|
| 219 | + |
|
| 220 | + $select = implode( |
|
| 221 | + ', ', |
|
| 222 | + array_map( |
|
| 223 | + function ( $item ) { |
|
| 224 | + return "p.$item AS $item"; |
|
| 225 | + }, |
|
| 226 | + (array) $fields |
|
| 227 | + ) |
|
| 228 | + ); |
|
| 229 | + |
|
| 230 | + $order_by = implode( |
|
| 231 | + ', ', |
|
| 232 | + array_map( |
|
| 233 | + function ( $item ) { |
|
| 234 | + return "p.$item"; |
|
| 235 | + }, |
|
| 236 | + (array) $order_by |
|
| 237 | + ) |
|
| 238 | + ); |
|
| 239 | 239 | // phpcs:disable WordPress.DB.PreparedSQLPlaceholders.UnquotedComplexPlaceholder |
| 240 | - /** @noinspection SqlNoDataSourceInspection */ |
|
| 241 | - return $wpdb->get_results( |
|
| 242 | - $wpdb->prepare( |
|
| 243 | - " |
|
| 240 | + /** @noinspection SqlNoDataSourceInspection */ |
|
| 241 | + return $wpdb->get_results( |
|
| 242 | + $wpdb->prepare( |
|
| 243 | + " |
|
| 244 | 244 | SELECT %4\$s, p2.ID as entity_id |
| 245 | 245 | FROM {$wpdb->prefix}wl_relation_instances r1 |
| 246 | 246 | -- get the ID of the post entity in common between the object and the subject 2. |
@@ -273,51 +273,51 @@ discard block |
||
| 273 | 273 | LIMIT %2\$d |
| 274 | 274 | OFFSET %3\$d |
| 275 | 275 | ", |
| 276 | - $post_id, |
|
| 277 | - $limit, |
|
| 278 | - $offset, |
|
| 279 | - $select, |
|
| 280 | - $order_by |
|
| 281 | - ) |
|
| 282 | - ); |
|
| 283 | - } |
|
| 276 | + $post_id, |
|
| 277 | + $limit, |
|
| 278 | + $offset, |
|
| 279 | + $select, |
|
| 280 | + $order_by |
|
| 281 | + ) |
|
| 282 | + ); |
|
| 283 | + } |
|
| 284 | 284 | // phpcs:enable |
| 285 | - private function get_post_results( |
|
| 286 | - $post_id, |
|
| 287 | - $fields = array( |
|
| 288 | - 'ID', |
|
| 289 | - 'post_title', |
|
| 290 | - ), |
|
| 291 | - $order_by = 'ID DESC', |
|
| 292 | - $limit = 10, |
|
| 293 | - $offset = 0 |
|
| 294 | - ) { |
|
| 295 | - global $wpdb; |
|
| 296 | - |
|
| 297 | - $select = implode( |
|
| 298 | - ', ', |
|
| 299 | - array_map( |
|
| 300 | - function ( $item ) { |
|
| 301 | - return "p.$item AS $item"; |
|
| 302 | - }, |
|
| 303 | - (array) $fields |
|
| 304 | - ) |
|
| 305 | - ); |
|
| 306 | - |
|
| 307 | - $order_by = implode( |
|
| 308 | - ', ', |
|
| 309 | - array_map( |
|
| 310 | - function ( $item ) { |
|
| 311 | - return "p.$item"; |
|
| 312 | - }, |
|
| 313 | - (array) $order_by |
|
| 314 | - ) |
|
| 315 | - ); |
|
| 285 | + private function get_post_results( |
|
| 286 | + $post_id, |
|
| 287 | + $fields = array( |
|
| 288 | + 'ID', |
|
| 289 | + 'post_title', |
|
| 290 | + ), |
|
| 291 | + $order_by = 'ID DESC', |
|
| 292 | + $limit = 10, |
|
| 293 | + $offset = 0 |
|
| 294 | + ) { |
|
| 295 | + global $wpdb; |
|
| 296 | + |
|
| 297 | + $select = implode( |
|
| 298 | + ', ', |
|
| 299 | + array_map( |
|
| 300 | + function ( $item ) { |
|
| 301 | + return "p.$item AS $item"; |
|
| 302 | + }, |
|
| 303 | + (array) $fields |
|
| 304 | + ) |
|
| 305 | + ); |
|
| 306 | + |
|
| 307 | + $order_by = implode( |
|
| 308 | + ', ', |
|
| 309 | + array_map( |
|
| 310 | + function ( $item ) { |
|
| 311 | + return "p.$item"; |
|
| 312 | + }, |
|
| 313 | + (array) $order_by |
|
| 314 | + ) |
|
| 315 | + ); |
|
| 316 | 316 | // phpcs:disable WordPress.DB.PreparedSQLPlaceholders.UnquotedComplexPlaceholder,WordPress.DB.PreparedSQLPlaceholders.ReplacementsWrongNumber |
| 317 | - /** @noinspection SqlNoDataSourceInspection */ |
|
| 318 | - return $wpdb->get_results( |
|
| 319 | - $wpdb->prepare( |
|
| 320 | - " |
|
| 317 | + /** @noinspection SqlNoDataSourceInspection */ |
|
| 318 | + return $wpdb->get_results( |
|
| 319 | + $wpdb->prepare( |
|
| 320 | + " |
|
| 321 | 321 | SELECT %4\$s, p2.ID as entity_id |
| 322 | 322 | FROM {$wpdb->prefix}wl_relation_instances r1 |
| 323 | 323 | INNER JOIN {$wpdb->prefix}wl_relation_instances r2 |
@@ -353,13 +353,13 @@ discard block |
||
| 353 | 353 | LIMIT %2\$d |
| 354 | 354 | OFFSET %3\$d |
| 355 | 355 | ", |
| 356 | - $post_id, |
|
| 357 | - $limit, |
|
| 358 | - $offset, |
|
| 359 | - $select, |
|
| 360 | - $order_by |
|
| 361 | - ) |
|
| 362 | - ); |
|
| 363 | - } |
|
| 356 | + $post_id, |
|
| 357 | + $limit, |
|
| 358 | + $offset, |
|
| 359 | + $select, |
|
| 360 | + $order_by |
|
| 361 | + ) |
|
| 362 | + ); |
|
| 363 | + } |
|
| 364 | 364 | // phpcs:enable |
| 365 | 365 | } |
@@ -11,12 +11,12 @@ discard block |
||
| 11 | 11 | '/products-navigator', |
| 12 | 12 | array( |
| 13 | 13 | 'post_id' => array( |
| 14 | - 'description' => __( 'Post ID for which Navigator has to be queried', 'wordlift' ), |
|
| 14 | + 'description' => __('Post ID for which Navigator has to be queried', 'wordlift'), |
|
| 15 | 15 | 'type' => 'integer', |
| 16 | 16 | 'required' => true, |
| 17 | 17 | ), |
| 18 | 18 | 'uniqid' => array( |
| 19 | - 'description' => __( 'Navigator uniqueid', 'wordlift' ), |
|
| 19 | + 'description' => __('Navigator uniqueid', 'wordlift'), |
|
| 20 | 20 | 'type' => 'string', |
| 21 | 21 | 'required' => true, |
| 22 | 22 | ), |
@@ -41,7 +41,7 @@ discard block |
||
| 41 | 41 | ); |
| 42 | 42 | } |
| 43 | 43 | |
| 44 | - public function get_data( $request ) { |
|
| 44 | + public function get_data($request) { |
|
| 45 | 45 | |
| 46 | 46 | // Sanitize and set defaults |
| 47 | 47 | $navigator_length = $request['limit']; |
@@ -51,15 +51,15 @@ discard block |
||
| 51 | 51 | $navigator_id = $request['uniqid']; |
| 52 | 52 | $amp = $request['amp']; |
| 53 | 53 | |
| 54 | - $post = get_post( $post_id ); |
|
| 54 | + $post = get_post($post_id); |
|
| 55 | 55 | |
| 56 | 56 | // Post ID has to match an existing item |
| 57 | - if ( null === $post ) { |
|
| 58 | - return new WP_Error( 'rest_invalid_post_id', __( 'Invalid post_id', 'wordlift' ), array( 'status' => 404 ) ); |
|
| 57 | + if (null === $post) { |
|
| 58 | + return new WP_Error('rest_invalid_post_id', __('Invalid post_id', 'wordlift'), array('status' => 404)); |
|
| 59 | 59 | } |
| 60 | 60 | |
| 61 | 61 | // Determine navigator type and call respective get_*_results |
| 62 | - if ( get_post_type( $post_id ) === Wordlift_Entity_Service::TYPE_NAME ) { |
|
| 62 | + if (get_post_type($post_id) === Wordlift_Entity_Service::TYPE_NAME) { |
|
| 63 | 63 | $referencing_posts = $this->get_entity_results( |
| 64 | 64 | $post_id, |
| 65 | 65 | array( |
@@ -87,7 +87,7 @@ discard block |
||
| 87 | 87 | $directly_referencing_posts = $this->get_directly_referencing_posts( |
| 88 | 88 | $post_id, |
| 89 | 89 | array_map( |
| 90 | - function ( $referencing_post ) { |
|
| 90 | + function($referencing_post) { |
|
| 91 | 91 | return $referencing_post->ID; |
| 92 | 92 | }, |
| 93 | 93 | $referencing_posts |
@@ -95,34 +95,34 @@ discard block |
||
| 95 | 95 | ); |
| 96 | 96 | |
| 97 | 97 | // Combine directly referencing posts and referencing posts via entities |
| 98 | - $referencing_posts = array_merge( $directly_referencing_posts, $referencing_posts ); |
|
| 98 | + $referencing_posts = array_merge($directly_referencing_posts, $referencing_posts); |
|
| 99 | 99 | |
| 100 | 100 | // loop over them and take the first one which is not already in the $related_posts |
| 101 | 101 | $results = array(); |
| 102 | - foreach ( $referencing_posts as $referencing_post ) { |
|
| 103 | - $serialized_entity = wl_serialize_entity( $referencing_post->entity_id ); |
|
| 104 | - $product = wc_get_product( $referencing_post->ID ); |
|
| 102 | + foreach ($referencing_posts as $referencing_post) { |
|
| 103 | + $serialized_entity = wl_serialize_entity($referencing_post->entity_id); |
|
| 104 | + $product = wc_get_product($referencing_post->ID); |
|
| 105 | 105 | |
| 106 | 106 | $result = array( |
| 107 | 107 | 'product' => array( |
| 108 | 108 | 'id' => $referencing_post->ID, |
| 109 | - 'permalink' => get_permalink( $referencing_post->ID ), |
|
| 109 | + 'permalink' => get_permalink($referencing_post->ID), |
|
| 110 | 110 | 'title' => $referencing_post->post_title, |
| 111 | - 'thumbnail' => get_the_post_thumbnail_url( $referencing_post, 'medium' ), |
|
| 111 | + 'thumbnail' => get_the_post_thumbnail_url($referencing_post, 'medium'), |
|
| 112 | 112 | 'regular_price' => $product->get_regular_price(), |
| 113 | 113 | 'sale_price' => $product->get_sale_price(), |
| 114 | 114 | 'price' => $product->get_price(), |
| 115 | 115 | 'currency_symbol' => get_woocommerce_currency_symbol(), |
| 116 | - 'discount_pc' => ( $product->get_sale_price() && ( $product->get_regular_price() > 0 ) ) ? round( 1 - ( $product->get_sale_price() / $product->get_regular_price() ), 2 ) * 100 : 0, |
|
| 116 | + 'discount_pc' => ($product->get_sale_price() && ($product->get_regular_price() > 0)) ? round(1 - ($product->get_sale_price() / $product->get_regular_price()), 2) * 100 : 0, |
|
| 117 | 117 | 'average_rating' => $product->get_average_rating(), |
| 118 | 118 | 'rating_count' => $product->get_rating_count(), |
| 119 | - 'rating_html' => wc_get_rating_html( $product->get_average_rating(), $product->get_rating_count() ), |
|
| 119 | + 'rating_html' => wc_get_rating_html($product->get_average_rating(), $product->get_rating_count()), |
|
| 120 | 120 | ), |
| 121 | 121 | 'entity' => array( |
| 122 | 122 | 'id' => $referencing_post->entity_id, |
| 123 | 123 | 'label' => $serialized_entity['label'], |
| 124 | 124 | 'mainType' => $serialized_entity['mainType'], |
| 125 | - 'permalink' => get_permalink( $referencing_post->entity_id ), |
|
| 125 | + 'permalink' => get_permalink($referencing_post->entity_id), |
|
| 126 | 126 | ), |
| 127 | 127 | ); |
| 128 | 128 | |
@@ -130,15 +130,15 @@ discard block |
||
| 130 | 130 | |
| 131 | 131 | } |
| 132 | 132 | |
| 133 | - if ( count( $results ) < $navigator_length ) { |
|
| 134 | - $results = apply_filters( 'wl_products_navigator_data_placeholder', $results, $navigator_id, $navigator_offset, $navigator_length ); |
|
| 133 | + if (count($results) < $navigator_length) { |
|
| 134 | + $results = apply_filters('wl_products_navigator_data_placeholder', $results, $navigator_id, $navigator_offset, $navigator_length); |
|
| 135 | 135 | } |
| 136 | 136 | |
| 137 | 137 | // Add filler posts if needed |
| 138 | - $filler_count = $navigator_length - count( $results ); |
|
| 139 | - if ( $filler_count > 0 ) { |
|
| 138 | + $filler_count = $navigator_length - count($results); |
|
| 139 | + if ($filler_count > 0) { |
|
| 140 | 140 | $referencing_post_ids = array_map( |
| 141 | - function ( $p ) { |
|
| 141 | + function($p) { |
|
| 142 | 142 | return $p->ID; |
| 143 | 143 | }, |
| 144 | 144 | $referencing_posts |
@@ -147,33 +147,33 @@ discard block |
||
| 147 | 147 | * @since 3.28.0 |
| 148 | 148 | * Filler posts are fetched using this util. |
| 149 | 149 | */ |
| 150 | - $filler_posts_util = new Filler_Posts_Util( $post_id, 'product' ); |
|
| 151 | - $post_ids_to_be_excluded = array_merge( array( $post_id ), $referencing_post_ids ); |
|
| 152 | - $filler_posts = $filler_posts_util->get_product_navigator_response( $filler_count, $post_ids_to_be_excluded ); |
|
| 153 | - $results = array_merge( $results, $filler_posts ); |
|
| 150 | + $filler_posts_util = new Filler_Posts_Util($post_id, 'product'); |
|
| 151 | + $post_ids_to_be_excluded = array_merge(array($post_id), $referencing_post_ids); |
|
| 152 | + $filler_posts = $filler_posts_util->get_product_navigator_response($filler_count, $post_ids_to_be_excluded); |
|
| 153 | + $results = array_merge($results, $filler_posts); |
|
| 154 | 154 | } |
| 155 | 155 | |
| 156 | 156 | // Apply filters after fillers are added |
| 157 | - foreach ( $results as $result_index => $result ) { |
|
| 158 | - $results[ $result_index ]['product'] = apply_filters( 'wl_products_navigator_data_post', $result['product'], intval( $result['product']['id'] ), $navigator_id ); |
|
| 159 | - $results[ $result_index ]['entity'] = apply_filters( 'wl_products_navigator_data_entity', $result['entity'], intval( $result['entity']['id'] ), $navigator_id ); |
|
| 157 | + foreach ($results as $result_index => $result) { |
|
| 158 | + $results[$result_index]['product'] = apply_filters('wl_products_navigator_data_post', $result['product'], intval($result['product']['id']), $navigator_id); |
|
| 159 | + $results[$result_index]['entity'] = apply_filters('wl_products_navigator_data_entity', $result['entity'], intval($result['entity']['id']), $navigator_id); |
|
| 160 | 160 | } |
| 161 | 161 | |
| 162 | - $results = apply_filters( 'wl_products_navigator_results', $results, $navigator_id ); |
|
| 162 | + $results = apply_filters('wl_products_navigator_results', $results, $navigator_id); |
|
| 163 | 163 | |
| 164 | 164 | return $amp ? array( |
| 165 | 165 | 'items' => array( |
| 166 | - array( 'values' => $results ), |
|
| 166 | + array('values' => $results), |
|
| 167 | 167 | ), |
| 168 | 168 | ) : $results; |
| 169 | 169 | |
| 170 | 170 | } |
| 171 | 171 | |
| 172 | - private function get_directly_referencing_posts( $post_id, $referencing_post_ids ) { |
|
| 172 | + private function get_directly_referencing_posts($post_id, $referencing_post_ids) { |
|
| 173 | 173 | |
| 174 | - $directly_referencing_post_ids = Wordlift_Entity_Service::get_instance()->get_related_entities( $post_id ); |
|
| 174 | + $directly_referencing_post_ids = Wordlift_Entity_Service::get_instance()->get_related_entities($post_id); |
|
| 175 | 175 | |
| 176 | - $post__in = array_diff( $directly_referencing_post_ids, $referencing_post_ids ); |
|
| 176 | + $post__in = array_diff($directly_referencing_post_ids, $referencing_post_ids); |
|
| 177 | 177 | |
| 178 | 178 | $directly_referencing_posts = get_posts( |
| 179 | 179 | array( |
@@ -194,7 +194,7 @@ discard block |
||
| 194 | 194 | |
| 195 | 195 | $results = array(); |
| 196 | 196 | |
| 197 | - foreach ( $directly_referencing_posts as $post ) { |
|
| 197 | + foreach ($directly_referencing_posts as $post) { |
|
| 198 | 198 | $result = new stdClass(); |
| 199 | 199 | $result->ID = $post->ID; |
| 200 | 200 | $result->post_title = $post->post_title; |
@@ -220,7 +220,7 @@ discard block |
||
| 220 | 220 | $select = implode( |
| 221 | 221 | ', ', |
| 222 | 222 | array_map( |
| 223 | - function ( $item ) { |
|
| 223 | + function($item) { |
|
| 224 | 224 | return "p.$item AS $item"; |
| 225 | 225 | }, |
| 226 | 226 | (array) $fields |
@@ -230,7 +230,7 @@ discard block |
||
| 230 | 230 | $order_by = implode( |
| 231 | 231 | ', ', |
| 232 | 232 | array_map( |
| 233 | - function ( $item ) { |
|
| 233 | + function($item) { |
|
| 234 | 234 | return "p.$item"; |
| 235 | 235 | }, |
| 236 | 236 | (array) $order_by |
@@ -297,7 +297,7 @@ discard block |
||
| 297 | 297 | $select = implode( |
| 298 | 298 | ', ', |
| 299 | 299 | array_map( |
| 300 | - function ( $item ) { |
|
| 300 | + function($item) { |
|
| 301 | 301 | return "p.$item AS $item"; |
| 302 | 302 | }, |
| 303 | 303 | (array) $fields |
@@ -307,7 +307,7 @@ discard block |
||
| 307 | 307 | $order_by = implode( |
| 308 | 308 | ', ', |
| 309 | 309 | array_map( |
| 310 | - function ( $item ) { |
|
| 310 | + function($item) { |
|
| 311 | 311 | return "p.$item"; |
| 312 | 312 | }, |
| 313 | 313 | (array) $order_by |
@@ -15,47 +15,47 @@ discard block |
||
| 15 | 15 | * @return mixed |
| 16 | 16 | */ |
| 17 | 17 | function wl_shortcode_chord_most_referenced_entity_id() { |
| 18 | - // Get the last 20 articles by post date. |
|
| 19 | - // For each article get the entities they reference. |
|
| 20 | - $post_ids = get_posts( |
|
| 21 | - array( |
|
| 22 | - 'numberposts' => 20, |
|
| 23 | - 'post_type' => Wordlift_Entity_Service::valid_entity_post_types(), |
|
| 24 | - 'fields' => 'ids', // Only get post IDs. |
|
| 25 | - 'post_status' => 'publish', |
|
| 26 | - 'tax_query' => array( |
|
| 27 | - 'relation' => 'OR', |
|
| 28 | - array( |
|
| 29 | - 'taxonomy' => Wordlift_Entity_Type_Taxonomy_Service::TAXONOMY_NAME, |
|
| 30 | - 'operator' => 'NOT EXISTS', |
|
| 31 | - ), |
|
| 32 | - array( |
|
| 33 | - 'taxonomy' => Wordlift_Entity_Type_Taxonomy_Service::TAXONOMY_NAME, |
|
| 34 | - 'field' => 'slug', |
|
| 35 | - 'terms' => 'article', |
|
| 36 | - ), |
|
| 37 | - ), |
|
| 38 | - 'orderby' => 'post_date', |
|
| 39 | - 'order' => 'DESC', |
|
| 40 | - ) |
|
| 41 | - ); |
|
| 42 | - |
|
| 43 | - if ( empty( $post_ids ) ) { |
|
| 44 | - return null; |
|
| 45 | - } |
|
| 46 | - |
|
| 47 | - $entities = array(); |
|
| 48 | - foreach ( $post_ids as $id ) { |
|
| 49 | - $entities = array_merge( $entities, wl_core_get_related_entity_ids( $id ) ); |
|
| 50 | - } |
|
| 51 | - |
|
| 52 | - $famous_entities = array_count_values( $entities ); |
|
| 53 | - arsort( $famous_entities ); |
|
| 54 | - if ( count( $famous_entities ) >= 1 ) { |
|
| 55 | - return key( $famous_entities ); |
|
| 56 | - } else { |
|
| 57 | - return $post_ids[0]; |
|
| 58 | - } |
|
| 18 | + // Get the last 20 articles by post date. |
|
| 19 | + // For each article get the entities they reference. |
|
| 20 | + $post_ids = get_posts( |
|
| 21 | + array( |
|
| 22 | + 'numberposts' => 20, |
|
| 23 | + 'post_type' => Wordlift_Entity_Service::valid_entity_post_types(), |
|
| 24 | + 'fields' => 'ids', // Only get post IDs. |
|
| 25 | + 'post_status' => 'publish', |
|
| 26 | + 'tax_query' => array( |
|
| 27 | + 'relation' => 'OR', |
|
| 28 | + array( |
|
| 29 | + 'taxonomy' => Wordlift_Entity_Type_Taxonomy_Service::TAXONOMY_NAME, |
|
| 30 | + 'operator' => 'NOT EXISTS', |
|
| 31 | + ), |
|
| 32 | + array( |
|
| 33 | + 'taxonomy' => Wordlift_Entity_Type_Taxonomy_Service::TAXONOMY_NAME, |
|
| 34 | + 'field' => 'slug', |
|
| 35 | + 'terms' => 'article', |
|
| 36 | + ), |
|
| 37 | + ), |
|
| 38 | + 'orderby' => 'post_date', |
|
| 39 | + 'order' => 'DESC', |
|
| 40 | + ) |
|
| 41 | + ); |
|
| 42 | + |
|
| 43 | + if ( empty( $post_ids ) ) { |
|
| 44 | + return null; |
|
| 45 | + } |
|
| 46 | + |
|
| 47 | + $entities = array(); |
|
| 48 | + foreach ( $post_ids as $id ) { |
|
| 49 | + $entities = array_merge( $entities, wl_core_get_related_entity_ids( $id ) ); |
|
| 50 | + } |
|
| 51 | + |
|
| 52 | + $famous_entities = array_count_values( $entities ); |
|
| 53 | + arsort( $famous_entities ); |
|
| 54 | + if ( count( $famous_entities ) >= 1 ) { |
|
| 55 | + return key( $famous_entities ); |
|
| 56 | + } else { |
|
| 57 | + return $post_ids[0]; |
|
| 58 | + } |
|
| 59 | 59 | |
| 60 | 60 | } |
| 61 | 61 | |
@@ -72,66 +72,66 @@ discard block |
||
| 72 | 72 | */ |
| 73 | 73 | function wl_shortcode_chord_get_relations( $entity_id, $depth = 2, $related = null, $max_size = 9 ) { |
| 74 | 74 | |
| 75 | - if ( $related !== null ) { |
|
| 76 | - if ( 0 === $depth ) { |
|
| 77 | - return $related; |
|
| 78 | - } |
|
| 79 | - } |
|
| 80 | - |
|
| 81 | - wl_write_log( "wl_shortcode_chord_get_relations [ post id :: $entity_id ][ depth :: $depth ][ related? :: " . ( $related === null ? 'yes' : 'no' ) . ' ]' ); |
|
| 82 | - |
|
| 83 | - // Create a related array which will hold entities and relations. |
|
| 84 | - if ( $related === null ) { |
|
| 85 | - $related = array( |
|
| 86 | - 'entities' => array( $entity_id ), |
|
| 87 | - 'relations' => array(), |
|
| 88 | - ); |
|
| 89 | - } |
|
| 90 | - |
|
| 91 | - // Get related entities |
|
| 92 | - $related_entity_ids = wl_core_get_related_entity_ids( |
|
| 93 | - $entity_id, |
|
| 94 | - array( |
|
| 95 | - 'status' => 'publish', |
|
| 96 | - ) |
|
| 97 | - ); |
|
| 98 | - |
|
| 99 | - // If the current node is an entity, add related posts too |
|
| 100 | - $related_post_ids = ( Wordlift_Entity_Service::get_instance() |
|
| 101 | - ->is_entity( $entity_id ) ) ? |
|
| 102 | - wl_core_get_related_post_ids( |
|
| 103 | - $entity_id, |
|
| 104 | - array( |
|
| 105 | - 'status' => 'publish', |
|
| 106 | - ) |
|
| 107 | - ) : |
|
| 108 | - array(); |
|
| 109 | - |
|
| 110 | - // Merge results and remove duplicated entries |
|
| 111 | - $related_ids = array_unique( array_merge( $related_post_ids, $related_entity_ids ) ); |
|
| 112 | - |
|
| 113 | - // TODO: List of entities ($rel) should be ordered by interest factors. |
|
| 114 | - shuffle( $related_ids ); |
|
| 115 | - |
|
| 116 | - // Now we have all the related IDs. |
|
| 117 | - foreach ( $related_ids as $related_id ) { |
|
| 118 | - |
|
| 119 | - if ( count( $related['entities'] ) >= $max_size ) { |
|
| 120 | - return $related; |
|
| 121 | - } |
|
| 122 | - |
|
| 123 | - $related['relations'][] = array( $entity_id, $related_id ); |
|
| 124 | - |
|
| 125 | - if ( ! in_array( $related_id, $related['entities'], true ) ) { |
|
| 126 | - // Found new related entity! |
|
| 127 | - $related['entities'][] = $related_id; |
|
| 128 | - |
|
| 129 | - $related = wl_shortcode_chord_get_relations( $related_id, ( $depth - 1 ), $related, $max_size ); |
|
| 130 | - } |
|
| 131 | - } |
|
| 132 | - |
|
| 133 | - // End condition 2: no more entities to search for. |
|
| 134 | - return $related; |
|
| 75 | + if ( $related !== null ) { |
|
| 76 | + if ( 0 === $depth ) { |
|
| 77 | + return $related; |
|
| 78 | + } |
|
| 79 | + } |
|
| 80 | + |
|
| 81 | + wl_write_log( "wl_shortcode_chord_get_relations [ post id :: $entity_id ][ depth :: $depth ][ related? :: " . ( $related === null ? 'yes' : 'no' ) . ' ]' ); |
|
| 82 | + |
|
| 83 | + // Create a related array which will hold entities and relations. |
|
| 84 | + if ( $related === null ) { |
|
| 85 | + $related = array( |
|
| 86 | + 'entities' => array( $entity_id ), |
|
| 87 | + 'relations' => array(), |
|
| 88 | + ); |
|
| 89 | + } |
|
| 90 | + |
|
| 91 | + // Get related entities |
|
| 92 | + $related_entity_ids = wl_core_get_related_entity_ids( |
|
| 93 | + $entity_id, |
|
| 94 | + array( |
|
| 95 | + 'status' => 'publish', |
|
| 96 | + ) |
|
| 97 | + ); |
|
| 98 | + |
|
| 99 | + // If the current node is an entity, add related posts too |
|
| 100 | + $related_post_ids = ( Wordlift_Entity_Service::get_instance() |
|
| 101 | + ->is_entity( $entity_id ) ) ? |
|
| 102 | + wl_core_get_related_post_ids( |
|
| 103 | + $entity_id, |
|
| 104 | + array( |
|
| 105 | + 'status' => 'publish', |
|
| 106 | + ) |
|
| 107 | + ) : |
|
| 108 | + array(); |
|
| 109 | + |
|
| 110 | + // Merge results and remove duplicated entries |
|
| 111 | + $related_ids = array_unique( array_merge( $related_post_ids, $related_entity_ids ) ); |
|
| 112 | + |
|
| 113 | + // TODO: List of entities ($rel) should be ordered by interest factors. |
|
| 114 | + shuffle( $related_ids ); |
|
| 115 | + |
|
| 116 | + // Now we have all the related IDs. |
|
| 117 | + foreach ( $related_ids as $related_id ) { |
|
| 118 | + |
|
| 119 | + if ( count( $related['entities'] ) >= $max_size ) { |
|
| 120 | + return $related; |
|
| 121 | + } |
|
| 122 | + |
|
| 123 | + $related['relations'][] = array( $entity_id, $related_id ); |
|
| 124 | + |
|
| 125 | + if ( ! in_array( $related_id, $related['entities'], true ) ) { |
|
| 126 | + // Found new related entity! |
|
| 127 | + $related['entities'][] = $related_id; |
|
| 128 | + |
|
| 129 | + $related = wl_shortcode_chord_get_relations( $related_id, ( $depth - 1 ), $related, $max_size ); |
|
| 130 | + } |
|
| 131 | + } |
|
| 132 | + |
|
| 133 | + // End condition 2: no more entities to search for. |
|
| 134 | + return $related; |
|
| 135 | 135 | } |
| 136 | 136 | |
| 137 | 137 | /** |
@@ -145,63 +145,63 @@ discard block |
||
| 145 | 145 | */ |
| 146 | 146 | function wl_shortcode_chord_get_graph( $data ) { |
| 147 | 147 | |
| 148 | - // Refactor the entities array in order to provide entities relevant data (uri, url, label, type, css_class). |
|
| 149 | - array_walk( |
|
| 150 | - $data['entities'], |
|
| 151 | - function ( &$item ) { |
|
| 152 | - $post = get_post( $item ); |
|
| 153 | - |
|
| 154 | - // Skip non-existing posts. |
|
| 155 | - if ( $post === null ) { |
|
| 156 | - wl_write_log( "wl_shortcode_chord_get_graph : post not found [ post id :: $item ]" ); |
|
| 157 | - |
|
| 158 | - return $item; |
|
| 159 | - } |
|
| 160 | - |
|
| 161 | - // Get the entity taxonomy bound to this post (if there's no taxonomy, no stylesheet will be set). |
|
| 162 | - $term = Wordlift_Entity_Type_Service::get_instance()->get( $item ); |
|
| 163 | - |
|
| 164 | - // The following log may create a circular loop. |
|
| 165 | - // wl_write_log( "wl_shortcode_chord_get_graph [ post id :: $post->ID ][ term :: " . var_export( $term, true ) . " ]" ); |
|
| 166 | - |
|
| 167 | - // TODO: get all images |
|
| 168 | - $thumbnail = null; |
|
| 169 | - $thumbnail_id = get_post_thumbnail_id( $post->ID ); |
|
| 170 | - if ( '' !== $thumbnail_id && 0 !== $thumbnail_id ) { |
|
| 171 | - $attachment = wp_get_attachment_image_src( $thumbnail_id ); |
|
| 172 | - if ( false !== $attachment ) { |
|
| 173 | - $thumbnail = esc_attr( $attachment[0] ); |
|
| 174 | - } |
|
| 175 | - } |
|
| 176 | - |
|
| 177 | - $entity = array( |
|
| 178 | - 'uri' => wl_get_entity_uri( $item ), |
|
| 179 | - 'url' => get_permalink( $item ), |
|
| 180 | - 'label' => $post->post_title, |
|
| 181 | - 'type' => $post->post_type, |
|
| 182 | - 'thumbnails' => array( $thumbnail ), |
|
| 183 | - 'css_class' => ( isset( $term['css_class'] ) ? $term['css_class'] : '' ), |
|
| 184 | - ); |
|
| 185 | - |
|
| 186 | - $item = $entity; |
|
| 187 | - } |
|
| 188 | - ); |
|
| 189 | - |
|
| 190 | - // Refactor the relations. |
|
| 191 | - array_walk( |
|
| 192 | - $data['relations'], |
|
| 193 | - function ( &$item ) { |
|
| 194 | - $relation = array( |
|
| 195 | - 's' => wl_get_entity_uri( $item[0] ), |
|
| 196 | - 'o' => wl_get_entity_uri( $item[1] ), |
|
| 197 | - ); |
|
| 198 | - |
|
| 199 | - $item = $relation; |
|
| 200 | - } |
|
| 201 | - ); |
|
| 202 | - |
|
| 203 | - // Return the JSON representation. |
|
| 204 | - return $data; |
|
| 148 | + // Refactor the entities array in order to provide entities relevant data (uri, url, label, type, css_class). |
|
| 149 | + array_walk( |
|
| 150 | + $data['entities'], |
|
| 151 | + function ( &$item ) { |
|
| 152 | + $post = get_post( $item ); |
|
| 153 | + |
|
| 154 | + // Skip non-existing posts. |
|
| 155 | + if ( $post === null ) { |
|
| 156 | + wl_write_log( "wl_shortcode_chord_get_graph : post not found [ post id :: $item ]" ); |
|
| 157 | + |
|
| 158 | + return $item; |
|
| 159 | + } |
|
| 160 | + |
|
| 161 | + // Get the entity taxonomy bound to this post (if there's no taxonomy, no stylesheet will be set). |
|
| 162 | + $term = Wordlift_Entity_Type_Service::get_instance()->get( $item ); |
|
| 163 | + |
|
| 164 | + // The following log may create a circular loop. |
|
| 165 | + // wl_write_log( "wl_shortcode_chord_get_graph [ post id :: $post->ID ][ term :: " . var_export( $term, true ) . " ]" ); |
|
| 166 | + |
|
| 167 | + // TODO: get all images |
|
| 168 | + $thumbnail = null; |
|
| 169 | + $thumbnail_id = get_post_thumbnail_id( $post->ID ); |
|
| 170 | + if ( '' !== $thumbnail_id && 0 !== $thumbnail_id ) { |
|
| 171 | + $attachment = wp_get_attachment_image_src( $thumbnail_id ); |
|
| 172 | + if ( false !== $attachment ) { |
|
| 173 | + $thumbnail = esc_attr( $attachment[0] ); |
|
| 174 | + } |
|
| 175 | + } |
|
| 176 | + |
|
| 177 | + $entity = array( |
|
| 178 | + 'uri' => wl_get_entity_uri( $item ), |
|
| 179 | + 'url' => get_permalink( $item ), |
|
| 180 | + 'label' => $post->post_title, |
|
| 181 | + 'type' => $post->post_type, |
|
| 182 | + 'thumbnails' => array( $thumbnail ), |
|
| 183 | + 'css_class' => ( isset( $term['css_class'] ) ? $term['css_class'] : '' ), |
|
| 184 | + ); |
|
| 185 | + |
|
| 186 | + $item = $entity; |
|
| 187 | + } |
|
| 188 | + ); |
|
| 189 | + |
|
| 190 | + // Refactor the relations. |
|
| 191 | + array_walk( |
|
| 192 | + $data['relations'], |
|
| 193 | + function ( &$item ) { |
|
| 194 | + $relation = array( |
|
| 195 | + 's' => wl_get_entity_uri( $item[0] ), |
|
| 196 | + 'o' => wl_get_entity_uri( $item[1] ), |
|
| 197 | + ); |
|
| 198 | + |
|
| 199 | + $item = $relation; |
|
| 200 | + } |
|
| 201 | + ); |
|
| 202 | + |
|
| 203 | + // Return the JSON representation. |
|
| 204 | + return $data; |
|
| 205 | 205 | } |
| 206 | 206 | |
| 207 | 207 | /** |
@@ -212,15 +212,15 @@ discard block |
||
| 212 | 212 | */ |
| 213 | 213 | function wl_shortcode_chord_ajax() { |
| 214 | 214 | |
| 215 | - check_ajax_referer( 'wl_chord', 'wl_chord_nonce' ); |
|
| 215 | + check_ajax_referer( 'wl_chord', 'wl_chord_nonce' ); |
|
| 216 | 216 | |
| 217 | - $post_id = isset( $_REQUEST['post_id'] ) ? (int) $_REQUEST['post_id'] : 0; |
|
| 218 | - $depth = isset( $_REQUEST['depth'] ) ? (int) $_REQUEST['depth'] : 2; |
|
| 217 | + $post_id = isset( $_REQUEST['post_id'] ) ? (int) $_REQUEST['post_id'] : 0; |
|
| 218 | + $depth = isset( $_REQUEST['depth'] ) ? (int) $_REQUEST['depth'] : 2; |
|
| 219 | 219 | |
| 220 | - $relations = wl_shortcode_chord_get_relations( $post_id, $depth ); |
|
| 221 | - $graph = wl_shortcode_chord_get_graph( $relations ); |
|
| 220 | + $relations = wl_shortcode_chord_get_relations( $post_id, $depth ); |
|
| 221 | + $graph = wl_shortcode_chord_get_graph( $relations ); |
|
| 222 | 222 | |
| 223 | - wl_core_send_json( $graph ); |
|
| 223 | + wl_core_send_json( $graph ); |
|
| 224 | 224 | } |
| 225 | 225 | |
| 226 | 226 | add_action( 'wp_ajax_wl_chord', 'wl_shortcode_chord_ajax' ); |
@@ -40,19 +40,19 @@ discard block |
||
| 40 | 40 | ) |
| 41 | 41 | ); |
| 42 | 42 | |
| 43 | - if ( empty( $post_ids ) ) { |
|
| 43 | + if (empty($post_ids)) { |
|
| 44 | 44 | return null; |
| 45 | 45 | } |
| 46 | 46 | |
| 47 | 47 | $entities = array(); |
| 48 | - foreach ( $post_ids as $id ) { |
|
| 49 | - $entities = array_merge( $entities, wl_core_get_related_entity_ids( $id ) ); |
|
| 48 | + foreach ($post_ids as $id) { |
|
| 49 | + $entities = array_merge($entities, wl_core_get_related_entity_ids($id)); |
|
| 50 | 50 | } |
| 51 | 51 | |
| 52 | - $famous_entities = array_count_values( $entities ); |
|
| 53 | - arsort( $famous_entities ); |
|
| 54 | - if ( count( $famous_entities ) >= 1 ) { |
|
| 55 | - return key( $famous_entities ); |
|
| 52 | + $famous_entities = array_count_values($entities); |
|
| 53 | + arsort($famous_entities); |
|
| 54 | + if (count($famous_entities) >= 1) { |
|
| 55 | + return key($famous_entities); |
|
| 56 | 56 | } else { |
| 57 | 57 | return $post_ids[0]; |
| 58 | 58 | } |
@@ -70,20 +70,20 @@ discard block |
||
| 70 | 70 | * @return array |
| 71 | 71 | * @uses wl_core_get_related_post_ids() to get the list of post ids that reference an entity. |
| 72 | 72 | */ |
| 73 | -function wl_shortcode_chord_get_relations( $entity_id, $depth = 2, $related = null, $max_size = 9 ) { |
|
| 73 | +function wl_shortcode_chord_get_relations($entity_id, $depth = 2, $related = null, $max_size = 9) { |
|
| 74 | 74 | |
| 75 | - if ( $related !== null ) { |
|
| 76 | - if ( 0 === $depth ) { |
|
| 75 | + if ($related !== null) { |
|
| 76 | + if (0 === $depth) { |
|
| 77 | 77 | return $related; |
| 78 | 78 | } |
| 79 | 79 | } |
| 80 | 80 | |
| 81 | - wl_write_log( "wl_shortcode_chord_get_relations [ post id :: $entity_id ][ depth :: $depth ][ related? :: " . ( $related === null ? 'yes' : 'no' ) . ' ]' ); |
|
| 81 | + wl_write_log("wl_shortcode_chord_get_relations [ post id :: $entity_id ][ depth :: $depth ][ related? :: ".($related === null ? 'yes' : 'no').' ]'); |
|
| 82 | 82 | |
| 83 | 83 | // Create a related array which will hold entities and relations. |
| 84 | - if ( $related === null ) { |
|
| 84 | + if ($related === null) { |
|
| 85 | 85 | $related = array( |
| 86 | - 'entities' => array( $entity_id ), |
|
| 86 | + 'entities' => array($entity_id), |
|
| 87 | 87 | 'relations' => array(), |
| 88 | 88 | ); |
| 89 | 89 | } |
@@ -97,36 +97,35 @@ discard block |
||
| 97 | 97 | ); |
| 98 | 98 | |
| 99 | 99 | // If the current node is an entity, add related posts too |
| 100 | - $related_post_ids = ( Wordlift_Entity_Service::get_instance() |
|
| 101 | - ->is_entity( $entity_id ) ) ? |
|
| 100 | + $related_post_ids = (Wordlift_Entity_Service::get_instance() |
|
| 101 | + ->is_entity($entity_id)) ? |
|
| 102 | 102 | wl_core_get_related_post_ids( |
| 103 | 103 | $entity_id, |
| 104 | 104 | array( |
| 105 | 105 | 'status' => 'publish', |
| 106 | 106 | ) |
| 107 | - ) : |
|
| 108 | - array(); |
|
| 107 | + ) : array(); |
|
| 109 | 108 | |
| 110 | 109 | // Merge results and remove duplicated entries |
| 111 | - $related_ids = array_unique( array_merge( $related_post_ids, $related_entity_ids ) ); |
|
| 110 | + $related_ids = array_unique(array_merge($related_post_ids, $related_entity_ids)); |
|
| 112 | 111 | |
| 113 | 112 | // TODO: List of entities ($rel) should be ordered by interest factors. |
| 114 | - shuffle( $related_ids ); |
|
| 113 | + shuffle($related_ids); |
|
| 115 | 114 | |
| 116 | 115 | // Now we have all the related IDs. |
| 117 | - foreach ( $related_ids as $related_id ) { |
|
| 116 | + foreach ($related_ids as $related_id) { |
|
| 118 | 117 | |
| 119 | - if ( count( $related['entities'] ) >= $max_size ) { |
|
| 118 | + if (count($related['entities']) >= $max_size) { |
|
| 120 | 119 | return $related; |
| 121 | 120 | } |
| 122 | 121 | |
| 123 | - $related['relations'][] = array( $entity_id, $related_id ); |
|
| 122 | + $related['relations'][] = array($entity_id, $related_id); |
|
| 124 | 123 | |
| 125 | - if ( ! in_array( $related_id, $related['entities'], true ) ) { |
|
| 124 | + if ( ! in_array($related_id, $related['entities'], true)) { |
|
| 126 | 125 | // Found new related entity! |
| 127 | 126 | $related['entities'][] = $related_id; |
| 128 | 127 | |
| 129 | - $related = wl_shortcode_chord_get_relations( $related_id, ( $depth - 1 ), $related, $max_size ); |
|
| 128 | + $related = wl_shortcode_chord_get_relations($related_id, ($depth - 1), $related, $max_size); |
|
| 130 | 129 | } |
| 131 | 130 | } |
| 132 | 131 | |
@@ -143,44 +142,44 @@ discard block |
||
| 143 | 142 | * |
| 144 | 143 | * @return mixed|string |
| 145 | 144 | */ |
| 146 | -function wl_shortcode_chord_get_graph( $data ) { |
|
| 145 | +function wl_shortcode_chord_get_graph($data) { |
|
| 147 | 146 | |
| 148 | 147 | // Refactor the entities array in order to provide entities relevant data (uri, url, label, type, css_class). |
| 149 | 148 | array_walk( |
| 150 | 149 | $data['entities'], |
| 151 | - function ( &$item ) { |
|
| 152 | - $post = get_post( $item ); |
|
| 150 | + function(&$item) { |
|
| 151 | + $post = get_post($item); |
|
| 153 | 152 | |
| 154 | 153 | // Skip non-existing posts. |
| 155 | - if ( $post === null ) { |
|
| 156 | - wl_write_log( "wl_shortcode_chord_get_graph : post not found [ post id :: $item ]" ); |
|
| 154 | + if ($post === null) { |
|
| 155 | + wl_write_log("wl_shortcode_chord_get_graph : post not found [ post id :: $item ]"); |
|
| 157 | 156 | |
| 158 | 157 | return $item; |
| 159 | 158 | } |
| 160 | 159 | |
| 161 | 160 | // Get the entity taxonomy bound to this post (if there's no taxonomy, no stylesheet will be set). |
| 162 | - $term = Wordlift_Entity_Type_Service::get_instance()->get( $item ); |
|
| 161 | + $term = Wordlift_Entity_Type_Service::get_instance()->get($item); |
|
| 163 | 162 | |
| 164 | 163 | // The following log may create a circular loop. |
| 165 | 164 | // wl_write_log( "wl_shortcode_chord_get_graph [ post id :: $post->ID ][ term :: " . var_export( $term, true ) . " ]" ); |
| 166 | 165 | |
| 167 | 166 | // TODO: get all images |
| 168 | 167 | $thumbnail = null; |
| 169 | - $thumbnail_id = get_post_thumbnail_id( $post->ID ); |
|
| 170 | - if ( '' !== $thumbnail_id && 0 !== $thumbnail_id ) { |
|
| 171 | - $attachment = wp_get_attachment_image_src( $thumbnail_id ); |
|
| 172 | - if ( false !== $attachment ) { |
|
| 173 | - $thumbnail = esc_attr( $attachment[0] ); |
|
| 168 | + $thumbnail_id = get_post_thumbnail_id($post->ID); |
|
| 169 | + if ('' !== $thumbnail_id && 0 !== $thumbnail_id) { |
|
| 170 | + $attachment = wp_get_attachment_image_src($thumbnail_id); |
|
| 171 | + if (false !== $attachment) { |
|
| 172 | + $thumbnail = esc_attr($attachment[0]); |
|
| 174 | 173 | } |
| 175 | 174 | } |
| 176 | 175 | |
| 177 | 176 | $entity = array( |
| 178 | - 'uri' => wl_get_entity_uri( $item ), |
|
| 179 | - 'url' => get_permalink( $item ), |
|
| 177 | + 'uri' => wl_get_entity_uri($item), |
|
| 178 | + 'url' => get_permalink($item), |
|
| 180 | 179 | 'label' => $post->post_title, |
| 181 | 180 | 'type' => $post->post_type, |
| 182 | - 'thumbnails' => array( $thumbnail ), |
|
| 183 | - 'css_class' => ( isset( $term['css_class'] ) ? $term['css_class'] : '' ), |
|
| 181 | + 'thumbnails' => array($thumbnail), |
|
| 182 | + 'css_class' => (isset($term['css_class']) ? $term['css_class'] : ''), |
|
| 184 | 183 | ); |
| 185 | 184 | |
| 186 | 185 | $item = $entity; |
@@ -190,10 +189,10 @@ discard block |
||
| 190 | 189 | // Refactor the relations. |
| 191 | 190 | array_walk( |
| 192 | 191 | $data['relations'], |
| 193 | - function ( &$item ) { |
|
| 192 | + function(&$item) { |
|
| 194 | 193 | $relation = array( |
| 195 | - 's' => wl_get_entity_uri( $item[0] ), |
|
| 196 | - 'o' => wl_get_entity_uri( $item[1] ), |
|
| 194 | + 's' => wl_get_entity_uri($item[0]), |
|
| 195 | + 'o' => wl_get_entity_uri($item[1]), |
|
| 197 | 196 | ); |
| 198 | 197 | |
| 199 | 198 | $item = $relation; |
@@ -212,16 +211,16 @@ discard block |
||
| 212 | 211 | */ |
| 213 | 212 | function wl_shortcode_chord_ajax() { |
| 214 | 213 | |
| 215 | - check_ajax_referer( 'wl_chord', 'wl_chord_nonce' ); |
|
| 214 | + check_ajax_referer('wl_chord', 'wl_chord_nonce'); |
|
| 216 | 215 | |
| 217 | - $post_id = isset( $_REQUEST['post_id'] ) ? (int) $_REQUEST['post_id'] : 0; |
|
| 218 | - $depth = isset( $_REQUEST['depth'] ) ? (int) $_REQUEST['depth'] : 2; |
|
| 216 | + $post_id = isset($_REQUEST['post_id']) ? (int) $_REQUEST['post_id'] : 0; |
|
| 217 | + $depth = isset($_REQUEST['depth']) ? (int) $_REQUEST['depth'] : 2; |
|
| 219 | 218 | |
| 220 | - $relations = wl_shortcode_chord_get_relations( $post_id, $depth ); |
|
| 221 | - $graph = wl_shortcode_chord_get_graph( $relations ); |
|
| 219 | + $relations = wl_shortcode_chord_get_relations($post_id, $depth); |
|
| 220 | + $graph = wl_shortcode_chord_get_graph($relations); |
|
| 222 | 221 | |
| 223 | - wl_core_send_json( $graph ); |
|
| 222 | + wl_core_send_json($graph); |
|
| 224 | 223 | } |
| 225 | 224 | |
| 226 | -add_action( 'wp_ajax_wl_chord', 'wl_shortcode_chord_ajax' ); |
|
| 227 | -add_action( 'wp_ajax_nopriv_wl_chord', 'wl_shortcode_chord_ajax' ); |
|
| 225 | +add_action('wp_ajax_wl_chord', 'wl_shortcode_chord_ajax'); |
|
| 226 | +add_action('wp_ajax_nopriv_wl_chord', 'wl_shortcode_chord_ajax'); |
|
@@ -10,48 +10,48 @@ |
||
| 10 | 10 | namespace Wordlift\Entity; |
| 11 | 11 | |
| 12 | 12 | class Entity_Rest_Service { |
| 13 | - /** |
|
| 14 | - * @var \Wordlift_Entity_Type_Service |
|
| 15 | - */ |
|
| 16 | - private $entity_type_service; |
|
| 13 | + /** |
|
| 14 | + * @var \Wordlift_Entity_Type_Service |
|
| 15 | + */ |
|
| 16 | + private $entity_type_service; |
|
| 17 | 17 | |
| 18 | - /** |
|
| 19 | - * Entity_Rest_Service constructor. |
|
| 20 | - * |
|
| 21 | - * @param $entity_type_service \Wordlift_Entity_Type_Service |
|
| 22 | - */ |
|
| 23 | - public function __construct( $entity_type_service ) { |
|
| 18 | + /** |
|
| 19 | + * Entity_Rest_Service constructor. |
|
| 20 | + * |
|
| 21 | + * @param $entity_type_service \Wordlift_Entity_Type_Service |
|
| 22 | + */ |
|
| 23 | + public function __construct( $entity_type_service ) { |
|
| 24 | 24 | |
| 25 | - $this->entity_type_service = $entity_type_service; |
|
| 25 | + $this->entity_type_service = $entity_type_service; |
|
| 26 | 26 | |
| 27 | - add_action( 'rest_insert_entity', array( $this, 'action_rest_insert_entity' ), 10, 3 ); |
|
| 27 | + add_action( 'rest_insert_entity', array( $this, 'action_rest_insert_entity' ), 10, 3 ); |
|
| 28 | 28 | |
| 29 | - } |
|
| 29 | + } |
|
| 30 | 30 | |
| 31 | - /** |
|
| 32 | - * @param $post \WP_Post |
|
| 33 | - * @param $request \WP_REST_Request |
|
| 34 | - * @param $creating bool |
|
| 35 | - */ |
|
| 36 | - public function action_rest_insert_entity( $post, $request, $creating ) { |
|
| 31 | + /** |
|
| 32 | + * @param $post \WP_Post |
|
| 33 | + * @param $request \WP_REST_Request |
|
| 34 | + * @param $creating bool |
|
| 35 | + */ |
|
| 36 | + public function action_rest_insert_entity( $post, $request, $creating ) { |
|
| 37 | 37 | |
| 38 | - // Set the type only on entity create. |
|
| 39 | - if ( ! $creating ) { |
|
| 40 | - return; |
|
| 41 | - } |
|
| 38 | + // Set the type only on entity create. |
|
| 39 | + if ( ! $creating ) { |
|
| 40 | + return; |
|
| 41 | + } |
|
| 42 | 42 | |
| 43 | - $entity_types = $request->get_param( 'wlEntityMainType' ); |
|
| 43 | + $entity_types = $request->get_param( 'wlEntityMainType' ); |
|
| 44 | 44 | |
| 45 | - if ( null === $entity_types ) { |
|
| 46 | - // Return early if entity types not set. |
|
| 47 | - return; |
|
| 48 | - } |
|
| 45 | + if ( null === $entity_types ) { |
|
| 46 | + // Return early if entity types not set. |
|
| 47 | + return; |
|
| 48 | + } |
|
| 49 | 49 | |
| 50 | - foreach ( $entity_types as $type_uri ) { |
|
| 51 | - // we don't replace since its entity creation and only one entity will be present. |
|
| 52 | - $this->entity_type_service->set( $post->ID, $type_uri ); |
|
| 53 | - } |
|
| 50 | + foreach ( $entity_types as $type_uri ) { |
|
| 51 | + // we don't replace since its entity creation and only one entity will be present. |
|
| 52 | + $this->entity_type_service->set( $post->ID, $type_uri ); |
|
| 53 | + } |
|
| 54 | 54 | |
| 55 | - } |
|
| 55 | + } |
|
| 56 | 56 | |
| 57 | 57 | } |
@@ -20,11 +20,11 @@ discard block |
||
| 20 | 20 | * |
| 21 | 21 | * @param $entity_type_service \Wordlift_Entity_Type_Service |
| 22 | 22 | */ |
| 23 | - public function __construct( $entity_type_service ) { |
|
| 23 | + public function __construct($entity_type_service) { |
|
| 24 | 24 | |
| 25 | 25 | $this->entity_type_service = $entity_type_service; |
| 26 | 26 | |
| 27 | - add_action( 'rest_insert_entity', array( $this, 'action_rest_insert_entity' ), 10, 3 ); |
|
| 27 | + add_action('rest_insert_entity', array($this, 'action_rest_insert_entity'), 10, 3); |
|
| 28 | 28 | |
| 29 | 29 | } |
| 30 | 30 | |
@@ -33,23 +33,23 @@ discard block |
||
| 33 | 33 | * @param $request \WP_REST_Request |
| 34 | 34 | * @param $creating bool |
| 35 | 35 | */ |
| 36 | - public function action_rest_insert_entity( $post, $request, $creating ) { |
|
| 36 | + public function action_rest_insert_entity($post, $request, $creating) { |
|
| 37 | 37 | |
| 38 | 38 | // Set the type only on entity create. |
| 39 | - if ( ! $creating ) { |
|
| 39 | + if ( ! $creating) { |
|
| 40 | 40 | return; |
| 41 | 41 | } |
| 42 | 42 | |
| 43 | - $entity_types = $request->get_param( 'wlEntityMainType' ); |
|
| 43 | + $entity_types = $request->get_param('wlEntityMainType'); |
|
| 44 | 44 | |
| 45 | - if ( null === $entity_types ) { |
|
| 45 | + if (null === $entity_types) { |
|
| 46 | 46 | // Return early if entity types not set. |
| 47 | 47 | return; |
| 48 | 48 | } |
| 49 | 49 | |
| 50 | - foreach ( $entity_types as $type_uri ) { |
|
| 50 | + foreach ($entity_types as $type_uri) { |
|
| 51 | 51 | // we don't replace since its entity creation and only one entity will be present. |
| 52 | - $this->entity_type_service->set( $post->ID, $type_uri ); |
|
| 52 | + $this->entity_type_service->set($post->ID, $type_uri); |
|
| 53 | 53 | } |
| 54 | 54 | |
| 55 | 55 | } |
@@ -8,46 +8,46 @@ |
||
| 8 | 8 | */ |
| 9 | 9 | class Entity_No_Index_Flag { |
| 10 | 10 | |
| 11 | - const YOAST_POST_NO_INDEX_FLAG = '_yoast_wpseo_meta-robots-noindex'; |
|
| 12 | - |
|
| 13 | - public function __construct() { |
|
| 14 | - |
|
| 15 | - $no_index_flag = self::YOAST_POST_NO_INDEX_FLAG; |
|
| 16 | - |
|
| 17 | - add_action( |
|
| 18 | - 'wp_insert_post', |
|
| 19 | - function ( $post_id, $post, $update ) use ( $no_index_flag ) { |
|
| 20 | - |
|
| 21 | - $post_type = get_post_type( $post_id ); |
|
| 22 | - |
|
| 23 | - if ( \Wordlift_Entity_Service::TYPE_NAME !== $post_type ) { |
|
| 24 | - // Don't set this flag for any other post types. |
|
| 25 | - return; |
|
| 26 | - } |
|
| 27 | - |
|
| 28 | - // We need to set this flag only on entity creation. |
|
| 29 | - if ( ! $update ) { |
|
| 30 | - update_post_meta( $post_id, $no_index_flag, 1 ); |
|
| 31 | - } |
|
| 32 | - |
|
| 33 | - }, |
|
| 34 | - PHP_INT_MAX, |
|
| 35 | - 3 |
|
| 36 | - ); |
|
| 37 | - |
|
| 38 | - add_action( |
|
| 39 | - 'post_updated', |
|
| 40 | - function ( $post_id ) use ( $no_index_flag ) { |
|
| 41 | - if ( get_post_type( $post_id ) !== \Wordlift_Entity_Service::TYPE_NAME ) { |
|
| 42 | - return; |
|
| 43 | - } |
|
| 44 | - // if the post is updated, remove this flag |
|
| 45 | - delete_post_meta( $post_id, $no_index_flag ); |
|
| 46 | - }, |
|
| 47 | - PHP_INT_MAX |
|
| 48 | - ); |
|
| 49 | - |
|
| 50 | - } |
|
| 11 | + const YOAST_POST_NO_INDEX_FLAG = '_yoast_wpseo_meta-robots-noindex'; |
|
| 12 | + |
|
| 13 | + public function __construct() { |
|
| 14 | + |
|
| 15 | + $no_index_flag = self::YOAST_POST_NO_INDEX_FLAG; |
|
| 16 | + |
|
| 17 | + add_action( |
|
| 18 | + 'wp_insert_post', |
|
| 19 | + function ( $post_id, $post, $update ) use ( $no_index_flag ) { |
|
| 20 | + |
|
| 21 | + $post_type = get_post_type( $post_id ); |
|
| 22 | + |
|
| 23 | + if ( \Wordlift_Entity_Service::TYPE_NAME !== $post_type ) { |
|
| 24 | + // Don't set this flag for any other post types. |
|
| 25 | + return; |
|
| 26 | + } |
|
| 27 | + |
|
| 28 | + // We need to set this flag only on entity creation. |
|
| 29 | + if ( ! $update ) { |
|
| 30 | + update_post_meta( $post_id, $no_index_flag, 1 ); |
|
| 31 | + } |
|
| 32 | + |
|
| 33 | + }, |
|
| 34 | + PHP_INT_MAX, |
|
| 35 | + 3 |
|
| 36 | + ); |
|
| 37 | + |
|
| 38 | + add_action( |
|
| 39 | + 'post_updated', |
|
| 40 | + function ( $post_id ) use ( $no_index_flag ) { |
|
| 41 | + if ( get_post_type( $post_id ) !== \Wordlift_Entity_Service::TYPE_NAME ) { |
|
| 42 | + return; |
|
| 43 | + } |
|
| 44 | + // if the post is updated, remove this flag |
|
| 45 | + delete_post_meta( $post_id, $no_index_flag ); |
|
| 46 | + }, |
|
| 47 | + PHP_INT_MAX |
|
| 48 | + ); |
|
| 49 | + |
|
| 50 | + } |
|
| 51 | 51 | |
| 52 | 52 | } |
| 53 | 53 | |
@@ -16,18 +16,18 @@ discard block |
||
| 16 | 16 | |
| 17 | 17 | add_action( |
| 18 | 18 | 'wp_insert_post', |
| 19 | - function ( $post_id, $post, $update ) use ( $no_index_flag ) { |
|
| 19 | + function($post_id, $post, $update) use ($no_index_flag) { |
|
| 20 | 20 | |
| 21 | - $post_type = get_post_type( $post_id ); |
|
| 21 | + $post_type = get_post_type($post_id); |
|
| 22 | 22 | |
| 23 | - if ( \Wordlift_Entity_Service::TYPE_NAME !== $post_type ) { |
|
| 23 | + if (\Wordlift_Entity_Service::TYPE_NAME !== $post_type) { |
|
| 24 | 24 | // Don't set this flag for any other post types. |
| 25 | 25 | return; |
| 26 | 26 | } |
| 27 | 27 | |
| 28 | 28 | // We need to set this flag only on entity creation. |
| 29 | - if ( ! $update ) { |
|
| 30 | - update_post_meta( $post_id, $no_index_flag, 1 ); |
|
| 29 | + if ( ! $update) { |
|
| 30 | + update_post_meta($post_id, $no_index_flag, 1); |
|
| 31 | 31 | } |
| 32 | 32 | |
| 33 | 33 | }, |
@@ -37,12 +37,12 @@ discard block |
||
| 37 | 37 | |
| 38 | 38 | add_action( |
| 39 | 39 | 'post_updated', |
| 40 | - function ( $post_id ) use ( $no_index_flag ) { |
|
| 41 | - if ( get_post_type( $post_id ) !== \Wordlift_Entity_Service::TYPE_NAME ) { |
|
| 40 | + function($post_id) use ($no_index_flag) { |
|
| 41 | + if (get_post_type($post_id) !== \Wordlift_Entity_Service::TYPE_NAME) { |
|
| 42 | 42 | return; |
| 43 | 43 | } |
| 44 | 44 | // if the post is updated, remove this flag |
| 45 | - delete_post_meta( $post_id, $no_index_flag ); |
|
| 45 | + delete_post_meta($post_id, $no_index_flag); |
|
| 46 | 46 | }, |
| 47 | 47 | PHP_INT_MAX |
| 48 | 48 | ); |
@@ -32,142 +32,142 @@ |
||
| 32 | 32 | */ |
| 33 | 33 | class Entity_Store { |
| 34 | 34 | |
| 35 | - protected function __construct() { |
|
| 36 | - } |
|
| 37 | - |
|
| 38 | - private static $instance = null; |
|
| 39 | - |
|
| 40 | - /** |
|
| 41 | - * Get the Entity_Store singleton, lazily initialized. |
|
| 42 | - * |
|
| 43 | - * @return Entity_Store The singleton. |
|
| 44 | - */ |
|
| 45 | - public static function get_instance() { |
|
| 46 | - if ( ! isset( self::$instance ) ) { |
|
| 47 | - self::$instance = new Entity_Store(); |
|
| 48 | - } |
|
| 49 | - |
|
| 50 | - return self::$instance; |
|
| 51 | - } |
|
| 52 | - |
|
| 53 | - /** |
|
| 54 | - * Create and persist an entity. |
|
| 55 | - * |
|
| 56 | - * @param array $params { |
|
| 57 | - * The entity parameters. |
|
| 58 | - * |
|
| 59 | - * @type string|array $labels A label, or an array of labels. The first label is set as post title. |
|
| 60 | - * @type string $description The entity description, stored in the post content. |
|
| 61 | - * @type string|array $same_as One or more entity URIs, stored in the sameAs post meta. |
|
| 62 | - * } |
|
| 63 | - * |
|
| 64 | - * @param string $post_status The post status, by default `draft`. |
|
| 65 | - * |
|
| 66 | - * @return int|\WP_Error |
|
| 67 | - * @throws \Exception when an error occurs. |
|
| 68 | - */ |
|
| 69 | - public function create( $params, $post_status = 'draft' ) { |
|
| 70 | - |
|
| 71 | - $args = wp_parse_args( |
|
| 72 | - $params, |
|
| 73 | - array( |
|
| 74 | - 'labels' => array(), |
|
| 75 | - 'description' => '', |
|
| 76 | - 'same_as' => array(), |
|
| 77 | - ) |
|
| 78 | - ); |
|
| 79 | - |
|
| 80 | - // Use the first label as `post_title`. |
|
| 81 | - $labels = (array) $args['labels']; |
|
| 82 | - $label = array_shift( $labels ); |
|
| 83 | - |
|
| 84 | - $post_id = wp_insert_post( |
|
| 85 | - array( |
|
| 86 | - 'post_type' => Wordlift_Entity_Service::TYPE_NAME, |
|
| 87 | - 'post_status' => $post_status, |
|
| 88 | - 'post_title' => $label, |
|
| 89 | - 'post_name' => sanitize_title( $label ), |
|
| 90 | - 'post_content' => $args['description'], |
|
| 91 | - ) |
|
| 92 | - ); |
|
| 93 | - |
|
| 94 | - // Bail out if we've got an error. |
|
| 95 | - if ( empty( $post_id ) || is_wp_error( $post_id ) ) { |
|
| 96 | - throw new \Exception( 'An error occurred while creating an entity.' ); |
|
| 97 | - } |
|
| 98 | - |
|
| 99 | - Wordlift_Entity_Service::get_instance() |
|
| 100 | - ->set_alternative_labels( $post_id, array_diff( $labels, array( $label ) ) ); |
|
| 101 | - $this->merge_post_meta( |
|
| 102 | - $post_id, |
|
| 103 | - \Wordlift_Schema_Service::FIELD_SAME_AS, |
|
| 104 | - (array) $args['same_as'], |
|
| 105 | - (array) Wordpress_Content_Service::get_instance()->get_entity_id( Wordpress_Content_Id::create_post( $post_id ) ) |
|
| 106 | - ); |
|
| 107 | - |
|
| 108 | - return $post_id; |
|
| 109 | - } |
|
| 110 | - |
|
| 111 | - /** |
|
| 112 | - * Update an entity. |
|
| 113 | - * |
|
| 114 | - * @param array $params { |
|
| 115 | - * |
|
| 116 | - * @type int $ID The post ID. |
|
| 117 | - * @type string|array One or more labels to add to the synonyms. |
|
| 118 | - * @type string|array One or more URIs to add to the sameAs. |
|
| 119 | - * } |
|
| 120 | - * |
|
| 121 | - * @return int The post id. |
|
| 122 | - */ |
|
| 123 | - public function update( $params ) { |
|
| 124 | - |
|
| 125 | - $args = wp_parse_args( |
|
| 126 | - $params, |
|
| 127 | - array( |
|
| 128 | - 'ID' => 0, |
|
| 129 | - 'labels' => array(), |
|
| 130 | - 'same_as' => array(), |
|
| 131 | - ) |
|
| 132 | - ); |
|
| 133 | - |
|
| 134 | - $post_id = $args['ID']; |
|
| 135 | - |
|
| 136 | - // Save synonyms except title. |
|
| 137 | - Wordlift_Entity_Service::get_instance() |
|
| 138 | - ->append_alternative_labels( $post_id, array_diff( (array) $args['labels'], array( get_the_title( $post_id ) ) ) ); |
|
| 139 | - |
|
| 140 | - $this->merge_post_meta( |
|
| 141 | - $post_id, |
|
| 142 | - \Wordlift_Schema_Service::FIELD_SAME_AS, |
|
| 143 | - (array) $args['same_as'], |
|
| 144 | - (array) Wordpress_Content_Service::get_instance()->get_entity_id( Wordpress_Content_Id::create_post( $post_id ) ) |
|
| 145 | - ); |
|
| 146 | - |
|
| 147 | - return $post_id; |
|
| 148 | - } |
|
| 149 | - |
|
| 150 | - /** |
|
| 151 | - * Merge the post meta. |
|
| 152 | - * |
|
| 153 | - * @param int $post_id The post ID. |
|
| 154 | - * @param string $meta_key The post meta key. |
|
| 155 | - * @param string|array $values One or more values to add. |
|
| 156 | - * @param string|array $exclusions An additional list of values to exclude. |
|
| 157 | - */ |
|
| 158 | - private function merge_post_meta( $post_id, $meta_key, $values, $exclusions = array() ) { |
|
| 159 | - |
|
| 160 | - $existing = array_merge( |
|
| 161 | - (array) $exclusions, |
|
| 162 | - get_post_meta( $post_id, $meta_key ) |
|
| 163 | - ); |
|
| 164 | - |
|
| 165 | - foreach ( (array) $values as $value ) { |
|
| 166 | - // phpcs:ignore WordPress.PHP.StrictInArray.MissingTrueStrict |
|
| 167 | - if ( ! in_array( $value, $existing ) ) { |
|
| 168 | - add_post_meta( $post_id, $meta_key, $value ); |
|
| 169 | - } |
|
| 170 | - } |
|
| 171 | - } |
|
| 35 | + protected function __construct() { |
|
| 36 | + } |
|
| 37 | + |
|
| 38 | + private static $instance = null; |
|
| 39 | + |
|
| 40 | + /** |
|
| 41 | + * Get the Entity_Store singleton, lazily initialized. |
|
| 42 | + * |
|
| 43 | + * @return Entity_Store The singleton. |
|
| 44 | + */ |
|
| 45 | + public static function get_instance() { |
|
| 46 | + if ( ! isset( self::$instance ) ) { |
|
| 47 | + self::$instance = new Entity_Store(); |
|
| 48 | + } |
|
| 49 | + |
|
| 50 | + return self::$instance; |
|
| 51 | + } |
|
| 52 | + |
|
| 53 | + /** |
|
| 54 | + * Create and persist an entity. |
|
| 55 | + * |
|
| 56 | + * @param array $params { |
|
| 57 | + * The entity parameters. |
|
| 58 | + * |
|
| 59 | + * @type string|array $labels A label, or an array of labels. The first label is set as post title. |
|
| 60 | + * @type string $description The entity description, stored in the post content. |
|
| 61 | + * @type string|array $same_as One or more entity URIs, stored in the sameAs post meta. |
|
| 62 | + * } |
|
| 63 | + * |
|
| 64 | + * @param string $post_status The post status, by default `draft`. |
|
| 65 | + * |
|
| 66 | + * @return int|\WP_Error |
|
| 67 | + * @throws \Exception when an error occurs. |
|
| 68 | + */ |
|
| 69 | + public function create( $params, $post_status = 'draft' ) { |
|
| 70 | + |
|
| 71 | + $args = wp_parse_args( |
|
| 72 | + $params, |
|
| 73 | + array( |
|
| 74 | + 'labels' => array(), |
|
| 75 | + 'description' => '', |
|
| 76 | + 'same_as' => array(), |
|
| 77 | + ) |
|
| 78 | + ); |
|
| 79 | + |
|
| 80 | + // Use the first label as `post_title`. |
|
| 81 | + $labels = (array) $args['labels']; |
|
| 82 | + $label = array_shift( $labels ); |
|
| 83 | + |
|
| 84 | + $post_id = wp_insert_post( |
|
| 85 | + array( |
|
| 86 | + 'post_type' => Wordlift_Entity_Service::TYPE_NAME, |
|
| 87 | + 'post_status' => $post_status, |
|
| 88 | + 'post_title' => $label, |
|
| 89 | + 'post_name' => sanitize_title( $label ), |
|
| 90 | + 'post_content' => $args['description'], |
|
| 91 | + ) |
|
| 92 | + ); |
|
| 93 | + |
|
| 94 | + // Bail out if we've got an error. |
|
| 95 | + if ( empty( $post_id ) || is_wp_error( $post_id ) ) { |
|
| 96 | + throw new \Exception( 'An error occurred while creating an entity.' ); |
|
| 97 | + } |
|
| 98 | + |
|
| 99 | + Wordlift_Entity_Service::get_instance() |
|
| 100 | + ->set_alternative_labels( $post_id, array_diff( $labels, array( $label ) ) ); |
|
| 101 | + $this->merge_post_meta( |
|
| 102 | + $post_id, |
|
| 103 | + \Wordlift_Schema_Service::FIELD_SAME_AS, |
|
| 104 | + (array) $args['same_as'], |
|
| 105 | + (array) Wordpress_Content_Service::get_instance()->get_entity_id( Wordpress_Content_Id::create_post( $post_id ) ) |
|
| 106 | + ); |
|
| 107 | + |
|
| 108 | + return $post_id; |
|
| 109 | + } |
|
| 110 | + |
|
| 111 | + /** |
|
| 112 | + * Update an entity. |
|
| 113 | + * |
|
| 114 | + * @param array $params { |
|
| 115 | + * |
|
| 116 | + * @type int $ID The post ID. |
|
| 117 | + * @type string|array One or more labels to add to the synonyms. |
|
| 118 | + * @type string|array One or more URIs to add to the sameAs. |
|
| 119 | + * } |
|
| 120 | + * |
|
| 121 | + * @return int The post id. |
|
| 122 | + */ |
|
| 123 | + public function update( $params ) { |
|
| 124 | + |
|
| 125 | + $args = wp_parse_args( |
|
| 126 | + $params, |
|
| 127 | + array( |
|
| 128 | + 'ID' => 0, |
|
| 129 | + 'labels' => array(), |
|
| 130 | + 'same_as' => array(), |
|
| 131 | + ) |
|
| 132 | + ); |
|
| 133 | + |
|
| 134 | + $post_id = $args['ID']; |
|
| 135 | + |
|
| 136 | + // Save synonyms except title. |
|
| 137 | + Wordlift_Entity_Service::get_instance() |
|
| 138 | + ->append_alternative_labels( $post_id, array_diff( (array) $args['labels'], array( get_the_title( $post_id ) ) ) ); |
|
| 139 | + |
|
| 140 | + $this->merge_post_meta( |
|
| 141 | + $post_id, |
|
| 142 | + \Wordlift_Schema_Service::FIELD_SAME_AS, |
|
| 143 | + (array) $args['same_as'], |
|
| 144 | + (array) Wordpress_Content_Service::get_instance()->get_entity_id( Wordpress_Content_Id::create_post( $post_id ) ) |
|
| 145 | + ); |
|
| 146 | + |
|
| 147 | + return $post_id; |
|
| 148 | + } |
|
| 149 | + |
|
| 150 | + /** |
|
| 151 | + * Merge the post meta. |
|
| 152 | + * |
|
| 153 | + * @param int $post_id The post ID. |
|
| 154 | + * @param string $meta_key The post meta key. |
|
| 155 | + * @param string|array $values One or more values to add. |
|
| 156 | + * @param string|array $exclusions An additional list of values to exclude. |
|
| 157 | + */ |
|
| 158 | + private function merge_post_meta( $post_id, $meta_key, $values, $exclusions = array() ) { |
|
| 159 | + |
|
| 160 | + $existing = array_merge( |
|
| 161 | + (array) $exclusions, |
|
| 162 | + get_post_meta( $post_id, $meta_key ) |
|
| 163 | + ); |
|
| 164 | + |
|
| 165 | + foreach ( (array) $values as $value ) { |
|
| 166 | + // phpcs:ignore WordPress.PHP.StrictInArray.MissingTrueStrict |
|
| 167 | + if ( ! in_array( $value, $existing ) ) { |
|
| 168 | + add_post_meta( $post_id, $meta_key, $value ); |
|
| 169 | + } |
|
| 170 | + } |
|
| 171 | + } |
|
| 172 | 172 | |
| 173 | 173 | } |
@@ -43,7 +43,7 @@ discard block |
||
| 43 | 43 | * @return Entity_Store The singleton. |
| 44 | 44 | */ |
| 45 | 45 | public static function get_instance() { |
| 46 | - if ( ! isset( self::$instance ) ) { |
|
| 46 | + if ( ! isset(self::$instance)) { |
|
| 47 | 47 | self::$instance = new Entity_Store(); |
| 48 | 48 | } |
| 49 | 49 | |
@@ -66,7 +66,7 @@ discard block |
||
| 66 | 66 | * @return int|\WP_Error |
| 67 | 67 | * @throws \Exception when an error occurs. |
| 68 | 68 | */ |
| 69 | - public function create( $params, $post_status = 'draft' ) { |
|
| 69 | + public function create($params, $post_status = 'draft') { |
|
| 70 | 70 | |
| 71 | 71 | $args = wp_parse_args( |
| 72 | 72 | $params, |
@@ -79,30 +79,30 @@ discard block |
||
| 79 | 79 | |
| 80 | 80 | // Use the first label as `post_title`. |
| 81 | 81 | $labels = (array) $args['labels']; |
| 82 | - $label = array_shift( $labels ); |
|
| 82 | + $label = array_shift($labels); |
|
| 83 | 83 | |
| 84 | 84 | $post_id = wp_insert_post( |
| 85 | 85 | array( |
| 86 | 86 | 'post_type' => Wordlift_Entity_Service::TYPE_NAME, |
| 87 | 87 | 'post_status' => $post_status, |
| 88 | 88 | 'post_title' => $label, |
| 89 | - 'post_name' => sanitize_title( $label ), |
|
| 89 | + 'post_name' => sanitize_title($label), |
|
| 90 | 90 | 'post_content' => $args['description'], |
| 91 | 91 | ) |
| 92 | 92 | ); |
| 93 | 93 | |
| 94 | 94 | // Bail out if we've got an error. |
| 95 | - if ( empty( $post_id ) || is_wp_error( $post_id ) ) { |
|
| 96 | - throw new \Exception( 'An error occurred while creating an entity.' ); |
|
| 95 | + if (empty($post_id) || is_wp_error($post_id)) { |
|
| 96 | + throw new \Exception('An error occurred while creating an entity.'); |
|
| 97 | 97 | } |
| 98 | 98 | |
| 99 | 99 | Wordlift_Entity_Service::get_instance() |
| 100 | - ->set_alternative_labels( $post_id, array_diff( $labels, array( $label ) ) ); |
|
| 100 | + ->set_alternative_labels($post_id, array_diff($labels, array($label))); |
|
| 101 | 101 | $this->merge_post_meta( |
| 102 | 102 | $post_id, |
| 103 | 103 | \Wordlift_Schema_Service::FIELD_SAME_AS, |
| 104 | 104 | (array) $args['same_as'], |
| 105 | - (array) Wordpress_Content_Service::get_instance()->get_entity_id( Wordpress_Content_Id::create_post( $post_id ) ) |
|
| 105 | + (array) Wordpress_Content_Service::get_instance()->get_entity_id(Wordpress_Content_Id::create_post($post_id)) |
|
| 106 | 106 | ); |
| 107 | 107 | |
| 108 | 108 | return $post_id; |
@@ -120,7 +120,7 @@ discard block |
||
| 120 | 120 | * |
| 121 | 121 | * @return int The post id. |
| 122 | 122 | */ |
| 123 | - public function update( $params ) { |
|
| 123 | + public function update($params) { |
|
| 124 | 124 | |
| 125 | 125 | $args = wp_parse_args( |
| 126 | 126 | $params, |
@@ -135,13 +135,13 @@ discard block |
||
| 135 | 135 | |
| 136 | 136 | // Save synonyms except title. |
| 137 | 137 | Wordlift_Entity_Service::get_instance() |
| 138 | - ->append_alternative_labels( $post_id, array_diff( (array) $args['labels'], array( get_the_title( $post_id ) ) ) ); |
|
| 138 | + ->append_alternative_labels($post_id, array_diff((array) $args['labels'], array(get_the_title($post_id)))); |
|
| 139 | 139 | |
| 140 | 140 | $this->merge_post_meta( |
| 141 | 141 | $post_id, |
| 142 | 142 | \Wordlift_Schema_Service::FIELD_SAME_AS, |
| 143 | 143 | (array) $args['same_as'], |
| 144 | - (array) Wordpress_Content_Service::get_instance()->get_entity_id( Wordpress_Content_Id::create_post( $post_id ) ) |
|
| 144 | + (array) Wordpress_Content_Service::get_instance()->get_entity_id(Wordpress_Content_Id::create_post($post_id)) |
|
| 145 | 145 | ); |
| 146 | 146 | |
| 147 | 147 | return $post_id; |
@@ -155,17 +155,17 @@ discard block |
||
| 155 | 155 | * @param string|array $values One or more values to add. |
| 156 | 156 | * @param string|array $exclusions An additional list of values to exclude. |
| 157 | 157 | */ |
| 158 | - private function merge_post_meta( $post_id, $meta_key, $values, $exclusions = array() ) { |
|
| 158 | + private function merge_post_meta($post_id, $meta_key, $values, $exclusions = array()) { |
|
| 159 | 159 | |
| 160 | 160 | $existing = array_merge( |
| 161 | 161 | (array) $exclusions, |
| 162 | - get_post_meta( $post_id, $meta_key ) |
|
| 162 | + get_post_meta($post_id, $meta_key) |
|
| 163 | 163 | ); |
| 164 | 164 | |
| 165 | - foreach ( (array) $values as $value ) { |
|
| 165 | + foreach ((array) $values as $value) { |
|
| 166 | 166 | // phpcs:ignore WordPress.PHP.StrictInArray.MissingTrueStrict |
| 167 | - if ( ! in_array( $value, $existing ) ) { |
|
| 168 | - add_post_meta( $post_id, $meta_key, $value ); |
|
| 167 | + if ( ! in_array($value, $existing)) { |
|
| 168 | + add_post_meta($post_id, $meta_key, $value); |
|
| 169 | 169 | } |
| 170 | 170 | } |
| 171 | 171 | } |
@@ -6,10 +6,10 @@ |
||
| 6 | 6 | |
| 7 | 7 | interface Remote_Entity_Importer { |
| 8 | 8 | |
| 9 | - /** |
|
| 10 | - * @return Wordpress_Content_Id|boolean |
|
| 11 | - * Returns content id or false. |
|
| 12 | - */ |
|
| 13 | - public function import(); |
|
| 9 | + /** |
|
| 10 | + * @return Wordpress_Content_Id|boolean |
|
| 11 | + * Returns content id or false. |
|
| 12 | + */ |
|
| 13 | + public function import(); |
|
| 14 | 14 | |
| 15 | 15 | } |
@@ -7,9 +7,9 @@ |
||
| 7 | 7 | */ |
| 8 | 8 | class Invalid_Remote_Entity_Importer implements Remote_Entity_Importer { |
| 9 | 9 | |
| 10 | - public function import() { |
|
| 11 | - // Cant import invalid entities. |
|
| 12 | - return false; |
|
| 13 | - } |
|
| 10 | + public function import() { |
|
| 11 | + // Cant import invalid entities. |
|
| 12 | + return false; |
|
| 13 | + } |
|
| 14 | 14 | |
| 15 | 15 | } |
@@ -8,39 +8,39 @@ |
||
| 8 | 8 | |
| 9 | 9 | class Valid_Remote_Entity_Importer implements Remote_Entity_Importer { |
| 10 | 10 | |
| 11 | - /** |
|
| 12 | - * @var Valid_Remote_Entity |
|
| 13 | - */ |
|
| 14 | - private $entity; |
|
| 15 | - |
|
| 16 | - /** |
|
| 17 | - * @param $entity Valid_Remote_Entity |
|
| 18 | - */ |
|
| 19 | - public function __construct( $entity ) { |
|
| 20 | - $this->entity = $entity; |
|
| 21 | - } |
|
| 22 | - |
|
| 23 | - public function import() { |
|
| 24 | - |
|
| 25 | - $entity_type_service = Wordlift_Entity_Type_Service::get_instance(); |
|
| 26 | - |
|
| 27 | - $post_id = wp_insert_post( |
|
| 28 | - array( |
|
| 29 | - 'post_title' => $this->entity->get_name(), |
|
| 30 | - 'post_content' => $this->entity->get_description(), |
|
| 31 | - 'post_status' => 'draft', |
|
| 32 | - 'post_type' => 'entity', |
|
| 33 | - ) |
|
| 34 | - ); |
|
| 35 | - |
|
| 36 | - foreach ( $this->entity->get_types() as $type ) { |
|
| 37 | - $entity_type_service->set( $post_id, "http://schema.org/$type", false ); |
|
| 38 | - } |
|
| 39 | - |
|
| 40 | - foreach ( $this->entity->get_same_as() as $same_as ) { |
|
| 41 | - add_post_meta( $post_id, 'entity_same_as', $same_as ); |
|
| 42 | - } |
|
| 43 | - |
|
| 44 | - return Wordpress_Content_Id::create_post( $post_id ); |
|
| 45 | - } |
|
| 11 | + /** |
|
| 12 | + * @var Valid_Remote_Entity |
|
| 13 | + */ |
|
| 14 | + private $entity; |
|
| 15 | + |
|
| 16 | + /** |
|
| 17 | + * @param $entity Valid_Remote_Entity |
|
| 18 | + */ |
|
| 19 | + public function __construct( $entity ) { |
|
| 20 | + $this->entity = $entity; |
|
| 21 | + } |
|
| 22 | + |
|
| 23 | + public function import() { |
|
| 24 | + |
|
| 25 | + $entity_type_service = Wordlift_Entity_Type_Service::get_instance(); |
|
| 26 | + |
|
| 27 | + $post_id = wp_insert_post( |
|
| 28 | + array( |
|
| 29 | + 'post_title' => $this->entity->get_name(), |
|
| 30 | + 'post_content' => $this->entity->get_description(), |
|
| 31 | + 'post_status' => 'draft', |
|
| 32 | + 'post_type' => 'entity', |
|
| 33 | + ) |
|
| 34 | + ); |
|
| 35 | + |
|
| 36 | + foreach ( $this->entity->get_types() as $type ) { |
|
| 37 | + $entity_type_service->set( $post_id, "http://schema.org/$type", false ); |
|
| 38 | + } |
|
| 39 | + |
|
| 40 | + foreach ( $this->entity->get_same_as() as $same_as ) { |
|
| 41 | + add_post_meta( $post_id, 'entity_same_as', $same_as ); |
|
| 42 | + } |
|
| 43 | + |
|
| 44 | + return Wordpress_Content_Id::create_post( $post_id ); |
|
| 45 | + } |
|
| 46 | 46 | } |
@@ -16,7 +16,7 @@ discard block |
||
| 16 | 16 | /** |
| 17 | 17 | * @param $entity Valid_Remote_Entity |
| 18 | 18 | */ |
| 19 | - public function __construct( $entity ) { |
|
| 19 | + public function __construct($entity) { |
|
| 20 | 20 | $this->entity = $entity; |
| 21 | 21 | } |
| 22 | 22 | |
@@ -33,14 +33,14 @@ discard block |
||
| 33 | 33 | ) |
| 34 | 34 | ); |
| 35 | 35 | |
| 36 | - foreach ( $this->entity->get_types() as $type ) { |
|
| 37 | - $entity_type_service->set( $post_id, "http://schema.org/$type", false ); |
|
| 36 | + foreach ($this->entity->get_types() as $type) { |
|
| 37 | + $entity_type_service->set($post_id, "http://schema.org/$type", false); |
|
| 38 | 38 | } |
| 39 | 39 | |
| 40 | - foreach ( $this->entity->get_same_as() as $same_as ) { |
|
| 41 | - add_post_meta( $post_id, 'entity_same_as', $same_as ); |
|
| 40 | + foreach ($this->entity->get_same_as() as $same_as) { |
|
| 41 | + add_post_meta($post_id, 'entity_same_as', $same_as); |
|
| 42 | 42 | } |
| 43 | 43 | |
| 44 | - return Wordpress_Content_Id::create_post( $post_id ); |
|
| 44 | + return Wordpress_Content_Id::create_post($post_id); |
|
| 45 | 45 | } |
| 46 | 46 | } |
@@ -6,16 +6,16 @@ |
||
| 6 | 6 | |
| 7 | 7 | class Url_To_Remote_Entity_Converter { |
| 8 | 8 | |
| 9 | - /** |
|
| 10 | - * @param $url |
|
| 11 | - * |
|
| 12 | - * @return Remote_Entity |
|
| 13 | - */ |
|
| 14 | - public static function convert( $url ) { |
|
| 15 | - $target_path = '/id/' . preg_replace( '@^(https?)://@', '$1/', $url ); |
|
| 16 | - $response = Default_Api_Service::get_instance()->get( $target_path ); |
|
| 9 | + /** |
|
| 10 | + * @param $url |
|
| 11 | + * |
|
| 12 | + * @return Remote_Entity |
|
| 13 | + */ |
|
| 14 | + public static function convert( $url ) { |
|
| 15 | + $target_path = '/id/' . preg_replace( '@^(https?)://@', '$1/', $url ); |
|
| 16 | + $response = Default_Api_Service::get_instance()->get( $target_path ); |
|
| 17 | 17 | |
| 18 | - return Remote_Entity_Factory::from_response( $url, $response ); |
|
| 19 | - } |
|
| 18 | + return Remote_Entity_Factory::from_response( $url, $response ); |
|
| 19 | + } |
|
| 20 | 20 | |
| 21 | 21 | } |
@@ -11,11 +11,11 @@ |
||
| 11 | 11 | * |
| 12 | 12 | * @return Remote_Entity |
| 13 | 13 | */ |
| 14 | - public static function convert( $url ) { |
|
| 15 | - $target_path = '/id/' . preg_replace( '@^(https?)://@', '$1/', $url ); |
|
| 16 | - $response = Default_Api_Service::get_instance()->get( $target_path ); |
|
| 14 | + public static function convert($url) { |
|
| 15 | + $target_path = '/id/'.preg_replace('@^(https?)://@', '$1/', $url); |
|
| 16 | + $response = Default_Api_Service::get_instance()->get($target_path); |
|
| 17 | 17 | |
| 18 | - return Remote_Entity_Factory::from_response( $url, $response ); |
|
| 18 | + return Remote_Entity_Factory::from_response($url, $response); |
|
| 19 | 19 | } |
| 20 | 20 | |
| 21 | 21 | } |