Generate RAML documents from annotated php source files.
RAML is a modeling language for describing RESTful APIs and is a supplementary document that comes alongside with the API. To avoid a drifting apart of the implementation and it's documentation over time this library provides the ability to generate RAML documents based on the annotated source code files implementing the API.
This does not solve the problem completely, because the annotations need to be kept up to date as well. In return they are "nearer" coupled with the code and located in the same file, which hopefully makes it more likely for them to get updated at all.
The process of generating RAML documents consists of two processes: First, the parsing of source code files and looking for suitable annotations in file- and method-level docblocks. Secondly, the creation of a new RAML document based on the data the parser found in the source code files.
To find relevant RAML annotations in source files, use the Parser class to have them parsed.
$annotations = Parser::process(
'/path/to/class.php'
);
The process method returns a FileAnnotations object, which returns the annotations in docblocks on file-, class-, member-, method- and property-level.
Supported annotations on file-level are:
Title
The title of the REST API. The title annotation is also used to merge related source files, which is necessary if the code which implements the API is organized in multiple files.
Version
The version of the REST API.
BaseUri
The base URI, where all resource request are based on. May contain variable parts like they are documented in the RAML specification, e. g. "https://api.example.com/{version}".
MediaType
The media type, the response is encoded, e. g. "application/json".
Protocol
The protocol that is used to access the API, e. g "HTTPS". If more than one protocol is supported, add as many protocol annotation tags as needed.
SecurityScheme
Describing the supported security schemes. If more than one security scheme is supported, add as many annotation tags as needed. Example for basic authentication: name="basic", type="Basic Authentication".
An example of a file-level docblock containing RAML specific annotations:
/**
* @\raml\annotations\Title(title="Karmap Core API")
* @\raml\annotations\Version(version="v1")
* @\raml\annotations\BaseUri(baseUri="https://api.core.karmap.com/{version}")
* @\raml\annotations\MediaType(mediaType="application/json")
* @\raml\annotations\Protocol(protocol="HTTPS")
* @\raml\annotations\SecurityScheme(name="basic", type="Basic Authentication")
*/
/**
* Class-level docblock
*/
class AClass {
...
}
After specifying general information about the REST API we now proceed to describing the operations the API consists of. In most cases a REST API call will be mapped to a class function, a method. Therefor methods need to be annotated by the following tags supported on method-level:
Resource
Specifies the part of the URI after the base URI, that is used to name a resource, e. g. "/albums".
HttpVerb
A HTTP verb, that is used to access a resource, e. g. "POST".
Description
Description of the resource or operation.
SecuredBy
Use the name of one of the security schemes here, that were defined in a security scheme tag on file level, e. g. "basic".
Parameter
Use multiple parameter annotation tags to specify all parameters, that are necessary for an operation on the REST API. See the following source code snippet for an example.
...
class AClass {
....
/**
* @\raml\annotations\Resource(resource="/anonymousInterpretations")
* @\raml\annotations\HttpVerb(verb="POST")
* @\raml\annotations\Description(description="Create anonymous interpretation")
* @\raml\annotations\SecuredBy(scheme="basic")
* @\raml\annotations\Parameter(
* parameterType="form",
* name="clientCode",
* displayName="Client code",
* description="Code identifying the client",
* type="string",
* pattern="^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$",
* required="true",
* example="b4762505-b108-46a0-a4c7-f79c4b224b58"
* )
*/
public function doSomething(...) {
}
...
}
To generate a RAML document, use the Generator class.