1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106
|
<?php
/**
* Ingo external API interface.
*
* This file defines Ingo's external API interface. Other applications
* can interact with Ingo through this API.
*
* $Horde: ingo/lib/api.php,v 1.16.12.1 2005/01/24 10:31:57 jan Exp $
*
* See the enclosed file COPYING for license information (GPL). If you
* did not receive this file, see http://www.fsf.org/copyleft/gpl.html.
*/
$_services['blacklistFrom'] = array(
'args' => array('addresses' => '{urn:horde}stringArray'),
'type' => 'boolean'
);
$_services['showBlacklist'] = array(
'link' => '%application%/blacklist.php'
);
$_services['whitelistFrom'] = array(
'args' => array('addresses' => '{urn:horde}stringArray'),
'type' => 'boolean'
);
$_services['showWhitelist'] = array(
'link' => '%application%/whitelist.php'
);
$_services['canApplyFilters'] = array(
'args' => array(),
'type' => 'boolean'
);
$_services['applyFilters'] = array(
'args' => array('params' => '{urn:horde}stringArray'),
'type' => 'boolean'
);
$_services['showFilters'] = array(
'link' => '%application%/filters.php'
);
function _ingo_blacklistFrom($addresses)
{
require_once dirname(__FILE__) . '/../lib/base.php';
global $ingo_storage;
/* Check for '@' entries in $addresses - this would call all mail to
* be blacklisted which is most likely not what is desired. */
$addresses = array_unique($addresses);
$key = array_search('@', $addresses);
if ($key !== false) {
unset($addresses[$key]);
}
if (!empty($addresses)) {
$blacklist = $ingo_storage->retrieve(INGO_STORAGE_ACTION_BLACKLIST);
$ret = $blacklist->setBlacklist(array_merge($blacklist->getBlacklist(), $addresses));
if (is_a($ret, 'PEAR_Error')) {
$GLOBALS['notification']->push($ret, $ret->getCode());
} else {
$ingo_storage->store($blacklist);
Ingo::updateScript();
}
}
}
function _ingo_whitelistFrom($addresses)
{
require_once dirname(__FILE__) . '/../lib/base.php';
global $ingo_storage;
$whitelist = $ingo_storage->retrieve(INGO_STORAGE_ACTION_WHITELIST);
$ret = $whitelist->setWhitelist(array_merge($whitelist->getWhitelist(), $addresses));
if (is_a($ret, 'PEAR_Error')) {
$GLOBALS['notification']->push($ret, $ret->getCode());
} else {
$ingo_storage->store($whitelist);
Ingo::updateScript();
}
}
function _ingo_canApplyFilters()
{
require_once dirname(__FILE__) . '/../lib/base.php';
$ingo_script = &Ingo::loadIngoScript();
if ($ingo_script) {
return $ingo_script->performAvailable();
} else {
return false;
}
}
function _ingo_applyFilters($params = array())
{
require_once dirname(__FILE__) . '/../lib/base.php';
$ingo_script = &Ingo::loadIngoScript();
if ($ingo_script) {
return $ingo_script->perform($params);
}
}
|