forked from loafle/openapi-generator-original
Bump requirements - add Symfony 7 support - remove support php < 8.2 (EOL) - remove symfony < 6.4 support Bug Fix - add missing $security{{name}} variable when using Bearer Auth Misc - getContentType method is deprecated; use getContentTypeFormat - use match instead of switch for simple assignments - remove default depth param from json_encode call - make data provider static (phpunit)
669 lines
22 KiB
PHP
669 lines
22 KiB
PHP
<?php
|
|
|
|
/**
|
|
* UserController
|
|
* PHP version 8.1.1
|
|
*
|
|
* @category Class
|
|
* @package OpenAPI\Server\Controller
|
|
* @author OpenAPI Generator team
|
|
* @link https://github.com/openapitools/openapi-generator
|
|
*/
|
|
|
|
/**
|
|
* OpenAPI Petstore
|
|
*
|
|
* This is a sample server Petstore server. For this sample, you can use the api key `special-key` to test the authorization filters.
|
|
*
|
|
* The version of the OpenAPI document: 1.0.0
|
|
*
|
|
* Generated by: https://github.com/openapitools/openapi-generator.git
|
|
*
|
|
*/
|
|
|
|
/**
|
|
* NOTE: This class is auto generated by the openapi generator program.
|
|
* https://github.com/openapitools/openapi-generator
|
|
* Do not edit the class manually.
|
|
*/
|
|
|
|
namespace OpenAPI\Server\Controller;
|
|
|
|
use \Exception;
|
|
use JMS\Serializer\Exception\RuntimeException as SerializerRuntimeException;
|
|
use Symfony\Component\HttpFoundation\Request;
|
|
use Symfony\Component\HttpFoundation\Response;
|
|
use Symfony\Component\HttpKernel\Exception\HttpException;
|
|
use Symfony\Component\Validator\Constraints as Assert;
|
|
use OpenAPI\Server\Api\UserApiInterface;
|
|
use OpenAPI\Server\Model\User;
|
|
|
|
/**
|
|
* UserController Class Doc Comment
|
|
*
|
|
* @category Class
|
|
* @package OpenAPI\Server\Controller
|
|
* @author OpenAPI Generator team
|
|
* @link https://github.com/openapitools/openapi-generator
|
|
*/
|
|
class UserController extends Controller
|
|
{
|
|
|
|
/**
|
|
* Operation createUser
|
|
*
|
|
* Create user
|
|
*
|
|
* @param Request $request The Symfony request to handle.
|
|
* @return Response The Symfony response.
|
|
*/
|
|
public function createUserAction(Request $request)
|
|
{
|
|
// Make sure that the client is providing something that we can consume
|
|
$consumes = ['application/json'];
|
|
if (!static::isContentTypeAllowed($request, $consumes)) {
|
|
// We can't consume the content that the client is sending us
|
|
return new Response('', 415);
|
|
}
|
|
|
|
// Handle authentication
|
|
// Authentication 'api_key' required
|
|
// Set key with prefix in header
|
|
$securityapi_key = $request->headers->get('api_key');
|
|
|
|
// Read out all input parameter values into variables
|
|
$user = $request->getContent();
|
|
|
|
// Use the default value if no value was provided
|
|
|
|
// Deserialize the input values that needs it
|
|
try {
|
|
$inputFormat = $request->getMimeType($request->getContentTypeFormat());
|
|
$user = $this->deserialize($user, 'OpenAPI\Server\Model\User', $inputFormat);
|
|
} catch (SerializerRuntimeException $exception) {
|
|
return $this->createBadRequestResponse($exception->getMessage());
|
|
}
|
|
|
|
// Validate the input values
|
|
$asserts = [];
|
|
$asserts[] = new Assert\NotNull();
|
|
$asserts[] = new Assert\Type("OpenAPI\Server\Model\User");
|
|
$asserts[] = new Assert\Valid();
|
|
$response = $this->validate($user, $asserts);
|
|
if ($response instanceof Response) {
|
|
return $response;
|
|
}
|
|
|
|
|
|
try {
|
|
$handler = $this->getApiHandler();
|
|
|
|
// Set authentication method 'api_key'
|
|
$handler->setapi_key($securityapi_key);
|
|
|
|
// Make the call to the business logic
|
|
$responseCode = 204;
|
|
$responseHeaders = [];
|
|
|
|
$handler->createUser($user, $responseCode, $responseHeaders);
|
|
|
|
$message = match($responseCode) {
|
|
0 => 'successful operation',
|
|
default => 'successful operation',
|
|
};
|
|
|
|
return new Response(
|
|
'',
|
|
$responseCode,
|
|
array_merge(
|
|
$responseHeaders,
|
|
[
|
|
'X-OpenAPI-Message' => $message
|
|
]
|
|
)
|
|
);
|
|
} catch (\Throwable $fallthrough) {
|
|
return $this->createErrorResponse(new HttpException(500, 'An unsuspected error occurred.', $fallthrough));
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Operation createUsersWithArrayInput
|
|
*
|
|
* Creates list of users with given input array
|
|
*
|
|
* @param Request $request The Symfony request to handle.
|
|
* @return Response The Symfony response.
|
|
*/
|
|
public function createUsersWithArrayInputAction(Request $request)
|
|
{
|
|
// Make sure that the client is providing something that we can consume
|
|
$consumes = ['application/json'];
|
|
if (!static::isContentTypeAllowed($request, $consumes)) {
|
|
// We can't consume the content that the client is sending us
|
|
return new Response('', 415);
|
|
}
|
|
|
|
// Handle authentication
|
|
// Authentication 'api_key' required
|
|
// Set key with prefix in header
|
|
$securityapi_key = $request->headers->get('api_key');
|
|
|
|
// Read out all input parameter values into variables
|
|
$user = $request->getContent();
|
|
|
|
// Use the default value if no value was provided
|
|
|
|
// Deserialize the input values that needs it
|
|
try {
|
|
$inputFormat = $request->getMimeType($request->getContentTypeFormat());
|
|
$user = $this->deserialize($user, 'array<OpenAPI\Server\Model\User>', $inputFormat);
|
|
} catch (SerializerRuntimeException $exception) {
|
|
return $this->createBadRequestResponse($exception->getMessage());
|
|
}
|
|
|
|
// Validate the input values
|
|
$asserts = [];
|
|
$asserts[] = new Assert\NotNull();
|
|
$asserts[] = new Assert\All([
|
|
new Assert\Type("OpenAPI\Server\Model\User"),
|
|
]);
|
|
$asserts[] = new Assert\Valid();
|
|
$response = $this->validate($user, $asserts);
|
|
if ($response instanceof Response) {
|
|
return $response;
|
|
}
|
|
|
|
|
|
try {
|
|
$handler = $this->getApiHandler();
|
|
|
|
// Set authentication method 'api_key'
|
|
$handler->setapi_key($securityapi_key);
|
|
|
|
// Make the call to the business logic
|
|
$responseCode = 204;
|
|
$responseHeaders = [];
|
|
|
|
$handler->createUsersWithArrayInput($user, $responseCode, $responseHeaders);
|
|
|
|
$message = match($responseCode) {
|
|
0 => 'successful operation',
|
|
default => 'successful operation',
|
|
};
|
|
|
|
return new Response(
|
|
'',
|
|
$responseCode,
|
|
array_merge(
|
|
$responseHeaders,
|
|
[
|
|
'X-OpenAPI-Message' => $message
|
|
]
|
|
)
|
|
);
|
|
} catch (\Throwable $fallthrough) {
|
|
return $this->createErrorResponse(new HttpException(500, 'An unsuspected error occurred.', $fallthrough));
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Operation createUsersWithListInput
|
|
*
|
|
* Creates list of users with given input array
|
|
*
|
|
* @param Request $request The Symfony request to handle.
|
|
* @return Response The Symfony response.
|
|
*/
|
|
public function createUsersWithListInputAction(Request $request)
|
|
{
|
|
// Make sure that the client is providing something that we can consume
|
|
$consumes = ['application/json'];
|
|
if (!static::isContentTypeAllowed($request, $consumes)) {
|
|
// We can't consume the content that the client is sending us
|
|
return new Response('', 415);
|
|
}
|
|
|
|
// Handle authentication
|
|
// Authentication 'api_key' required
|
|
// Set key with prefix in header
|
|
$securityapi_key = $request->headers->get('api_key');
|
|
|
|
// Read out all input parameter values into variables
|
|
$user = $request->getContent();
|
|
|
|
// Use the default value if no value was provided
|
|
|
|
// Deserialize the input values that needs it
|
|
try {
|
|
$inputFormat = $request->getMimeType($request->getContentTypeFormat());
|
|
$user = $this->deserialize($user, 'array<OpenAPI\Server\Model\User>', $inputFormat);
|
|
} catch (SerializerRuntimeException $exception) {
|
|
return $this->createBadRequestResponse($exception->getMessage());
|
|
}
|
|
|
|
// Validate the input values
|
|
$asserts = [];
|
|
$asserts[] = new Assert\NotNull();
|
|
$asserts[] = new Assert\All([
|
|
new Assert\Type("OpenAPI\Server\Model\User"),
|
|
]);
|
|
$asserts[] = new Assert\Valid();
|
|
$response = $this->validate($user, $asserts);
|
|
if ($response instanceof Response) {
|
|
return $response;
|
|
}
|
|
|
|
|
|
try {
|
|
$handler = $this->getApiHandler();
|
|
|
|
// Set authentication method 'api_key'
|
|
$handler->setapi_key($securityapi_key);
|
|
|
|
// Make the call to the business logic
|
|
$responseCode = 204;
|
|
$responseHeaders = [];
|
|
|
|
$handler->createUsersWithListInput($user, $responseCode, $responseHeaders);
|
|
|
|
$message = match($responseCode) {
|
|
0 => 'successful operation',
|
|
default => 'successful operation',
|
|
};
|
|
|
|
return new Response(
|
|
'',
|
|
$responseCode,
|
|
array_merge(
|
|
$responseHeaders,
|
|
[
|
|
'X-OpenAPI-Message' => $message
|
|
]
|
|
)
|
|
);
|
|
} catch (\Throwable $fallthrough) {
|
|
return $this->createErrorResponse(new HttpException(500, 'An unsuspected error occurred.', $fallthrough));
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Operation deleteUser
|
|
*
|
|
* Delete user
|
|
*
|
|
* @param Request $request The Symfony request to handle.
|
|
* @return Response The Symfony response.
|
|
*/
|
|
public function deleteUserAction(Request $request, $username)
|
|
{
|
|
// Handle authentication
|
|
// Authentication 'api_key' required
|
|
// Set key with prefix in header
|
|
$securityapi_key = $request->headers->get('api_key');
|
|
|
|
// Read out all input parameter values into variables
|
|
|
|
// Use the default value if no value was provided
|
|
|
|
// Deserialize the input values that needs it
|
|
try {
|
|
$username = $this->deserialize($username, 'string', 'string');
|
|
} catch (SerializerRuntimeException $exception) {
|
|
return $this->createBadRequestResponse($exception->getMessage());
|
|
}
|
|
|
|
// Validate the input values
|
|
$asserts = [];
|
|
$asserts[] = new Assert\NotNull();
|
|
$asserts[] = new Assert\Type("string");
|
|
$response = $this->validate($username, $asserts);
|
|
if ($response instanceof Response) {
|
|
return $response;
|
|
}
|
|
|
|
|
|
try {
|
|
$handler = $this->getApiHandler();
|
|
|
|
// Set authentication method 'api_key'
|
|
$handler->setapi_key($securityapi_key);
|
|
|
|
// Make the call to the business logic
|
|
$responseCode = 204;
|
|
$responseHeaders = [];
|
|
|
|
$handler->deleteUser($username, $responseCode, $responseHeaders);
|
|
|
|
$message = match($responseCode) {
|
|
400 => 'Invalid username supplied',
|
|
404 => 'User not found',
|
|
default => '',
|
|
};
|
|
|
|
return new Response(
|
|
'',
|
|
$responseCode,
|
|
array_merge(
|
|
$responseHeaders,
|
|
[
|
|
'X-OpenAPI-Message' => $message
|
|
]
|
|
)
|
|
);
|
|
} catch (\Throwable $fallthrough) {
|
|
return $this->createErrorResponse(new HttpException(500, 'An unsuspected error occurred.', $fallthrough));
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Operation getUserByName
|
|
*
|
|
* Get user by user name
|
|
*
|
|
* @param Request $request The Symfony request to handle.
|
|
* @return Response The Symfony response.
|
|
*/
|
|
public function getUserByNameAction(Request $request, $username)
|
|
{
|
|
// Figure out what data format to return to the client
|
|
$produces = ['application/xml', 'application/json'];
|
|
// Figure out what the client accepts
|
|
$clientAccepts = $request->headers->has('Accept')?$request->headers->get('Accept'):'*/*';
|
|
$responseFormat = $this->getOutputFormat($clientAccepts, $produces);
|
|
if ($responseFormat === null) {
|
|
return new Response('', 406);
|
|
}
|
|
|
|
// Handle authentication
|
|
|
|
// Read out all input parameter values into variables
|
|
|
|
// Use the default value if no value was provided
|
|
|
|
// Deserialize the input values that needs it
|
|
try {
|
|
$username = $this->deserialize($username, 'string', 'string');
|
|
} catch (SerializerRuntimeException $exception) {
|
|
return $this->createBadRequestResponse($exception->getMessage());
|
|
}
|
|
|
|
// Validate the input values
|
|
$asserts = [];
|
|
$asserts[] = new Assert\NotNull();
|
|
$asserts[] = new Assert\Type("string");
|
|
$response = $this->validate($username, $asserts);
|
|
if ($response instanceof Response) {
|
|
return $response;
|
|
}
|
|
|
|
|
|
try {
|
|
$handler = $this->getApiHandler();
|
|
|
|
|
|
// Make the call to the business logic
|
|
$responseCode = 200;
|
|
$responseHeaders = [];
|
|
|
|
$result = $handler->getUserByName($username, $responseCode, $responseHeaders);
|
|
|
|
$message = match($responseCode) {
|
|
200 => 'successful operation',
|
|
400 => 'Invalid username supplied',
|
|
404 => 'User not found',
|
|
default => '',
|
|
};
|
|
|
|
return new Response(
|
|
$result !== null ?$this->serialize($result, $responseFormat):'',
|
|
$responseCode,
|
|
array_merge(
|
|
$responseHeaders,
|
|
[
|
|
'Content-Type' => $responseFormat,
|
|
'X-OpenAPI-Message' => $message
|
|
]
|
|
)
|
|
);
|
|
} catch (\Throwable $fallthrough) {
|
|
return $this->createErrorResponse(new HttpException(500, 'An unsuspected error occurred.', $fallthrough));
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Operation loginUser
|
|
*
|
|
* Logs user into the system
|
|
*
|
|
* @param Request $request The Symfony request to handle.
|
|
* @return Response The Symfony response.
|
|
*/
|
|
public function loginUserAction(Request $request)
|
|
{
|
|
// Figure out what data format to return to the client
|
|
$produces = ['application/xml', 'application/json'];
|
|
// Figure out what the client accepts
|
|
$clientAccepts = $request->headers->has('Accept')?$request->headers->get('Accept'):'*/*';
|
|
$responseFormat = $this->getOutputFormat($clientAccepts, $produces);
|
|
if ($responseFormat === null) {
|
|
return new Response('', 406);
|
|
}
|
|
|
|
// Handle authentication
|
|
|
|
// Read out all input parameter values into variables
|
|
$username = $request->query->get('username');
|
|
$password = $request->query->get('password');
|
|
|
|
// Use the default value if no value was provided
|
|
|
|
// Deserialize the input values that needs it
|
|
try {
|
|
$username = $this->deserialize($username, 'string', 'string');
|
|
$password = $this->deserialize($password, 'string', 'string');
|
|
} catch (SerializerRuntimeException $exception) {
|
|
return $this->createBadRequestResponse($exception->getMessage());
|
|
}
|
|
|
|
// Validate the input values
|
|
$asserts = [];
|
|
$asserts[] = new Assert\NotNull();
|
|
$asserts[] = new Assert\Type("string");
|
|
$asserts[] = new Assert\Regex("/^[a-zA-Z0-9]+[a-zA-Z0-9\\.\\-_]*[a-zA-Z0-9]+$/");
|
|
$response = $this->validate($username, $asserts);
|
|
if ($response instanceof Response) {
|
|
return $response;
|
|
}
|
|
$asserts = [];
|
|
$asserts[] = new Assert\NotNull();
|
|
$asserts[] = new Assert\Type("string");
|
|
$response = $this->validate($password, $asserts);
|
|
if ($response instanceof Response) {
|
|
return $response;
|
|
}
|
|
|
|
|
|
try {
|
|
$handler = $this->getApiHandler();
|
|
|
|
|
|
// Make the call to the business logic
|
|
$responseCode = 200;
|
|
$responseHeaders = [];
|
|
|
|
$result = $handler->loginUser($username, $password, $responseCode, $responseHeaders);
|
|
|
|
$message = match($responseCode) {
|
|
200 => 'successful operation',
|
|
400 => 'Invalid username/password supplied',
|
|
default => '',
|
|
};
|
|
|
|
return new Response(
|
|
$result !== null ?$this->serialize($result, $responseFormat):'',
|
|
$responseCode,
|
|
array_merge(
|
|
$responseHeaders,
|
|
[
|
|
'Content-Type' => $responseFormat,
|
|
'X-OpenAPI-Message' => $message
|
|
]
|
|
)
|
|
);
|
|
} catch (\Throwable $fallthrough) {
|
|
return $this->createErrorResponse(new HttpException(500, 'An unsuspected error occurred.', $fallthrough));
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Operation logoutUser
|
|
*
|
|
* Logs out current logged in user session
|
|
*
|
|
* @param Request $request The Symfony request to handle.
|
|
* @return Response The Symfony response.
|
|
*/
|
|
public function logoutUserAction(Request $request)
|
|
{
|
|
// Handle authentication
|
|
// Authentication 'api_key' required
|
|
// Set key with prefix in header
|
|
$securityapi_key = $request->headers->get('api_key');
|
|
|
|
// Read out all input parameter values into variables
|
|
|
|
// Use the default value if no value was provided
|
|
|
|
// Validate the input values
|
|
|
|
|
|
try {
|
|
$handler = $this->getApiHandler();
|
|
|
|
// Set authentication method 'api_key'
|
|
$handler->setapi_key($securityapi_key);
|
|
|
|
// Make the call to the business logic
|
|
$responseCode = 204;
|
|
$responseHeaders = [];
|
|
|
|
$handler->logoutUser($responseCode, $responseHeaders);
|
|
|
|
$message = match($responseCode) {
|
|
0 => 'successful operation',
|
|
default => 'successful operation',
|
|
};
|
|
|
|
return new Response(
|
|
'',
|
|
$responseCode,
|
|
array_merge(
|
|
$responseHeaders,
|
|
[
|
|
'X-OpenAPI-Message' => $message
|
|
]
|
|
)
|
|
);
|
|
} catch (\Throwable $fallthrough) {
|
|
return $this->createErrorResponse(new HttpException(500, 'An unsuspected error occurred.', $fallthrough));
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Operation updateUser
|
|
*
|
|
* Updated user
|
|
*
|
|
* @param Request $request The Symfony request to handle.
|
|
* @return Response The Symfony response.
|
|
*/
|
|
public function updateUserAction(Request $request, $username)
|
|
{
|
|
// Make sure that the client is providing something that we can consume
|
|
$consumes = ['application/json'];
|
|
if (!static::isContentTypeAllowed($request, $consumes)) {
|
|
// We can't consume the content that the client is sending us
|
|
return new Response('', 415);
|
|
}
|
|
|
|
// Handle authentication
|
|
// Authentication 'api_key' required
|
|
// Set key with prefix in header
|
|
$securityapi_key = $request->headers->get('api_key');
|
|
|
|
// Read out all input parameter values into variables
|
|
$user = $request->getContent();
|
|
|
|
// Use the default value if no value was provided
|
|
|
|
// Deserialize the input values that needs it
|
|
try {
|
|
$username = $this->deserialize($username, 'string', 'string');
|
|
$inputFormat = $request->getMimeType($request->getContentTypeFormat());
|
|
$user = $this->deserialize($user, 'OpenAPI\Server\Model\User', $inputFormat);
|
|
} catch (SerializerRuntimeException $exception) {
|
|
return $this->createBadRequestResponse($exception->getMessage());
|
|
}
|
|
|
|
// Validate the input values
|
|
$asserts = [];
|
|
$asserts[] = new Assert\NotNull();
|
|
$asserts[] = new Assert\Type("string");
|
|
$response = $this->validate($username, $asserts);
|
|
if ($response instanceof Response) {
|
|
return $response;
|
|
}
|
|
$asserts = [];
|
|
$asserts[] = new Assert\NotNull();
|
|
$asserts[] = new Assert\Type("OpenAPI\Server\Model\User");
|
|
$asserts[] = new Assert\Valid();
|
|
$response = $this->validate($user, $asserts);
|
|
if ($response instanceof Response) {
|
|
return $response;
|
|
}
|
|
|
|
|
|
try {
|
|
$handler = $this->getApiHandler();
|
|
|
|
// Set authentication method 'api_key'
|
|
$handler->setapi_key($securityapi_key);
|
|
|
|
// Make the call to the business logic
|
|
$responseCode = 204;
|
|
$responseHeaders = [];
|
|
|
|
$handler->updateUser($username, $user, $responseCode, $responseHeaders);
|
|
|
|
$message = match($responseCode) {
|
|
400 => 'Invalid user supplied',
|
|
404 => 'User not found',
|
|
default => '',
|
|
};
|
|
|
|
return new Response(
|
|
'',
|
|
$responseCode,
|
|
array_merge(
|
|
$responseHeaders,
|
|
[
|
|
'X-OpenAPI-Message' => $message
|
|
]
|
|
)
|
|
);
|
|
} catch (\Throwable $fallthrough) {
|
|
return $this->createErrorResponse(new HttpException(500, 'An unsuspected error occurred.', $fallthrough));
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Returns the handler for this API controller.
|
|
* @return UserApiInterface
|
|
*/
|
|
public function getApiHandler()
|
|
{
|
|
return $this->apiServer->getApiHandler('user');
|
|
}
|
|
}
|