routes/wp-importer
Ce contenu n’est pas encore disponible dans votre langue.
Variables
'Read the “', Variables, '” section'const POST: APIRoute;
Defined in: studiocms/packages/studiocms_devapps/src/routes/wp-importer.ts:33
Handles the POST request for importing data from a WordPress site.
The context of the API request.
The incoming request object.
The response object indicating the result of the import operation.
The function expects the request to contain form data with the following fields:
url
: The URL of the WordPress site to import data from.type
: The type of data to import (e.g., ‘pages’, ‘posts’, ‘settings’).useBlogPlugin
(optional): A boolean value indicating whether to use the blog plugin for importing posts.
The function performs the following steps:
- Extracts the form data from the request.
- Validates the presence and types of the
url
andtype
fields. - Logs the import operation details.
- Based on the
type
field, calls the appropriate import function:importPagesFromWPAPI
for importing pages.importPostsFromWPAPI
for importing posts, optionally using the blog plugin.importSettingsFromWPAPI
for importing settings.
- Returns a response indicating success or failure.
If the type
field contains an invalid value.