@@ -171,27 +171,14 @@ function ( array $element ) use ( $params ): array {
171
171
*
172
172
* @param non-empty-string $slug Slug (hash of normalized query vars).
173
173
* @param OD_URL_Metric $new_url_metric New URL Metric.
174
- * @return positive-int|WP_Error Post ID or WP_Error otherwise .
174
+ * @return positive-int|WP_Error Post ID on success, or WP_Error on failure .
175
175
*/
176
176
public function store_url_metric ( string $ slug , OD_URL_Metric $ new_url_metric ) {
177
- $ post_data = array (
178
- 'post_title ' => $ new_url_metric ->get_url (),
179
- );
180
-
181
177
$ post = OD_URL_Metrics_Post_Type::get_post ( $ slug );
182
- if ( $ post instanceof WP_Post ) {
183
- $ post_data ['ID ' ] = $ post ->ID ;
184
- $ post_data ['post_name ' ] = $ post ->post_name ;
185
- $ url_metrics = OD_URL_Metrics_Post_Type::get_url_metrics_from_post ( $ post );
186
- } else {
187
- $ post_data ['post_name ' ] = $ slug ;
188
- $ url_metrics = array ();
189
- }
190
-
191
178
$ etag = $ new_url_metric ->get_etag ();
192
179
193
180
$ group_collection = new OD_URL_Metric_Group_Collection (
194
- $ url_metrics ,
181
+ $ post instanceof WP_Post ? OD_URL_Metrics_Post_Type:: get_url_metrics_from_post ( $ post ) : array () ,
195
182
$ etag ,
196
183
od_get_breakpoint_max_widths (),
197
184
od_get_url_metrics_breakpoint_sample_size (),
@@ -205,34 +192,7 @@ public function store_url_metric( string $slug, OD_URL_Metric $new_url_metric )
205
192
return new WP_Error ( 'invalid_url_metric ' , $ e ->getMessage () );
206
193
}
207
194
208
- $ post_data ['post_content ' ] = wp_json_encode (
209
- $ group_collection ->get_flattened_url_metrics (),
210
- JSON_UNESCAPED_SLASHES // No need for escaping slashes since this JSON is not embedded in HTML.
211
- );
212
- if ( ! is_string ( $ post_data ['post_content ' ] ) ) {
213
- return new WP_Error ( 'json_encode_error ' , json_last_error_msg () );
214
- }
215
-
216
- $ has_kses = false !== has_filter ( 'content_save_pre ' , 'wp_filter_post_kses ' );
217
- if ( $ has_kses ) {
218
- // Prevent KSES from corrupting JSON in post_content.
219
- kses_remove_filters ();
220
- }
221
-
222
- $ post_data ['post_type ' ] = OD_URL_Metrics_Post_Type::SLUG ;
223
- $ post_data ['post_status ' ] = 'publish ' ;
224
- $ slashed_post_data = wp_slash ( $ post_data );
225
- if ( isset ( $ post_data ['ID ' ] ) ) {
226
- $ result = wp_update_post ( $ slashed_post_data , true );
227
- } else {
228
- $ result = wp_insert_post ( $ slashed_post_data , true );
229
- }
230
-
231
- if ( $ has_kses ) {
232
- kses_init_filters ();
233
- }
234
-
235
- return $ result ;
195
+ return OD_URL_Metrics_Post_Type::update_post ( $ slug , $ group_collection );
236
196
}
237
197
238
198
/**
0 commit comments