Docker-Images bauen und veröffentlichen / build (, omsorgCore/Dockerfile, omsorgcore) (push) Successful in 17s
Docker-Images bauen und veröffentlichen / build (, omsorgWeb/Dockerfile, omsorgweb) (push) Successful in 6s
Docker-Images bauen und veröffentlichen / build (, omsorgapp/Dockerfile, omsorgapp) (push) Successful in 17s
Adds the Assignment core object (Order x Employee, date range) with full CRUD, soft-delete/trash integration, and generated API clients. Layers FR-EM-3 conflict checks onto assignment creation: qualification, absence/availability, working-hours approximation, cross-order overlap, and active-contract coverage. Each check's severity (Warning vs. Error) is configurable at runtime via a new AssignmentValidationSettings singleton and admin settings panel, instead of being hardcoded - lets the business tune strictness per check without a redeploy. Adds a live GET /api/assignments/check endpoint so the create-assignment dialog can preview conflicts as the user picks employee/dates, before they hit save, rather than only finding out after submitting. Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
1874 lines
70 KiB
PHP
1874 lines
70 KiB
PHP
<?php
|
|
/**
|
|
* AssignmentsApi
|
|
* 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;
|
|
|
|
/**
|
|
* AssignmentsApi Class Doc Comment
|
|
*
|
|
* @category Class
|
|
* @package OmsorgCoreClient
|
|
* @author OpenAPI Generator team
|
|
* @link https://openapi-generator.tech
|
|
*/
|
|
class AssignmentsApi
|
|
{
|
|
/**
|
|
* @var ClientInterface
|
|
*/
|
|
protected $client;
|
|
|
|
/**
|
|
* @var Configuration
|
|
*/
|
|
protected $config;
|
|
|
|
/**
|
|
* @var HeaderSelector
|
|
*/
|
|
protected $headerSelector;
|
|
|
|
/**
|
|
* @var int Host index
|
|
*/
|
|
protected $hostIndex;
|
|
|
|
/** @var string[] $contentTypes **/
|
|
public const contentTypes = [
|
|
'apiAssignmentsCheckGet' => [
|
|
'application/json',
|
|
],
|
|
'apiAssignmentsGet' => [
|
|
'application/json',
|
|
],
|
|
'apiAssignmentsIdDelete' => [
|
|
'application/json',
|
|
],
|
|
'apiAssignmentsIdGet' => [
|
|
'application/json',
|
|
],
|
|
'apiAssignmentsIdPut' => [
|
|
'application/json',
|
|
'text/json',
|
|
'application/*+json',
|
|
],
|
|
'apiAssignmentsPost' => [
|
|
'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 apiAssignmentsCheckGet
|
|
*
|
|
* @param string|null $order_id order_id (optional)
|
|
* @param string|null $employee_id employee_id (optional)
|
|
* @param \DateTime|null $start_date start_date (optional)
|
|
* @param \DateTime|null $end_date end_date (optional)
|
|
* @param string|null $exclude_assignment_id exclude_assignment_id (optional)
|
|
* @param string $contentType The value for the Content-Type header. Check self::contentTypes['apiAssignmentsCheckGet'] 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\AssignmentConflictResponse[]
|
|
*/
|
|
public function apiAssignmentsCheckGet($order_id = null, $employee_id = null, $start_date = null, $end_date = null, $exclude_assignment_id = null, string $contentType = self::contentTypes['apiAssignmentsCheckGet'][0])
|
|
{
|
|
list($response) = $this->apiAssignmentsCheckGetWithHttpInfo($order_id, $employee_id, $start_date, $end_date, $exclude_assignment_id, $contentType);
|
|
return $response;
|
|
}
|
|
|
|
/**
|
|
* Operation apiAssignmentsCheckGetWithHttpInfo
|
|
*
|
|
* @param string|null $order_id (optional)
|
|
* @param string|null $employee_id (optional)
|
|
* @param \DateTime|null $start_date (optional)
|
|
* @param \DateTime|null $end_date (optional)
|
|
* @param string|null $exclude_assignment_id (optional)
|
|
* @param string $contentType The value for the Content-Type header. Check self::contentTypes['apiAssignmentsCheckGet'] 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\AssignmentConflictResponse[], HTTP status code, HTTP response headers (array of strings)
|
|
*/
|
|
public function apiAssignmentsCheckGetWithHttpInfo($order_id = null, $employee_id = null, $start_date = null, $end_date = null, $exclude_assignment_id = null, string $contentType = self::contentTypes['apiAssignmentsCheckGet'][0])
|
|
{
|
|
$request = $this->apiAssignmentsCheckGetRequest($order_id, $employee_id, $start_date, $end_date, $exclude_assignment_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\AssignmentConflictResponse[]',
|
|
$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\AssignmentConflictResponse[]',
|
|
$request,
|
|
$response,
|
|
);
|
|
} catch (ApiException $e) {
|
|
switch ($e->getCode()) {
|
|
case 200:
|
|
$data = ObjectSerializer::deserialize(
|
|
$e->getResponseBody(),
|
|
'\OmsorgCoreClient\Model\AssignmentConflictResponse[]',
|
|
$e->getResponseHeaders()
|
|
);
|
|
$e->setResponseObject($data);
|
|
throw $e;
|
|
}
|
|
|
|
|
|
throw $e;
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Operation apiAssignmentsCheckGetAsync
|
|
*
|
|
* @param string|null $order_id (optional)
|
|
* @param string|null $employee_id (optional)
|
|
* @param \DateTime|null $start_date (optional)
|
|
* @param \DateTime|null $end_date (optional)
|
|
* @param string|null $exclude_assignment_id (optional)
|
|
* @param string $contentType The value for the Content-Type header. Check self::contentTypes['apiAssignmentsCheckGet'] to see the possible values for this operation
|
|
*
|
|
* @throws \InvalidArgumentException
|
|
* @return \GuzzleHttp\Promise\PromiseInterface
|
|
*/
|
|
public function apiAssignmentsCheckGetAsync($order_id = null, $employee_id = null, $start_date = null, $end_date = null, $exclude_assignment_id = null, string $contentType = self::contentTypes['apiAssignmentsCheckGet'][0])
|
|
{
|
|
return $this->apiAssignmentsCheckGetAsyncWithHttpInfo($order_id, $employee_id, $start_date, $end_date, $exclude_assignment_id, $contentType)
|
|
->then(
|
|
function ($response) {
|
|
return $response[0];
|
|
}
|
|
);
|
|
}
|
|
|
|
/**
|
|
* Operation apiAssignmentsCheckGetAsyncWithHttpInfo
|
|
*
|
|
* @param string|null $order_id (optional)
|
|
* @param string|null $employee_id (optional)
|
|
* @param \DateTime|null $start_date (optional)
|
|
* @param \DateTime|null $end_date (optional)
|
|
* @param string|null $exclude_assignment_id (optional)
|
|
* @param string $contentType The value for the Content-Type header. Check self::contentTypes['apiAssignmentsCheckGet'] to see the possible values for this operation
|
|
*
|
|
* @throws \InvalidArgumentException
|
|
* @return \GuzzleHttp\Promise\PromiseInterface
|
|
*/
|
|
public function apiAssignmentsCheckGetAsyncWithHttpInfo($order_id = null, $employee_id = null, $start_date = null, $end_date = null, $exclude_assignment_id = null, string $contentType = self::contentTypes['apiAssignmentsCheckGet'][0])
|
|
{
|
|
$returnType = '\OmsorgCoreClient\Model\AssignmentConflictResponse[]';
|
|
$request = $this->apiAssignmentsCheckGetRequest($order_id, $employee_id, $start_date, $end_date, $exclude_assignment_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 'apiAssignmentsCheckGet'
|
|
*
|
|
* @param string|null $order_id (optional)
|
|
* @param string|null $employee_id (optional)
|
|
* @param \DateTime|null $start_date (optional)
|
|
* @param \DateTime|null $end_date (optional)
|
|
* @param string|null $exclude_assignment_id (optional)
|
|
* @param string $contentType The value for the Content-Type header. Check self::contentTypes['apiAssignmentsCheckGet'] to see the possible values for this operation
|
|
*
|
|
* @throws \InvalidArgumentException
|
|
* @return \GuzzleHttp\Psr7\Request
|
|
*/
|
|
public function apiAssignmentsCheckGetRequest($order_id = null, $employee_id = null, $start_date = null, $end_date = null, $exclude_assignment_id = null, string $contentType = self::contentTypes['apiAssignmentsCheckGet'][0])
|
|
{
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
$resourcePath = '/api/assignments/check';
|
|
$formParams = [];
|
|
$queryParams = [];
|
|
$headerParams = [];
|
|
$httpBody = '';
|
|
$multipart = false;
|
|
|
|
// query params
|
|
$queryParams = array_merge($queryParams, ObjectSerializer::toQueryValue(
|
|
$order_id,
|
|
'orderId', // param base name
|
|
'string', // openApiType
|
|
'form', // style
|
|
true, // explode
|
|
false // required
|
|
) ?? []);
|
|
// query params
|
|
$queryParams = array_merge($queryParams, ObjectSerializer::toQueryValue(
|
|
$employee_id,
|
|
'employeeId', // param base name
|
|
'string', // openApiType
|
|
'form', // style
|
|
true, // explode
|
|
false // required
|
|
) ?? []);
|
|
// query params
|
|
$queryParams = array_merge($queryParams, ObjectSerializer::toQueryValue(
|
|
$start_date,
|
|
'startDate', // param base name
|
|
'string', // openApiType
|
|
'form', // style
|
|
true, // explode
|
|
false // required
|
|
) ?? []);
|
|
// query params
|
|
$queryParams = array_merge($queryParams, ObjectSerializer::toQueryValue(
|
|
$end_date,
|
|
'endDate', // param base name
|
|
'string', // openApiType
|
|
'form', // style
|
|
true, // explode
|
|
false // required
|
|
) ?? []);
|
|
// query params
|
|
$queryParams = array_merge($queryParams, ObjectSerializer::toQueryValue(
|
|
$exclude_assignment_id,
|
|
'excludeAssignmentId', // param base name
|
|
'string', // openApiType
|
|
'form', // style
|
|
true, // explode
|
|
false // required
|
|
) ?? []);
|
|
|
|
|
|
|
|
|
|
$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 apiAssignmentsGet
|
|
*
|
|
* @param string|null $order_id order_id (optional)
|
|
* @param string|null $employee_id employee_id (optional)
|
|
* @param \DateTime|null $from_date from_date (optional)
|
|
* @param \DateTime|null $to_date to_date (optional)
|
|
* @param int|null $page page (optional, default to 1)
|
|
* @param int|null $page_size page_size (optional, default to 20)
|
|
* @param string $contentType The value for the Content-Type header. Check self::contentTypes['apiAssignmentsGet'] 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\AssignmentResponsePagedResponse
|
|
*/
|
|
public function apiAssignmentsGet($order_id = null, $employee_id = null, $from_date = null, $to_date = null, $page = 1, $page_size = 20, string $contentType = self::contentTypes['apiAssignmentsGet'][0])
|
|
{
|
|
list($response) = $this->apiAssignmentsGetWithHttpInfo($order_id, $employee_id, $from_date, $to_date, $page, $page_size, $contentType);
|
|
return $response;
|
|
}
|
|
|
|
/**
|
|
* Operation apiAssignmentsGetWithHttpInfo
|
|
*
|
|
* @param string|null $order_id (optional)
|
|
* @param string|null $employee_id (optional)
|
|
* @param \DateTime|null $from_date (optional)
|
|
* @param \DateTime|null $to_date (optional)
|
|
* @param int|null $page (optional, default to 1)
|
|
* @param int|null $page_size (optional, default to 20)
|
|
* @param string $contentType The value for the Content-Type header. Check self::contentTypes['apiAssignmentsGet'] 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\AssignmentResponsePagedResponse, HTTP status code, HTTP response headers (array of strings)
|
|
*/
|
|
public function apiAssignmentsGetWithHttpInfo($order_id = null, $employee_id = null, $from_date = null, $to_date = null, $page = 1, $page_size = 20, string $contentType = self::contentTypes['apiAssignmentsGet'][0])
|
|
{
|
|
$request = $this->apiAssignmentsGetRequest($order_id, $employee_id, $from_date, $to_date, $page, $page_size, $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\AssignmentResponsePagedResponse',
|
|
$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\AssignmentResponsePagedResponse',
|
|
$request,
|
|
$response,
|
|
);
|
|
} catch (ApiException $e) {
|
|
switch ($e->getCode()) {
|
|
case 200:
|
|
$data = ObjectSerializer::deserialize(
|
|
$e->getResponseBody(),
|
|
'\OmsorgCoreClient\Model\AssignmentResponsePagedResponse',
|
|
$e->getResponseHeaders()
|
|
);
|
|
$e->setResponseObject($data);
|
|
throw $e;
|
|
}
|
|
|
|
|
|
throw $e;
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Operation apiAssignmentsGetAsync
|
|
*
|
|
* @param string|null $order_id (optional)
|
|
* @param string|null $employee_id (optional)
|
|
* @param \DateTime|null $from_date (optional)
|
|
* @param \DateTime|null $to_date (optional)
|
|
* @param int|null $page (optional, default to 1)
|
|
* @param int|null $page_size (optional, default to 20)
|
|
* @param string $contentType The value for the Content-Type header. Check self::contentTypes['apiAssignmentsGet'] to see the possible values for this operation
|
|
*
|
|
* @throws \InvalidArgumentException
|
|
* @return \GuzzleHttp\Promise\PromiseInterface
|
|
*/
|
|
public function apiAssignmentsGetAsync($order_id = null, $employee_id = null, $from_date = null, $to_date = null, $page = 1, $page_size = 20, string $contentType = self::contentTypes['apiAssignmentsGet'][0])
|
|
{
|
|
return $this->apiAssignmentsGetAsyncWithHttpInfo($order_id, $employee_id, $from_date, $to_date, $page, $page_size, $contentType)
|
|
->then(
|
|
function ($response) {
|
|
return $response[0];
|
|
}
|
|
);
|
|
}
|
|
|
|
/**
|
|
* Operation apiAssignmentsGetAsyncWithHttpInfo
|
|
*
|
|
* @param string|null $order_id (optional)
|
|
* @param string|null $employee_id (optional)
|
|
* @param \DateTime|null $from_date (optional)
|
|
* @param \DateTime|null $to_date (optional)
|
|
* @param int|null $page (optional, default to 1)
|
|
* @param int|null $page_size (optional, default to 20)
|
|
* @param string $contentType The value for the Content-Type header. Check self::contentTypes['apiAssignmentsGet'] to see the possible values for this operation
|
|
*
|
|
* @throws \InvalidArgumentException
|
|
* @return \GuzzleHttp\Promise\PromiseInterface
|
|
*/
|
|
public function apiAssignmentsGetAsyncWithHttpInfo($order_id = null, $employee_id = null, $from_date = null, $to_date = null, $page = 1, $page_size = 20, string $contentType = self::contentTypes['apiAssignmentsGet'][0])
|
|
{
|
|
$returnType = '\OmsorgCoreClient\Model\AssignmentResponsePagedResponse';
|
|
$request = $this->apiAssignmentsGetRequest($order_id, $employee_id, $from_date, $to_date, $page, $page_size, $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 'apiAssignmentsGet'
|
|
*
|
|
* @param string|null $order_id (optional)
|
|
* @param string|null $employee_id (optional)
|
|
* @param \DateTime|null $from_date (optional)
|
|
* @param \DateTime|null $to_date (optional)
|
|
* @param int|null $page (optional, default to 1)
|
|
* @param int|null $page_size (optional, default to 20)
|
|
* @param string $contentType The value for the Content-Type header. Check self::contentTypes['apiAssignmentsGet'] to see the possible values for this operation
|
|
*
|
|
* @throws \InvalidArgumentException
|
|
* @return \GuzzleHttp\Psr7\Request
|
|
*/
|
|
public function apiAssignmentsGetRequest($order_id = null, $employee_id = null, $from_date = null, $to_date = null, $page = 1, $page_size = 20, string $contentType = self::contentTypes['apiAssignmentsGet'][0])
|
|
{
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
$resourcePath = '/api/assignments';
|
|
$formParams = [];
|
|
$queryParams = [];
|
|
$headerParams = [];
|
|
$httpBody = '';
|
|
$multipart = false;
|
|
|
|
// query params
|
|
$queryParams = array_merge($queryParams, ObjectSerializer::toQueryValue(
|
|
$order_id,
|
|
'orderId', // param base name
|
|
'string', // openApiType
|
|
'form', // style
|
|
true, // explode
|
|
false // required
|
|
) ?? []);
|
|
// query params
|
|
$queryParams = array_merge($queryParams, ObjectSerializer::toQueryValue(
|
|
$employee_id,
|
|
'employeeId', // param base name
|
|
'string', // openApiType
|
|
'form', // style
|
|
true, // explode
|
|
false // required
|
|
) ?? []);
|
|
// query params
|
|
$queryParams = array_merge($queryParams, ObjectSerializer::toQueryValue(
|
|
$from_date,
|
|
'fromDate', // param base name
|
|
'string', // openApiType
|
|
'form', // style
|
|
true, // explode
|
|
false // required
|
|
) ?? []);
|
|
// query params
|
|
$queryParams = array_merge($queryParams, ObjectSerializer::toQueryValue(
|
|
$to_date,
|
|
'toDate', // param base name
|
|
'string', // openApiType
|
|
'form', // style
|
|
true, // explode
|
|
false // required
|
|
) ?? []);
|
|
// query params
|
|
$queryParams = array_merge($queryParams, ObjectSerializer::toQueryValue(
|
|
$page,
|
|
'page', // param base name
|
|
'integer', // openApiType
|
|
'form', // style
|
|
true, // explode
|
|
false // required
|
|
) ?? []);
|
|
// query params
|
|
$queryParams = array_merge($queryParams, ObjectSerializer::toQueryValue(
|
|
$page_size,
|
|
'pageSize', // param base name
|
|
'integer', // openApiType
|
|
'form', // style
|
|
true, // explode
|
|
false // required
|
|
) ?? []);
|
|
|
|
|
|
|
|
|
|
$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 apiAssignmentsIdDelete
|
|
*
|
|
* @param string $id id (required)
|
|
* @param string $contentType The value for the Content-Type header. Check self::contentTypes['apiAssignmentsIdDelete'] 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 apiAssignmentsIdDelete($id, string $contentType = self::contentTypes['apiAssignmentsIdDelete'][0])
|
|
{
|
|
$this->apiAssignmentsIdDeleteWithHttpInfo($id, $contentType);
|
|
}
|
|
|
|
/**
|
|
* Operation apiAssignmentsIdDeleteWithHttpInfo
|
|
*
|
|
* @param string $id (required)
|
|
* @param string $contentType The value for the Content-Type header. Check self::contentTypes['apiAssignmentsIdDelete'] 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 apiAssignmentsIdDeleteWithHttpInfo($id, string $contentType = self::contentTypes['apiAssignmentsIdDelete'][0])
|
|
{
|
|
$request = $this->apiAssignmentsIdDeleteRequest($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 apiAssignmentsIdDeleteAsync
|
|
*
|
|
* @param string $id (required)
|
|
* @param string $contentType The value for the Content-Type header. Check self::contentTypes['apiAssignmentsIdDelete'] to see the possible values for this operation
|
|
*
|
|
* @throws \InvalidArgumentException
|
|
* @return \GuzzleHttp\Promise\PromiseInterface
|
|
*/
|
|
public function apiAssignmentsIdDeleteAsync($id, string $contentType = self::contentTypes['apiAssignmentsIdDelete'][0])
|
|
{
|
|
return $this->apiAssignmentsIdDeleteAsyncWithHttpInfo($id, $contentType)
|
|
->then(
|
|
function ($response) {
|
|
return $response[0];
|
|
}
|
|
);
|
|
}
|
|
|
|
/**
|
|
* Operation apiAssignmentsIdDeleteAsyncWithHttpInfo
|
|
*
|
|
* @param string $id (required)
|
|
* @param string $contentType The value for the Content-Type header. Check self::contentTypes['apiAssignmentsIdDelete'] to see the possible values for this operation
|
|
*
|
|
* @throws \InvalidArgumentException
|
|
* @return \GuzzleHttp\Promise\PromiseInterface
|
|
*/
|
|
public function apiAssignmentsIdDeleteAsyncWithHttpInfo($id, string $contentType = self::contentTypes['apiAssignmentsIdDelete'][0])
|
|
{
|
|
$returnType = '';
|
|
$request = $this->apiAssignmentsIdDeleteRequest($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 'apiAssignmentsIdDelete'
|
|
*
|
|
* @param string $id (required)
|
|
* @param string $contentType The value for the Content-Type header. Check self::contentTypes['apiAssignmentsIdDelete'] to see the possible values for this operation
|
|
*
|
|
* @throws \InvalidArgumentException
|
|
* @return \GuzzleHttp\Psr7\Request
|
|
*/
|
|
public function apiAssignmentsIdDeleteRequest($id, string $contentType = self::contentTypes['apiAssignmentsIdDelete'][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 apiAssignmentsIdDelete'
|
|
);
|
|
}
|
|
|
|
|
|
$resourcePath = '/api/assignments/{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 (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 apiAssignmentsIdGet
|
|
*
|
|
* @param string $id id (required)
|
|
* @param string $contentType The value for the Content-Type header. Check self::contentTypes['apiAssignmentsIdGet'] 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\AssignmentResponse
|
|
*/
|
|
public function apiAssignmentsIdGet($id, string $contentType = self::contentTypes['apiAssignmentsIdGet'][0])
|
|
{
|
|
list($response) = $this->apiAssignmentsIdGetWithHttpInfo($id, $contentType);
|
|
return $response;
|
|
}
|
|
|
|
/**
|
|
* Operation apiAssignmentsIdGetWithHttpInfo
|
|
*
|
|
* @param string $id (required)
|
|
* @param string $contentType The value for the Content-Type header. Check self::contentTypes['apiAssignmentsIdGet'] 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\AssignmentResponse, HTTP status code, HTTP response headers (array of strings)
|
|
*/
|
|
public function apiAssignmentsIdGetWithHttpInfo($id, string $contentType = self::contentTypes['apiAssignmentsIdGet'][0])
|
|
{
|
|
$request = $this->apiAssignmentsIdGetRequest($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\AssignmentResponse',
|
|
$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\AssignmentResponse',
|
|
$request,
|
|
$response,
|
|
);
|
|
} catch (ApiException $e) {
|
|
switch ($e->getCode()) {
|
|
case 200:
|
|
$data = ObjectSerializer::deserialize(
|
|
$e->getResponseBody(),
|
|
'\OmsorgCoreClient\Model\AssignmentResponse',
|
|
$e->getResponseHeaders()
|
|
);
|
|
$e->setResponseObject($data);
|
|
throw $e;
|
|
}
|
|
|
|
|
|
throw $e;
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Operation apiAssignmentsIdGetAsync
|
|
*
|
|
* @param string $id (required)
|
|
* @param string $contentType The value for the Content-Type header. Check self::contentTypes['apiAssignmentsIdGet'] to see the possible values for this operation
|
|
*
|
|
* @throws \InvalidArgumentException
|
|
* @return \GuzzleHttp\Promise\PromiseInterface
|
|
*/
|
|
public function apiAssignmentsIdGetAsync($id, string $contentType = self::contentTypes['apiAssignmentsIdGet'][0])
|
|
{
|
|
return $this->apiAssignmentsIdGetAsyncWithHttpInfo($id, $contentType)
|
|
->then(
|
|
function ($response) {
|
|
return $response[0];
|
|
}
|
|
);
|
|
}
|
|
|
|
/**
|
|
* Operation apiAssignmentsIdGetAsyncWithHttpInfo
|
|
*
|
|
* @param string $id (required)
|
|
* @param string $contentType The value for the Content-Type header. Check self::contentTypes['apiAssignmentsIdGet'] to see the possible values for this operation
|
|
*
|
|
* @throws \InvalidArgumentException
|
|
* @return \GuzzleHttp\Promise\PromiseInterface
|
|
*/
|
|
public function apiAssignmentsIdGetAsyncWithHttpInfo($id, string $contentType = self::contentTypes['apiAssignmentsIdGet'][0])
|
|
{
|
|
$returnType = '\OmsorgCoreClient\Model\AssignmentResponse';
|
|
$request = $this->apiAssignmentsIdGetRequest($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 'apiAssignmentsIdGet'
|
|
*
|
|
* @param string $id (required)
|
|
* @param string $contentType The value for the Content-Type header. Check self::contentTypes['apiAssignmentsIdGet'] to see the possible values for this operation
|
|
*
|
|
* @throws \InvalidArgumentException
|
|
* @return \GuzzleHttp\Psr7\Request
|
|
*/
|
|
public function apiAssignmentsIdGetRequest($id, string $contentType = self::contentTypes['apiAssignmentsIdGet'][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 apiAssignmentsIdGet'
|
|
);
|
|
}
|
|
|
|
|
|
$resourcePath = '/api/assignments/{id}';
|
|
$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 apiAssignmentsIdPut
|
|
*
|
|
* @param string $id id (required)
|
|
* @param \OmsorgCoreClient\Model\UpdateAssignmentRequest|null $update_assignment_request update_assignment_request (optional)
|
|
* @param string $contentType The value for the Content-Type header. Check self::contentTypes['apiAssignmentsIdPut'] 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\AssignmentResponse
|
|
*/
|
|
public function apiAssignmentsIdPut($id, $update_assignment_request = null, string $contentType = self::contentTypes['apiAssignmentsIdPut'][0])
|
|
{
|
|
list($response) = $this->apiAssignmentsIdPutWithHttpInfo($id, $update_assignment_request, $contentType);
|
|
return $response;
|
|
}
|
|
|
|
/**
|
|
* Operation apiAssignmentsIdPutWithHttpInfo
|
|
*
|
|
* @param string $id (required)
|
|
* @param \OmsorgCoreClient\Model\UpdateAssignmentRequest|null $update_assignment_request (optional)
|
|
* @param string $contentType The value for the Content-Type header. Check self::contentTypes['apiAssignmentsIdPut'] 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\AssignmentResponse, HTTP status code, HTTP response headers (array of strings)
|
|
*/
|
|
public function apiAssignmentsIdPutWithHttpInfo($id, $update_assignment_request = null, string $contentType = self::contentTypes['apiAssignmentsIdPut'][0])
|
|
{
|
|
$request = $this->apiAssignmentsIdPutRequest($id, $update_assignment_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\AssignmentResponse',
|
|
$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\AssignmentResponse',
|
|
$request,
|
|
$response,
|
|
);
|
|
} catch (ApiException $e) {
|
|
switch ($e->getCode()) {
|
|
case 200:
|
|
$data = ObjectSerializer::deserialize(
|
|
$e->getResponseBody(),
|
|
'\OmsorgCoreClient\Model\AssignmentResponse',
|
|
$e->getResponseHeaders()
|
|
);
|
|
$e->setResponseObject($data);
|
|
throw $e;
|
|
}
|
|
|
|
|
|
throw $e;
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Operation apiAssignmentsIdPutAsync
|
|
*
|
|
* @param string $id (required)
|
|
* @param \OmsorgCoreClient\Model\UpdateAssignmentRequest|null $update_assignment_request (optional)
|
|
* @param string $contentType The value for the Content-Type header. Check self::contentTypes['apiAssignmentsIdPut'] to see the possible values for this operation
|
|
*
|
|
* @throws \InvalidArgumentException
|
|
* @return \GuzzleHttp\Promise\PromiseInterface
|
|
*/
|
|
public function apiAssignmentsIdPutAsync($id, $update_assignment_request = null, string $contentType = self::contentTypes['apiAssignmentsIdPut'][0])
|
|
{
|
|
return $this->apiAssignmentsIdPutAsyncWithHttpInfo($id, $update_assignment_request, $contentType)
|
|
->then(
|
|
function ($response) {
|
|
return $response[0];
|
|
}
|
|
);
|
|
}
|
|
|
|
/**
|
|
* Operation apiAssignmentsIdPutAsyncWithHttpInfo
|
|
*
|
|
* @param string $id (required)
|
|
* @param \OmsorgCoreClient\Model\UpdateAssignmentRequest|null $update_assignment_request (optional)
|
|
* @param string $contentType The value for the Content-Type header. Check self::contentTypes['apiAssignmentsIdPut'] to see the possible values for this operation
|
|
*
|
|
* @throws \InvalidArgumentException
|
|
* @return \GuzzleHttp\Promise\PromiseInterface
|
|
*/
|
|
public function apiAssignmentsIdPutAsyncWithHttpInfo($id, $update_assignment_request = null, string $contentType = self::contentTypes['apiAssignmentsIdPut'][0])
|
|
{
|
|
$returnType = '\OmsorgCoreClient\Model\AssignmentResponse';
|
|
$request = $this->apiAssignmentsIdPutRequest($id, $update_assignment_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 'apiAssignmentsIdPut'
|
|
*
|
|
* @param string $id (required)
|
|
* @param \OmsorgCoreClient\Model\UpdateAssignmentRequest|null $update_assignment_request (optional)
|
|
* @param string $contentType The value for the Content-Type header. Check self::contentTypes['apiAssignmentsIdPut'] to see the possible values for this operation
|
|
*
|
|
* @throws \InvalidArgumentException
|
|
* @return \GuzzleHttp\Psr7\Request
|
|
*/
|
|
public function apiAssignmentsIdPutRequest($id, $update_assignment_request = null, string $contentType = self::contentTypes['apiAssignmentsIdPut'][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 apiAssignmentsIdPut'
|
|
);
|
|
}
|
|
|
|
|
|
|
|
$resourcePath = '/api/assignments/{id}';
|
|
$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($update_assignment_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_assignment_request));
|
|
} else {
|
|
$httpBody = $update_assignment_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 apiAssignmentsPost
|
|
*
|
|
* @param \OmsorgCoreClient\Model\CreateAssignmentRequest|null $create_assignment_request create_assignment_request (optional)
|
|
* @param string $contentType The value for the Content-Type header. Check self::contentTypes['apiAssignmentsPost'] 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\AssignmentResponse
|
|
*/
|
|
public function apiAssignmentsPost($create_assignment_request = null, string $contentType = self::contentTypes['apiAssignmentsPost'][0])
|
|
{
|
|
list($response) = $this->apiAssignmentsPostWithHttpInfo($create_assignment_request, $contentType);
|
|
return $response;
|
|
}
|
|
|
|
/**
|
|
* Operation apiAssignmentsPostWithHttpInfo
|
|
*
|
|
* @param \OmsorgCoreClient\Model\CreateAssignmentRequest|null $create_assignment_request (optional)
|
|
* @param string $contentType The value for the Content-Type header. Check self::contentTypes['apiAssignmentsPost'] 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\AssignmentResponse, HTTP status code, HTTP response headers (array of strings)
|
|
*/
|
|
public function apiAssignmentsPostWithHttpInfo($create_assignment_request = null, string $contentType = self::contentTypes['apiAssignmentsPost'][0])
|
|
{
|
|
$request = $this->apiAssignmentsPostRequest($create_assignment_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\AssignmentResponse',
|
|
$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\AssignmentResponse',
|
|
$request,
|
|
$response,
|
|
);
|
|
} catch (ApiException $e) {
|
|
switch ($e->getCode()) {
|
|
case 200:
|
|
$data = ObjectSerializer::deserialize(
|
|
$e->getResponseBody(),
|
|
'\OmsorgCoreClient\Model\AssignmentResponse',
|
|
$e->getResponseHeaders()
|
|
);
|
|
$e->setResponseObject($data);
|
|
throw $e;
|
|
}
|
|
|
|
|
|
throw $e;
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Operation apiAssignmentsPostAsync
|
|
*
|
|
* @param \OmsorgCoreClient\Model\CreateAssignmentRequest|null $create_assignment_request (optional)
|
|
* @param string $contentType The value for the Content-Type header. Check self::contentTypes['apiAssignmentsPost'] to see the possible values for this operation
|
|
*
|
|
* @throws \InvalidArgumentException
|
|
* @return \GuzzleHttp\Promise\PromiseInterface
|
|
*/
|
|
public function apiAssignmentsPostAsync($create_assignment_request = null, string $contentType = self::contentTypes['apiAssignmentsPost'][0])
|
|
{
|
|
return $this->apiAssignmentsPostAsyncWithHttpInfo($create_assignment_request, $contentType)
|
|
->then(
|
|
function ($response) {
|
|
return $response[0];
|
|
}
|
|
);
|
|
}
|
|
|
|
/**
|
|
* Operation apiAssignmentsPostAsyncWithHttpInfo
|
|
*
|
|
* @param \OmsorgCoreClient\Model\CreateAssignmentRequest|null $create_assignment_request (optional)
|
|
* @param string $contentType The value for the Content-Type header. Check self::contentTypes['apiAssignmentsPost'] to see the possible values for this operation
|
|
*
|
|
* @throws \InvalidArgumentException
|
|
* @return \GuzzleHttp\Promise\PromiseInterface
|
|
*/
|
|
public function apiAssignmentsPostAsyncWithHttpInfo($create_assignment_request = null, string $contentType = self::contentTypes['apiAssignmentsPost'][0])
|
|
{
|
|
$returnType = '\OmsorgCoreClient\Model\AssignmentResponse';
|
|
$request = $this->apiAssignmentsPostRequest($create_assignment_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 'apiAssignmentsPost'
|
|
*
|
|
* @param \OmsorgCoreClient\Model\CreateAssignmentRequest|null $create_assignment_request (optional)
|
|
* @param string $contentType The value for the Content-Type header. Check self::contentTypes['apiAssignmentsPost'] to see the possible values for this operation
|
|
*
|
|
* @throws \InvalidArgumentException
|
|
* @return \GuzzleHttp\Psr7\Request
|
|
*/
|
|
public function apiAssignmentsPostRequest($create_assignment_request = null, string $contentType = self::contentTypes['apiAssignmentsPost'][0])
|
|
{
|
|
|
|
|
|
|
|
$resourcePath = '/api/assignments';
|
|
$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_assignment_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_assignment_request));
|
|
} else {
|
|
$httpBody = $create_assignment_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;
|
|
}
|
|
}
|