[ 'application/json', ], 'apiEmployeesIdDelete' => [ 'application/json', ], 'apiEmployeesIdGet' => [ 'application/json', ], 'apiEmployeesIdPut' => [ 'application/json', 'text/json', 'application/*+json', ], 'apiEmployeesPost' => [ '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 apiEmployeesGet * * @param string|null $search search (optional) * @param string|null $status status (optional) * @param string|null $employment_type employment_type (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['apiEmployeesGet'] 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\EmployeeResponsePagedResponse */ public function apiEmployeesGet($search = null, $status = null, $employment_type = null, $page = 1, $page_size = 20, string $contentType = self::contentTypes['apiEmployeesGet'][0]) { list($response) = $this->apiEmployeesGetWithHttpInfo($search, $status, $employment_type, $page, $page_size, $contentType); return $response; } /** * Operation apiEmployeesGetWithHttpInfo * * @param string|null $search (optional) * @param string|null $status (optional) * @param string|null $employment_type (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['apiEmployeesGet'] 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\EmployeeResponsePagedResponse, HTTP status code, HTTP response headers (array of strings) */ public function apiEmployeesGetWithHttpInfo($search = null, $status = null, $employment_type = null, $page = 1, $page_size = 20, string $contentType = self::contentTypes['apiEmployeesGet'][0]) { $request = $this->apiEmployeesGetRequest($search, $status, $employment_type, $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\EmployeeResponsePagedResponse', $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\EmployeeResponsePagedResponse', $request, $response, ); } catch (ApiException $e) { switch ($e->getCode()) { case 200: $data = ObjectSerializer::deserialize( $e->getResponseBody(), '\OmsorgCoreClient\Model\EmployeeResponsePagedResponse', $e->getResponseHeaders() ); $e->setResponseObject($data); throw $e; } throw $e; } } /** * Operation apiEmployeesGetAsync * * @param string|null $search (optional) * @param string|null $status (optional) * @param string|null $employment_type (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['apiEmployeesGet'] to see the possible values for this operation * * @throws \InvalidArgumentException * @return \GuzzleHttp\Promise\PromiseInterface */ public function apiEmployeesGetAsync($search = null, $status = null, $employment_type = null, $page = 1, $page_size = 20, string $contentType = self::contentTypes['apiEmployeesGet'][0]) { return $this->apiEmployeesGetAsyncWithHttpInfo($search, $status, $employment_type, $page, $page_size, $contentType) ->then( function ($response) { return $response[0]; } ); } /** * Operation apiEmployeesGetAsyncWithHttpInfo * * @param string|null $search (optional) * @param string|null $status (optional) * @param string|null $employment_type (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['apiEmployeesGet'] to see the possible values for this operation * * @throws \InvalidArgumentException * @return \GuzzleHttp\Promise\PromiseInterface */ public function apiEmployeesGetAsyncWithHttpInfo($search = null, $status = null, $employment_type = null, $page = 1, $page_size = 20, string $contentType = self::contentTypes['apiEmployeesGet'][0]) { $returnType = '\OmsorgCoreClient\Model\EmployeeResponsePagedResponse'; $request = $this->apiEmployeesGetRequest($search, $status, $employment_type, $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 'apiEmployeesGet' * * @param string|null $search (optional) * @param string|null $status (optional) * @param string|null $employment_type (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['apiEmployeesGet'] to see the possible values for this operation * * @throws \InvalidArgumentException * @return \GuzzleHttp\Psr7\Request */ public function apiEmployeesGetRequest($search = null, $status = null, $employment_type = null, $page = 1, $page_size = 20, string $contentType = self::contentTypes['apiEmployeesGet'][0]) { $resourcePath = '/api/employees'; $formParams = []; $queryParams = []; $headerParams = []; $httpBody = ''; $multipart = false; // query params $queryParams = array_merge($queryParams, ObjectSerializer::toQueryValue( $search, 'search', // param base name 'string', // openApiType 'form', // style true, // explode false // required ) ?? []); // query params $queryParams = array_merge($queryParams, ObjectSerializer::toQueryValue( $status, 'status', // param base name 'string', // openApiType 'form', // style true, // explode false // required ) ?? []); // query params $queryParams = array_merge($queryParams, ObjectSerializer::toQueryValue( $employment_type, 'employmentType', // 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 apiEmployeesIdDelete * * @param string $id id (required) * @param string $contentType The value for the Content-Type header. Check self::contentTypes['apiEmployeesIdDelete'] 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 apiEmployeesIdDelete($id, string $contentType = self::contentTypes['apiEmployeesIdDelete'][0]) { $this->apiEmployeesIdDeleteWithHttpInfo($id, $contentType); } /** * Operation apiEmployeesIdDeleteWithHttpInfo * * @param string $id (required) * @param string $contentType The value for the Content-Type header. Check self::contentTypes['apiEmployeesIdDelete'] 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 apiEmployeesIdDeleteWithHttpInfo($id, string $contentType = self::contentTypes['apiEmployeesIdDelete'][0]) { $request = $this->apiEmployeesIdDeleteRequest($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 apiEmployeesIdDeleteAsync * * @param string $id (required) * @param string $contentType The value for the Content-Type header. Check self::contentTypes['apiEmployeesIdDelete'] to see the possible values for this operation * * @throws \InvalidArgumentException * @return \GuzzleHttp\Promise\PromiseInterface */ public function apiEmployeesIdDeleteAsync($id, string $contentType = self::contentTypes['apiEmployeesIdDelete'][0]) { return $this->apiEmployeesIdDeleteAsyncWithHttpInfo($id, $contentType) ->then( function ($response) { return $response[0]; } ); } /** * Operation apiEmployeesIdDeleteAsyncWithHttpInfo * * @param string $id (required) * @param string $contentType The value for the Content-Type header. Check self::contentTypes['apiEmployeesIdDelete'] to see the possible values for this operation * * @throws \InvalidArgumentException * @return \GuzzleHttp\Promise\PromiseInterface */ public function apiEmployeesIdDeleteAsyncWithHttpInfo($id, string $contentType = self::contentTypes['apiEmployeesIdDelete'][0]) { $returnType = ''; $request = $this->apiEmployeesIdDeleteRequest($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 'apiEmployeesIdDelete' * * @param string $id (required) * @param string $contentType The value for the Content-Type header. Check self::contentTypes['apiEmployeesIdDelete'] to see the possible values for this operation * * @throws \InvalidArgumentException * @return \GuzzleHttp\Psr7\Request */ public function apiEmployeesIdDeleteRequest($id, string $contentType = self::contentTypes['apiEmployeesIdDelete'][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 apiEmployeesIdDelete' ); } $resourcePath = '/api/employees/{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 apiEmployeesIdGet * * @param string $id id (required) * @param string $contentType The value for the Content-Type header. Check self::contentTypes['apiEmployeesIdGet'] 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\EmployeeResponse */ public function apiEmployeesIdGet($id, string $contentType = self::contentTypes['apiEmployeesIdGet'][0]) { list($response) = $this->apiEmployeesIdGetWithHttpInfo($id, $contentType); return $response; } /** * Operation apiEmployeesIdGetWithHttpInfo * * @param string $id (required) * @param string $contentType The value for the Content-Type header. Check self::contentTypes['apiEmployeesIdGet'] 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\EmployeeResponse, HTTP status code, HTTP response headers (array of strings) */ public function apiEmployeesIdGetWithHttpInfo($id, string $contentType = self::contentTypes['apiEmployeesIdGet'][0]) { $request = $this->apiEmployeesIdGetRequest($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\EmployeeResponse', $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\EmployeeResponse', $request, $response, ); } catch (ApiException $e) { switch ($e->getCode()) { case 200: $data = ObjectSerializer::deserialize( $e->getResponseBody(), '\OmsorgCoreClient\Model\EmployeeResponse', $e->getResponseHeaders() ); $e->setResponseObject($data); throw $e; } throw $e; } } /** * Operation apiEmployeesIdGetAsync * * @param string $id (required) * @param string $contentType The value for the Content-Type header. Check self::contentTypes['apiEmployeesIdGet'] to see the possible values for this operation * * @throws \InvalidArgumentException * @return \GuzzleHttp\Promise\PromiseInterface */ public function apiEmployeesIdGetAsync($id, string $contentType = self::contentTypes['apiEmployeesIdGet'][0]) { return $this->apiEmployeesIdGetAsyncWithHttpInfo($id, $contentType) ->then( function ($response) { return $response[0]; } ); } /** * Operation apiEmployeesIdGetAsyncWithHttpInfo * * @param string $id (required) * @param string $contentType The value for the Content-Type header. Check self::contentTypes['apiEmployeesIdGet'] to see the possible values for this operation * * @throws \InvalidArgumentException * @return \GuzzleHttp\Promise\PromiseInterface */ public function apiEmployeesIdGetAsyncWithHttpInfo($id, string $contentType = self::contentTypes['apiEmployeesIdGet'][0]) { $returnType = '\OmsorgCoreClient\Model\EmployeeResponse'; $request = $this->apiEmployeesIdGetRequest($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 'apiEmployeesIdGet' * * @param string $id (required) * @param string $contentType The value for the Content-Type header. Check self::contentTypes['apiEmployeesIdGet'] to see the possible values for this operation * * @throws \InvalidArgumentException * @return \GuzzleHttp\Psr7\Request */ public function apiEmployeesIdGetRequest($id, string $contentType = self::contentTypes['apiEmployeesIdGet'][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 apiEmployeesIdGet' ); } $resourcePath = '/api/employees/{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 apiEmployeesIdPut * * @param string $id id (required) * @param \OmsorgCoreClient\Model\UpdateEmployeeRequest|null $update_employee_request update_employee_request (optional) * @param string $contentType The value for the Content-Type header. Check self::contentTypes['apiEmployeesIdPut'] 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\EmployeeResponse */ public function apiEmployeesIdPut($id, $update_employee_request = null, string $contentType = self::contentTypes['apiEmployeesIdPut'][0]) { list($response) = $this->apiEmployeesIdPutWithHttpInfo($id, $update_employee_request, $contentType); return $response; } /** * Operation apiEmployeesIdPutWithHttpInfo * * @param string $id (required) * @param \OmsorgCoreClient\Model\UpdateEmployeeRequest|null $update_employee_request (optional) * @param string $contentType The value for the Content-Type header. Check self::contentTypes['apiEmployeesIdPut'] 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\EmployeeResponse, HTTP status code, HTTP response headers (array of strings) */ public function apiEmployeesIdPutWithHttpInfo($id, $update_employee_request = null, string $contentType = self::contentTypes['apiEmployeesIdPut'][0]) { $request = $this->apiEmployeesIdPutRequest($id, $update_employee_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\EmployeeResponse', $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\EmployeeResponse', $request, $response, ); } catch (ApiException $e) { switch ($e->getCode()) { case 200: $data = ObjectSerializer::deserialize( $e->getResponseBody(), '\OmsorgCoreClient\Model\EmployeeResponse', $e->getResponseHeaders() ); $e->setResponseObject($data); throw $e; } throw $e; } } /** * Operation apiEmployeesIdPutAsync * * @param string $id (required) * @param \OmsorgCoreClient\Model\UpdateEmployeeRequest|null $update_employee_request (optional) * @param string $contentType The value for the Content-Type header. Check self::contentTypes['apiEmployeesIdPut'] to see the possible values for this operation * * @throws \InvalidArgumentException * @return \GuzzleHttp\Promise\PromiseInterface */ public function apiEmployeesIdPutAsync($id, $update_employee_request = null, string $contentType = self::contentTypes['apiEmployeesIdPut'][0]) { return $this->apiEmployeesIdPutAsyncWithHttpInfo($id, $update_employee_request, $contentType) ->then( function ($response) { return $response[0]; } ); } /** * Operation apiEmployeesIdPutAsyncWithHttpInfo * * @param string $id (required) * @param \OmsorgCoreClient\Model\UpdateEmployeeRequest|null $update_employee_request (optional) * @param string $contentType The value for the Content-Type header. Check self::contentTypes['apiEmployeesIdPut'] to see the possible values for this operation * * @throws \InvalidArgumentException * @return \GuzzleHttp\Promise\PromiseInterface */ public function apiEmployeesIdPutAsyncWithHttpInfo($id, $update_employee_request = null, string $contentType = self::contentTypes['apiEmployeesIdPut'][0]) { $returnType = '\OmsorgCoreClient\Model\EmployeeResponse'; $request = $this->apiEmployeesIdPutRequest($id, $update_employee_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 'apiEmployeesIdPut' * * @param string $id (required) * @param \OmsorgCoreClient\Model\UpdateEmployeeRequest|null $update_employee_request (optional) * @param string $contentType The value for the Content-Type header. Check self::contentTypes['apiEmployeesIdPut'] to see the possible values for this operation * * @throws \InvalidArgumentException * @return \GuzzleHttp\Psr7\Request */ public function apiEmployeesIdPutRequest($id, $update_employee_request = null, string $contentType = self::contentTypes['apiEmployeesIdPut'][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 apiEmployeesIdPut' ); } $resourcePath = '/api/employees/{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_employee_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_employee_request)); } else { $httpBody = $update_employee_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 apiEmployeesPost * * @param \OmsorgCoreClient\Model\CreateEmployeeRequest|null $create_employee_request create_employee_request (optional) * @param string $contentType The value for the Content-Type header. Check self::contentTypes['apiEmployeesPost'] 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\EmployeeResponse */ public function apiEmployeesPost($create_employee_request = null, string $contentType = self::contentTypes['apiEmployeesPost'][0]) { list($response) = $this->apiEmployeesPostWithHttpInfo($create_employee_request, $contentType); return $response; } /** * Operation apiEmployeesPostWithHttpInfo * * @param \OmsorgCoreClient\Model\CreateEmployeeRequest|null $create_employee_request (optional) * @param string $contentType The value for the Content-Type header. Check self::contentTypes['apiEmployeesPost'] 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\EmployeeResponse, HTTP status code, HTTP response headers (array of strings) */ public function apiEmployeesPostWithHttpInfo($create_employee_request = null, string $contentType = self::contentTypes['apiEmployeesPost'][0]) { $request = $this->apiEmployeesPostRequest($create_employee_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\EmployeeResponse', $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\EmployeeResponse', $request, $response, ); } catch (ApiException $e) { switch ($e->getCode()) { case 200: $data = ObjectSerializer::deserialize( $e->getResponseBody(), '\OmsorgCoreClient\Model\EmployeeResponse', $e->getResponseHeaders() ); $e->setResponseObject($data); throw $e; } throw $e; } } /** * Operation apiEmployeesPostAsync * * @param \OmsorgCoreClient\Model\CreateEmployeeRequest|null $create_employee_request (optional) * @param string $contentType The value for the Content-Type header. Check self::contentTypes['apiEmployeesPost'] to see the possible values for this operation * * @throws \InvalidArgumentException * @return \GuzzleHttp\Promise\PromiseInterface */ public function apiEmployeesPostAsync($create_employee_request = null, string $contentType = self::contentTypes['apiEmployeesPost'][0]) { return $this->apiEmployeesPostAsyncWithHttpInfo($create_employee_request, $contentType) ->then( function ($response) { return $response[0]; } ); } /** * Operation apiEmployeesPostAsyncWithHttpInfo * * @param \OmsorgCoreClient\Model\CreateEmployeeRequest|null $create_employee_request (optional) * @param string $contentType The value for the Content-Type header. Check self::contentTypes['apiEmployeesPost'] to see the possible values for this operation * * @throws \InvalidArgumentException * @return \GuzzleHttp\Promise\PromiseInterface */ public function apiEmployeesPostAsyncWithHttpInfo($create_employee_request = null, string $contentType = self::contentTypes['apiEmployeesPost'][0]) { $returnType = '\OmsorgCoreClient\Model\EmployeeResponse'; $request = $this->apiEmployeesPostRequest($create_employee_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 'apiEmployeesPost' * * @param \OmsorgCoreClient\Model\CreateEmployeeRequest|null $create_employee_request (optional) * @param string $contentType The value for the Content-Type header. Check self::contentTypes['apiEmployeesPost'] to see the possible values for this operation * * @throws \InvalidArgumentException * @return \GuzzleHttp\Psr7\Request */ public function apiEmployeesPostRequest($create_employee_request = null, string $contentType = self::contentTypes['apiEmployeesPost'][0]) { $resourcePath = '/api/employees'; $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_employee_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_employee_request)); } else { $httpBody = $create_employee_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; } }