Source
if (array_key_exists('id', $this->request_data) || array_key_exists('displayName', $this->request_data)) {
<?php
/*
** Copyright (C) 2001-2025 Zabbix SIA
**
** This program is free software: you can redistribute it and/or modify it under the terms of
** the GNU Affero General Public License as published by the Free Software Foundation, version 3.
**
** This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
** without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
** See the GNU Affero General Public License for more details.
**
** You should have received a copy of the GNU Affero General Public License along with this program.
** If not, see <https://www.gnu.org/licenses/>.
**/
namespace SCIM;
use APIException;
use CApiClientResponse;
use SCIM\services\User;
use SCIM\services\Group;
class HttpResponse {
protected $http_codes = [
ZBX_API_ERROR_INTERNAL => 500,
ZBX_API_ERROR_PARAMETERS => 400,
ZBX_API_ERROR_NO_ENTITY => 404,
ZBX_API_ERROR_PERMISSIONS => 403,
ZBX_API_ERROR_NO_AUTH => 403,
ZBX_API_ERROR_NO_METHOD => 405
];
public const SCHEMA_ERROR = 'urn:ietf:params:scim:api:messages:2.0:Error';
public const SCHEMA_LIST = 'urn:ietf:params:scim:api:messages:2.0:ListResponse';
/** @var array $response_data Array of response data to be sent. */
protected array $response_data = [];
/** @var int $response_code HTTP response status code. */
protected $http_code = 200;
/** @var string $class Name of the class that response is received from */
protected string $class;
/** @var string $method Name of the method that response is received from */
protected string $method;
/** @var array $request_data Array of request data that was sent */
protected array $request_data;
public function setRequestDetails(string $api, string $method, array $input) {
$this->class = $api;
$this->method = $method;
$this->request_data = $input;
}
public function setResponse(CApiClientResponse $response) {
if ($response->errorCode) {
$this->setException(new APIException($response->errorCode, $response->errorMessage));
}
else {