This repository has been archived by the owner on Dec 13, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 240
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
d0228e0
commit 359ae7a
Showing
4 changed files
with
225 additions
and
85 deletions.
There are no files selected for viewing
120 changes: 120 additions & 0 deletions
120
www/class/centreon-clapi/CentreonLDAPContactRelation.class.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,120 @@ | ||
<?php | ||
|
||
/* | ||
* Copyright 2005-2021 CENTREON | ||
* Centreon is developed by : Julien Mathis and Romain Le Merlus under | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
* | ||
* For more information : contact@centreon.com | ||
* | ||
*/ | ||
|
||
namespace CentreonClapi; | ||
|
||
require_once "centreonObject.class.php"; | ||
require_once "centreonUtils.class.php"; | ||
require_once "centreonTimePeriod.class.php"; | ||
require_once "Centreon/Object/Contact/Contact.php"; | ||
require_once "Centreon/Object/Command/Command.php"; | ||
require_once "Centreon/Object/Relation/Contact/Command/Host.php"; | ||
require_once "Centreon/Object/Relation/Contact/Command/Service.php"; | ||
require_once "centreonLDAP.class.php"; | ||
|
||
/** | ||
* Class representating relation between a contact and his LDAP configuration | ||
*/ | ||
class CentreonLDAPContactRelation extends CentreonObject | ||
{ | ||
private const ORDER_NAME = 0; | ||
private const LDAP_PARAMETER_NAME = "ar_name"; | ||
|
||
/** | ||
* @var int | ||
*/ | ||
protected $register; | ||
public static $aDepends = [ | ||
'CONTACT', | ||
'LDAP' | ||
]; | ||
|
||
/** | ||
* Constructor | ||
* @param \Pimple\Container $dependencyInjector | ||
* @return void | ||
*/ | ||
public function __construct(\Pimple\Container $dependencyInjector) | ||
{ | ||
parent::__construct($dependencyInjector); | ||
$this->ldap = new CentreonLdap($dependencyInjector); | ||
$this->contact = new \Centreon_Object_Contact($dependencyInjector); | ||
$this->action = "LDAPCONTACT"; | ||
$this->register = 1; | ||
$this->activateField = 'contact_activate'; | ||
} | ||
|
||
/** | ||
* @param string $parameters | ||
* @throws CentreonClapiException | ||
*/ | ||
public function initUpdateParameters(string $parameters): void | ||
{ | ||
$params = explode($this->delim, $parameters); | ||
if (count($params) < self::NB_UPDATE_PARAMS) { | ||
throw new CentreonClapiException(self::MISSINGPARAMETER); | ||
} | ||
$params[self::ORDER_NAME] = str_replace(" ", "_", $params[self::ORDER_NAME]); | ||
} | ||
|
||
/** | ||
* Export data | ||
* | ||
* @param string|null $filterName | ||
* @return bool | ||
*/ | ||
public function export($filterName = null): bool | ||
{ | ||
if (!$this->canBeExported($filterName)) { | ||
return false; | ||
} | ||
|
||
$labelField = $this->contact->getUniqueLabelField(); | ||
$filters = ["contact_register" => $this->register]; | ||
if (!is_null($filterName)) { | ||
$filters[$labelField] = $filterName; | ||
} | ||
$contacts = $this->contact->getList( | ||
"*", | ||
-1, | ||
0, | ||
$labelField, | ||
'ASC', | ||
$filters, | ||
"AND" | ||
); | ||
foreach ($contacts as $contact) { | ||
foreach ($contact as $parameter => $value) { | ||
if (!empty($value) && !in_array($parameter, $this->exportExcludedParams) && $parameter === "ar_id") { | ||
$value = $this->ldap->getObjectName($value); | ||
$value = CentreonUtils::convertLineBreak($value); | ||
echo $this->action . $this->delim | ||
. "setparam" . $this->delim | ||
. $contact[$this->contact->getUniqueLabelField()] . $this->delim | ||
. self::LDAP_PARAMETER_NAME . $this->delim | ||
. $value . "\n"; | ||
} | ||
} | ||
} | ||
return true; | ||
} | ||
} |
Oops, something went wrong.