Stars: 126
Forks: 19
Pull Requests: 70
Issues: 84
Watchers: 10
Last Updated: 2023-06-14 13:19:29
REST API application generator for Yii2, openapi 3.0 YAML -> Yii2
License: MIT License
Languages: PHP, Makefile, Dockerfile
REST API application generator for Yii2, openapi 3.0 YAML -> Yii2.
Base on Gii, the Yii Framework Code Generator.
A code generator for OpenAPI and Yii Framework based PHP API application.
Input: OpenAPI 3.0 YAML or JSON (via cebe/php-openapi)
Output: Yii Framework Application with Controllers, Models, database schema
Currently available features:
composer require cebe/yii2-openapi:^2.0@beta
You can use this package in your existing application or start a new project using the yii2-app-api application template. For usage of the template, see instructions in the template repo readme.
In your existing Yii application config (works for console as well as web):
<?php
$config = [
// ... this is your application config ...
];
if (YII_ENV_DEV) {
// enable Gii module
$config['bootstrap'][] = 'gii';
$config['modules']['gii'] = [
'class' => \yii\gii\Module::class,
'generators' => [
// add ApiGenerator to Gii module
'api' => \cebe\yii2openapi\generator\ApiGenerator::class,
// --------- OR ---------
// to disable generation of migrations files or with default config change
'api' => [
'class' => \cebe\yii2openapi\generator\ApiGenerator::class,
'generateMigrations' => false, # this config can also be applied in CLI command
],
],
];
}
return $config;To use the web generator, open index.php?r=gii and select the REST API Generator.
On console you can run the generator with ./yii gii/api --openApiPath=@app/openapi.yaml. Where @app/openapi.yaml should be the absolute path to your OpenAPI spec file. This can be JSON as well as YAML (see also cebe/php-openapi for supported formats).
Run ./yii gii/api --help for all options. Example: Disable generation of migrations files ./yii gii/api --generateMigrations=0
See Petstore example for example OpenAPI spec.
This library understands the following extensions to the OpenAPI spec:
x-fakerYou may specify custom PHP code for generating fake data for a property:
Post:
properties:
id:
type: integer
tags:
type: array
items:
type: string
example: ['one', 'two']
x-faker: "$faker->randomElements(['one', 'two', 'three', 'four'])"x-tableSpecify the table name for a Schema that defines a model which is stored in the database.
You can generate non-db model based on \yii\base\Model without migrations by setting x-table: false
x-pkExplicitly specify primary key name for table, if it is different from "id"
Post:
x-table: posts
x-pk: uid
properties:
uid:
type: integer
title:
type: stringx-db-typeExplicitly specify the database type for a column. (MUST contain only real DB type! (json, jsonb, uuid, varchar etc.)).
If x-db-type is set to false, property will be processed as virtual;
It will be added in model as public property, but skipped for migrations generation.
Example values of x-db-type are:
false (boolean false)Such values are not allowed:
int null default null after low_price (null and default will be handled by nullable and default keys respectively)seti, ADD INDEX t (w)x-indexesSpecify table indexes
Post:
x-table: posts
x-indexes:
- 'visible,publish_date'
- 'unique:title' #for unique attributes also unique validation check will be added
- 'gist:metadata' #for postgres will generate index using GIST index type
properties:
id:
type: integer
x-db-type: INTEGER PRIMARY KEY AUTO_INCREMENT
title:
type: string
visible:
type: boolean
publish_date:
type: string
format: date
metadata:
type: object
x-db-type: JSON
default: '{}' x-db-default-expressionAbility to provide default value by database expression
created_at:
readOnly: true
type: string
format: datetime
x-db-type: datetime
nullable: false
x-db-default-expression: current_timestamp()Note: If both default and x-db-default-expression are present then default will be considered.
created_at:
readOnly: true
type: string
format: datetime
x-db-type: datetime
nullable: false
x-db-default-expression: current_timestamp() # this will be ignored
default: "2011-11-11" # this will be consideredAlso see: https://dev.mysql.com/doc/refman/8.0/en/data-type-defaults.html
x-fk-on-deleteAllow to set foreign key constraint in migrations for ON DELETE event of row in database table. Example:
components:
schemas:
User:
type: object
description: x on-x (update|delete) foreign key constraint
properties:
id:
type: integer
name:
type: string
Post:
type: object
description: x on-x (update|delete) foreign key constraint
properties:
id:
type: integer
title:
type: string
user:
allOf:
- $ref: '#/components/schemas/User'
- x-fk-on-update: CASCADE
user_2:
allOf:
- $ref: '#/components/schemas/User'
- x-fk-on-update: CASCADE
- x-fk-on-delete: SET NULL
user_3:
allOf:
- $ref: '#/components/schemas/User'
- x-fk-on-delete: SET NULL
user_4:
$ref: '#/components/schemas/User' # without any constraintsx-fk-on-updateAllow to set foreign key constraint in migrations for ON UPDATE event of row in database table. For example, see above section for x-fk-on-delete.
There are two ways for define many-to-many relations:
property name for many-to-many relation should be equal lower-cased, pluralized related schema name
referenced schema should contains mirrored reference to current schema
migration for junction table can be generated automatically - table name should be [pluralized, lower-cased schema_name1]2[pluralized, lower-cased schema name2], in alphabetical order; For example, for schemas Post and Tag - table should be posts2tags, for schemas Post and Attachement - table should be attachments2posts
Post:
properties:
...
tags:
type: array
items:
$ref: '#/components/schemas/Tag'
Tag:
properties:
...
posts:
type: array
items:
$ref: '#/components/schemas/Post'
This way allowed creating multiple many-to-many relations between to models
# Model TeamMembers with table team_members will be generated with columns team_id, user_id and role
junction_TeamMembers:
team:
$ref: '#/components/schemas/Team'
user:
$ref: '#/components/schemas/User'
role:
type: string
Team:
properties:
...
team_members:
type: array
items:
$ref: '#/components/schemas/junction_TeamMembers'
User:
properties:
...
memberships: #You absolutely free with naming for relationship attributes
type: array
items:
$ref: '#/components/schemas/junction_TeamMembers'
NOT NULL constraintsNOT NULL in DB migrations is determined by nullable and required properties of the OpenAPI schema.
e.g. attribute = 'my_property'.
NULL: ExampleSchema:
properties:
my_property:
type: stringNOT NULL ExampleSchema:
required:
- my_property
properties:
my_property:
type: stringNULL in this case: ExampleSchema:
required:
- my_property
properties:
my_property:
type: string
nullable: trueNOT NULL in this case: test_table:
required:
properties:
my_property:
type: string
nullable: falseenum (#enum)It works on all 3 DB: MySQL, MariaDb and PgSQL.
test_table:
properties:
my_property:
enum:
- one
- two
- threeNote: Change in enum values are not very simple. For Mysql and Mariadb, migrations will be generated but in many cases custom modification in it are required. For Pgsql migrations for change in enum values will not be generated. It should be handled manually.
numeric (#numeric, #MariaDb)precision-default = 10 scale-default = 2
test_table:
properties:
my_property:
x-db-type: decimal(12,4)DB-Result = decimal(12,4)
test_table:
properties:
my_property:
x-db-type: decimal(12)DB-Result = decimal(12,2)
test_table:
properties:
my_property:
x-db-type: decimalDB-Result = decimal(10,2)
When generating code from an OpenAPI description there are many possible ways to achive a fitting result. Thus there are some assumptions and limitations that are currently applied to make this work. Here is a (possibly incomplete) list:
id is considered as Primary Key by this library and it is automatically handled by DB/Yii; so remove it from validation rules()
x-pk OpenAPI extension (see below) but it may not be work correctly in all cases, please report bugs if you find them.Other things to keep in mind:
When adding new fields in the API models, new migrations will be generated to add these fields to the table. For a project that is already in production, it should be considered to adjust the generated migration to add default values for existing data records.
One case where this is important is the addition of a new column with NOT NULL contraint, which does not provide a default value.
Such a migration will fail when the table is not empty:
$this->addColumn('{{%company}}', 'name', $this->string(128)->notNull());Fails on a PostgreSQL database with
add column name string(128) NOT NULL to table {{%company}} ...Exception: SQLSTATE[23502]: Not null violation: 7 ERROR: column "name" contains null values
The solution would be to create the column, allowing NULL, set the value to a default and add the null constraint later.
$this->addColumn('{{%company}}', 'name', $this->string(128)->null());
$this->update('{{%company}}', ['name' => 'No name']);
$this->alterColumn('{{%company}}', 'name', $this->string(128)->notNull());Gii Generator Form:
Generated files:
To contribute or play around, steps to set up this project up locally are in CONTRIBUTING.md.
Need help with your API project?
Professional support, consulting as well as software development services are available:
https://www.cebe.cc/en/contact
Development of this library is sponsored by cebe.☁️ "Your Professional Deployment Platform".