All Downloads are FREE. Search and download functionalities are using the official Maven repository.

php.api.mustache Maven / Gradle / Ivy

The newest version!
apiClient = $apiClient;
	}

  {{#operation}}
	/**
	 * {{{nickname}}}
   *
	 * {{{summary}}}
   {{#allParams}}* {{paramName}}, {{dataType}}: {{description}} {{^optional}}(required){{/optional}}{{#optional}}(optional){{/optional}}
   * {{/allParams}}
	 * @return {{{returnType}}}
	 */

   public function {{nickname}}({{#allParams}}${{paramName}}{{#optional}}=null{{/optional}}{{#hasMore}}, {{/hasMore}}{{/allParams}}) {

  		// parse inputs
  		$resourcePath = "{{path}}";
  		$resourcePath = str_replace("{format}", "json", $resourcePath);
  		$method = "{{httpMethod}}";
      $queryParams = array();
      $headerParams = array();
      $formParams = array();
      $headerParams['Accept'] = '{{#produces}}{{mediaType}}{{#hasMore}},{{/hasMore}}{{/produces}}';
      $headerParams['Content-Type'] = '{{#consumes}}{{mediaType}}{{#hasMore}},{{/hasMore}}{{/consumes}}';

      {{#queryParams}}// query params
      if(${{paramName}} !== null) {
  		  $queryParams['{{paramName}}'] = $this->apiClient->toQueryValue(${{paramName}});
  		}{{/queryParams}}
      {{#headerParams}}// header params
      if(${{paramName}} !== null) {
  		 	$headerParams['{{paramName}}'] = $this->apiClient->toHeaderValue(${{paramName}});
  		}{{/headerParams}}
      {{#pathParams}}// path params
      if(${{paramName}} !== null) {
  			$resourcePath = str_replace("{" . "{{paramName}}" . "}",
  			                            $this->apiClient->toPathValue(${{paramName}}), $resourcePath);
  		}{{/pathParams}}
      {{#formParams}}
      if (${{paramName}} !== null) {
        $formParams[{{paramName}}] = {{#isFile}}'@' . {{/isFile}}${{paramName}};
      }{{/formParams}}
      {{#bodyParams}}// body params
      $body = null;
      if (isset(${{paramName}})) {
        $body = ${{paramName}};
      }{{/bodyParams}}

      $body = $body ?: $formParams;

      if (strpos($headerParams['Content-Type'], "application/x-www-form-urlencoded") > -1) {
        $body = http_build_query($body);
      }

  		// make the API Call
  		$response = $this->apiClient->callAPI($resourcePath, $method,
  		                                      $queryParams, $body,
  		                                      $headerParams);

      {{#returnType}}if(! $response) {
        return null;
      }

  		$responseObject = $this->apiClient->deserialize($response,
  		                                                '{{returnType}}');
  		return $responseObject;{{/returnType}}
  }
  {{/operation}}
{{newline}}
{{/operations}}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy