api.video is the video infrastructure for product builders. Lightning fast video APIs for integrating, scaling, and managing on-demand & low latency live streaming features in your app.
API client generation tool based on OpenAPI Generator. Generates client source code in several languages based on mustache templates.
- Java 1.8+
 - Maven
 
To generate an API client:
mvn package -P [profile]To see the list of available profiles, see the "profile" column in the table of supported languages.
| Language | Profile | CI tests | CI package release | Repository | 
|---|---|---|---|---|
| Java | java | ✅ | ✅ | java-api-client | 
| Android | android | ✅ | ✅ | android-api-client | 
| Android | android-uploader | ✅ | ✅ | android-video-uploader | 
| NodeJs/Typescript | nodejs | ✅ | ✅ | nodejs-api-client | 
| Php | php | ✅ | - | php-api-client | 
| C# | csharp | ✅ | ✅ | csharp-api-client | 
| Go | go | ✅ | - | go-api-client | 
| Python | python | ✅ | ✅ | python-api-client | 
| Swift5 | swift5 | ✅ | ✅ | ios-api-client | 
| Swift5 | swift5-uploader | ✅ | ✅ | ios-video-uploader | 
Mustache template files can be found in templates/[profile].
Templates are based on default OpenAPI Generator templates.
Each target language has it's own configuration file located at config/[profile].yaml.
apiPackage: video.api.client.api.clients # API files output folder
modelPackage: folder.subfolder.subsubfolder # model output folder
files:
  page.mustache:
    folder: src/main/java/video/api/client/api/models
    destinationFilename: Page.java
  ApiVideoAuthInterceptor.mustache:
    folder: src/main/java/video/api/client/api/auth
    destinationFilename: ApiVideoAuthInterceptor.java
  EmptyArrayFixTypeAdapterFactory.mustache:
    folder: src/main/java/video/api/client/api
    destinationFilename: EmptyArrayFixTypeAdapterFactory.java
  UploadChunkRequestBody.mustache:
    folder: src/main/java/video/api/client/api/upload
    destinationFilename: UploadChunkRequestBody.java
  UploadProgressListener.mustache:
    folder: src/main/java/video/api/client/api/upload
    destinationFilename: UploadProgressListener.java
  ApiVideoClient.mustache:
    folder: src/main/java/video/api/client
    destinationFilename: ApiVideoClient.java
  pagination.md.mustache:
    folder: docs
    destinationFilename: Pagination.md
  post-generate.sh:
    destinationFilename: post-generate.sh
- https://openapi-generator.tech/docs/globals/
 - https://openapi-generator.tech/docs/configuration/
 - https://openapi-generator.tech/docs/customization#user-defined-templates
 - https://github.com/OpenAPITools/openapi-generator/blob/master/modules/openapi-generator/src/main/java/org/openapitools/codegen/DefaultCodegen.java#L106-L111
 
Some target language require tweaks that can't be done through the config file or the templates. In this case, a subclass of the generator is created at apivideo-generator/src/main/java/video/api/client/generator/[pascal-case-profile].java.
We recommend the usage of a dedicated Java IDE to work on the development of this project.
Especially if you want to tweak one of the language specific Codegen written in Java you'll need to navigate through the class hierarchy.
A CodegenConfigurator instance is built from configurations coming from:
- the 
CLI - a 
ymlconfiguration file. 
This CodegenConfigurator is then turned into a ClientOptInput (via the toClientOptInput method) to be fed to a Generator.
This is when our custom codegen, which implements
CodegenConfiginterface is involved.
The generation is actually done by the generate method of the DefaultGenerator class.
This method will mainly :
processUserDefinedTemplatesgenerateModelsgiven the list offilesand availablemodelsgenerateApisgiven the list offilesand availableoperationsgenerateSupportingFilesgiven availablemodelsandoperations
The profile configuration is first read from pom.xml, see java for example :
<profile>
    <id>java</id>
    <properties>
        <folder>java</folder>
        <generatorName>video.api.client.generator.Java</generatorName>
        <postGenerationScript>./post-generate.sh</postGenerationScript>
    </properties>
</profile>When generating a client with the following command:
mvn package -P [profile]
Internally the generate command of the openapi-generator-cli run with the following options:
<configuration>
    <inputSpec>oas_apivideo.yaml</inputSpec>
    <generatorName>${generatorName}</generatorName>
    <templateDirectory>${project.basedir}/templates/${folder}</templateDirectory>
    <configurationFile>${project.basedir}/config/${folder}.yaml</configurationFile>
    <output>generated-clients/${folder}</output>
</configuration>The yml config file -- is loaded in the CodegenConfigurator class via the fromFile method.
A class which manages the contextual configuration for code generation. This includes configuring the generator, templating, and the workflow which orchestrates these.
This helper also enables the deserialization of
GeneratorSettingsvia application-specific Jackson JSON usage (seeDynamicSettings.
Each entry under the files key of the yml configuration file is used to build a TemplateDefinition object.
If not specified otherwise the file is treated as a SupportingFile.
