2021-05-25 10:20:57 -04:00
< ? php
/**
* REST API : WP_REST_Templates_Controller class
*
* @ package WordPress
* @ subpackage REST_API
* @ since 5.8 . 0
*/
/**
* Base Templates REST API Controller .
*
* @ since 5.8 . 0
*
* @ see WP_REST_Controller
*/
class WP_REST_Templates_Controller extends WP_REST_Controller {
/**
* Post type .
*
* @ since 5.8 . 0
* @ var string
*/
protected $post_type ;
/**
* Constructor .
*
* @ since 5.8 . 0
*
* @ param string $post_type Post type .
*/
public function __construct ( $post_type ) {
$this -> post_type = $post_type ;
$obj = get_post_type_object ( $post_type );
$this -> rest_base = ! empty ( $obj -> rest_base ) ? $obj -> rest_base : $obj -> name ;
2021-10-31 19:16:58 -04:00
$this -> namespace = ! empty ( $obj -> rest_namespace ) ? $obj -> rest_namespace : 'wp/v2' ;
2021-05-25 10:20:57 -04:00
}
/**
* Registers the controllers routes .
*
* @ since 5.8 . 0
Editor: Adds template types, `is_wp_suggestion`, and fallback template content.
This commit improves site editor templates by:
* Adds a post meta `is_wp_suggestion` to templates created from the site editor.
Why? To differentiate the templates created from the post editor in the Template panel in inspector controls and the templates suggested in site editor.
See [https://github.com/WordPress/gutenberg/pull/41387 Gutenberg PR 41387] for more details.
* Expands the template types that can be added to the site editor to include single custom post type and specific posts templates.
See [https://github.com/WordPress/gutenberg/pull/41189 Gutenberg PR 41189] for more details.
* Adds fallback template content on creation in site editor:
* Introduces `get_template_hierarchy()` to get the template hierarchy for a given template slug to be created.
* Adds a `lookup` route to `WP_REST_Templates_Controller` to get the fallback template content.
See [https://github.com/WordPress/gutenberg/pull/42520 Gutenberg PR 42520] for more details.
* Fixes a typo in default category template's description within `get_default_block_template_types()`.
See [https://github.com/WordPress/gutenberg/pull/42586 Gutenberg PR 42586] for more details.
* Changes field checks from `in_array()` to `rest_is_field_included()` in `WP_REST_Post_Types_Controller`.
* Adds an `icon` field to `WP_REST_Post_Types_Controller`
Follow-up to [53129], [52331], [52275], [52062], [51962], [43087].
Props ntsekouras, spacedmonkey, mamaduka, mburridge, jameskoster, bernhard-reiter, mcsf, hellofromTonya.
See #56467.
Built from https://develop.svn.wordpress.org/trunk@54269
git-svn-id: http://core.svn.wordpress.org/trunk@53828 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2022-09-20 17:21:09 -04:00
* @ since 6.1 . 0 Endpoint for fallback template content .
2021-05-25 10:20:57 -04:00
*/
public function register_routes () {
// Lists all templates.
register_rest_route (
$this -> namespace ,
'/' . $this -> rest_base ,
array (
array (
'methods' => WP_REST_Server :: READABLE ,
'callback' => array ( $this , 'get_items' ),
'permission_callback' => array ( $this , 'get_items_permissions_check' ),
'args' => $this -> get_collection_params (),
),
array (
'methods' => WP_REST_Server :: CREATABLE ,
'callback' => array ( $this , 'create_item' ),
'permission_callback' => array ( $this , 'create_item_permissions_check' ),
'args' => $this -> get_endpoint_args_for_item_schema ( WP_REST_Server :: CREATABLE ),
),
'schema' => array ( $this , 'get_public_item_schema' ),
)
);
Editor: Adds template types, `is_wp_suggestion`, and fallback template content.
This commit improves site editor templates by:
* Adds a post meta `is_wp_suggestion` to templates created from the site editor.
Why? To differentiate the templates created from the post editor in the Template panel in inspector controls and the templates suggested in site editor.
See [https://github.com/WordPress/gutenberg/pull/41387 Gutenberg PR 41387] for more details.
* Expands the template types that can be added to the site editor to include single custom post type and specific posts templates.
See [https://github.com/WordPress/gutenberg/pull/41189 Gutenberg PR 41189] for more details.
* Adds fallback template content on creation in site editor:
* Introduces `get_template_hierarchy()` to get the template hierarchy for a given template slug to be created.
* Adds a `lookup` route to `WP_REST_Templates_Controller` to get the fallback template content.
See [https://github.com/WordPress/gutenberg/pull/42520 Gutenberg PR 42520] for more details.
* Fixes a typo in default category template's description within `get_default_block_template_types()`.
See [https://github.com/WordPress/gutenberg/pull/42586 Gutenberg PR 42586] for more details.
* Changes field checks from `in_array()` to `rest_is_field_included()` in `WP_REST_Post_Types_Controller`.
* Adds an `icon` field to `WP_REST_Post_Types_Controller`
Follow-up to [53129], [52331], [52275], [52062], [51962], [43087].
Props ntsekouras, spacedmonkey, mamaduka, mburridge, jameskoster, bernhard-reiter, mcsf, hellofromTonya.
See #56467.
Built from https://develop.svn.wordpress.org/trunk@54269
git-svn-id: http://core.svn.wordpress.org/trunk@53828 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2022-09-20 17:21:09 -04:00
// Get fallback template content.
register_rest_route (
$this -> namespace ,
'/' . $this -> rest_base . '/lookup' ,
array (
array (
'methods' => WP_REST_Server :: READABLE ,
'callback' => array ( $this , 'get_template_fallback' ),
'permission_callback' => array ( $this , 'get_item_permissions_check' ),
'args' => array (
'slug' => array (
'description' => __ ( 'The slug of the template to get the fallback for' ),
'type' => 'string' ,
'required' => true ,
),
'is_custom' => array (
2022-09-29 13:54:09 -04:00
'description' => __ ( 'Indicates if a template is custom or part of the template hierarchy' ),
Editor: Adds template types, `is_wp_suggestion`, and fallback template content.
This commit improves site editor templates by:
* Adds a post meta `is_wp_suggestion` to templates created from the site editor.
Why? To differentiate the templates created from the post editor in the Template panel in inspector controls and the templates suggested in site editor.
See [https://github.com/WordPress/gutenberg/pull/41387 Gutenberg PR 41387] for more details.
* Expands the template types that can be added to the site editor to include single custom post type and specific posts templates.
See [https://github.com/WordPress/gutenberg/pull/41189 Gutenberg PR 41189] for more details.
* Adds fallback template content on creation in site editor:
* Introduces `get_template_hierarchy()` to get the template hierarchy for a given template slug to be created.
* Adds a `lookup` route to `WP_REST_Templates_Controller` to get the fallback template content.
See [https://github.com/WordPress/gutenberg/pull/42520 Gutenberg PR 42520] for more details.
* Fixes a typo in default category template's description within `get_default_block_template_types()`.
See [https://github.com/WordPress/gutenberg/pull/42586 Gutenberg PR 42586] for more details.
* Changes field checks from `in_array()` to `rest_is_field_included()` in `WP_REST_Post_Types_Controller`.
* Adds an `icon` field to `WP_REST_Post_Types_Controller`
Follow-up to [53129], [52331], [52275], [52062], [51962], [43087].
Props ntsekouras, spacedmonkey, mamaduka, mburridge, jameskoster, bernhard-reiter, mcsf, hellofromTonya.
See #56467.
Built from https://develop.svn.wordpress.org/trunk@54269
git-svn-id: http://core.svn.wordpress.org/trunk@53828 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2022-09-20 17:21:09 -04:00
'type' => 'boolean' ,
),
'template_prefix' => array (
'description' => __ ( 'The template prefix for the created template. This is used to extract the main template type, e.g. in `taxonomy-books` extracts the `taxonomy`' ),
'type' => 'string' ,
),
),
),
)
);
2021-05-25 10:20:57 -04:00
// Lists/updates a single template based on the given id.
register_rest_route (
$this -> namespace ,
REST API: Support `.` in theme directory names in `WP_REST_Global_Styles_Controller`, `WP_REST_Templates_Controller`, and `WP_REST_Themes_Controller`.
Regex changes from [52376] are reverted to restore the original regex patterns. Why? [52376] used an include characters pattern, which was too limiting. It did not account for localized characters, such as `é`, or other valid directory name characters.
The original theme directory regex pattern, i.e. `[^.\/]+(?:\/[^.\/]+)?` excluded the period `.` character. Removing the `.` character resolves the reported issue by allowing matching for `themes/theme-dirname-1.0/` or `themes/<subdirname>/theme-dirname-1.0/`.
As the pattern used an exclude approach, all characters are valid for matching except for `/`. However, not all characters are cross-platform valid for directory names. For example, the characters `/:<>*?"|` are not valid on Windows OS. The pattern now excludes those characters.
The theme's directory (or subdirectory) name pattern matching is now used in `WP_REST_Global_Styles_Controller`, `WP_REST_Templates_Controller`, and `WP_REST_Themes_Controller`.
Follow-up to [51003], [52051], [52275], [52376].
Props costdev, hellofromTonya, spacedmonkey, TimothyBlynJacobs, bijayyadav, kafleg.
Fixes #54596.
Built from https://develop.svn.wordpress.org/trunk@52399
git-svn-id: http://core.svn.wordpress.org/trunk@51991 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2021-12-20 23:14:00 -05:00
// The route.
sprintf (
'/%s/(?P<id>%s%s)' ,
$this -> rest_base ,
Docs: Replace multiple single line comments with multi-line comments.
This changeset updates various comments as per WordPress PHP Inline Documentation Standards.
See https://developer.wordpress.org/coding-standards/inline-documentation-standards/php/#5-inline-comments.
Follow-up to [56174], [56175], [56176], [56177], [56178], [56179], [56180], [56191], [56192], [56193], [56194].
Props costdev, audrasjb.
See #58459.
Built from https://develop.svn.wordpress.org/trunk@56195
git-svn-id: http://core.svn.wordpress.org/trunk@55707 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2023-07-10 19:19:23 -04:00
/*
* Matches theme ' s directory : `/themes/<subdirectory>/<theme>/` or `/themes/<theme>/` .
* Excludes invalid directory name characters : `/:<>*?"|` .
*/
REST API: Support `.` in theme directory names in `WP_REST_Global_Styles_Controller`, `WP_REST_Templates_Controller`, and `WP_REST_Themes_Controller`.
Regex changes from [52376] are reverted to restore the original regex patterns. Why? [52376] used an include characters pattern, which was too limiting. It did not account for localized characters, such as `é`, or other valid directory name characters.
The original theme directory regex pattern, i.e. `[^.\/]+(?:\/[^.\/]+)?` excluded the period `.` character. Removing the `.` character resolves the reported issue by allowing matching for `themes/theme-dirname-1.0/` or `themes/<subdirname>/theme-dirname-1.0/`.
As the pattern used an exclude approach, all characters are valid for matching except for `/`. However, not all characters are cross-platform valid for directory names. For example, the characters `/:<>*?"|` are not valid on Windows OS. The pattern now excludes those characters.
The theme's directory (or subdirectory) name pattern matching is now used in `WP_REST_Global_Styles_Controller`, `WP_REST_Templates_Controller`, and `WP_REST_Themes_Controller`.
Follow-up to [51003], [52051], [52275], [52376].
Props costdev, hellofromTonya, spacedmonkey, TimothyBlynJacobs, bijayyadav, kafleg.
Fixes #54596.
Built from https://develop.svn.wordpress.org/trunk@52399
git-svn-id: http://core.svn.wordpress.org/trunk@51991 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2021-12-20 23:14:00 -05:00
'([^\/:<>\*\?"\|]+(?:\/[^\/:<>\*\?"\|]+)?)' ,
// Matches the template name.
2023-02-07 18:47:23 -05:00
'[\/\w%-]+'
REST API: Support `.` in theme directory names in `WP_REST_Global_Styles_Controller`, `WP_REST_Templates_Controller`, and `WP_REST_Themes_Controller`.
Regex changes from [52376] are reverted to restore the original regex patterns. Why? [52376] used an include characters pattern, which was too limiting. It did not account for localized characters, such as `é`, or other valid directory name characters.
The original theme directory regex pattern, i.e. `[^.\/]+(?:\/[^.\/]+)?` excluded the period `.` character. Removing the `.` character resolves the reported issue by allowing matching for `themes/theme-dirname-1.0/` or `themes/<subdirname>/theme-dirname-1.0/`.
As the pattern used an exclude approach, all characters are valid for matching except for `/`. However, not all characters are cross-platform valid for directory names. For example, the characters `/:<>*?"|` are not valid on Windows OS. The pattern now excludes those characters.
The theme's directory (or subdirectory) name pattern matching is now used in `WP_REST_Global_Styles_Controller`, `WP_REST_Templates_Controller`, and `WP_REST_Themes_Controller`.
Follow-up to [51003], [52051], [52275], [52376].
Props costdev, hellofromTonya, spacedmonkey, TimothyBlynJacobs, bijayyadav, kafleg.
Fixes #54596.
Built from https://develop.svn.wordpress.org/trunk@52399
git-svn-id: http://core.svn.wordpress.org/trunk@51991 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2021-12-20 23:14:00 -05:00
),
2021-05-25 10:20:57 -04:00
array (
2021-11-16 13:06:00 -05:00
'args' => array (
'id' => array (
2021-11-29 19:24:27 -05:00
'description' => __ ( 'The id of a template' ),
'type' => 'string' ,
'sanitize_callback' => array ( $this , '_sanitize_template_id' ),
2021-11-16 13:06:00 -05:00
),
),
2021-05-25 10:20:57 -04:00
array (
'methods' => WP_REST_Server :: READABLE ,
'callback' => array ( $this , 'get_item' ),
'permission_callback' => array ( $this , 'get_item_permissions_check' ),
'args' => array (
2021-11-16 13:06:00 -05:00
'context' => $this -> get_context_param ( array ( 'default' => 'view' ) ),
2021-05-25 10:20:57 -04:00
),
),
array (
'methods' => WP_REST_Server :: EDITABLE ,
'callback' => array ( $this , 'update_item' ),
'permission_callback' => array ( $this , 'update_item_permissions_check' ),
'args' => $this -> get_endpoint_args_for_item_schema ( WP_REST_Server :: EDITABLE ),
),
array (
'methods' => WP_REST_Server :: DELETABLE ,
'callback' => array ( $this , 'delete_item' ),
'permission_callback' => array ( $this , 'delete_item_permissions_check' ),
'args' => array (
'force' => array (
'type' => 'boolean' ,
'default' => false ,
'description' => __ ( 'Whether to bypass Trash and force deletion.' ),
),
),
),
'schema' => array ( $this , 'get_public_item_schema' ),
)
);
}
Editor: Adds template types, `is_wp_suggestion`, and fallback template content.
This commit improves site editor templates by:
* Adds a post meta `is_wp_suggestion` to templates created from the site editor.
Why? To differentiate the templates created from the post editor in the Template panel in inspector controls and the templates suggested in site editor.
See [https://github.com/WordPress/gutenberg/pull/41387 Gutenberg PR 41387] for more details.
* Expands the template types that can be added to the site editor to include single custom post type and specific posts templates.
See [https://github.com/WordPress/gutenberg/pull/41189 Gutenberg PR 41189] for more details.
* Adds fallback template content on creation in site editor:
* Introduces `get_template_hierarchy()` to get the template hierarchy for a given template slug to be created.
* Adds a `lookup` route to `WP_REST_Templates_Controller` to get the fallback template content.
See [https://github.com/WordPress/gutenberg/pull/42520 Gutenberg PR 42520] for more details.
* Fixes a typo in default category template's description within `get_default_block_template_types()`.
See [https://github.com/WordPress/gutenberg/pull/42586 Gutenberg PR 42586] for more details.
* Changes field checks from `in_array()` to `rest_is_field_included()` in `WP_REST_Post_Types_Controller`.
* Adds an `icon` field to `WP_REST_Post_Types_Controller`
Follow-up to [53129], [52331], [52275], [52062], [51962], [43087].
Props ntsekouras, spacedmonkey, mamaduka, mburridge, jameskoster, bernhard-reiter, mcsf, hellofromTonya.
See #56467.
Built from https://develop.svn.wordpress.org/trunk@54269
git-svn-id: http://core.svn.wordpress.org/trunk@53828 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2022-09-20 17:21:09 -04:00
/**
* Returns the fallback template for the given slug .
*
* @ since 6.1 . 0
2023-06-27 01:36:22 -04:00
* @ since 6.3 . 0 Ignore empty templates .
Editor: Adds template types, `is_wp_suggestion`, and fallback template content.
This commit improves site editor templates by:
* Adds a post meta `is_wp_suggestion` to templates created from the site editor.
Why? To differentiate the templates created from the post editor in the Template panel in inspector controls and the templates suggested in site editor.
See [https://github.com/WordPress/gutenberg/pull/41387 Gutenberg PR 41387] for more details.
* Expands the template types that can be added to the site editor to include single custom post type and specific posts templates.
See [https://github.com/WordPress/gutenberg/pull/41189 Gutenberg PR 41189] for more details.
* Adds fallback template content on creation in site editor:
* Introduces `get_template_hierarchy()` to get the template hierarchy for a given template slug to be created.
* Adds a `lookup` route to `WP_REST_Templates_Controller` to get the fallback template content.
See [https://github.com/WordPress/gutenberg/pull/42520 Gutenberg PR 42520] for more details.
* Fixes a typo in default category template's description within `get_default_block_template_types()`.
See [https://github.com/WordPress/gutenberg/pull/42586 Gutenberg PR 42586] for more details.
* Changes field checks from `in_array()` to `rest_is_field_included()` in `WP_REST_Post_Types_Controller`.
* Adds an `icon` field to `WP_REST_Post_Types_Controller`
Follow-up to [53129], [52331], [52275], [52062], [51962], [43087].
Props ntsekouras, spacedmonkey, mamaduka, mburridge, jameskoster, bernhard-reiter, mcsf, hellofromTonya.
See #56467.
Built from https://develop.svn.wordpress.org/trunk@54269
git-svn-id: http://core.svn.wordpress.org/trunk@53828 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2022-09-20 17:21:09 -04:00
*
* @ param WP_REST_Request $request The request instance .
* @ return WP_REST_Response | WP_Error
*/
public function get_template_fallback ( $request ) {
2023-06-27 01:36:22 -04:00
$hierarchy = get_template_hierarchy ( $request [ 'slug' ], $request [ 'is_custom' ], $request [ 'template_prefix' ] );
do {
$fallback_template = resolve_block_template ( $request [ 'slug' ], $hierarchy , '' );
array_shift ( $hierarchy );
} while ( ! empty ( $hierarchy ) && empty ( $fallback_template -> content ) );
2024-05-02 12:03:14 -04:00
// To maintain original behavior, return an empty object rather than a 404 error when no template is found.
$response = $fallback_template ? $this -> prepare_item_for_response ( $fallback_template , $request ) : new stdClass ();
2023-06-27 01:36:22 -04:00
Editor: Adds template types, `is_wp_suggestion`, and fallback template content.
This commit improves site editor templates by:
* Adds a post meta `is_wp_suggestion` to templates created from the site editor.
Why? To differentiate the templates created from the post editor in the Template panel in inspector controls and the templates suggested in site editor.
See [https://github.com/WordPress/gutenberg/pull/41387 Gutenberg PR 41387] for more details.
* Expands the template types that can be added to the site editor to include single custom post type and specific posts templates.
See [https://github.com/WordPress/gutenberg/pull/41189 Gutenberg PR 41189] for more details.
* Adds fallback template content on creation in site editor:
* Introduces `get_template_hierarchy()` to get the template hierarchy for a given template slug to be created.
* Adds a `lookup` route to `WP_REST_Templates_Controller` to get the fallback template content.
See [https://github.com/WordPress/gutenberg/pull/42520 Gutenberg PR 42520] for more details.
* Fixes a typo in default category template's description within `get_default_block_template_types()`.
See [https://github.com/WordPress/gutenberg/pull/42586 Gutenberg PR 42586] for more details.
* Changes field checks from `in_array()` to `rest_is_field_included()` in `WP_REST_Post_Types_Controller`.
* Adds an `icon` field to `WP_REST_Post_Types_Controller`
Follow-up to [53129], [52331], [52275], [52062], [51962], [43087].
Props ntsekouras, spacedmonkey, mamaduka, mburridge, jameskoster, bernhard-reiter, mcsf, hellofromTonya.
See #56467.
Built from https://develop.svn.wordpress.org/trunk@54269
git-svn-id: http://core.svn.wordpress.org/trunk@53828 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2022-09-20 17:21:09 -04:00
return rest_ensure_response ( $response );
}
2021-05-25 10:20:57 -04:00
/**
* Checks if the user has permissions to make the request .
*
* @ since 5.8 . 0
*
2021-07-06 11:43:00 -04:00
* @ param WP_REST_Request $request Full details about the request .
2021-05-25 10:20:57 -04:00
* @ return true | WP_Error True if the request has read access , WP_Error object otherwise .
*/
2021-07-06 11:43:00 -04:00
protected function permissions_check ( $request ) {
Docs: Replace multiple single line comments with multi-line comments.
This changeset updates various comments as per WordPress PHP Inline Documentation Standards.
See https://developer.wordpress.org/coding-standards/inline-documentation-standards/php/#5-inline-comments.
Follow-up to [56174], [56175], [56176], [56177], [56178], [56179], [56180], [56191], [56192], [56193], [56194].
Props costdev, audrasjb.
See #58459.
Built from https://develop.svn.wordpress.org/trunk@56195
git-svn-id: http://core.svn.wordpress.org/trunk@55707 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2023-07-10 19:19:23 -04:00
/*
* Verify if the current user has edit_theme_options capability .
* This capability is required to edit / view / delete templates .
*/
2021-05-25 10:20:57 -04:00
if ( ! current_user_can ( 'edit_theme_options' ) ) {
return new WP_Error (
'rest_cannot_manage_templates' ,
__ ( 'Sorry, you are not allowed to access the templates on this site.' ),
array (
'status' => rest_authorization_required_code (),
)
);
}
return true ;
}
2021-11-29 19:24:27 -05:00
/**
* Requesting this endpoint for a template like 'twentytwentytwo//home'
* requires using a path like / wp / v2 / templates / twentytwentytwo //home. There
* are special cases when WordPress routing corrects the name to contain
* only a single slash like 'twentytwentytwo/home' .
*
* This method doubles the last slash if it ' s not already doubled . It relies
* on the template ID format { theme_name } //{template_slug} and the fact that
* slugs cannot contain slashes .
*
* @ since 5.9 . 0
* @ see https :// core . trac . wordpress . org / ticket / 54507
*
* @ param string $id Template ID .
* @ return string Sanitized template ID .
*/
public function _sanitize_template_id ( $id ) {
REST API: Add block theme support for valid non-alphanumeric characters in theme's directory name.
Themes whose `wp-content/themes/<dirname>` include valid non-alphanumeric (cross-platform) characters work for non-block themes, but did not previously resolve for block themes. For example, a block theme in `wp-content/themes/twentytwentytwo-0.4.0/` directory resulted a 404 "No route was found matching the URL and request method" response when attempting to customize it in the Site Editor.
This commit adds support for the following characters in a theme's root directory: `_`, `.`, `@`, `[`, `]`, `(`, and `)`. Subdirectory themes and `-` are already supported.
Follow-up to [51003], [52051], [52275].
Props mkaz, costdev, hellofromTonya, jffng, justinahinon, peterwilsoncc, spacedmonkey, TimothyBlynJacobs.
Fixes #54596.
Built from https://develop.svn.wordpress.org/trunk@52376
git-svn-id: http://core.svn.wordpress.org/trunk@51968 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2021-12-14 13:24:01 -05:00
$id = urldecode ( $id );
2021-11-29 19:24:27 -05:00
$last_slash_pos = strrpos ( $id , '/' );
if ( false === $last_slash_pos ) {
return $id ;
}
$is_double_slashed = substr ( $id , $last_slash_pos - 1 , 1 ) === '/' ;
if ( $is_double_slashed ) {
return $id ;
}
return (
substr ( $id , 0 , $last_slash_pos )
. '/'
. substr ( $id , $last_slash_pos )
);
}
2021-05-25 10:20:57 -04:00
/**
* Checks if a given request has access to read templates .
*
* @ since 5.8 . 0
2024-05-29 03:21:16 -04:00
* @ since 6.6 . 0 Allow users with edit_posts capability to read templates .
2021-05-25 10:20:57 -04:00
*
* @ param WP_REST_Request $request Full details about the request .
* @ return true | WP_Error True if the request has read access , WP_Error object otherwise .
*/
public function get_items_permissions_check ( $request ) {
2024-05-29 03:21:16 -04:00
if ( current_user_can ( 'edit_posts' ) ) {
return true ;
}
foreach ( get_post_types ( array ( 'show_in_rest' => true ), 'objects' ) as $post_type ) {
if ( current_user_can ( $post_type -> cap -> edit_posts ) ) {
return true ;
}
}
return new WP_Error (
'rest_cannot_manage_templates' ,
2024-05-29 04:23:11 -04:00
__ ( 'Sorry, you are not allowed to access the templates on this site.' ),
2024-05-29 03:21:16 -04:00
array (
'status' => rest_authorization_required_code (),
)
);
2021-05-25 10:20:57 -04:00
}
/**
* Returns a list of templates .
*
* @ since 5.8 . 0
*
* @ param WP_REST_Request $request The request instance .
* @ return WP_REST_Response
*/
public function get_items ( $request ) {
$query = array ();
if ( isset ( $request [ 'wp_id' ] ) ) {
$query [ 'wp_id' ] = $request [ 'wp_id' ];
}
if ( isset ( $request [ 'area' ] ) ) {
$query [ 'area' ] = $request [ 'area' ];
}
2021-11-08 18:10:59 -05:00
if ( isset ( $request [ 'post_type' ] ) ) {
$query [ 'post_type' ] = $request [ 'post_type' ];
}
2021-06-30 14:43:58 -04:00
2021-05-25 10:20:57 -04:00
$templates = array ();
foreach ( get_block_templates ( $query , $this -> post_type ) as $template ) {
$data = $this -> prepare_item_for_response ( $template , $request );
$templates [] = $this -> prepare_response_for_collection ( $data );
}
return rest_ensure_response ( $templates );
}
/**
* Checks if a given request has access to read a single template .
*
* @ since 5.8 . 0
2024-05-29 03:21:16 -04:00
* @ since 6.6 . 0 Allow users with edit_posts capability to read individual templates .
2021-05-25 10:20:57 -04:00
*
* @ param WP_REST_Request $request Full details about the request .
* @ return true | WP_Error True if the request has read access for the item , WP_Error object otherwise .
*/
public function get_item_permissions_check ( $request ) {
2024-05-29 03:21:16 -04:00
if ( current_user_can ( 'edit_posts' ) ) {
return true ;
}
foreach ( get_post_types ( array ( 'show_in_rest' => true ), 'objects' ) as $post_type ) {
if ( current_user_can ( $post_type -> cap -> edit_posts ) ) {
return true ;
}
}
return new WP_Error (
'rest_cannot_manage_templates' ,
2024-05-29 04:23:11 -04:00
__ ( 'Sorry, you are not allowed to access the templates on this site.' ),
2024-05-29 03:21:16 -04:00
array (
'status' => rest_authorization_required_code (),
)
);
2021-05-25 10:20:57 -04:00
}
/**
* Returns the given template
*
* @ since 5.8 . 0
*
* @ param WP_REST_Request $request The request instance .
* @ return WP_REST_Response | WP_Error
*/
public function get_item ( $request ) {
2024-09-19 22:07:12 -04:00
if ( isset ( $request [ 'source' ] ) && ( 'theme' === $request [ 'source' ] || 'plugin' === $request [ 'source' ] ) ) {
2021-11-08 18:10:59 -05:00
$template = get_block_file_template ( $request [ 'id' ], $this -> post_type );
} else {
$template = get_block_template ( $request [ 'id' ], $this -> post_type );
}
2021-05-25 10:20:57 -04:00
if ( ! $template ) {
return new WP_Error ( 'rest_template_not_found' , __ ( 'No templates exist with that id.' ), array ( 'status' => 404 ) );
}
return $this -> prepare_item_for_response ( $template , $request );
}
/**
* Checks if a given request has access to write a single template .
*
* @ since 5.8 . 0
*
* @ param WP_REST_Request $request Full details about the request .
* @ return true | WP_Error True if the request has write access for the item , WP_Error object otherwise .
*/
public function update_item_permissions_check ( $request ) {
return $this -> permissions_check ( $request );
}
/**
* Updates a single template .
*
* @ since 5.8 . 0
*
* @ param WP_REST_Request $request Full details about the request .
* @ return WP_REST_Response | WP_Error Response object on success , or WP_Error object on failure .
*/
public function update_item ( $request ) {
$template = get_block_template ( $request [ 'id' ], $this -> post_type );
if ( ! $template ) {
return new WP_Error ( 'rest_template_not_found' , __ ( 'No templates exist with that id.' ), array ( 'status' => 404 ) );
}
2021-11-29 20:10:08 -05:00
$post_before = get_post ( $template -> wp_id );
2021-11-08 18:10:59 -05:00
if ( isset ( $request [ 'source' ] ) && 'theme' === $request [ 'source' ] ) {
wp_delete_post ( $template -> wp_id , true );
2021-11-16 13:06:00 -05:00
$request -> set_param ( 'context' , 'edit' );
$template = get_block_template ( $request [ 'id' ], $this -> post_type );
$response = $this -> prepare_item_for_response ( $template , $request );
return rest_ensure_response ( $response );
2021-11-08 18:10:59 -05:00
}
2021-05-25 10:20:57 -04:00
$changes = $this -> prepare_item_for_database ( $request );
2021-11-29 19:24:27 -05:00
if ( is_wp_error ( $changes ) ) {
return $changes ;
}
2021-05-25 10:20:57 -04:00
if ( 'custom' === $template -> source ) {
2021-11-29 20:10:08 -05:00
$update = true ;
$result = wp_update_post ( wp_slash ( ( array ) $changes ), false );
2021-05-25 10:20:57 -04:00
} else {
2021-11-29 20:10:08 -05:00
$update = false ;
$post_before = null ;
$result = wp_insert_post ( wp_slash ( ( array ) $changes ), false );
2021-05-25 10:20:57 -04:00
}
2021-11-16 13:06:00 -05:00
2021-05-25 10:20:57 -04:00
if ( is_wp_error ( $result ) ) {
2021-11-16 13:06:00 -05:00
if ( 'db_update_error' === $result -> get_error_code () ) {
$result -> add_data ( array ( 'status' => 500 ) );
} else {
$result -> add_data ( array ( 'status' => 400 ) );
}
2021-05-25 10:20:57 -04:00
return $result ;
}
$template = get_block_template ( $request [ 'id' ], $this -> post_type );
$fields_update = $this -> update_additional_fields_for_object ( $template , $request );
if ( is_wp_error ( $fields_update ) ) {
return $fields_update ;
}
2021-11-16 13:06:00 -05:00
$request -> set_param ( 'context' , 'edit' );
2021-11-29 06:43:01 -05:00
$post = get_post ( $template -> wp_id );
/** This action is documented in wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php */
do_action ( " rest_after_insert_ { $this -> post_type } " , $post , $request , false );
2021-11-29 20:10:08 -05:00
wp_after_insert_post ( $post , $update , $post_before );
2021-11-16 13:06:00 -05:00
$response = $this -> prepare_item_for_response ( $template , $request );
return rest_ensure_response ( $response );
2021-05-25 10:20:57 -04:00
}
/**
* Checks if a given request has access to create a template .
*
* @ since 5.8 . 0
*
* @ param WP_REST_Request $request Full details about the request .
* @ return true | WP_Error True if the request has access to create items , WP_Error object otherwise .
*/
public function create_item_permissions_check ( $request ) {
return $this -> permissions_check ( $request );
}
/**
* Creates a single template .
*
* @ since 5.8 . 0
*
* @ param WP_REST_Request $request Full details about the request .
* @ return WP_REST_Response | WP_Error Response object on success , or WP_Error object on failure .
*/
public function create_item ( $request ) {
2021-12-07 17:49:59 -05:00
$prepared_post = $this -> prepare_item_for_database ( $request );
2021-11-29 19:24:27 -05:00
if ( is_wp_error ( $prepared_post ) ) {
return $prepared_post ;
}
2021-11-16 13:06:00 -05:00
$prepared_post -> post_name = $request [ 'slug' ];
$post_id = wp_insert_post ( wp_slash ( ( array ) $prepared_post ), true );
if ( is_wp_error ( $post_id ) ) {
if ( 'db_insert_error' === $post_id -> get_error_code () ) {
$post_id -> add_data ( array ( 'status' => 500 ) );
} else {
$post_id -> add_data ( array ( 'status' => 400 ) );
}
return $post_id ;
2021-05-25 10:20:57 -04:00
}
2021-11-16 13:06:00 -05:00
$posts = get_block_templates ( array ( 'wp_id' => $post_id ), $this -> post_type );
2021-05-25 10:20:57 -04:00
if ( ! count ( $posts ) ) {
2021-11-16 13:06:00 -05:00
return new WP_Error ( 'rest_template_insert_error' , __ ( 'No templates exist with that id.' ), array ( 'status' => 400 ) );
2021-05-25 10:20:57 -04:00
}
$id = $posts [ 0 ] -> id ;
2021-11-29 06:43:01 -05:00
$post = get_post ( $post_id );
2021-05-25 10:20:57 -04:00
$template = get_block_template ( $id , $this -> post_type );
$fields_update = $this -> update_additional_fields_for_object ( $template , $request );
if ( is_wp_error ( $fields_update ) ) {
return $fields_update ;
}
2021-11-29 06:43:01 -05:00
/** This action is documented in wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php */
do_action ( " rest_after_insert_ { $this -> post_type } " , $post , $request , true );
2021-11-29 20:10:08 -05:00
wp_after_insert_post ( $post , false , null );
2021-11-16 13:06:00 -05:00
$response = $this -> prepare_item_for_response ( $template , $request );
$response = rest_ensure_response ( $response );
$response -> set_status ( 201 );
$response -> header ( 'Location' , rest_url ( sprintf ( '%s/%s/%s' , $this -> namespace , $this -> rest_base , $template -> id ) ) );
return $response ;
2021-05-25 10:20:57 -04:00
}
/**
* Checks if a given request has access to delete a single template .
*
* @ since 5.8 . 0
*
* @ param WP_REST_Request $request Full details about the request .
* @ return true | WP_Error True if the request has delete access for the item , WP_Error object otherwise .
*/
public function delete_item_permissions_check ( $request ) {
return $this -> permissions_check ( $request );
}
/**
* Deletes a single template .
*
* @ since 5.8 . 0
*
* @ param WP_REST_Request $request Full details about the request .
* @ return WP_REST_Response | WP_Error Response object on success , or WP_Error object on failure .
*/
public function delete_item ( $request ) {
$template = get_block_template ( $request [ 'id' ], $this -> post_type );
if ( ! $template ) {
return new WP_Error ( 'rest_template_not_found' , __ ( 'No templates exist with that id.' ), array ( 'status' => 404 ) );
}
if ( 'custom' !== $template -> source ) {
return new WP_Error ( 'rest_invalid_template' , __ ( 'Templates based on theme files can\'t be removed.' ), array ( 'status' => 400 ) );
}
$id = $template -> wp_id ;
$force = ( bool ) $request [ 'force' ];
2021-11-16 13:06:00 -05:00
$request -> set_param ( 'context' , 'edit' );
2021-05-25 10:20:57 -04:00
// If we're forcing, then delete permanently.
if ( $force ) {
$previous = $this -> prepare_item_for_response ( $template , $request );
2021-11-16 13:06:00 -05:00
$result = wp_delete_post ( $id , true );
2021-05-25 10:20:57 -04:00
$response = new WP_REST_Response ();
$response -> set_data (
array (
'deleted' => true ,
'previous' => $previous -> get_data (),
)
);
2021-11-16 13:06:00 -05:00
} else {
// Otherwise, only trash if we haven't already.
if ( 'trash' === $template -> status ) {
return new WP_Error (
'rest_template_already_trashed' ,
__ ( 'The template has already been deleted.' ),
array ( 'status' => 410 )
);
}
2021-05-25 10:20:57 -04:00
Docs: Replace multiple single line comments with multi-line comments.
This changeset updates various comments as per WordPress PHP Inline Documentation Standards.
See https://developer.wordpress.org/coding-standards/inline-documentation-standards/php/#5-inline-comments.
Follow-up to [56174], [56175], [56176], [56177], [56178], [56179], [56180], [56191], [56192], [56193], [56194].
Props costdev, audrasjb.
See #58459.
Built from https://develop.svn.wordpress.org/trunk@56195
git-svn-id: http://core.svn.wordpress.org/trunk@55707 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2023-07-10 19:19:23 -04:00
/*
* ( Note that internally this falls through to `wp_delete_post()`
* if the Trash is disabled . )
*/
2021-11-16 13:06:00 -05:00
$result = wp_trash_post ( $id );
$template -> status = 'trash' ;
$response = $this -> prepare_item_for_response ( $template , $request );
2021-05-25 10:20:57 -04:00
}
2021-11-16 13:06:00 -05:00
if ( ! $result ) {
2021-05-25 10:20:57 -04:00
return new WP_Error (
2021-11-16 13:06:00 -05:00
'rest_cannot_delete' ,
__ ( 'The template cannot be deleted.' ),
array ( 'status' => 500 )
2021-05-25 10:20:57 -04:00
);
}
2021-11-16 13:06:00 -05:00
return $response ;
2021-05-25 10:20:57 -04:00
}
/**
* Prepares a single template for create or update .
*
* @ since 5.8 . 0
*
* @ param WP_REST_Request $request Request object .
Block Hooks: Pass correct context to filters.
The `$context` argument passed to filters such as `hooked_block_types`, `hooked_block`, and `hooked_block_{$hooked_block_type}` allows them to conditionally insert a hooked block. If the anchor block is contained in a template or template part, `$context` will be set to a `WP_Block_Template` object reflecting that template or part.
The aforementioned filters are applied when hooked block insertion is run upon reading a template (or part) from the DB (and before sending the template/part content with hooked blocks inserted over the REST API to the client), but also upon writing to the DB, as that's when the `ignoredHookedBlocks` metadata attribute is set.
Prior to this changeset, the `$context` passed to Block Hooks related filters in the latter case reflected the template/part that was already stored in the database (if any), which is a bug; instead, it needs to reflect the template/part that will result from the incoming `POST` network request that will trigger a database update.
Those incoming changes are encapsulated in the `$changes` argument passed to the `reset_pre_insert_template` and `reset_pre_insert_template_part` filters, respectively, and thus to the `inject_ignored_hooked_blocks_metadata_attributes` function that is hooked to them. `$changes` is of type `stdClass` and only contains the fields that need to be updated. That means that in order to create a `WP_Block_Template` object, a two-step process is needed:
- Emulate what the updated `wp_template` or `wp_template_part` post object in the database will look like by merging `$changes` on top of the existing `$post` object fetched from the DB, or from the theme's block template (part) file, if any.
- Create a `WP_Block_Template` from the resulting object.
To achieve the latter, a new helper method (`_build_block_template_object_from_post_object`) is extracted from the existing `_build_block_template_result_from_post` function. (The latter cannot be used directly as it includes a few database calls that will fail if no post object for the template has existed yet in the database.)
While somewhat complicated to implement, the overall change allows for better separation of concerns and isolation of entities. This is visible e.g. in the fact that `inject_ignored_hooked_blocks_metadata_attributes` no longer requires a `$request` argument, which is reflected by unit tests no longer needing to create a `$request` object to pass to it, thus decoupling the function from the templates endpoint controller.
Unit tests for `inject_ignored_hooked_blocks_metadata_attributes` have been moved to a new, separate file. Test coverage has been added such that now, all three relevant scenarios are covered:
- The template doesn't exist in the DB, nor is there a block theme template file for it.
- The template doesn't exist in the DB, but there is a block theme template file for it.
- The template already exists in the DB.
Those scenarios also correspond to the logical branching inside `WP_REST_Templates_Controller::prepare_item_for_database`, which is where `inject_ignored_hooked_blocks_metadata_attributes` gets its data from.
Props tomjcafferkey, bernhard-reiter, gziolo, swissspidy.
Fixes #60754.
Built from https://develop.svn.wordpress.org/trunk@57919
git-svn-id: http://core.svn.wordpress.org/trunk@57420 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2024-04-03 11:11:14 -04:00
* @ return stdClass | WP_Error Changes to pass to wp_update_post .
2021-05-25 10:20:57 -04:00
*/
protected function prepare_item_for_database ( $request ) {
$template = $request [ 'id' ] ? get_block_template ( $request [ 'id' ], $this -> post_type ) : null ;
$changes = new stdClass ();
if ( null === $template ) {
$changes -> post_type = $this -> post_type ;
$changes -> post_status = 'publish' ;
$changes -> tax_input = array (
2022-11-11 11:26:12 -05:00
'wp_theme' => isset ( $request [ 'theme' ] ) ? $request [ 'theme' ] : get_stylesheet (),
2021-05-25 10:20:57 -04:00
);
} elseif ( 'custom' !== $template -> source ) {
$changes -> post_name = $template -> slug ;
$changes -> post_type = $this -> post_type ;
$changes -> post_status = 'publish' ;
$changes -> tax_input = array (
'wp_theme' => $template -> theme ,
);
2021-11-29 19:24:27 -05:00
$changes -> meta_input = array (
'origin' => $template -> source ,
);
2021-05-25 10:20:57 -04:00
} else {
$changes -> post_name = $template -> slug ;
$changes -> ID = $template -> wp_id ;
$changes -> post_status = 'publish' ;
}
if ( isset ( $request [ 'content' ] ) ) {
2021-11-16 13:06:00 -05:00
if ( is_string ( $request [ 'content' ] ) ) {
$changes -> post_content = $request [ 'content' ];
} elseif ( isset ( $request [ 'content' ][ 'raw' ] ) ) {
$changes -> post_content = $request [ 'content' ][ 'raw' ];
}
2021-05-25 10:20:57 -04:00
} elseif ( null !== $template && 'custom' !== $template -> source ) {
$changes -> post_content = $template -> content ;
}
if ( isset ( $request [ 'title' ] ) ) {
2021-11-16 13:06:00 -05:00
if ( is_string ( $request [ 'title' ] ) ) {
$changes -> post_title = $request [ 'title' ];
} elseif ( ! empty ( $request [ 'title' ][ 'raw' ] ) ) {
$changes -> post_title = $request [ 'title' ][ 'raw' ];
}
2021-05-25 10:20:57 -04:00
} elseif ( null !== $template && 'custom' !== $template -> source ) {
$changes -> post_title = $template -> title ;
}
if ( isset ( $request [ 'description' ] ) ) {
$changes -> post_excerpt = $request [ 'description' ];
} elseif ( null !== $template && 'custom' !== $template -> source ) {
$changes -> post_excerpt = $template -> description ;
}
Editor: Adds template types, `is_wp_suggestion`, and fallback template content.
This commit improves site editor templates by:
* Adds a post meta `is_wp_suggestion` to templates created from the site editor.
Why? To differentiate the templates created from the post editor in the Template panel in inspector controls and the templates suggested in site editor.
See [https://github.com/WordPress/gutenberg/pull/41387 Gutenberg PR 41387] for more details.
* Expands the template types that can be added to the site editor to include single custom post type and specific posts templates.
See [https://github.com/WordPress/gutenberg/pull/41189 Gutenberg PR 41189] for more details.
* Adds fallback template content on creation in site editor:
* Introduces `get_template_hierarchy()` to get the template hierarchy for a given template slug to be created.
* Adds a `lookup` route to `WP_REST_Templates_Controller` to get the fallback template content.
See [https://github.com/WordPress/gutenberg/pull/42520 Gutenberg PR 42520] for more details.
* Fixes a typo in default category template's description within `get_default_block_template_types()`.
See [https://github.com/WordPress/gutenberg/pull/42586 Gutenberg PR 42586] for more details.
* Changes field checks from `in_array()` to `rest_is_field_included()` in `WP_REST_Post_Types_Controller`.
* Adds an `icon` field to `WP_REST_Post_Types_Controller`
Follow-up to [53129], [52331], [52275], [52062], [51962], [43087].
Props ntsekouras, spacedmonkey, mamaduka, mburridge, jameskoster, bernhard-reiter, mcsf, hellofromTonya.
See #56467.
Built from https://develop.svn.wordpress.org/trunk@54269
git-svn-id: http://core.svn.wordpress.org/trunk@53828 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2022-09-20 17:21:09 -04:00
if ( 'wp_template' === $this -> post_type && isset ( $request [ 'is_wp_suggestion' ] ) ) {
$changes -> meta_input = wp_parse_args (
array (
'is_wp_suggestion' => $request [ 'is_wp_suggestion' ],
),
$changes -> meta_input = array ()
);
}
2021-11-08 18:10:59 -05:00
if ( 'wp_template_part' === $this -> post_type ) {
if ( isset ( $request [ 'area' ] ) ) {
$changes -> tax_input [ 'wp_template_part_area' ] = _filter_block_template_part_area ( $request [ 'area' ] );
} elseif ( null !== $template && 'custom' !== $template -> source && $template -> area ) {
$changes -> tax_input [ 'wp_template_part_area' ] = _filter_block_template_part_area ( $template -> area );
2023-07-17 10:22:24 -04:00
} elseif ( empty ( $template -> area ) ) {
2021-11-08 18:10:59 -05:00
$changes -> tax_input [ 'wp_template_part_area' ] = WP_TEMPLATE_PART_AREA_UNCATEGORIZED ;
}
}
2021-11-29 19:24:27 -05:00
if ( ! empty ( $request [ 'author' ] ) ) {
$post_author = ( int ) $request [ 'author' ];
if ( get_current_user_id () !== $post_author ) {
$user_obj = get_userdata ( $post_author );
if ( ! $user_obj ) {
return new WP_Error (
'rest_invalid_author' ,
__ ( 'Invalid author ID.' ),
array ( 'status' => 400 )
);
}
}
$changes -> post_author = $post_author ;
}
Block Hooks: Use new Templates Controller filter instead of action.
This changeset adds a new `rest_pre_insert_{$this->post_type}` filter in the `WP_REST_Templates_Controller`, where it is applied to the return value of the `prepare_item_for_database` method. (This is consistent with the `WP_REST_Post_Controller`, where that filter has existed before.)
The new filter is then used to inject hooked blocks into the template (or template part) content received via the endpoint, prior to persisting it to the database.
This supersedes the previous mechanism, which was using the `rest_after_insert_{$this->post_type}` ''action'', from which it performed an additional `wp_update_post` call to update the template (part) content with the hooked blocks injected. The new technique eschews that additional call and the resulting extra revision it created, as well as a problem with regard to duplicated escaping and sanitization, which had caused some special characters to be garbled.
Props tomjcafferkey, gziolo, swissspidy, karolmanijak.
Fixes #60671.
Built from https://develop.svn.wordpress.org/trunk@57790
git-svn-id: http://core.svn.wordpress.org/trunk@57291 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2024-03-07 09:12:11 -05:00
/** This filter is documented in wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php */
return apply_filters ( " rest_pre_insert_ { $this -> post_type } " , $changes , $request );
2021-05-25 10:20:57 -04:00
}
/**
* Prepare a single template output for response
*
* @ since 5.8 . 0
Code Modernization: Fix parameter name mismatches for parent/child classes in `WP_REST_Controller::prepare_item_for_response()`.
In each child and grandchild class, renames the first parameter to match the parent's method signature.
Why? PHP 8 introduces the ability to pass named arguments to function/method calls. This means the child and parent method signatures (i.e. parameter names) need to match.
Changes for readability:
- `@since` clearly specifies the original parameter name and its new name as well as why the change happened.
- In methods longer than a single line, the generic parameter is reassigned to the original parameter restoring it for context for use within the method. An inline comment is added to explain why this reassignment is made.
Follow-up to [38832], [39011], [39015], [39021], [39024], [39025], [39031], [39036], [43519], [43735], [43739], [43768], [46821], [48173], [48242], [49088], [50995], [51003], [51021].
Props jrf, hellofromTonya, sergeybiryukov, azaozz, desrosj, johnbillion.
See #51553.
Built from https://develop.svn.wordpress.org/trunk@51786
git-svn-id: http://core.svn.wordpress.org/trunk@51393 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2021-09-09 14:36:57 -04:00
* @ since 5.9 . 0 Renamed `$template` to `$item` to match parent class for PHP 8 named parameter support .
2023-06-23 02:29:23 -04:00
* @ since 6.3 . 0 Added `modified` property to the response .
2021-05-25 10:20:57 -04:00
*
Code Modernization: Fix parameter name mismatches for parent/child classes in `WP_REST_Controller::prepare_item_for_response()`.
In each child and grandchild class, renames the first parameter to match the parent's method signature.
Why? PHP 8 introduces the ability to pass named arguments to function/method calls. This means the child and parent method signatures (i.e. parameter names) need to match.
Changes for readability:
- `@since` clearly specifies the original parameter name and its new name as well as why the change happened.
- In methods longer than a single line, the generic parameter is reassigned to the original parameter restoring it for context for use within the method. An inline comment is added to explain why this reassignment is made.
Follow-up to [38832], [39011], [39015], [39021], [39024], [39025], [39031], [39036], [43519], [43735], [43739], [43768], [46821], [48173], [48242], [49088], [50995], [51003], [51021].
Props jrf, hellofromTonya, sergeybiryukov, azaozz, desrosj, johnbillion.
See #51553.
Built from https://develop.svn.wordpress.org/trunk@51786
git-svn-id: http://core.svn.wordpress.org/trunk@51393 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2021-09-09 14:36:57 -04:00
* @ param WP_Block_Template $item Template instance .
2021-05-25 10:20:57 -04:00
* @ param WP_REST_Request $request Request object .
2021-12-07 07:20:02 -05:00
* @ return WP_REST_Response Response object .
2021-05-25 10:20:57 -04:00
*/
Coding Standards: Remove redundant ignore annotations, take 5.
The `VariableAnalysis` standard is not used by WP Core.
Follow-up to [50958], [51003], [52049], [52051], [52069], [53072], [54132], [55132], [56363], [56738], [56743], [56751], [56752].
Props jrf.
See #59161.
Built from https://develop.svn.wordpress.org/trunk@56753
git-svn-id: http://core.svn.wordpress.org/trunk@56265 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2023-10-02 07:27:24 -04:00
public function prepare_item_for_response ( $item , $request ) {
2024-07-11 09:40:15 -04:00
/*
* Resolve pattern blocks so they don ' t need to be resolved client - side
* in the editor , improving performance .
*/
2024-06-03 14:32:14 -04:00
$blocks = parse_blocks ( $item -> content );
$blocks = resolve_pattern_blocks ( $blocks );
$item -> content = serialize_blocks ( $blocks );
Code Modernization: Fix parameter name mismatches for parent/child classes in `WP_REST_Controller::prepare_item_for_response()`.
In each child and grandchild class, renames the first parameter to match the parent's method signature.
Why? PHP 8 introduces the ability to pass named arguments to function/method calls. This means the child and parent method signatures (i.e. parameter names) need to match.
Changes for readability:
- `@since` clearly specifies the original parameter name and its new name as well as why the change happened.
- In methods longer than a single line, the generic parameter is reassigned to the original parameter restoring it for context for use within the method. An inline comment is added to explain why this reassignment is made.
Follow-up to [38832], [39011], [39015], [39021], [39024], [39025], [39031], [39036], [43519], [43735], [43739], [43768], [46821], [48173], [48242], [49088], [50995], [51003], [51021].
Props jrf, hellofromTonya, sergeybiryukov, azaozz, desrosj, johnbillion.
See #51553.
Built from https://develop.svn.wordpress.org/trunk@51786
git-svn-id: http://core.svn.wordpress.org/trunk@51393 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2021-09-09 14:36:57 -04:00
// Restores the more descriptive, specific name for use within this method.
$template = $item ;
2021-05-25 10:20:57 -04:00
2021-11-16 13:06:00 -05:00
$fields = $this -> get_fields_for_response ( $request );
// Base fields for every template.
$data = array ();
if ( rest_is_field_included ( 'id' , $fields ) ) {
$data [ 'id' ] = $template -> id ;
}
if ( rest_is_field_included ( 'theme' , $fields ) ) {
$data [ 'theme' ] = $template -> theme ;
}
if ( rest_is_field_included ( 'content' , $fields ) ) {
$data [ 'content' ] = array ();
}
if ( rest_is_field_included ( 'content.raw' , $fields ) ) {
$data [ 'content' ][ 'raw' ] = $template -> content ;
}
if ( rest_is_field_included ( 'content.block_version' , $fields ) ) {
$data [ 'content' ][ 'block_version' ] = block_version ( $template -> content );
}
if ( rest_is_field_included ( 'slug' , $fields ) ) {
$data [ 'slug' ] = $template -> slug ;
}
if ( rest_is_field_included ( 'source' , $fields ) ) {
$data [ 'source' ] = $template -> source ;
2021-05-25 10:20:57 -04:00
}
2021-11-29 19:24:27 -05:00
if ( rest_is_field_included ( 'origin' , $fields ) ) {
$data [ 'origin' ] = $template -> origin ;
}
2021-11-16 13:06:00 -05:00
if ( rest_is_field_included ( 'type' , $fields ) ) {
$data [ 'type' ] = $template -> type ;
}
if ( rest_is_field_included ( 'description' , $fields ) ) {
$data [ 'description' ] = $template -> description ;
}
if ( rest_is_field_included ( 'title' , $fields ) ) {
$data [ 'title' ] = array ();
}
if ( rest_is_field_included ( 'title.raw' , $fields ) ) {
$data [ 'title' ][ 'raw' ] = $template -> title ;
}
if ( rest_is_field_included ( 'title.rendered' , $fields ) ) {
if ( $template -> wp_id ) {
/** This filter is documented in wp-includes/post-template.php */
$data [ 'title' ][ 'rendered' ] = apply_filters ( 'the_title' , $template -> title , $template -> wp_id );
} else {
$data [ 'title' ][ 'rendered' ] = $template -> title ;
}
}
if ( rest_is_field_included ( 'status' , $fields ) ) {
$data [ 'status' ] = $template -> status ;
}
if ( rest_is_field_included ( 'wp_id' , $fields ) ) {
$data [ 'wp_id' ] = ( int ) $template -> wp_id ;
}
2021-05-25 10:20:57 -04:00
2021-11-16 13:06:00 -05:00
if ( rest_is_field_included ( 'has_theme_file' , $fields ) ) {
$data [ 'has_theme_file' ] = ( bool ) $template -> has_theme_file ;
}
2021-11-29 19:24:27 -05:00
if ( rest_is_field_included ( 'is_custom' , $fields ) && 'wp_template' === $template -> type ) {
$data [ 'is_custom' ] = $template -> is_custom ;
}
if ( rest_is_field_included ( 'author' , $fields ) ) {
$data [ 'author' ] = ( int ) $template -> author ;
}
2021-11-16 13:06:00 -05:00
if ( rest_is_field_included ( 'area' , $fields ) && 'wp_template_part' === $template -> type ) {
$data [ 'area' ] = $template -> area ;
}
2023-06-23 02:29:23 -04:00
if ( rest_is_field_included ( 'modified' , $fields ) ) {
$data [ 'modified' ] = mysql_to_rfc3339 ( $template -> modified );
}
2024-01-26 19:07:18 -05:00
if ( rest_is_field_included ( 'author_text' , $fields ) ) {
$data [ 'author_text' ] = self :: get_wp_templates_author_text_field ( $template );
}
if ( rest_is_field_included ( 'original_source' , $fields ) ) {
$data [ 'original_source' ] = self :: get_wp_templates_original_source_field ( $template );
}
2024-09-19 22:07:12 -04:00
if ( rest_is_field_included ( 'plugin' , $fields ) ) {
$registered_template = WP_Block_Templates_Registry :: get_instance () -> get_by_slug ( $template -> slug );
if ( $registered_template ) {
$data [ 'plugin' ] = $registered_template -> plugin ;
}
}
2021-11-16 13:06:00 -05:00
$context = ! empty ( $request [ 'context' ] ) ? $request [ 'context' ] : 'view' ;
$data = $this -> add_additional_fields_to_object ( $data , $request );
$data = $this -> filter_response_by_context ( $data , $context );
// Wrap the data in a response object.
$response = rest_ensure_response ( $data );
2022-07-22 10:00:12 -04:00
if ( rest_is_field_included ( '_links' , $fields ) || rest_is_field_included ( '_embedded' , $fields ) ) {
$links = $this -> prepare_links ( $template -> id );
$response -> add_links ( $links );
if ( ! empty ( $links [ 'self' ][ 'href' ] ) ) {
$actions = $this -> get_available_actions ();
$self = $links [ 'self' ][ 'href' ];
foreach ( $actions as $rel ) {
$response -> add_link ( $rel , $self );
}
2021-05-25 10:20:57 -04:00
}
}
return $response ;
}
2024-01-26 19:07:18 -05:00
/**
* Returns the source from where the template originally comes from .
*
2024-01-29 07:34:18 -05:00
* @ since 6.5 . 0
2024-01-26 19:07:18 -05:00
*
* @ param WP_Block_Template $template_object Template instance .
* @ return string Original source of the template one of theme , plugin , site , or user .
*/
private static function get_wp_templates_original_source_field ( $template_object ) {
if ( 'wp_template' === $template_object -> type || 'wp_template_part' === $template_object -> type ) {
2024-07-11 09:40:15 -04:00
/*
* Added by theme .
* Template originally provided by a theme , but customized by a user .
* Templates originally didn 't have the ' origin ' field so identify
* older customized templates by checking for no origin and a 'theme'
* or 'custom' source .
*/
2024-01-26 19:07:18 -05:00
if ( $template_object -> has_theme_file &&
( 'theme' === $template_object -> origin || (
empty ( $template_object -> origin ) && in_array (
$template_object -> source ,
array (
'theme' ,
'custom' ,
),
true
) )
)
) {
return 'theme' ;
}
// Added by plugin.
2024-09-19 22:07:12 -04:00
if ( 'plugin' === $template_object -> origin ) {
2024-01-26 19:07:18 -05:00
return 'plugin' ;
}
2024-07-11 09:40:15 -04:00
/*
* Added by site .
* Template was created from scratch , but has no author . Author support
* was only added to templates in WordPress 5.9 . Fallback to showing the
* site logo and title .
*/
2024-01-26 19:07:18 -05:00
if ( empty ( $template_object -> has_theme_file ) && 'custom' === $template_object -> source && empty ( $template_object -> author ) ) {
return 'site' ;
}
}
// Added by user.
return 'user' ;
}
/**
* Returns a human readable text for the author of the template .
*
2024-01-29 07:34:18 -05:00
* @ since 6.5 . 0
2024-01-26 19:07:18 -05:00
*
* @ param WP_Block_Template $template_object Template instance .
* @ return string Human readable text for the author .
*/
private static function get_wp_templates_author_text_field ( $template_object ) {
$original_source = self :: get_wp_templates_original_source_field ( $template_object );
switch ( $original_source ) {
case 'theme' :
$theme_name = wp_get_theme ( $template_object -> theme ) -> get ( 'Name' );
return empty ( $theme_name ) ? $template_object -> theme : $theme_name ;
case 'plugin' :
2024-09-19 22:07:12 -04:00
if ( ! function_exists ( 'get_plugins' ) || ! function_exists ( 'get_plugin_data' ) ) {
require_once ABSPATH . 'wp-admin/includes/plugin.php' ;
}
if ( isset ( $template_object -> plugin ) ) {
$plugins = wp_get_active_and_valid_plugins ();
foreach ( $plugins as $plugin_file ) {
$plugin_basename = plugin_basename ( $plugin_file );
// Split basename by '/' to get the plugin slug.
list ( $plugin_slug , ) = explode ( '/' , $plugin_basename );
if ( $plugin_slug === $template_object -> plugin ) {
$plugin_data = get_plugin_data ( $plugin_file );
if ( ! empty ( $plugin_data [ 'Name' ] ) ) {
return $plugin_data [ 'Name' ];
}
break ;
}
}
}
/*
* Fall back to the theme name if the plugin is not defined . That ' s needed to keep backwards
* compatibility with templates that were registered before the plugin attribute was added .
*/
$plugins = get_plugins ();
$plugin_basename = plugin_basename ( sanitize_text_field ( $template_object -> theme . '.php' ) );
if ( isset ( $plugins [ $plugin_basename ] ) && isset ( $plugins [ $plugin_basename ][ 'Name' ] ) ) {
return $plugins [ $plugin_basename ][ 'Name' ];
}
return isset ( $template_object -> plugin ) ?
$template_object -> plugin :
$template_object -> theme ;
2024-01-26 19:07:18 -05:00
case 'site' :
return get_bloginfo ( 'name' );
case 'user' :
$author = get_user_by ( 'id' , $template_object -> author );
if ( ! $author ) {
return __ ( 'Unknown author' );
}
return $author -> get ( 'display_name' );
}
2024-07-10 17:25:11 -04:00
// Fail-safe to return a string should the original source ever fall through.
return '' ;
2024-01-26 19:07:18 -05:00
}
2021-05-25 10:20:57 -04:00
/**
* Prepares links for the request .
*
* @ since 5.8 . 0
*
* @ param integer $id ID .
* @ return array Links for the given post .
*/
protected function prepare_links ( $id ) {
$links = array (
'self' => array (
REST API: Fix issue with Template and Template Part Revision/Autosave REST API controllers.
The Template and Template Part REST API controllers have unique characteristics compared to other post type REST API controllers. They do not rely on integer IDs to reference objects; instead, they use a combination of the theme name and slug of the template, like 'twentytwentyfour//home.' Consequently, when the post types template and template part were introduced in [52062], it led to the registration of REST API endpoints for autosaves and revisions with invalid URL structures.
In this commit, we introduce new functionality to enable custom autosave and revisions endpoints to be registered at the post type level. Similar to the 'rest_controller_class' parameter, developers can now define 'revisions_rest_controller' and 'autosave_rest_controller.' This empowers developers to create custom controllers for these functionalities. Additionally, we introduce a 'late_route_registration' parameter, which proves helpful when dealing with custom URL patterns and regex pattern matching issues.
This commit registers new classes for template and template part autosave and revisions controllers, differentiating them from standard controllers in the following ways:
* The response shape now matches that of the template controller.
* Permission checks align with the template controller.
* A custom URL pattern is introduced to support slug-based identification of templates.
Furthermore, we've updated the utility function '_build_block_template_result_from_post' to support passing revision post objects. This enhancement ensures compatibility with the custom revisions controller.
Props spacedmonkey, revgeorge, andraganescu, hellofromTonya, antonvlasenko, kadamwhite, ironprogrammer, costdev, mukesh27, timothyblynjacobs, adamsilverstein.
Fixes 56922.
Built from https://develop.svn.wordpress.org/trunk@56819
git-svn-id: http://core.svn.wordpress.org/trunk@56331 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2023-10-10 10:05:21 -04:00
'href' => rest_url ( sprintf ( '/%s/%s/%s' , $this -> namespace , $this -> rest_base , $id ) ),
2021-05-25 10:20:57 -04:00
),
'collection' => array (
2022-09-11 14:55:09 -04:00
'href' => rest_url ( rest_get_route_for_post_type_items ( $this -> post_type ) ),
2021-05-25 10:20:57 -04:00
),
'about' => array (
'href' => rest_url ( 'wp/v2/types/' . $this -> post_type ),
),
);
REST API: Fix issue with Template and Template Part Revision/Autosave REST API controllers.
The Template and Template Part REST API controllers have unique characteristics compared to other post type REST API controllers. They do not rely on integer IDs to reference objects; instead, they use a combination of the theme name and slug of the template, like 'twentytwentyfour//home.' Consequently, when the post types template and template part were introduced in [52062], it led to the registration of REST API endpoints for autosaves and revisions with invalid URL structures.
In this commit, we introduce new functionality to enable custom autosave and revisions endpoints to be registered at the post type level. Similar to the 'rest_controller_class' parameter, developers can now define 'revisions_rest_controller' and 'autosave_rest_controller.' This empowers developers to create custom controllers for these functionalities. Additionally, we introduce a 'late_route_registration' parameter, which proves helpful when dealing with custom URL patterns and regex pattern matching issues.
This commit registers new classes for template and template part autosave and revisions controllers, differentiating them from standard controllers in the following ways:
* The response shape now matches that of the template controller.
* Permission checks align with the template controller.
* A custom URL pattern is introduced to support slug-based identification of templates.
Furthermore, we've updated the utility function '_build_block_template_result_from_post' to support passing revision post objects. This enhancement ensures compatibility with the custom revisions controller.
Props spacedmonkey, revgeorge, andraganescu, hellofromTonya, antonvlasenko, kadamwhite, ironprogrammer, costdev, mukesh27, timothyblynjacobs, adamsilverstein.
Fixes 56922.
Built from https://develop.svn.wordpress.org/trunk@56819
git-svn-id: http://core.svn.wordpress.org/trunk@56331 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2023-10-10 10:05:21 -04:00
if ( post_type_supports ( $this -> post_type , 'revisions' ) ) {
$template = get_block_template ( $id , $this -> post_type );
if ( $template instanceof WP_Block_Template && ! empty ( $template -> wp_id ) ) {
$revisions = wp_get_latest_revision_id_and_total_count ( $template -> wp_id );
$revisions_count = ! is_wp_error ( $revisions ) ? $revisions [ 'count' ] : 0 ;
$revisions_base = sprintf ( '/%s/%s/%s/revisions' , $this -> namespace , $this -> rest_base , $id );
$links [ 'version-history' ] = array (
'href' => rest_url ( $revisions_base ),
'count' => $revisions_count ,
);
if ( $revisions_count > 0 ) {
$links [ 'predecessor-version' ] = array (
'href' => rest_url ( $revisions_base . '/' . $revisions [ 'latest_id' ] ),
'id' => $revisions [ 'latest_id' ],
);
}
}
}
2021-05-25 10:20:57 -04:00
return $links ;
}
/**
* Get the link relations available for the post and current user .
*
* @ since 5.8 . 0
*
2021-07-01 17:02:57 -04:00
* @ return string [] List of link relations .
2021-05-25 10:20:57 -04:00
*/
protected function get_available_actions () {
$rels = array ();
$post_type = get_post_type_object ( $this -> post_type );
if ( current_user_can ( $post_type -> cap -> publish_posts ) ) {
$rels [] = 'https://api.w.org/action-publish' ;
}
if ( current_user_can ( 'unfiltered_html' ) ) {
$rels [] = 'https://api.w.org/action-unfiltered-html' ;
}
return $rels ;
}
/**
* Retrieves the query params for the posts collection .
*
* @ since 5.8 . 0
2021-11-08 18:10:59 -05:00
* @ since 5.9 . 0 Added `'area'` and `'post_type'` .
2021-05-25 10:20:57 -04:00
*
* @ return array Collection parameters .
*/
public function get_collection_params () {
return array (
2021-11-16 13:06:00 -05:00
'context' => $this -> get_context_param ( array ( 'default' => 'view' ) ),
2021-11-08 18:10:59 -05:00
'wp_id' => array (
2021-05-25 10:20:57 -04:00
'description' => __ ( 'Limit to the specified post id.' ),
'type' => 'integer' ,
),
2021-11-08 18:10:59 -05:00
'area' => array (
'description' => __ ( 'Limit to the specified template part area.' ),
'type' => 'string' ,
),
'post_type' => array (
'description' => __ ( 'Post type to get the templates for.' ),
'type' => 'string' ,
),
2021-05-25 10:20:57 -04:00
);
}
/**
* Retrieves the block type ' schema , conforming to JSON Schema .
*
* @ since 5.8 . 0
2021-11-08 18:10:59 -05:00
* @ since 5.9 . 0 Added `'area'` .
2021-05-25 10:20:57 -04:00
*
* @ return array Item schema data .
*/
public function get_item_schema () {
if ( $this -> schema ) {
return $this -> add_additional_fields_schema ( $this -> schema );
}
$schema = array (
'$schema' => 'http://json-schema.org/draft-04/schema#' ,
'title' => $this -> post_type ,
'type' => 'object' ,
'properties' => array (
2024-01-26 19:07:18 -05:00
'id' => array (
2021-05-25 10:20:57 -04:00
'description' => __ ( 'ID of template.' ),
'type' => 'string' ,
'context' => array ( 'embed' , 'view' , 'edit' ),
'readonly' => true ,
),
2024-01-26 19:07:18 -05:00
'slug' => array (
2021-05-25 10:20:57 -04:00
'description' => __ ( 'Unique slug identifying the template.' ),
'type' => 'string' ,
'context' => array ( 'embed' , 'view' , 'edit' ),
'required' => true ,
'minLength' => 1 ,
2023-02-07 18:47:23 -05:00
'pattern' => '[a-zA-Z0-9_\%-]+' ,
2021-05-25 10:20:57 -04:00
),
2024-01-26 19:07:18 -05:00
'theme' => array (
2021-05-25 10:20:57 -04:00
'description' => __ ( 'Theme identifier for the template.' ),
'type' => 'string' ,
'context' => array ( 'embed' , 'view' , 'edit' ),
),
2024-01-26 19:07:18 -05:00
'type' => array (
2021-11-16 13:06:00 -05:00
'description' => __ ( 'Type of template.' ),
'type' => 'string' ,
'context' => array ( 'embed' , 'view' , 'edit' ),
),
2024-01-26 19:07:18 -05:00
'source' => array (
2021-05-25 10:20:57 -04:00
'description' => __ ( 'Source of template' ),
'type' => 'string' ,
'context' => array ( 'embed' , 'view' , 'edit' ),
'readonly' => true ,
),
2024-01-26 19:07:18 -05:00
'origin' => array (
2021-11-29 19:24:27 -05:00
'description' => __ ( 'Source of a customized template' ),
'type' => 'string' ,
'context' => array ( 'embed' , 'view' , 'edit' ),
'readonly' => true ,
),
2024-01-26 19:07:18 -05:00
'content' => array (
2021-05-25 10:20:57 -04:00
'description' => __ ( 'Content of template.' ),
'type' => array ( 'object' , 'string' ),
'default' => '' ,
'context' => array ( 'embed' , 'view' , 'edit' ),
2021-11-16 13:06:00 -05:00
'properties' => array (
'raw' => array (
'description' => __ ( 'Content for the template, as it exists in the database.' ),
'type' => 'string' ,
'context' => array ( 'view' , 'edit' ),
),
'block_version' => array (
'description' => __ ( 'Version of the content block format used by the template.' ),
'type' => 'integer' ,
'context' => array ( 'edit' ),
'readonly' => true ,
),
),
2021-05-25 10:20:57 -04:00
),
2024-01-26 19:07:18 -05:00
'title' => array (
2021-05-25 10:20:57 -04:00
'description' => __ ( 'Title of template.' ),
'type' => array ( 'object' , 'string' ),
'default' => '' ,
'context' => array ( 'embed' , 'view' , 'edit' ),
2021-11-16 13:06:00 -05:00
'properties' => array (
'raw' => array (
'description' => __ ( 'Title for the template, as it exists in the database.' ),
'type' => 'string' ,
'context' => array ( 'view' , 'edit' , 'embed' ),
),
'rendered' => array (
'description' => __ ( 'HTML title for the template, transformed for display.' ),
'type' => 'string' ,
'context' => array ( 'view' , 'edit' , 'embed' ),
'readonly' => true ,
),
),
2021-05-25 10:20:57 -04:00
),
2024-01-26 19:07:18 -05:00
'description' => array (
2021-05-25 10:20:57 -04:00
'description' => __ ( 'Description of template.' ),
'type' => 'string' ,
'default' => '' ,
'context' => array ( 'embed' , 'view' , 'edit' ),
),
2024-01-26 19:07:18 -05:00
'status' => array (
2021-05-25 10:20:57 -04:00
'description' => __ ( 'Status of template.' ),
'type' => 'string' ,
2021-11-16 13:06:00 -05:00
'enum' => array_keys ( get_post_stati ( array ( 'internal' => false ) ) ),
2021-05-25 10:20:57 -04:00
'default' => 'publish' ,
'context' => array ( 'embed' , 'view' , 'edit' ),
),
2024-01-26 19:07:18 -05:00
'wp_id' => array (
2021-05-25 10:20:57 -04:00
'description' => __ ( 'Post ID.' ),
'type' => 'integer' ,
'context' => array ( 'embed' , 'view' , 'edit' ),
'readonly' => true ,
),
2024-01-26 19:07:18 -05:00
'has_theme_file' => array (
2021-05-25 10:20:57 -04:00
'description' => __ ( 'Theme file exists.' ),
'type' => 'bool' ,
'context' => array ( 'embed' , 'view' , 'edit' ),
'readonly' => true ,
),
2024-01-26 19:07:18 -05:00
'author' => array (
2021-11-29 19:24:27 -05:00
'description' => __ ( 'The ID for the author of the template.' ),
'type' => 'integer' ,
'context' => array ( 'view' , 'edit' , 'embed' ),
),
2024-01-26 19:07:18 -05:00
'modified' => array (
2023-06-23 02:29:23 -04:00
'description' => __ ( " The date the template was last modified, in the site's timezone. " ),
'type' => 'string' ,
'format' => 'date-time' ,
'context' => array ( 'view' , 'edit' ),
'readonly' => true ,
),
2024-01-26 19:07:18 -05:00
'author_text' => array (
'type' => 'string' ,
'description' => __ ( 'Human readable text for the author.' ),
'readonly' => true ,
'context' => array ( 'view' , 'edit' , 'embed' ),
),
'original_source' => array (
'description' => __ ( 'Where the template originally comes from e.g. \'theme\'' ),
'type' => 'string' ,
'readonly' => true ,
'context' => array ( 'view' , 'edit' , 'embed' ),
'enum' => array (
'theme' ,
'plugin' ,
'site' ,
'user' ,
),
),
2021-05-25 10:20:57 -04:00
),
);
2021-11-29 19:24:27 -05:00
if ( 'wp_template' === $this -> post_type ) {
$schema [ 'properties' ][ 'is_custom' ] = array (
'description' => __ ( 'Whether a template is a custom template.' ),
'type' => 'bool' ,
'context' => array ( 'embed' , 'view' , 'edit' ),
'readonly' => true ,
);
2024-09-19 22:07:12 -04:00
$schema [ 'properties' ][ 'plugin' ] = array (
'type' => 'string' ,
'description' => __ ( 'Plugin that registered the template.' ),
'readonly' => true ,
'context' => array ( 'view' , 'edit' , 'embed' ),
);
2021-11-29 19:24:27 -05:00
}
2021-11-08 18:10:59 -05:00
if ( 'wp_template_part' === $this -> post_type ) {
$schema [ 'properties' ][ 'area' ] = array (
'description' => __ ( 'Where the template part is intended for use (header, footer, etc.)' ),
'type' => 'string' ,
'context' => array ( 'embed' , 'view' , 'edit' ),
);
}
2021-05-25 10:20:57 -04:00
$this -> schema = $schema ;
return $this -> add_additional_fields_schema ( $this -> schema );
}
}