-
-
Notifications
You must be signed in to change notification settings - Fork 231
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
87 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,87 @@ | ||
|
||
# Upgrade to 4.x | ||
|
||
This document describes how you can upgrade a 3.x installation to the 4.x version. | ||
Before upgrading the first step is to make a backup of your existing Fusio database to be | ||
able to restore your database in case there is a problem. Fusio 4.x requires PHP 8.1 as | ||
minimum version, so you also need to update your PHP version if needed. | ||
|
||
## Upgrade | ||
|
||
Download the current Fusio version from [GitHub](https://github.com/apioo/fusio/tags) and place it | ||
in a clean new folder. Then configure the database credentials of your old Fusio installation at | ||
the `.env` file, in the new version we have only a single `APP_CONNECTION` parameter. Copy also all | ||
existing env settings from your old installation. Now you can run the `migrate` command (which was | ||
previously the `install` command), which transforms your existing database to the new schema. | ||
|
||
If this was successful you should be already able to login to the new Fusio backend. In the new 4.x | ||
version the route entity was replaced by an operation entity. This means at this stage all your | ||
previously defined routes are currently not migrated. | ||
|
||
The next step depends on your Fusio setup, if you use the deploy mechanism and you have all your | ||
route configurations in `.yaml` files, then it is recommended to only migrate those yaml files and | ||
then call the `deploy` command, so that Fusio automatically creates the operations in the new format. | ||
If you dont use the deloy mechanism you can run the upgrade command to migrate all entries from the | ||
`fusio_routes` table to the new `fusio_operation` table. | ||
|
||
### Upgrade command | ||
|
||
The upgrade command can be executed through the following command: | ||
|
||
``` | ||
php bin/fusio system:upgrade | ||
``` | ||
|
||
This command basically reads all entries from the old `fusio_routes`, `fusio_routes_method` and | ||
`fusio_routes_response` tables and migrates them to the new `fusio_operation` table. | ||
|
||
### Deploy files | ||
|
||
In your `.fusio.yml` file you need to add an operation key. | ||
|
||
```yaml | ||
operation: !include resources/operation.yaml | ||
``` | ||
The `operation.yaml` file then contains all operations. Previosuly in the routes files the key was | ||
the path to a resource, now the key is the name of an operation i.e. | ||
|
||
```yaml | ||
"explore.getAll": !include resources/operations/explore/collection.yaml | ||
"document.getAll": !include resources/operations/document/collection.yaml | ||
"document.get": !include resources/operations/document/entity.yaml | ||
"document.create": !include resources/operations/document/create.yaml | ||
"document.update": !include resources/operations/document/update.yaml | ||
"document.delete": !include resources/operations/document/delete.yaml | ||
``` | ||
|
||
The detail file of an operation describes all operation properties. The important difference is that | ||
at the route detail file you have described multiple request methods for an endpoint i.e. `GET` and | ||
`POST` now you have always one operation for a specific request method. | ||
|
||
```yaml | ||
scopes: ["document"] | ||
stability: 1 | ||
description: "Creates a new document" | ||
httpMethod: POST | ||
httpPath: "/document/:user" | ||
httpCode: 201 | ||
incoming: "App\\Model\\DocumentCreate" | ||
outgoing: "App\\Model\\Message" | ||
throws: | ||
500: "App\\Model\\Message" | ||
action: "App\\Action\\Document\\Create" | ||
``` | ||
|
||
### Migrate actions | ||
|
||
In the 4.x version we have changed our internal DI container to the [Symfony DIC](https://github.com/symfony/dependency-injection) | ||
component. In general your action should still work but there is a new `resources/container.php` file | ||
which describes how to load your services. | ||
|
||
It is now recommended to only implement the `Fusio\Engine\ActionInterface` instead of the `Fusio\Engine\ActionAbstract` | ||
at your action. Through this you can better control the exact dependencies which are required for | ||
your action. The `ActionAbstract` is only needed if you want to select and configure the action at the backend. | ||
|
||
|
||
|