LDAPAccountManager/lam/lib/types/asteriskExt.inc

209 lines
5.8 KiB
PHP
Raw Normal View History

2009-11-14 18:31:39 +00:00
<?php
2012-03-10 18:20:13 +00:00
2009-11-14 18:31:39 +00:00
/*
This code is part of LDAP Account Manager (http://www.sourceforge.net/projects/lam)
2012-03-10 18:20:13 +00:00
Copyright (C) 2009 - 2012 Pozdnyak Pavel
2010 - 2018 Roland Gruber
2009-11-14 18:31:39 +00:00
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
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 General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
2012-03-10 18:20:13 +00:00
*/
2009-11-14 18:31:39 +00:00
/**
2012-03-10 18:20:13 +00:00
* The account type for Asterisk extensions.
*
* @package types
* @author Pozdnyak Pavel
* @author Roland Gruber
*/
2009-11-14 18:31:39 +00:00
/**
2012-03-10 18:20:13 +00:00
* The account type for Asterisk extensions.
*
* @package types
*/
2009-11-14 18:31:39 +00:00
class asteriskExt extends baseType {
2012-03-10 18:20:13 +00:00
/**
* Constructs a new domain type object.
2017-04-26 16:22:05 +00:00
*
* @param ConfiguredType $type configuration
2012-03-10 18:20:13 +00:00
*/
2017-04-26 16:22:05 +00:00
public function __construct($type) {
parent::__construct($type);
2012-03-10 18:20:13 +00:00
$this->LABEL_CREATE_ANOTHER_ACCOUNT = _('Create another extension');
$this->LABEL_BACK_TO_ACCOUNT_LIST = _('Back to extensions list');
}
/**
* Returns the alias name of this account type.
*
* @return string alias name
*/
function getAlias() {
return _("Asterisk extensions");
}
/**
* Returns the description of this account type.
*
* @return string description
*/
function getDescription() {
return _("Asterisk extensions entries");
}
/**
* Returns the class name for the list object.
*
* @return string class name
*/
function getListClassName() {
return "lamAsteriskExtList";
}
/**
* Returns the default attribute list for this account type.
*
* @return string attribute list
*/
function getDefaultListAttributes() {
return "#AstExtension;#AstContext;#member";
}
/**
* Returns a list of attributes which have a translated description.
* This is used for the head row in the list view.
*
* @return array list of descriptions
*/
function getListAttributeDescriptions() {
2018-06-29 18:44:36 +00:00
return array_merge(
parent::getListAttributeDescriptions(),
array(
"astextension" => _("Extension name"),
"astcontext" => _("Account context"),
"member" => _("Owner"),
));
2012-03-10 18:20:13 +00:00
}
/**
* Returns the the title text for the title bar on the new/edit page.
*
* @param accountContainer $container account container
* @return String title text
*/
public function getTitleBarTitle($container) {
$attributes = null;
if ($container->getAccountModule('asteriskExtension') != null) {
$attributes = $container->getAccountModule('asteriskExtension')->getAttributes();
}
2010-12-14 21:16:21 +00:00
// check if a common name is set
2012-03-10 18:20:13 +00:00
if (isset($attributes['AstExtension'][0])) {
return htmlspecialchars($attributes['AstExtension'][0]);
}
// new account
if ($container->isNewAccount) {
return _("New extension");
}
// fall back to default
return parent::getTitleBarTitle($container);
2012-03-10 18:20:13 +00:00
}
2010-12-14 21:16:21 +00:00
2009-11-14 18:31:39 +00:00
}
/**
* Generates the list view.
*
* @package lists
* @author Pozdnyak Pavel
*
*/
class lamAsteriskExtList extends lamList {
2012-03-10 18:20:13 +00:00
/**
* Constructor
*
* @param string $type account type
* @return lamList list object
*/
function __construct($type) {
parent::__construct($type);
$this->labels = array(
'nav' => _("Extension count: %s"),
'error_noneFound' => _("No Asterisk extensions found."),
'newEntry' => _("New extension"),
'deleteEntry' => _("Delete selected extensions"));
}
/**
* Forces the list view to show only specific attributes.
*
* @see lamList::listGetParams()
*/
protected function listGetParams() {
// check if only PDF should be shown
parent::listGetParams();
$this->attrArray = array("astextension", "astcontext", "member");
$this->descArray = array(_("Extension name"), _("Account context"), _("Owner"));
}
/**
* Groups the extensions.
2016-12-24 12:04:31 +00:00
*
2012-03-10 18:20:13 +00:00
* (non-PHPdoc)
* @see lamList::listRefreshData()
*/
protected function listRefreshData() {
// configure search filter
2016-12-24 12:04:31 +00:00
$module_filter = get_ldap_filter($this->type->getId()); // basic filter is provided by modules
$filter = "(&" . $module_filter . $this->buildLDAPAttributeFilter() . ")";
2012-03-10 18:20:13 +00:00
$attrs = $this->attrArray;
$attrs[] = "astpriority";
$entries = searchLDAP($this->suffix, $filter, $attrs);
$lastError = getLastLDAPError();
if ($lastError != null) {
call_user_func_array('StatusMessage', $lastError);
2009-11-14 18:31:39 +00:00
}
2016-12-24 12:04:31 +00:00
$this->ldapEntries = $this->normalizeLdapOutput($entries);
$this->entries = array();
foreach ($this->ldapEntries as $index => &$attrs) {
$this->entries[$index] = &$attrs;
}
2012-03-10 18:20:13 +00:00
// generate list of possible suffixes
2016-12-31 13:44:46 +00:00
$this->possibleSuffixes = $this->type->getSuffixList();
2012-03-10 18:20:13 +00:00
}
/**
* Groups the extensions.
2016-12-24 12:04:31 +00:00
*
2012-03-10 18:20:13 +00:00
* @param array $entries extension entries
*/
private function normalizeLdapOutput($entries){
$entries = array_map("unserialize", array_unique(array_map("serialize", $entries)));
foreach($entries as $key=> $value){
if($entries[$key]["astpriority"][0] > 1){
unset($entries[$key]);
}
}
2013-05-05 13:50:19 +00:00
return array_values($entries);
2012-03-10 18:20:13 +00:00
}
2016-12-24 12:04:31 +00:00
2009-11-14 18:31:39 +00:00
}
?>