63 lines
1.6 KiB
PHP
63 lines
1.6 KiB
PHP
<?php
|
|
|
|
/*
|
|
* @copyright Copyright (C) 2005-2008 Keyboard Monkeys Ltd. http://www.kb-m.com
|
|
* @license http://www.fsf.org/copyleft/lgpl.html GNU Lesser General Public License
|
|
* @author Alejandro Pedraza
|
|
* @since Sciret 1.2
|
|
* @package Sciret
|
|
* @packager Keyboard Monkeys
|
|
*/
|
|
|
|
class Monkeys_AntiSpam extends Zend_Service_Akismet
|
|
{
|
|
const TYPE_AKISMET = 1;
|
|
const TYPE_TYPEPAD = 2;
|
|
|
|
const TYPEPAD_API_URL = 'api.antispam.typepad.com';
|
|
|
|
private $_type;
|
|
|
|
public function __construct($type)
|
|
{
|
|
$this->_type = $type;
|
|
|
|
switch ($type) {
|
|
case self::TYPE_AKISMET:
|
|
$apiKey = Zend_Registry::get('config')->akismet->key;
|
|
break;
|
|
case self::TYPE_TYPEPAD:
|
|
$apiKey = Zend_Registry::get('config')->typePadAntiSpam->key;
|
|
break;
|
|
default:
|
|
throw new Exception('Wrong spam service type');
|
|
}
|
|
|
|
parent::__construct($apiKey, 'http://www.kb-m.com');
|
|
}
|
|
|
|
protected function _post($host, $path, array $params)
|
|
{
|
|
if ($this->_type == self::TYPE_TYPEPAD) {
|
|
$caller = $this->_getCallerMethod();
|
|
if (strtolower($caller) == 'verifykey') {
|
|
$host = self::TYPEPAD_API_URL;
|
|
} else {
|
|
$host = $this->getApiKey() . '.' . self::TYPEPAD_API_URL;
|
|
}
|
|
}
|
|
|
|
return parent::_post($host, $path, $params);
|
|
}
|
|
|
|
/**
|
|
* @return string
|
|
*/
|
|
private function _getCallerMethod()
|
|
{
|
|
$backTrace = debug_backtrace();
|
|
|
|
return $backTrace[2]['function'];
|
|
}
|
|
}
|