-
Notifications
You must be signed in to change notification settings - Fork 4.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Font Library REST API endpoints: address initial feedback from feature branch #57946
Font Library REST API endpoints: address initial feedback from feature branch #57946
Conversation
This pull request has changed or added PHP files. Please confirm whether these changes need to be synced to WordPress Core, and therefore featured in the next release of WordPress. If so, it is recommended to create a new Trac ticket and submit a pull request to the WordPress Core Github repository soon after this pull request is merged. If you're unsure, you can always ask for help in the #core-editor channel in WordPress Slack. Thank you! ❤️ View changed files❔ lib/experimental/fonts/font-library/class-wp-rest-autosave-fonts-controller.php ❔ lib/experimental/fonts/font-library/class-wp-rest-font-faces-controller.php ❔ lib/experimental/fonts/font-library/class-wp-rest-font-families-controller.php ❔ lib/experimental/fonts/font-library/font-library.php ❔ lib/load.php ❔ phpunit/tests/fonts/font-library/wpRestFontFacesController.php ❔ phpunit/tests/fonts/font-library/wpRestFontFamiliesController.php |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Giving this a smoke test, and I'm getting a 404 in the embedded font_faces in the response from the /font-families
endpoint:
"_embedded": {
"font_faces": [
{
"code": "rest_font_face_parent_id_mismatch",
"message": "The font face does not belong to the specified font family with id of \"147\"",
"data": {
"status": 404
}
},
...
I can confirm the parent font family post has an ID of 147, and it works as expected on the feature branch. Looking into why this breaks on the PR.
EDIT
In this comparison, (int) $response->data['parent']
is evaluating to 0
in my testing, so the error condition is met and thrown.
ffc8cc8
to
cc24936
Compare
$deleted = parent::delete_item( $request ); | ||
|
||
if ( is_wp_error( $deleted ) ) { | ||
return $deleted; | ||
} | ||
|
||
foreach ( $this->get_font_face_ids( $font_family_id ) as $font_face_id ) { | ||
wp_delete_post( $font_face_id, true ); | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Deleting child font families is now handled by callbacks hooked into deleted_post
, so we don't need to do it here in the controller
Thank you @jffng for catching this. I've fixed the issue, and added a unit test to catch any regressions in the future. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I've left inline comments to explain the changes in hopes of making this easier to review.
<?php | ||
/** | ||
* WP_REST_Autosave_Fonts_Controller class. | ||
* | ||
* This file contains the class for the REST API Autosave Font Families and Font Faces Controller. | ||
* | ||
* @package WordPress | ||
* @subpackage REST_API | ||
* @since 6.5.0 | ||
*/ | ||
|
||
if ( class_exists( 'WP_REST_Autosave_Fonts_Controller' ) ) { | ||
return; | ||
} | ||
|
||
/** | ||
* Autosave Font Families Controller class. | ||
* | ||
* @since 6.5.0 | ||
*/ | ||
class WP_REST_Autosave_Fonts_Controller { | ||
public function register_routes() { | ||
// disable autosave endpoints for font families and faces. | ||
} | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Here I'm making the empty autosave controller generic so we can use it for both wp_font_family
and wp_font_face
post types.
@@ -55,7 +33,7 @@ public function __construct() { | |||
public function register_routes() { | |||
register_rest_route( | |||
$this->namespace, | |||
'/' . $this->parent_base . '/(?P<font_family_id>[\d]+)/' . $this->rest_base, | |||
'/' . $this->rest_base, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
By defining the rest_base
as font-families/(?P<font_family_id>[\d]+)/font-faces
, we can use this rest_base
directly for registering the routes.
$this->parent_base = $parent_post_type_obj->rest_base; | ||
$this->namespace = $parent_post_type_obj->rest_namespace; | ||
} | ||
protected $allow_batch = false; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Batch support is on by default. Here I'm turning it off for font families, because the batch endpoint doesn't really support file uploads.
private $parent_base; | ||
|
||
/** | ||
* Parent font family post type | ||
* | ||
* @since 6.5.0 | ||
* @var string | ||
*/ | ||
private $parent_post_type; | ||
|
||
public function __construct() { | ||
$post_type = 'wp_font_face'; | ||
$this->post_type = $post_type; | ||
|
||
$post_type_obj = get_post_type_object( $post_type ); | ||
$this->rest_base = $post_type_obj->rest_base; | ||
|
||
$parent_post_type = 'wp_font_family'; | ||
$this->parent_post_type = $parent_post_type; | ||
$parent_post_type_obj = get_post_type_object( $parent_post_type ); | ||
$this->parent_base = $parent_post_type_obj->rest_base; | ||
$this->namespace = $parent_post_type_obj->rest_namespace; | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Removing the constructor, as requested here: #57688 (comment)
@@ -55,7 +33,7 @@ public function __construct() { | |||
public function register_routes() { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Still overriding register_routes
for font faces, as we don't want the WP_REST_Server::EDITABLE
route that's created by default for updating existing font faces (which could get quite complex with file uploads)
} | ||
|
||
return true; | ||
return parent::get_context_param( $args ); | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This sets the context param default to edit
, since we don't need a view
context for fonts as admin only settings.
); | ||
} | ||
|
||
return parent::get_endpoint_args_for_item_schema( $method ); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This overrides the default method for getting the allowed params when creating or editing a font face.
'rest_base' => 'font-families', | ||
'rest_controller_class' => 'WP_REST_Font_Families_Controller', | ||
'autosave_rest_controller_class' => 'WP_REST_Autosave_Font_Families_Controller', | ||
'query_var' => false, | ||
'autosave_rest_controller_class' => 'WP_REST_Autosave_Fonts_Controller', | ||
); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ordering the post type settings for wp_font_family
so they match with wp_font_face
.
'show_in_rest' => true, | ||
'rest_base' => 'font-families/(?P<font_family_id>[\d]+)/font-faces', | ||
'rest_controller_class' => 'WP_REST_Font_Faces_Controller', | ||
'autosave_rest_controller_class' => 'WP_REST_Autosave_Fonts_Controller', |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
These are the new post registration settings here, using the built in plumbing for registering the routes for wp_font_face
.
@@ -242,5 +242,5 @@ function _wp_delete_font_face( $post_id, $post ) { | |||
wp_delete_file( wp_get_font_dir()['path'] . '/' . $font_file ); | |||
} | |||
} | |||
add_action( 'before_delete_post', '_wp_delete_font_face', 10, 2 ); | |||
add_action( 'before_delete_post', '_wp_before_delete_font_face', 10, 2 ); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Renaming all of these hooked functions for clarity.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Verified the following:
✅ Code changes address relevant feedback
✅ Smoke test font library — can still install and uninstall local and collection fonts
✅ Unit tests pass
✅ Creating and deleting a font face with invalid font family ID fails and error is thrown
* Font Library: add wp_font_face post type and scaffold font face REST API controller (#57656) * Font Library: create font faces through the REST API (#57702) * Refactor Font Family Controller (#57785) * Font Family and Font Face REST API endpoints: better data handling and errors (#57843) * Font Families REST API endpoint: ensure unique font family slugs (#57861) * Font Library: delete child font faces and font assets when deleting parent (#57867) Co-authored-by: Sarah Norris <[email protected]> * Font Library: refactor client side install functions to work with revised API (#57844) * Add batchInstallFontFaces function and related plumbing. * Fix resolver name. * Add embedding and rebuild theme.json settings for fontFamily. * Handle responses directly, add to collection before activating. Remove unused test. * Remove getIntersectingFontFaces. * Check for existing font family before installing. * Reference src, not uploadedFile key. Co-authored-by: Matias Benedetto <[email protected]> * Check for existing font family using GET /font-families?slug=. * Filter already installed font faces (determined by matching fontWeight AND fontStyle) --------- Co-authored-by: Matias Benedetto <[email protected]> Co-authored-by: Jason Crist <[email protected]> * Cleanup/font library view error handling (#57926) * Add batchInstallFontFaces function and related plumbing. * Fix resolver name. * Add embedding and rebuild theme.json settings for fontFamily. * Handle responses directly, add to collection before activating. Remove unused test. * Remove getIntersectingFontFaces. * Check for existing font family before installing. * Reference src, not uploadedFile key. Co-authored-by: Matias Benedetto <[email protected]> * Check for existing font family using GET /font-families?slug=. * Filter already installed font faces (determined by matching fontWeight AND fontStyle) * moved response processing into the resolver for fetchGetFontFamilyBySlug * Moved response processing for font family installation to the resolver * Refactored font face installation process to handle errors more cleanly * Cleanup error handling for font library view * Add i18n function to error messages * Add TODO comment for uninstall notice --------- Co-authored-by: Jeff Ong <[email protected]> Co-authored-by: Matias Benedetto <[email protected]> Co-authored-by: Sarah Norris <[email protected]> * Fix unique key prop warning when opening modal * Add key props to FontsGrid children * Font Faces endpoint: prevent creating font faces with duplicate settings (#57903) * Font Library: Update uninstall/delete on client side (#57932) * Fix delete endpoint * Update fetchUninstallFontFamily to match new format * Update uninstallFont * Add uninstall notice back in * Tidy up comments * Re-word uninstall notices * Add spacing to error message * Refactored how font family values were processed so they would retain their id, which is now used to delete a font family without fetching data via slug * Rename uninstallFont to uninstallFontFamily * Throw uninstall errors rather than returning them --------- Co-authored-by: Jason Crist <[email protected]> * Add slug/id back to FontCollection * Change tabsFromCollections inline with Font Collections PR * Use child.key for key prop in FontsGrid * Update packages/edit-site/src/components/global-styles/font-library-modal/local-fonts.js Co-authored-by: Jonny Harris <[email protected]> * Font Library: address JS feedback in #57688 (#57961) * Wrap error messages in sprintf * Use await rather than then * Add variables for API URLs * Update packages/edit-site/src/components/global-styles/font-library-modal/resolvers.js Co-authored-by: Jeff Ong <[email protected]> --------- Co-authored-by: Jeff Ong <[email protected]> * Font Library REST API endpoints: address initial feedback from feature branch (#57946) * Font Library: font collection refactor to use the new schema (#57884) * google fonts collection data provisional url * rename controller methods * fix get_items parameters * fix endpoint return * rafactor font collection class * fix tests for the refactored class * refactor font collections rest controller * update font collection tests * update the frontend to use the new endpoint data schema * format php * adding linter line ignore rul * replacing throwing an exception by calling doing_it_wrong * add translation marks Co-authored-by: Jeff Ong <[email protected]> * user ternary operator * correct translation formatting and comments * renaming function * renaming tests * improve url matching Co-authored-by: Grant Kinney <[email protected]> * return error without rest_ensure_response * fix contradictory if condition --------- Co-authored-by: Jeff Ong <[email protected]> Co-authored-by: Grant Kinney <[email protected]> * Remove old WP_REST_Autosave_Fonts_Controller class --------- Co-authored-by: Grant Kinney <[email protected]> Co-authored-by: Grant Kinney <[email protected]> Co-authored-by: Jeff Ong <[email protected]> Co-authored-by: Matias Benedetto <[email protected]> Co-authored-by: Jason Crist <[email protected]> Co-authored-by: Jonny Harris <[email protected]>
* Font Library: add wp_font_face post type and scaffold font face REST API controller (#57656) * Font Library: create font faces through the REST API (#57702) * Refactor Font Family Controller (#57785) * Font Family and Font Face REST API endpoints: better data handling and errors (#57843) * Font Families REST API endpoint: ensure unique font family slugs (#57861) * Font Library: delete child font faces and font assets when deleting parent (#57867) * Font Library: refactor client side install functions to work with revised API (#57844) * Cleanup/font library view error handling (#57926) * Font Faces endpoint: prevent creating font faces with duplicate settings (#57903) * Font Library: Update uninstall/delete on client side (#57932) * Font Library: address JS feedback in #57688 (#57961) * Font Library REST API endpoints: address initial feedback from feature branch (#57946) * Font Library: font collection refactor to use the new schema (#57884) * Fix font asset download when font faces are installed (#58021) * Font Families and Faces: disable autosaves using empty class (#58018) * Adds migration for legacy font family content (#58032) --------- Co-authored-by: Jeff Ong <[email protected]> Co-authored-by: Matias Benedetto <[email protected]> Co-authored-by: Jason Crist <[email protected]> Co-authored-by: Sarah Norris <[email protected]> Co-authored-by: Jonny Harris <[email protected]>
What?
Addresses the initial feedback in #57688, including
wp_font_face
withshow_in_rest
astrue
and removing the manual route registrationWP_REST_Font_Families_Controller
andWP_REST_Font_Faces_Controller
, and depending on the parent constructorregister_routes
method ofWP_REST_Font_Families_Controller
and depending on the parent methodpermission_callback
methods and overriding the default ones, where neededWP_REST_Font_Families_Controller
andWP_REST_Font_Faces_Controller
that defaults toedit
prepare_item_for_response
to support the_fields
argget_posts
calls withWP_Query
and turning off the meta and term cachesparent::get_collection_params()
Also, some bug fixes and improvements
WP_REST_Font_Families_Controller
andWP_REST_Font_Faces_Controller
, since it doesn't work with file uploadsWhy?
See #55278
Testing Instructions
Minimal functionality changes