Skip to content

Commit aaf48f6

Browse files
committed
Refactor store_url_metric() to reuse update_post()
Signed-off-by: Shyamsundar Gadde <[email protected]>
1 parent 010f621 commit aaf48f6

File tree

1 file changed

+3
-43
lines changed

1 file changed

+3
-43
lines changed

plugins/optimization-detective/tests/class-optimization-detective-test-helpers.php

+3-43
Original file line numberDiff line numberDiff line change
@@ -171,27 +171,14 @@ function ( array $element ) use ( $params ): array {
171171
*
172172
* @param non-empty-string $slug Slug (hash of normalized query vars).
173173
* @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.
175175
*/
176176
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-
181177
$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-
191178
$etag = $new_url_metric->get_etag();
192179

193180
$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(),
195182
$etag,
196183
od_get_breakpoint_max_widths(),
197184
od_get_url_metrics_breakpoint_sample_size(),
@@ -205,34 +192,7 @@ public function store_url_metric( string $slug, OD_URL_Metric $new_url_metric )
205192
return new WP_Error( 'invalid_url_metric', $e->getMessage() );
206193
}
207194

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 );
236196
}
237197

238198
/**

0 commit comments

Comments
 (0)