Files
omsorg/omsorgWeb/mitarbeiter-app/api-client-php/lib/Api/UsersApi.php
T
Felix KemmlerandClaude Sonnet 5 e9e96a57dc Add facilities, contracts, orders, value lists, audit log, and desktop app modules
Extends omsorgCore with full CRUD for Facility/Contract/Order plus
configurable value lists and an audit trail, and wires the omsorgapp
frontend up to the new facilities, settings, and audit-log modules;
includes a sidebar active-nav-item highlight.

Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
2026-08-08 23:29:16 +02:00

1946 lines
74 KiB
PHP

<?php
/**
* UsersApi
* PHP version 8.1
*
* @category Class
* @package OmsorgCoreClient
* @author OpenAPI Generator team
* @link https://openapi-generator.tech
*/
/**
* OmsorgCore.Api
*
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
* The version of the OpenAPI document: 1.0
* Generated by: https://openapi-generator.tech
* Generator version: 7.14.0
*/
/**
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
namespace OmsorgCoreClient\Api;
use GuzzleHttp\Client;
use GuzzleHttp\ClientInterface;
use GuzzleHttp\Exception\ConnectException;
use GuzzleHttp\Exception\RequestException;
use GuzzleHttp\Psr7\MultipartStream;
use GuzzleHttp\Psr7\Request;
use GuzzleHttp\RequestOptions;
use Psr\Http\Message\RequestInterface;
use Psr\Http\Message\ResponseInterface;
use OmsorgCoreClient\ApiException;
use OmsorgCoreClient\Configuration;
use OmsorgCoreClient\FormDataProcessor;
use OmsorgCoreClient\HeaderSelector;
use OmsorgCoreClient\ObjectSerializer;
/**
* UsersApi Class Doc Comment
*
* @category Class
* @package OmsorgCoreClient
* @author OpenAPI Generator team
* @link https://openapi-generator.tech
*/
class UsersApi
{
/**
* @var ClientInterface
*/
protected $client;
/**
* @var Configuration
*/
protected $config;
/**
* @var HeaderSelector
*/
protected $headerSelector;
/**
* @var int Host index
*/
protected $hostIndex;
/** @var string[] $contentTypes **/
public const contentTypes = [
'apiUsersGet' => [
'application/json',
],
'apiUsersIdPermissionOverridesGet' => [
'application/json',
],
'apiUsersIdPermissionOverridesOverrideIdDelete' => [
'application/json',
],
'apiUsersIdPermissionOverridesPost' => [
'application/json',
'text/json',
'application/*+json',
],
'apiUsersIdPut' => [
'application/json',
'text/json',
'application/*+json',
],
'apiUsersIdResetPasswordPost' => [
'application/json',
'text/json',
'application/*+json',
],
'apiUsersPost' => [
'application/json',
'text/json',
'application/*+json',
],
];
/**
* @param ClientInterface $client
* @param Configuration $config
* @param HeaderSelector $selector
* @param int $hostIndex (Optional) host index to select the list of hosts if defined in the OpenAPI spec
*/
public function __construct(
?ClientInterface $client = null,
?Configuration $config = null,
?HeaderSelector $selector = null,
int $hostIndex = 0
) {
$this->client = $client ?: new Client();
$this->config = $config ?: Configuration::getDefaultConfiguration();
$this->headerSelector = $selector ?: new HeaderSelector();
$this->hostIndex = $hostIndex;
}
/**
* Set the host index
*
* @param int $hostIndex Host index (required)
*/
public function setHostIndex($hostIndex): void
{
$this->hostIndex = $hostIndex;
}
/**
* Get the host index
*
* @return int Host index
*/
public function getHostIndex()
{
return $this->hostIndex;
}
/**
* @return Configuration
*/
public function getConfig()
{
return $this->config;
}
/**
* Operation apiUsersGet
*
* @param string $contentType The value for the Content-Type header. Check self::contentTypes['apiUsersGet'] to see the possible values for this operation
*
* @throws \OmsorgCoreClient\ApiException on non-2xx response or if the response body is not in the expected format
* @throws \InvalidArgumentException
* @return \OmsorgCoreClient\Model\UserResponse[]
*/
public function apiUsersGet(string $contentType = self::contentTypes['apiUsersGet'][0])
{
list($response) = $this->apiUsersGetWithHttpInfo($contentType);
return $response;
}
/**
* Operation apiUsersGetWithHttpInfo
*
* @param string $contentType The value for the Content-Type header. Check self::contentTypes['apiUsersGet'] to see the possible values for this operation
*
* @throws \OmsorgCoreClient\ApiException on non-2xx response or if the response body is not in the expected format
* @throws \InvalidArgumentException
* @return array of \OmsorgCoreClient\Model\UserResponse[], HTTP status code, HTTP response headers (array of strings)
*/
public function apiUsersGetWithHttpInfo(string $contentType = self::contentTypes['apiUsersGet'][0])
{
$request = $this->apiUsersGetRequest($contentType);
try {
$options = $this->createHttpClientOption();
try {
$response = $this->client->send($request, $options);
} catch (RequestException $e) {
throw new ApiException(
"[{$e->getCode()}] {$e->getMessage()}",
(int) $e->getCode(),
$e->getResponse() ? $e->getResponse()->getHeaders() : null,
$e->getResponse() ? (string) $e->getResponse()->getBody() : null
);
} catch (ConnectException $e) {
throw new ApiException(
"[{$e->getCode()}] {$e->getMessage()}",
(int) $e->getCode(),
null,
null
);
}
$statusCode = $response->getStatusCode();
switch($statusCode) {
case 200:
return $this->handleResponseWithDataType(
'\OmsorgCoreClient\Model\UserResponse[]',
$request,
$response,
);
}
if ($statusCode < 200 || $statusCode > 299) {
throw new ApiException(
sprintf(
'[%d] Error connecting to the API (%s)',
$statusCode,
(string) $request->getUri()
),
$statusCode,
$response->getHeaders(),
(string) $response->getBody()
);
}
return $this->handleResponseWithDataType(
'\OmsorgCoreClient\Model\UserResponse[]',
$request,
$response,
);
} catch (ApiException $e) {
switch ($e->getCode()) {
case 200:
$data = ObjectSerializer::deserialize(
$e->getResponseBody(),
'\OmsorgCoreClient\Model\UserResponse[]',
$e->getResponseHeaders()
);
$e->setResponseObject($data);
throw $e;
}
throw $e;
}
}
/**
* Operation apiUsersGetAsync
*
* @param string $contentType The value for the Content-Type header. Check self::contentTypes['apiUsersGet'] to see the possible values for this operation
*
* @throws \InvalidArgumentException
* @return \GuzzleHttp\Promise\PromiseInterface
*/
public function apiUsersGetAsync(string $contentType = self::contentTypes['apiUsersGet'][0])
{
return $this->apiUsersGetAsyncWithHttpInfo($contentType)
->then(
function ($response) {
return $response[0];
}
);
}
/**
* Operation apiUsersGetAsyncWithHttpInfo
*
* @param string $contentType The value for the Content-Type header. Check self::contentTypes['apiUsersGet'] to see the possible values for this operation
*
* @throws \InvalidArgumentException
* @return \GuzzleHttp\Promise\PromiseInterface
*/
public function apiUsersGetAsyncWithHttpInfo(string $contentType = self::contentTypes['apiUsersGet'][0])
{
$returnType = '\OmsorgCoreClient\Model\UserResponse[]';
$request = $this->apiUsersGetRequest($contentType);
return $this->client
->sendAsync($request, $this->createHttpClientOption())
->then(
function ($response) use ($returnType) {
if ($returnType === '\SplFileObject') {
$content = $response->getBody(); //stream goes to serializer
} else {
$content = (string) $response->getBody();
if ($returnType !== 'string') {
$content = json_decode($content);
}
}
return [
ObjectSerializer::deserialize($content, $returnType, []),
$response->getStatusCode(),
$response->getHeaders()
];
},
function ($exception) {
$response = $exception->getResponse();
$statusCode = $response->getStatusCode();
throw new ApiException(
sprintf(
'[%d] Error connecting to the API (%s)',
$statusCode,
$exception->getRequest()->getUri()
),
$statusCode,
$response->getHeaders(),
(string) $response->getBody()
);
}
);
}
/**
* Create request for operation 'apiUsersGet'
*
* @param string $contentType The value for the Content-Type header. Check self::contentTypes['apiUsersGet'] to see the possible values for this operation
*
* @throws \InvalidArgumentException
* @return \GuzzleHttp\Psr7\Request
*/
public function apiUsersGetRequest(string $contentType = self::contentTypes['apiUsersGet'][0])
{
$resourcePath = '/api/users';
$formParams = [];
$queryParams = [];
$headerParams = [];
$httpBody = '';
$multipart = false;
$headers = $this->headerSelector->selectHeaders(
['text/plain', 'application/json', 'text/json', ],
$contentType,
$multipart
);
// for model (json/xml)
if (count($formParams) > 0) {
if ($multipart) {
$multipartContents = [];
foreach ($formParams as $formParamName => $formParamValue) {
$formParamValueItems = is_array($formParamValue) ? $formParamValue : [$formParamValue];
foreach ($formParamValueItems as $formParamValueItem) {
$multipartContents[] = [
'name' => $formParamName,
'contents' => $formParamValueItem
];
}
}
// for HTTP post (form)
$httpBody = new MultipartStream($multipartContents);
} elseif (stripos($headers['Content-Type'], 'application/json') !== false) {
# if Content-Type contains "application/json", json_encode the form parameters
$httpBody = \GuzzleHttp\Utils::jsonEncode($formParams);
} else {
// for HTTP post (form)
$httpBody = ObjectSerializer::buildQuery($formParams);
}
}
// this endpoint requires Bearer (JWT) authentication (access token)
if (!empty($this->config->getAccessToken())) {
$headers['Authorization'] = 'Bearer ' . $this->config->getAccessToken();
}
$defaultHeaders = [];
if ($this->config->getUserAgent()) {
$defaultHeaders['User-Agent'] = $this->config->getUserAgent();
}
$headers = array_merge(
$defaultHeaders,
$headerParams,
$headers
);
$operationHost = $this->config->getHost();
$query = ObjectSerializer::buildQuery($queryParams);
return new Request(
'GET',
$operationHost . $resourcePath . ($query ? "?{$query}" : ''),
$headers,
$httpBody
);
}
/**
* Operation apiUsersIdPermissionOverridesGet
*
* @param string $id id (required)
* @param string $contentType The value for the Content-Type header. Check self::contentTypes['apiUsersIdPermissionOverridesGet'] to see the possible values for this operation
*
* @throws \OmsorgCoreClient\ApiException on non-2xx response or if the response body is not in the expected format
* @throws \InvalidArgumentException
* @return \OmsorgCoreClient\Model\UserPermissionOverrideResponse[]
*/
public function apiUsersIdPermissionOverridesGet($id, string $contentType = self::contentTypes['apiUsersIdPermissionOverridesGet'][0])
{
list($response) = $this->apiUsersIdPermissionOverridesGetWithHttpInfo($id, $contentType);
return $response;
}
/**
* Operation apiUsersIdPermissionOverridesGetWithHttpInfo
*
* @param string $id (required)
* @param string $contentType The value for the Content-Type header. Check self::contentTypes['apiUsersIdPermissionOverridesGet'] to see the possible values for this operation
*
* @throws \OmsorgCoreClient\ApiException on non-2xx response or if the response body is not in the expected format
* @throws \InvalidArgumentException
* @return array of \OmsorgCoreClient\Model\UserPermissionOverrideResponse[], HTTP status code, HTTP response headers (array of strings)
*/
public function apiUsersIdPermissionOverridesGetWithHttpInfo($id, string $contentType = self::contentTypes['apiUsersIdPermissionOverridesGet'][0])
{
$request = $this->apiUsersIdPermissionOverridesGetRequest($id, $contentType);
try {
$options = $this->createHttpClientOption();
try {
$response = $this->client->send($request, $options);
} catch (RequestException $e) {
throw new ApiException(
"[{$e->getCode()}] {$e->getMessage()}",
(int) $e->getCode(),
$e->getResponse() ? $e->getResponse()->getHeaders() : null,
$e->getResponse() ? (string) $e->getResponse()->getBody() : null
);
} catch (ConnectException $e) {
throw new ApiException(
"[{$e->getCode()}] {$e->getMessage()}",
(int) $e->getCode(),
null,
null
);
}
$statusCode = $response->getStatusCode();
switch($statusCode) {
case 200:
return $this->handleResponseWithDataType(
'\OmsorgCoreClient\Model\UserPermissionOverrideResponse[]',
$request,
$response,
);
}
if ($statusCode < 200 || $statusCode > 299) {
throw new ApiException(
sprintf(
'[%d] Error connecting to the API (%s)',
$statusCode,
(string) $request->getUri()
),
$statusCode,
$response->getHeaders(),
(string) $response->getBody()
);
}
return $this->handleResponseWithDataType(
'\OmsorgCoreClient\Model\UserPermissionOverrideResponse[]',
$request,
$response,
);
} catch (ApiException $e) {
switch ($e->getCode()) {
case 200:
$data = ObjectSerializer::deserialize(
$e->getResponseBody(),
'\OmsorgCoreClient\Model\UserPermissionOverrideResponse[]',
$e->getResponseHeaders()
);
$e->setResponseObject($data);
throw $e;
}
throw $e;
}
}
/**
* Operation apiUsersIdPermissionOverridesGetAsync
*
* @param string $id (required)
* @param string $contentType The value for the Content-Type header. Check self::contentTypes['apiUsersIdPermissionOverridesGet'] to see the possible values for this operation
*
* @throws \InvalidArgumentException
* @return \GuzzleHttp\Promise\PromiseInterface
*/
public function apiUsersIdPermissionOverridesGetAsync($id, string $contentType = self::contentTypes['apiUsersIdPermissionOverridesGet'][0])
{
return $this->apiUsersIdPermissionOverridesGetAsyncWithHttpInfo($id, $contentType)
->then(
function ($response) {
return $response[0];
}
);
}
/**
* Operation apiUsersIdPermissionOverridesGetAsyncWithHttpInfo
*
* @param string $id (required)
* @param string $contentType The value for the Content-Type header. Check self::contentTypes['apiUsersIdPermissionOverridesGet'] to see the possible values for this operation
*
* @throws \InvalidArgumentException
* @return \GuzzleHttp\Promise\PromiseInterface
*/
public function apiUsersIdPermissionOverridesGetAsyncWithHttpInfo($id, string $contentType = self::contentTypes['apiUsersIdPermissionOverridesGet'][0])
{
$returnType = '\OmsorgCoreClient\Model\UserPermissionOverrideResponse[]';
$request = $this->apiUsersIdPermissionOverridesGetRequest($id, $contentType);
return $this->client
->sendAsync($request, $this->createHttpClientOption())
->then(
function ($response) use ($returnType) {
if ($returnType === '\SplFileObject') {
$content = $response->getBody(); //stream goes to serializer
} else {
$content = (string) $response->getBody();
if ($returnType !== 'string') {
$content = json_decode($content);
}
}
return [
ObjectSerializer::deserialize($content, $returnType, []),
$response->getStatusCode(),
$response->getHeaders()
];
},
function ($exception) {
$response = $exception->getResponse();
$statusCode = $response->getStatusCode();
throw new ApiException(
sprintf(
'[%d] Error connecting to the API (%s)',
$statusCode,
$exception->getRequest()->getUri()
),
$statusCode,
$response->getHeaders(),
(string) $response->getBody()
);
}
);
}
/**
* Create request for operation 'apiUsersIdPermissionOverridesGet'
*
* @param string $id (required)
* @param string $contentType The value for the Content-Type header. Check self::contentTypes['apiUsersIdPermissionOverridesGet'] to see the possible values for this operation
*
* @throws \InvalidArgumentException
* @return \GuzzleHttp\Psr7\Request
*/
public function apiUsersIdPermissionOverridesGetRequest($id, string $contentType = self::contentTypes['apiUsersIdPermissionOverridesGet'][0])
{
// verify the required parameter 'id' is set
if ($id === null || (is_array($id) && count($id) === 0)) {
throw new \InvalidArgumentException(
'Missing the required parameter $id when calling apiUsersIdPermissionOverridesGet'
);
}
$resourcePath = '/api/users/{id}/permission-overrides';
$formParams = [];
$queryParams = [];
$headerParams = [];
$httpBody = '';
$multipart = false;
// path params
if ($id !== null) {
$resourcePath = str_replace(
'{' . 'id' . '}',
ObjectSerializer::toPathValue($id),
$resourcePath
);
}
$headers = $this->headerSelector->selectHeaders(
['text/plain', 'application/json', 'text/json', ],
$contentType,
$multipart
);
// for model (json/xml)
if (count($formParams) > 0) {
if ($multipart) {
$multipartContents = [];
foreach ($formParams as $formParamName => $formParamValue) {
$formParamValueItems = is_array($formParamValue) ? $formParamValue : [$formParamValue];
foreach ($formParamValueItems as $formParamValueItem) {
$multipartContents[] = [
'name' => $formParamName,
'contents' => $formParamValueItem
];
}
}
// for HTTP post (form)
$httpBody = new MultipartStream($multipartContents);
} elseif (stripos($headers['Content-Type'], 'application/json') !== false) {
# if Content-Type contains "application/json", json_encode the form parameters
$httpBody = \GuzzleHttp\Utils::jsonEncode($formParams);
} else {
// for HTTP post (form)
$httpBody = ObjectSerializer::buildQuery($formParams);
}
}
// this endpoint requires Bearer (JWT) authentication (access token)
if (!empty($this->config->getAccessToken())) {
$headers['Authorization'] = 'Bearer ' . $this->config->getAccessToken();
}
$defaultHeaders = [];
if ($this->config->getUserAgent()) {
$defaultHeaders['User-Agent'] = $this->config->getUserAgent();
}
$headers = array_merge(
$defaultHeaders,
$headerParams,
$headers
);
$operationHost = $this->config->getHost();
$query = ObjectSerializer::buildQuery($queryParams);
return new Request(
'GET',
$operationHost . $resourcePath . ($query ? "?{$query}" : ''),
$headers,
$httpBody
);
}
/**
* Operation apiUsersIdPermissionOverridesOverrideIdDelete
*
* @param string $id id (required)
* @param string $override_id override_id (required)
* @param string $contentType The value for the Content-Type header. Check self::contentTypes['apiUsersIdPermissionOverridesOverrideIdDelete'] to see the possible values for this operation
*
* @throws \OmsorgCoreClient\ApiException on non-2xx response or if the response body is not in the expected format
* @throws \InvalidArgumentException
* @return void
*/
public function apiUsersIdPermissionOverridesOverrideIdDelete($id, $override_id, string $contentType = self::contentTypes['apiUsersIdPermissionOverridesOverrideIdDelete'][0])
{
$this->apiUsersIdPermissionOverridesOverrideIdDeleteWithHttpInfo($id, $override_id, $contentType);
}
/**
* Operation apiUsersIdPermissionOverridesOverrideIdDeleteWithHttpInfo
*
* @param string $id (required)
* @param string $override_id (required)
* @param string $contentType The value for the Content-Type header. Check self::contentTypes['apiUsersIdPermissionOverridesOverrideIdDelete'] to see the possible values for this operation
*
* @throws \OmsorgCoreClient\ApiException on non-2xx response or if the response body is not in the expected format
* @throws \InvalidArgumentException
* @return array of null, HTTP status code, HTTP response headers (array of strings)
*/
public function apiUsersIdPermissionOverridesOverrideIdDeleteWithHttpInfo($id, $override_id, string $contentType = self::contentTypes['apiUsersIdPermissionOverridesOverrideIdDelete'][0])
{
$request = $this->apiUsersIdPermissionOverridesOverrideIdDeleteRequest($id, $override_id, $contentType);
try {
$options = $this->createHttpClientOption();
try {
$response = $this->client->send($request, $options);
} catch (RequestException $e) {
throw new ApiException(
"[{$e->getCode()}] {$e->getMessage()}",
(int) $e->getCode(),
$e->getResponse() ? $e->getResponse()->getHeaders() : null,
$e->getResponse() ? (string) $e->getResponse()->getBody() : null
);
} catch (ConnectException $e) {
throw new ApiException(
"[{$e->getCode()}] {$e->getMessage()}",
(int) $e->getCode(),
null,
null
);
}
$statusCode = $response->getStatusCode();
return [null, $statusCode, $response->getHeaders()];
} catch (ApiException $e) {
switch ($e->getCode()) {
}
throw $e;
}
}
/**
* Operation apiUsersIdPermissionOverridesOverrideIdDeleteAsync
*
* @param string $id (required)
* @param string $override_id (required)
* @param string $contentType The value for the Content-Type header. Check self::contentTypes['apiUsersIdPermissionOverridesOverrideIdDelete'] to see the possible values for this operation
*
* @throws \InvalidArgumentException
* @return \GuzzleHttp\Promise\PromiseInterface
*/
public function apiUsersIdPermissionOverridesOverrideIdDeleteAsync($id, $override_id, string $contentType = self::contentTypes['apiUsersIdPermissionOverridesOverrideIdDelete'][0])
{
return $this->apiUsersIdPermissionOverridesOverrideIdDeleteAsyncWithHttpInfo($id, $override_id, $contentType)
->then(
function ($response) {
return $response[0];
}
);
}
/**
* Operation apiUsersIdPermissionOverridesOverrideIdDeleteAsyncWithHttpInfo
*
* @param string $id (required)
* @param string $override_id (required)
* @param string $contentType The value for the Content-Type header. Check self::contentTypes['apiUsersIdPermissionOverridesOverrideIdDelete'] to see the possible values for this operation
*
* @throws \InvalidArgumentException
* @return \GuzzleHttp\Promise\PromiseInterface
*/
public function apiUsersIdPermissionOverridesOverrideIdDeleteAsyncWithHttpInfo($id, $override_id, string $contentType = self::contentTypes['apiUsersIdPermissionOverridesOverrideIdDelete'][0])
{
$returnType = '';
$request = $this->apiUsersIdPermissionOverridesOverrideIdDeleteRequest($id, $override_id, $contentType);
return $this->client
->sendAsync($request, $this->createHttpClientOption())
->then(
function ($response) use ($returnType) {
return [null, $response->getStatusCode(), $response->getHeaders()];
},
function ($exception) {
$response = $exception->getResponse();
$statusCode = $response->getStatusCode();
throw new ApiException(
sprintf(
'[%d] Error connecting to the API (%s)',
$statusCode,
$exception->getRequest()->getUri()
),
$statusCode,
$response->getHeaders(),
(string) $response->getBody()
);
}
);
}
/**
* Create request for operation 'apiUsersIdPermissionOverridesOverrideIdDelete'
*
* @param string $id (required)
* @param string $override_id (required)
* @param string $contentType The value for the Content-Type header. Check self::contentTypes['apiUsersIdPermissionOverridesOverrideIdDelete'] to see the possible values for this operation
*
* @throws \InvalidArgumentException
* @return \GuzzleHttp\Psr7\Request
*/
public function apiUsersIdPermissionOverridesOverrideIdDeleteRequest($id, $override_id, string $contentType = self::contentTypes['apiUsersIdPermissionOverridesOverrideIdDelete'][0])
{
// verify the required parameter 'id' is set
if ($id === null || (is_array($id) && count($id) === 0)) {
throw new \InvalidArgumentException(
'Missing the required parameter $id when calling apiUsersIdPermissionOverridesOverrideIdDelete'
);
}
// verify the required parameter 'override_id' is set
if ($override_id === null || (is_array($override_id) && count($override_id) === 0)) {
throw new \InvalidArgumentException(
'Missing the required parameter $override_id when calling apiUsersIdPermissionOverridesOverrideIdDelete'
);
}
$resourcePath = '/api/users/{id}/permission-overrides/{overrideId}';
$formParams = [];
$queryParams = [];
$headerParams = [];
$httpBody = '';
$multipart = false;
// path params
if ($id !== null) {
$resourcePath = str_replace(
'{' . 'id' . '}',
ObjectSerializer::toPathValue($id),
$resourcePath
);
}
// path params
if ($override_id !== null) {
$resourcePath = str_replace(
'{' . 'overrideId' . '}',
ObjectSerializer::toPathValue($override_id),
$resourcePath
);
}
$headers = $this->headerSelector->selectHeaders(
[],
$contentType,
$multipart
);
// for model (json/xml)
if (count($formParams) > 0) {
if ($multipart) {
$multipartContents = [];
foreach ($formParams as $formParamName => $formParamValue) {
$formParamValueItems = is_array($formParamValue) ? $formParamValue : [$formParamValue];
foreach ($formParamValueItems as $formParamValueItem) {
$multipartContents[] = [
'name' => $formParamName,
'contents' => $formParamValueItem
];
}
}
// for HTTP post (form)
$httpBody = new MultipartStream($multipartContents);
} elseif (stripos($headers['Content-Type'], 'application/json') !== false) {
# if Content-Type contains "application/json", json_encode the form parameters
$httpBody = \GuzzleHttp\Utils::jsonEncode($formParams);
} else {
// for HTTP post (form)
$httpBody = ObjectSerializer::buildQuery($formParams);
}
}
// this endpoint requires Bearer (JWT) authentication (access token)
if (!empty($this->config->getAccessToken())) {
$headers['Authorization'] = 'Bearer ' . $this->config->getAccessToken();
}
$defaultHeaders = [];
if ($this->config->getUserAgent()) {
$defaultHeaders['User-Agent'] = $this->config->getUserAgent();
}
$headers = array_merge(
$defaultHeaders,
$headerParams,
$headers
);
$operationHost = $this->config->getHost();
$query = ObjectSerializer::buildQuery($queryParams);
return new Request(
'DELETE',
$operationHost . $resourcePath . ($query ? "?{$query}" : ''),
$headers,
$httpBody
);
}
/**
* Operation apiUsersIdPermissionOverridesPost
*
* @param string $id id (required)
* @param \OmsorgCoreClient\Model\AddUserPermissionOverrideRequest|null $add_user_permission_override_request add_user_permission_override_request (optional)
* @param string $contentType The value for the Content-Type header. Check self::contentTypes['apiUsersIdPermissionOverridesPost'] to see the possible values for this operation
*
* @throws \OmsorgCoreClient\ApiException on non-2xx response or if the response body is not in the expected format
* @throws \InvalidArgumentException
* @return \OmsorgCoreClient\Model\UserPermissionOverrideResponse
*/
public function apiUsersIdPermissionOverridesPost($id, $add_user_permission_override_request = null, string $contentType = self::contentTypes['apiUsersIdPermissionOverridesPost'][0])
{
list($response) = $this->apiUsersIdPermissionOverridesPostWithHttpInfo($id, $add_user_permission_override_request, $contentType);
return $response;
}
/**
* Operation apiUsersIdPermissionOverridesPostWithHttpInfo
*
* @param string $id (required)
* @param \OmsorgCoreClient\Model\AddUserPermissionOverrideRequest|null $add_user_permission_override_request (optional)
* @param string $contentType The value for the Content-Type header. Check self::contentTypes['apiUsersIdPermissionOverridesPost'] to see the possible values for this operation
*
* @throws \OmsorgCoreClient\ApiException on non-2xx response or if the response body is not in the expected format
* @throws \InvalidArgumentException
* @return array of \OmsorgCoreClient\Model\UserPermissionOverrideResponse, HTTP status code, HTTP response headers (array of strings)
*/
public function apiUsersIdPermissionOverridesPostWithHttpInfo($id, $add_user_permission_override_request = null, string $contentType = self::contentTypes['apiUsersIdPermissionOverridesPost'][0])
{
$request = $this->apiUsersIdPermissionOverridesPostRequest($id, $add_user_permission_override_request, $contentType);
try {
$options = $this->createHttpClientOption();
try {
$response = $this->client->send($request, $options);
} catch (RequestException $e) {
throw new ApiException(
"[{$e->getCode()}] {$e->getMessage()}",
(int) $e->getCode(),
$e->getResponse() ? $e->getResponse()->getHeaders() : null,
$e->getResponse() ? (string) $e->getResponse()->getBody() : null
);
} catch (ConnectException $e) {
throw new ApiException(
"[{$e->getCode()}] {$e->getMessage()}",
(int) $e->getCode(),
null,
null
);
}
$statusCode = $response->getStatusCode();
switch($statusCode) {
case 200:
return $this->handleResponseWithDataType(
'\OmsorgCoreClient\Model\UserPermissionOverrideResponse',
$request,
$response,
);
}
if ($statusCode < 200 || $statusCode > 299) {
throw new ApiException(
sprintf(
'[%d] Error connecting to the API (%s)',
$statusCode,
(string) $request->getUri()
),
$statusCode,
$response->getHeaders(),
(string) $response->getBody()
);
}
return $this->handleResponseWithDataType(
'\OmsorgCoreClient\Model\UserPermissionOverrideResponse',
$request,
$response,
);
} catch (ApiException $e) {
switch ($e->getCode()) {
case 200:
$data = ObjectSerializer::deserialize(
$e->getResponseBody(),
'\OmsorgCoreClient\Model\UserPermissionOverrideResponse',
$e->getResponseHeaders()
);
$e->setResponseObject($data);
throw $e;
}
throw $e;
}
}
/**
* Operation apiUsersIdPermissionOverridesPostAsync
*
* @param string $id (required)
* @param \OmsorgCoreClient\Model\AddUserPermissionOverrideRequest|null $add_user_permission_override_request (optional)
* @param string $contentType The value for the Content-Type header. Check self::contentTypes['apiUsersIdPermissionOverridesPost'] to see the possible values for this operation
*
* @throws \InvalidArgumentException
* @return \GuzzleHttp\Promise\PromiseInterface
*/
public function apiUsersIdPermissionOverridesPostAsync($id, $add_user_permission_override_request = null, string $contentType = self::contentTypes['apiUsersIdPermissionOverridesPost'][0])
{
return $this->apiUsersIdPermissionOverridesPostAsyncWithHttpInfo($id, $add_user_permission_override_request, $contentType)
->then(
function ($response) {
return $response[0];
}
);
}
/**
* Operation apiUsersIdPermissionOverridesPostAsyncWithHttpInfo
*
* @param string $id (required)
* @param \OmsorgCoreClient\Model\AddUserPermissionOverrideRequest|null $add_user_permission_override_request (optional)
* @param string $contentType The value for the Content-Type header. Check self::contentTypes['apiUsersIdPermissionOverridesPost'] to see the possible values for this operation
*
* @throws \InvalidArgumentException
* @return \GuzzleHttp\Promise\PromiseInterface
*/
public function apiUsersIdPermissionOverridesPostAsyncWithHttpInfo($id, $add_user_permission_override_request = null, string $contentType = self::contentTypes['apiUsersIdPermissionOverridesPost'][0])
{
$returnType = '\OmsorgCoreClient\Model\UserPermissionOverrideResponse';
$request = $this->apiUsersIdPermissionOverridesPostRequest($id, $add_user_permission_override_request, $contentType);
return $this->client
->sendAsync($request, $this->createHttpClientOption())
->then(
function ($response) use ($returnType) {
if ($returnType === '\SplFileObject') {
$content = $response->getBody(); //stream goes to serializer
} else {
$content = (string) $response->getBody();
if ($returnType !== 'string') {
$content = json_decode($content);
}
}
return [
ObjectSerializer::deserialize($content, $returnType, []),
$response->getStatusCode(),
$response->getHeaders()
];
},
function ($exception) {
$response = $exception->getResponse();
$statusCode = $response->getStatusCode();
throw new ApiException(
sprintf(
'[%d] Error connecting to the API (%s)',
$statusCode,
$exception->getRequest()->getUri()
),
$statusCode,
$response->getHeaders(),
(string) $response->getBody()
);
}
);
}
/**
* Create request for operation 'apiUsersIdPermissionOverridesPost'
*
* @param string $id (required)
* @param \OmsorgCoreClient\Model\AddUserPermissionOverrideRequest|null $add_user_permission_override_request (optional)
* @param string $contentType The value for the Content-Type header. Check self::contentTypes['apiUsersIdPermissionOverridesPost'] to see the possible values for this operation
*
* @throws \InvalidArgumentException
* @return \GuzzleHttp\Psr7\Request
*/
public function apiUsersIdPermissionOverridesPostRequest($id, $add_user_permission_override_request = null, string $contentType = self::contentTypes['apiUsersIdPermissionOverridesPost'][0])
{
// verify the required parameter 'id' is set
if ($id === null || (is_array($id) && count($id) === 0)) {
throw new \InvalidArgumentException(
'Missing the required parameter $id when calling apiUsersIdPermissionOverridesPost'
);
}
$resourcePath = '/api/users/{id}/permission-overrides';
$formParams = [];
$queryParams = [];
$headerParams = [];
$httpBody = '';
$multipart = false;
// path params
if ($id !== null) {
$resourcePath = str_replace(
'{' . 'id' . '}',
ObjectSerializer::toPathValue($id),
$resourcePath
);
}
$headers = $this->headerSelector->selectHeaders(
['text/plain', 'application/json', 'text/json', ],
$contentType,
$multipart
);
// for model (json/xml)
if (isset($add_user_permission_override_request)) {
if (stripos($headers['Content-Type'], 'application/json') !== false) {
# if Content-Type contains "application/json", json_encode the body
$httpBody = \GuzzleHttp\Utils::jsonEncode(ObjectSerializer::sanitizeForSerialization($add_user_permission_override_request));
} else {
$httpBody = $add_user_permission_override_request;
}
} elseif (count($formParams) > 0) {
if ($multipart) {
$multipartContents = [];
foreach ($formParams as $formParamName => $formParamValue) {
$formParamValueItems = is_array($formParamValue) ? $formParamValue : [$formParamValue];
foreach ($formParamValueItems as $formParamValueItem) {
$multipartContents[] = [
'name' => $formParamName,
'contents' => $formParamValueItem
];
}
}
// for HTTP post (form)
$httpBody = new MultipartStream($multipartContents);
} elseif (stripos($headers['Content-Type'], 'application/json') !== false) {
# if Content-Type contains "application/json", json_encode the form parameters
$httpBody = \GuzzleHttp\Utils::jsonEncode($formParams);
} else {
// for HTTP post (form)
$httpBody = ObjectSerializer::buildQuery($formParams);
}
}
// this endpoint requires Bearer (JWT) authentication (access token)
if (!empty($this->config->getAccessToken())) {
$headers['Authorization'] = 'Bearer ' . $this->config->getAccessToken();
}
$defaultHeaders = [];
if ($this->config->getUserAgent()) {
$defaultHeaders['User-Agent'] = $this->config->getUserAgent();
}
$headers = array_merge(
$defaultHeaders,
$headerParams,
$headers
);
$operationHost = $this->config->getHost();
$query = ObjectSerializer::buildQuery($queryParams);
return new Request(
'POST',
$operationHost . $resourcePath . ($query ? "?{$query}" : ''),
$headers,
$httpBody
);
}
/**
* Operation apiUsersIdPut
*
* @param string $id id (required)
* @param \OmsorgCoreClient\Model\UpdateUserRequest|null $update_user_request update_user_request (optional)
* @param string $contentType The value for the Content-Type header. Check self::contentTypes['apiUsersIdPut'] to see the possible values for this operation
*
* @throws \OmsorgCoreClient\ApiException on non-2xx response or if the response body is not in the expected format
* @throws \InvalidArgumentException
* @return void
*/
public function apiUsersIdPut($id, $update_user_request = null, string $contentType = self::contentTypes['apiUsersIdPut'][0])
{
$this->apiUsersIdPutWithHttpInfo($id, $update_user_request, $contentType);
}
/**
* Operation apiUsersIdPutWithHttpInfo
*
* @param string $id (required)
* @param \OmsorgCoreClient\Model\UpdateUserRequest|null $update_user_request (optional)
* @param string $contentType The value for the Content-Type header. Check self::contentTypes['apiUsersIdPut'] to see the possible values for this operation
*
* @throws \OmsorgCoreClient\ApiException on non-2xx response or if the response body is not in the expected format
* @throws \InvalidArgumentException
* @return array of null, HTTP status code, HTTP response headers (array of strings)
*/
public function apiUsersIdPutWithHttpInfo($id, $update_user_request = null, string $contentType = self::contentTypes['apiUsersIdPut'][0])
{
$request = $this->apiUsersIdPutRequest($id, $update_user_request, $contentType);
try {
$options = $this->createHttpClientOption();
try {
$response = $this->client->send($request, $options);
} catch (RequestException $e) {
throw new ApiException(
"[{$e->getCode()}] {$e->getMessage()}",
(int) $e->getCode(),
$e->getResponse() ? $e->getResponse()->getHeaders() : null,
$e->getResponse() ? (string) $e->getResponse()->getBody() : null
);
} catch (ConnectException $e) {
throw new ApiException(
"[{$e->getCode()}] {$e->getMessage()}",
(int) $e->getCode(),
null,
null
);
}
$statusCode = $response->getStatusCode();
return [null, $statusCode, $response->getHeaders()];
} catch (ApiException $e) {
switch ($e->getCode()) {
}
throw $e;
}
}
/**
* Operation apiUsersIdPutAsync
*
* @param string $id (required)
* @param \OmsorgCoreClient\Model\UpdateUserRequest|null $update_user_request (optional)
* @param string $contentType The value for the Content-Type header. Check self::contentTypes['apiUsersIdPut'] to see the possible values for this operation
*
* @throws \InvalidArgumentException
* @return \GuzzleHttp\Promise\PromiseInterface
*/
public function apiUsersIdPutAsync($id, $update_user_request = null, string $contentType = self::contentTypes['apiUsersIdPut'][0])
{
return $this->apiUsersIdPutAsyncWithHttpInfo($id, $update_user_request, $contentType)
->then(
function ($response) {
return $response[0];
}
);
}
/**
* Operation apiUsersIdPutAsyncWithHttpInfo
*
* @param string $id (required)
* @param \OmsorgCoreClient\Model\UpdateUserRequest|null $update_user_request (optional)
* @param string $contentType The value for the Content-Type header. Check self::contentTypes['apiUsersIdPut'] to see the possible values for this operation
*
* @throws \InvalidArgumentException
* @return \GuzzleHttp\Promise\PromiseInterface
*/
public function apiUsersIdPutAsyncWithHttpInfo($id, $update_user_request = null, string $contentType = self::contentTypes['apiUsersIdPut'][0])
{
$returnType = '';
$request = $this->apiUsersIdPutRequest($id, $update_user_request, $contentType);
return $this->client
->sendAsync($request, $this->createHttpClientOption())
->then(
function ($response) use ($returnType) {
return [null, $response->getStatusCode(), $response->getHeaders()];
},
function ($exception) {
$response = $exception->getResponse();
$statusCode = $response->getStatusCode();
throw new ApiException(
sprintf(
'[%d] Error connecting to the API (%s)',
$statusCode,
$exception->getRequest()->getUri()
),
$statusCode,
$response->getHeaders(),
(string) $response->getBody()
);
}
);
}
/**
* Create request for operation 'apiUsersIdPut'
*
* @param string $id (required)
* @param \OmsorgCoreClient\Model\UpdateUserRequest|null $update_user_request (optional)
* @param string $contentType The value for the Content-Type header. Check self::contentTypes['apiUsersIdPut'] to see the possible values for this operation
*
* @throws \InvalidArgumentException
* @return \GuzzleHttp\Psr7\Request
*/
public function apiUsersIdPutRequest($id, $update_user_request = null, string $contentType = self::contentTypes['apiUsersIdPut'][0])
{
// verify the required parameter 'id' is set
if ($id === null || (is_array($id) && count($id) === 0)) {
throw new \InvalidArgumentException(
'Missing the required parameter $id when calling apiUsersIdPut'
);
}
$resourcePath = '/api/users/{id}';
$formParams = [];
$queryParams = [];
$headerParams = [];
$httpBody = '';
$multipart = false;
// path params
if ($id !== null) {
$resourcePath = str_replace(
'{' . 'id' . '}',
ObjectSerializer::toPathValue($id),
$resourcePath
);
}
$headers = $this->headerSelector->selectHeaders(
[],
$contentType,
$multipart
);
// for model (json/xml)
if (isset($update_user_request)) {
if (stripos($headers['Content-Type'], 'application/json') !== false) {
# if Content-Type contains "application/json", json_encode the body
$httpBody = \GuzzleHttp\Utils::jsonEncode(ObjectSerializer::sanitizeForSerialization($update_user_request));
} else {
$httpBody = $update_user_request;
}
} elseif (count($formParams) > 0) {
if ($multipart) {
$multipartContents = [];
foreach ($formParams as $formParamName => $formParamValue) {
$formParamValueItems = is_array($formParamValue) ? $formParamValue : [$formParamValue];
foreach ($formParamValueItems as $formParamValueItem) {
$multipartContents[] = [
'name' => $formParamName,
'contents' => $formParamValueItem
];
}
}
// for HTTP post (form)
$httpBody = new MultipartStream($multipartContents);
} elseif (stripos($headers['Content-Type'], 'application/json') !== false) {
# if Content-Type contains "application/json", json_encode the form parameters
$httpBody = \GuzzleHttp\Utils::jsonEncode($formParams);
} else {
// for HTTP post (form)
$httpBody = ObjectSerializer::buildQuery($formParams);
}
}
// this endpoint requires Bearer (JWT) authentication (access token)
if (!empty($this->config->getAccessToken())) {
$headers['Authorization'] = 'Bearer ' . $this->config->getAccessToken();
}
$defaultHeaders = [];
if ($this->config->getUserAgent()) {
$defaultHeaders['User-Agent'] = $this->config->getUserAgent();
}
$headers = array_merge(
$defaultHeaders,
$headerParams,
$headers
);
$operationHost = $this->config->getHost();
$query = ObjectSerializer::buildQuery($queryParams);
return new Request(
'PUT',
$operationHost . $resourcePath . ($query ? "?{$query}" : ''),
$headers,
$httpBody
);
}
/**
* Operation apiUsersIdResetPasswordPost
*
* @param string $id id (required)
* @param \OmsorgCoreClient\Model\ResetUserPasswordRequest|null $reset_user_password_request reset_user_password_request (optional)
* @param string $contentType The value for the Content-Type header. Check self::contentTypes['apiUsersIdResetPasswordPost'] to see the possible values for this operation
*
* @throws \OmsorgCoreClient\ApiException on non-2xx response or if the response body is not in the expected format
* @throws \InvalidArgumentException
* @return void
*/
public function apiUsersIdResetPasswordPost($id, $reset_user_password_request = null, string $contentType = self::contentTypes['apiUsersIdResetPasswordPost'][0])
{
$this->apiUsersIdResetPasswordPostWithHttpInfo($id, $reset_user_password_request, $contentType);
}
/**
* Operation apiUsersIdResetPasswordPostWithHttpInfo
*
* @param string $id (required)
* @param \OmsorgCoreClient\Model\ResetUserPasswordRequest|null $reset_user_password_request (optional)
* @param string $contentType The value for the Content-Type header. Check self::contentTypes['apiUsersIdResetPasswordPost'] to see the possible values for this operation
*
* @throws \OmsorgCoreClient\ApiException on non-2xx response or if the response body is not in the expected format
* @throws \InvalidArgumentException
* @return array of null, HTTP status code, HTTP response headers (array of strings)
*/
public function apiUsersIdResetPasswordPostWithHttpInfo($id, $reset_user_password_request = null, string $contentType = self::contentTypes['apiUsersIdResetPasswordPost'][0])
{
$request = $this->apiUsersIdResetPasswordPostRequest($id, $reset_user_password_request, $contentType);
try {
$options = $this->createHttpClientOption();
try {
$response = $this->client->send($request, $options);
} catch (RequestException $e) {
throw new ApiException(
"[{$e->getCode()}] {$e->getMessage()}",
(int) $e->getCode(),
$e->getResponse() ? $e->getResponse()->getHeaders() : null,
$e->getResponse() ? (string) $e->getResponse()->getBody() : null
);
} catch (ConnectException $e) {
throw new ApiException(
"[{$e->getCode()}] {$e->getMessage()}",
(int) $e->getCode(),
null,
null
);
}
$statusCode = $response->getStatusCode();
return [null, $statusCode, $response->getHeaders()];
} catch (ApiException $e) {
switch ($e->getCode()) {
}
throw $e;
}
}
/**
* Operation apiUsersIdResetPasswordPostAsync
*
* @param string $id (required)
* @param \OmsorgCoreClient\Model\ResetUserPasswordRequest|null $reset_user_password_request (optional)
* @param string $contentType The value for the Content-Type header. Check self::contentTypes['apiUsersIdResetPasswordPost'] to see the possible values for this operation
*
* @throws \InvalidArgumentException
* @return \GuzzleHttp\Promise\PromiseInterface
*/
public function apiUsersIdResetPasswordPostAsync($id, $reset_user_password_request = null, string $contentType = self::contentTypes['apiUsersIdResetPasswordPost'][0])
{
return $this->apiUsersIdResetPasswordPostAsyncWithHttpInfo($id, $reset_user_password_request, $contentType)
->then(
function ($response) {
return $response[0];
}
);
}
/**
* Operation apiUsersIdResetPasswordPostAsyncWithHttpInfo
*
* @param string $id (required)
* @param \OmsorgCoreClient\Model\ResetUserPasswordRequest|null $reset_user_password_request (optional)
* @param string $contentType The value for the Content-Type header. Check self::contentTypes['apiUsersIdResetPasswordPost'] to see the possible values for this operation
*
* @throws \InvalidArgumentException
* @return \GuzzleHttp\Promise\PromiseInterface
*/
public function apiUsersIdResetPasswordPostAsyncWithHttpInfo($id, $reset_user_password_request = null, string $contentType = self::contentTypes['apiUsersIdResetPasswordPost'][0])
{
$returnType = '';
$request = $this->apiUsersIdResetPasswordPostRequest($id, $reset_user_password_request, $contentType);
return $this->client
->sendAsync($request, $this->createHttpClientOption())
->then(
function ($response) use ($returnType) {
return [null, $response->getStatusCode(), $response->getHeaders()];
},
function ($exception) {
$response = $exception->getResponse();
$statusCode = $response->getStatusCode();
throw new ApiException(
sprintf(
'[%d] Error connecting to the API (%s)',
$statusCode,
$exception->getRequest()->getUri()
),
$statusCode,
$response->getHeaders(),
(string) $response->getBody()
);
}
);
}
/**
* Create request for operation 'apiUsersIdResetPasswordPost'
*
* @param string $id (required)
* @param \OmsorgCoreClient\Model\ResetUserPasswordRequest|null $reset_user_password_request (optional)
* @param string $contentType The value for the Content-Type header. Check self::contentTypes['apiUsersIdResetPasswordPost'] to see the possible values for this operation
*
* @throws \InvalidArgumentException
* @return \GuzzleHttp\Psr7\Request
*/
public function apiUsersIdResetPasswordPostRequest($id, $reset_user_password_request = null, string $contentType = self::contentTypes['apiUsersIdResetPasswordPost'][0])
{
// verify the required parameter 'id' is set
if ($id === null || (is_array($id) && count($id) === 0)) {
throw new \InvalidArgumentException(
'Missing the required parameter $id when calling apiUsersIdResetPasswordPost'
);
}
$resourcePath = '/api/users/{id}/reset-password';
$formParams = [];
$queryParams = [];
$headerParams = [];
$httpBody = '';
$multipart = false;
// path params
if ($id !== null) {
$resourcePath = str_replace(
'{' . 'id' . '}',
ObjectSerializer::toPathValue($id),
$resourcePath
);
}
$headers = $this->headerSelector->selectHeaders(
[],
$contentType,
$multipart
);
// for model (json/xml)
if (isset($reset_user_password_request)) {
if (stripos($headers['Content-Type'], 'application/json') !== false) {
# if Content-Type contains "application/json", json_encode the body
$httpBody = \GuzzleHttp\Utils::jsonEncode(ObjectSerializer::sanitizeForSerialization($reset_user_password_request));
} else {
$httpBody = $reset_user_password_request;
}
} elseif (count($formParams) > 0) {
if ($multipart) {
$multipartContents = [];
foreach ($formParams as $formParamName => $formParamValue) {
$formParamValueItems = is_array($formParamValue) ? $formParamValue : [$formParamValue];
foreach ($formParamValueItems as $formParamValueItem) {
$multipartContents[] = [
'name' => $formParamName,
'contents' => $formParamValueItem
];
}
}
// for HTTP post (form)
$httpBody = new MultipartStream($multipartContents);
} elseif (stripos($headers['Content-Type'], 'application/json') !== false) {
# if Content-Type contains "application/json", json_encode the form parameters
$httpBody = \GuzzleHttp\Utils::jsonEncode($formParams);
} else {
// for HTTP post (form)
$httpBody = ObjectSerializer::buildQuery($formParams);
}
}
// this endpoint requires Bearer (JWT) authentication (access token)
if (!empty($this->config->getAccessToken())) {
$headers['Authorization'] = 'Bearer ' . $this->config->getAccessToken();
}
$defaultHeaders = [];
if ($this->config->getUserAgent()) {
$defaultHeaders['User-Agent'] = $this->config->getUserAgent();
}
$headers = array_merge(
$defaultHeaders,
$headerParams,
$headers
);
$operationHost = $this->config->getHost();
$query = ObjectSerializer::buildQuery($queryParams);
return new Request(
'POST',
$operationHost . $resourcePath . ($query ? "?{$query}" : ''),
$headers,
$httpBody
);
}
/**
* Operation apiUsersPost
*
* @param \OmsorgCoreClient\Model\CreateUserRequest|null $create_user_request create_user_request (optional)
* @param string $contentType The value for the Content-Type header. Check self::contentTypes['apiUsersPost'] to see the possible values for this operation
*
* @throws \OmsorgCoreClient\ApiException on non-2xx response or if the response body is not in the expected format
* @throws \InvalidArgumentException
* @return \OmsorgCoreClient\Model\UserResponse
*/
public function apiUsersPost($create_user_request = null, string $contentType = self::contentTypes['apiUsersPost'][0])
{
list($response) = $this->apiUsersPostWithHttpInfo($create_user_request, $contentType);
return $response;
}
/**
* Operation apiUsersPostWithHttpInfo
*
* @param \OmsorgCoreClient\Model\CreateUserRequest|null $create_user_request (optional)
* @param string $contentType The value for the Content-Type header. Check self::contentTypes['apiUsersPost'] to see the possible values for this operation
*
* @throws \OmsorgCoreClient\ApiException on non-2xx response or if the response body is not in the expected format
* @throws \InvalidArgumentException
* @return array of \OmsorgCoreClient\Model\UserResponse, HTTP status code, HTTP response headers (array of strings)
*/
public function apiUsersPostWithHttpInfo($create_user_request = null, string $contentType = self::contentTypes['apiUsersPost'][0])
{
$request = $this->apiUsersPostRequest($create_user_request, $contentType);
try {
$options = $this->createHttpClientOption();
try {
$response = $this->client->send($request, $options);
} catch (RequestException $e) {
throw new ApiException(
"[{$e->getCode()}] {$e->getMessage()}",
(int) $e->getCode(),
$e->getResponse() ? $e->getResponse()->getHeaders() : null,
$e->getResponse() ? (string) $e->getResponse()->getBody() : null
);
} catch (ConnectException $e) {
throw new ApiException(
"[{$e->getCode()}] {$e->getMessage()}",
(int) $e->getCode(),
null,
null
);
}
$statusCode = $response->getStatusCode();
switch($statusCode) {
case 200:
return $this->handleResponseWithDataType(
'\OmsorgCoreClient\Model\UserResponse',
$request,
$response,
);
}
if ($statusCode < 200 || $statusCode > 299) {
throw new ApiException(
sprintf(
'[%d] Error connecting to the API (%s)',
$statusCode,
(string) $request->getUri()
),
$statusCode,
$response->getHeaders(),
(string) $response->getBody()
);
}
return $this->handleResponseWithDataType(
'\OmsorgCoreClient\Model\UserResponse',
$request,
$response,
);
} catch (ApiException $e) {
switch ($e->getCode()) {
case 200:
$data = ObjectSerializer::deserialize(
$e->getResponseBody(),
'\OmsorgCoreClient\Model\UserResponse',
$e->getResponseHeaders()
);
$e->setResponseObject($data);
throw $e;
}
throw $e;
}
}
/**
* Operation apiUsersPostAsync
*
* @param \OmsorgCoreClient\Model\CreateUserRequest|null $create_user_request (optional)
* @param string $contentType The value for the Content-Type header. Check self::contentTypes['apiUsersPost'] to see the possible values for this operation
*
* @throws \InvalidArgumentException
* @return \GuzzleHttp\Promise\PromiseInterface
*/
public function apiUsersPostAsync($create_user_request = null, string $contentType = self::contentTypes['apiUsersPost'][0])
{
return $this->apiUsersPostAsyncWithHttpInfo($create_user_request, $contentType)
->then(
function ($response) {
return $response[0];
}
);
}
/**
* Operation apiUsersPostAsyncWithHttpInfo
*
* @param \OmsorgCoreClient\Model\CreateUserRequest|null $create_user_request (optional)
* @param string $contentType The value for the Content-Type header. Check self::contentTypes['apiUsersPost'] to see the possible values for this operation
*
* @throws \InvalidArgumentException
* @return \GuzzleHttp\Promise\PromiseInterface
*/
public function apiUsersPostAsyncWithHttpInfo($create_user_request = null, string $contentType = self::contentTypes['apiUsersPost'][0])
{
$returnType = '\OmsorgCoreClient\Model\UserResponse';
$request = $this->apiUsersPostRequest($create_user_request, $contentType);
return $this->client
->sendAsync($request, $this->createHttpClientOption())
->then(
function ($response) use ($returnType) {
if ($returnType === '\SplFileObject') {
$content = $response->getBody(); //stream goes to serializer
} else {
$content = (string) $response->getBody();
if ($returnType !== 'string') {
$content = json_decode($content);
}
}
return [
ObjectSerializer::deserialize($content, $returnType, []),
$response->getStatusCode(),
$response->getHeaders()
];
},
function ($exception) {
$response = $exception->getResponse();
$statusCode = $response->getStatusCode();
throw new ApiException(
sprintf(
'[%d] Error connecting to the API (%s)',
$statusCode,
$exception->getRequest()->getUri()
),
$statusCode,
$response->getHeaders(),
(string) $response->getBody()
);
}
);
}
/**
* Create request for operation 'apiUsersPost'
*
* @param \OmsorgCoreClient\Model\CreateUserRequest|null $create_user_request (optional)
* @param string $contentType The value for the Content-Type header. Check self::contentTypes['apiUsersPost'] to see the possible values for this operation
*
* @throws \InvalidArgumentException
* @return \GuzzleHttp\Psr7\Request
*/
public function apiUsersPostRequest($create_user_request = null, string $contentType = self::contentTypes['apiUsersPost'][0])
{
$resourcePath = '/api/users';
$formParams = [];
$queryParams = [];
$headerParams = [];
$httpBody = '';
$multipart = false;
$headers = $this->headerSelector->selectHeaders(
['text/plain', 'application/json', 'text/json', ],
$contentType,
$multipart
);
// for model (json/xml)
if (isset($create_user_request)) {
if (stripos($headers['Content-Type'], 'application/json') !== false) {
# if Content-Type contains "application/json", json_encode the body
$httpBody = \GuzzleHttp\Utils::jsonEncode(ObjectSerializer::sanitizeForSerialization($create_user_request));
} else {
$httpBody = $create_user_request;
}
} elseif (count($formParams) > 0) {
if ($multipart) {
$multipartContents = [];
foreach ($formParams as $formParamName => $formParamValue) {
$formParamValueItems = is_array($formParamValue) ? $formParamValue : [$formParamValue];
foreach ($formParamValueItems as $formParamValueItem) {
$multipartContents[] = [
'name' => $formParamName,
'contents' => $formParamValueItem
];
}
}
// for HTTP post (form)
$httpBody = new MultipartStream($multipartContents);
} elseif (stripos($headers['Content-Type'], 'application/json') !== false) {
# if Content-Type contains "application/json", json_encode the form parameters
$httpBody = \GuzzleHttp\Utils::jsonEncode($formParams);
} else {
// for HTTP post (form)
$httpBody = ObjectSerializer::buildQuery($formParams);
}
}
// this endpoint requires Bearer (JWT) authentication (access token)
if (!empty($this->config->getAccessToken())) {
$headers['Authorization'] = 'Bearer ' . $this->config->getAccessToken();
}
$defaultHeaders = [];
if ($this->config->getUserAgent()) {
$defaultHeaders['User-Agent'] = $this->config->getUserAgent();
}
$headers = array_merge(
$defaultHeaders,
$headerParams,
$headers
);
$operationHost = $this->config->getHost();
$query = ObjectSerializer::buildQuery($queryParams);
return new Request(
'POST',
$operationHost . $resourcePath . ($query ? "?{$query}" : ''),
$headers,
$httpBody
);
}
/**
* Create http client option
*
* @throws \RuntimeException on file opening failure
* @return array of http client options
*/
protected function createHttpClientOption()
{
$options = [];
if ($this->config->getDebug()) {
$options[RequestOptions::DEBUG] = fopen($this->config->getDebugFile(), 'a');
if (!$options[RequestOptions::DEBUG]) {
throw new \RuntimeException('Failed to open the debug file: ' . $this->config->getDebugFile());
}
}
return $options;
}
private function handleResponseWithDataType(
string $dataType,
RequestInterface $request,
ResponseInterface $response
): array {
if ($dataType === '\SplFileObject') {
$content = $response->getBody(); //stream goes to serializer
} else {
$content = (string) $response->getBody();
if ($dataType !== 'string') {
try {
$content = json_decode($content, false, 512, JSON_THROW_ON_ERROR);
} catch (\JsonException $exception) {
throw new ApiException(
sprintf(
'Error JSON decoding server response (%s)',
$request->getUri()
),
$response->getStatusCode(),
$response->getHeaders(),
$content
);
}
}
}
return [
ObjectSerializer::deserialize($content, $dataType, []),
$response->getStatusCode(),
$response->getHeaders()
];
}
private function responseWithinRangeCode(
string $rangeCode,
int $statusCode
): bool {
$left = (int) ($rangeCode[0].'00');
$right = (int) ($rangeCode[0].'99');
return $statusCode >= $left && $statusCode <= $right;
}
}