Skip to content
Extraits de code Groupes Projets
Valider 39a64fd5 rédigé par robocoder's avatar robocoder
Parcourir les fichiers

remove Inspekt; sorry...last commit was not from my usual workspace

git-svn-id: http://dev.piwik.org/svn/trunk@5127 59fd770c-687e-43c8-a1e3-f5a4ff64c105
parent ad26b46c
Aucune branche associée trouvée
Aucune étiquette associée trouvée
Aucune requête de fusion associée trouvée
......@@ -186,10 +186,6 @@ THIRD-PARTY COMPONENTS AND LIBRARIES
Link: http://www.phcomp.co.uk/tmp/Smarty.phps
License: New BSD
Name: Inspekt
Link: http://inspekt.org/
License: New BSD
Name: PclZip
Link: http://www.phpconcept.net/pclzip/
License: LGPL
......
Ce diff est replié.
<?php
/**
* This is the abstract for user-defined Accessor methods. Accessors are used to
* retrieve values from a cage object. By extending this abstract, developers
* can add their own accessor methods. Typically the only method they will need
* to define is AccessorAbstract::inspekt(), which takes a value, examines it,
* and returns a result. Array walking is automatically handled
*
* @package Inspekt
* @author Ed Finkler
*/
abstract class AccessorAbstract {
/**
* the cage object this is attached to, provided in the constructor
*
* @var string
*/
protected $cage;
/**
* constructor
*
* @param Inspekt_Cage $cage
* @param array $args optional
* @author Ed Finkler
*/
public function __construct(Inspekt_Cage $cage, $args=NULL) {
$this->cage = $cage;
$this->args = $args;
}
/**
* This executes the accessor on the key, either passed as the only argument,
* or the first value in $this->args;
*
* @param string $key
* @return mixed
* @author Ed Finkler
*/
public function run($key = null) {
if (!isset($key)) {
$key = $this->args[0];
}
if (!$this->cage->keyExists($key)) {
return false;
}
$val = $this->getValue($key);
if (Inspekt::isArrayOrArrayObject($val)) {
return $this->walkArray($val);
} else {
return $this->inspekt($val);
}
}
/**
* Retrieves a value from the cage
*
* @param string $key
* @return mixed
* @author Ed Finkler
*/
protected function getValue($key) {
return $this->cage->_getValue($key);
}
/**
* If an array is the value of the given key, this method walks the array
* recursively, applying $this->inspekt on any non-array values
*
* @param mixed $input
* @param
* @author Ed Finkler
*/
protected function walkArray($input) {
if (!isset($classname)) {
$classname = __CLASS__;
}
if (!Inspekt::isArrayOrArrayObject($input)) {
Inspekt_Error::raiseError('$input must be an array or ArrayObject', E_USER_ERROR);
return FALSE;
}
foreach($input as $key=>$val) {
if (Inspekt::isArrayOrArrayObject($val)) {
$input[$key]=$this->walkArray($val);
} else {
$val = $this->inspekt($val);
$input[$key]=$val;
}
}
return $input;
}
abstract protected function inspekt($val);
}
?>
\ No newline at end of file
Ce diff est replié.
<?php
/**
* Inspekt Session Cage - main source file
*
* @author Chris Shiflett <chris@shiflett.org>
* @author Ed Finkler <coj@funkatron.com>
*
* @package Inspekt
*
* @deprecated
*/
require_once dirname(dirname(__FILE__)).DIRECTORY_SEPARATOR.'Cage.php';
/**
* @package Inspekt
*/
class Inspekt_Cage_Session extends Inspekt_Cage {
static public function Factory(&$source, $conf_file = NULL, $conf_section = NULL, $strict = TRUE) {
if (!is_array($source)) {
Inspekt_Error::raiseError('$source '.$source.' is not an array', E_USER_NOTICE);
}
$cage = new Inspekt_Cage_Session();
$cage->_setSource($source);
$cage->_parseAndApplyAutoFilters($conf_file);
if (ini_get('session.use_cookies') || ini_get('session.use_only_cookies') ) {
if (isset($_COOKIE) && isset($_COOKIE[session_name()])) {
session_id($_COOKIE[session_name()]);
} elseif ($cookie = Inspekt::makeSessionCage()) {
session_id($cookie->getAlnum(session_name()));
}
} else { // we're using session ids passed via GET
if (isset($_GET) && isset($_GET[session_name()])) {
session_id($_GET[session_name()]);
} elseif ($cookie = Inspekt::makeSessionCage()) {
session_id($cookie->getAlnum(session_name()));
}
}
if ($strict) {
$source = NULL;
}
return $cage;
register_shutdown_function();
register_shutdown_function( array($this, '_repopulateSession') );
}
protected function _repopulateSession() {
$_SESSION = array();
$_SESSION = $this->_source;
}
}
\ No newline at end of file
<?php
require_once 'PHPUnit/Framework.php';
require_once 'Cage.php';
/**
* Test class for Inspekt_Cage.
* Generated by PHPUnit on 2009-08-10 at 16:30:49.
*/
class Inspekt_CageTest extends PHPUnit_Framework_TestCase
{
/**
* @var Inspekt_Cage
* @access protected
*/
protected $cage;
/**
* Sets up the fixture, for example, opens a network connection.
* This method is called before a test is executed.
*
* @access protected
*/
protected function setUp()
{
$inputarray['html'] = '<IMG """><SCRIPT>alert("XSS")</SCRIPT>">';
$inputarray['int'] = 7;
$inputarray['date'] = '2009-12-25';
$inputarray['alnum'] = '3a4b5c';
$inputarray['alpha'] = 'abcdefg';
$inputarray['zip'] = 55555;
$inputarray['zip+4'] = '55555-4444';
$this->cage = Inspekt_Cage::Factory($inputarray);
}
/**
* Tears down the fixture, for example, closes a network connection.
* This method is called after a test is executed.
*
* @access protected
*/
protected function tearDown()
{
}
/**
* @todo Implement testFactory().
*/
public function testFactory()
{
// Remove the following lines when you implement this test.
$this->markTestIncomplete('This test has not been implemented yet.');
}
/**
*
*/
public function testGetIterator()
{
$this->assertTrue($this->cage->getIterator() instanceof ArrayIterator);
}
/**
* @todo Implement testOffsetSet().
*/
public function testOffsetSet()
{
$this->assertFalse($this->cage->getRaw('try_later'));
$this->cage->offsetSet('try_later', 'it is later');
$this->assertEquals($this->cage['try_later'], 'it is later');
}
/**
* exists
*/
public function testOffsetExists()
{
$this->assertTrue($this->cage->offsetExists('html'));
}
/**
* doesn't exist
*/
public function testOffsetExists2()
{
$this->assertFalse($this->cage->offsetExists('non-existant'));
}
/**
* @todo Implement testOffsetUnset().
*/
public function testOffsetUnset()
{
// Remove the following lines when you implement this test.
$this->markTestIncomplete('This test has not been implemented yet.');
}
/**
* @todo Implement testOffsetGet().
*/
public function testOffsetGet()
{
// Remove the following lines when you implement this test.
$this->markTestIncomplete('This test has not been implemented yet.');
}
/**
* @todo Implement testCount().
*/
public function testCount()
{
$this->assertSame(7, $this->cage->count());
}
/**
* @todo Implement testLoadHTMLPurifier().
*/
public function testLoadHTMLPurifier()
{
// Remove the following lines when you implement this test.
$this->markTestIncomplete('This test has not been implemented yet.');
}
/**
* @todo Implement testGetHTMLPurifier().
*/
public function testGetHTMLPurifier()
{
// Remove the following lines when you implement this test.
$this->markTestIncomplete('This test has not been implemented yet.');
}
/**
* @todo Implement testSetHTMLPurifier().
*/
public function testSetHTMLPurifier()
{
// Remove the following lines when you implement this test.
$this->markTestIncomplete('This test has not been implemented yet.');
}
/**
* Implement test_parseAndApplyAutoFilters().
public function test_parseAndApplyAutoFilters()
{
// Remove the following lines when you implement this test.
$this->markTestIncomplete('This test has not been implemented yet.');
}*/
/**
* Implement test_applyAutoFilters().
public function test_applyAutoFilters()
{
// Remove the following lines when you implement this test.
$this->markTestIncomplete('This test has not been implemented yet.');
}*/
/**
* @todo Implement test__call().
*/
public function test__call()
{
// Remove the following lines when you implement this test.
$this->markTestIncomplete('This test has not been implemented yet.');
}
/**
*
*/
public function testAddAccessor()
{
//pre-condition, clean start
$this->assertSame($this->cage->_user_accessors, array());
$this->cage->addAccessor('method_name');
$this->assertSame($this->cage->_user_accessors, array('method_name'));
}
/**
* valid, filtered
*/
public function testGetAlpha()
{
$this->assertSame('abc', $this->cage->getAlpha('alnum'));
}
/**
* missing
*/
public function testGetAlpha2()
{
$this->assertFalse($this->cage->getAlpha('non-existant'));
}
/**
* invalid, filtered
*/
public function testGetAlpha3()
{
$this->assertSame('', $this->cage->getAlpha('int'));
}
/**
* valid, unfiltered
*/
public function testGetAlpha4()
{
$this->assertSame('abcdefg', $this->cage->getAlpha('alpha'));
}
/**
* @todo Implement testGetAlnum().
*/
public function testGetAlnum()
{
// Remove the following lines when you implement this test.
$this->markTestIncomplete('This test has not been implemented yet.');
}
/**
* @todo Implement testGetDigits().
*/
public function testGetDigits()
{
// Remove the following lines when you implement this test.
$this->markTestIncomplete('This test has not been implemented yet.');
}
/**
* @todo Implement testGetDir().
*/
public function testGetDir()
{
// Remove the following lines when you implement this test.
$this->markTestIncomplete('This test has not been implemented yet.');
}
/**
* test missing
*/
public function testGetInt()
{
//non-existent key should return false
$this->assertFalse($this->cage->getInt('non-existant'));
}
/**
* test valid
*/
public function testGetInt2()
{
$this->assertSame($this->cage->getInt('int'), 7);
}
/**
* test filter
*/
public function testGetInt3()
{
$this->assertSame(2009, $this->cage->getInt('date'));
}
/**
* @todo Implement testGetPath().
*/
public function testGetPath()
{
// Remove the following lines when you implement this test.
$this->markTestIncomplete('This test has not been implemented yet.');
}
/**
* @todo Implement testGetROT13().
*/
public function testGetROT13()
{
// Remove the following lines when you implement this test.
$this->markTestIncomplete('This test has not been implemented yet.');
}
/**
* @todo Implement testGetPurifiedHTML().
*/
public function testGetPurifiedHTML()
{
// Remove the following lines when you implement this test.
$this->markTestIncomplete('This test has not been implemented yet.');
}
/**
*
*/
public function testGetRaw()
{
$this->assertFalse($this->cage->getRaw('non-existant'));
}
/**
*
*/
public function testGetRaw2()
{
//test that found key returns matching value
$this->assertEquals($this->cage->getRaw('html'),
'<IMG """><SCRIPT>alert("XSS")</SCRIPT>">');
}
/**
* test invalid
*/
public function testTestAlnum()
{
$this->assertFalse($this->cage->testAlnum('html'));
}
/**
* test valid
*/
public function testTestAlnum2()
{
$this->assertSame('3a4b5c', $this->cage->testAlnum('alnum'));
}
/**
* test missing
*/
public function testTestAlnum3()
{
$this->assertFalse($this->cage->testAlnum('non-existant'));
}
/**
* test valid
*/
public function testTestAlpha()
{
$this->assertSame('abcdefg', $this->cage->testAlpha('alpha'));
}
/**
* test missing
*/
public function testTestAlpha2()
{
$this->assertFalse($this->cage->testAlpha('non-existant'));
}
/**
* test invalid
*/
public function testTestAlpha3()
{
$this->assertFalse($this->cage->testAlpha('alnum'));
}
/**
* @todo Implement testTestBetween().
*/
public function testTestBetween()
{
// Remove the following lines when you implement this test.
$this->markTestIncomplete('This test has not been implemented yet.');
}
/**
* @todo Implement testTestCcnum().
*/
public function testTestCcnum()
{
// Remove the following lines when you implement this test.
$this->markTestIncomplete('This test has not been implemented yet.');
}
/**
* @todo Implement testTestDate().
*/
public function testTestDate()
{
// Remove the following lines when you implement this test.
$this->markTestIncomplete('This test has not been implemented yet.');
}
/**
* @todo Implement testTestDigits().
*/
public function testTestDigits()
{
// Remove the following lines when you implement this test.
$this->markTestIncomplete('This test has not been implemented yet.');
}
/**
* @todo Implement testTestEmail().
*/
public function testTestEmail()
{
// Remove the following lines when you implement this test.
$this->markTestIncomplete('This test has not been implemented yet.');
}
/**
* @todo Implement testTestFloat().
*/
public function testTestFloat()
{
// Remove the following lines when you implement this test.
$this->markTestIncomplete('This test has not been implemented yet.');
}
/**
* integer, true
*/
public function testTestGreaterThan()
{
$this->assertSame(7, $this->cage->testGreaterThan('int', 5));
}
/**
* non-integer, true
* @depends testOffsetSet
*/
public function testTestGreaterThan2()
{
$this->cage['highAlpha'] = 'z';
$this->assertSame('z', $this->cage->testGreaterThan('highAlpha', 'a'));
}
/**
* integer, false
*/
public function testTestGreaterThan3()
{
$this->assertFalse($this->cage->testGreaterThan('int', 9));
}
/**
* non-integer, false
*/
public function testTestGreaterThan4()
{
$this->assertFalse($this->cage->testGreaterThan('alpha', 'z'));
}
/**
* missing
*/
public function testTestGreaterThan5()
{
$this->assertFalse($this->cage->testGreaterThan('non-existant', 5));
}
/**
* missing min (bad idea)
*/
public function testTestGreaterThan6()
{
$this->assertSame(7, $this->cage->testGreaterThan('int'));
}
/**
* @todo Implement testTestHex().
*/
public function testTestHex()
{
// Remove the following lines when you implement this test.
$this->markTestIncomplete('This test has not been implemented yet.');
}
/**
* @todo Implement testTestHostname().
* @TODO add more tests for hosttype params
*/
public function testTestHostname()
{
// Remove the following lines when you implement this test.
$this->markTestIncomplete('This test has not been implemented yet.');
}
/**
* @todo Implement testTestInt() for too high
* @todo Implement testTestInt() for too low
* valid
*/
public function testTestInt()
{
$this->assertSame(7, $this->cage->testInt('int'));
}
/**
* invalid
*/
public function testTestInt2()
{
$this->assertFalse($this->cage->testInt('date'));
}
/**
* missing
*/
public function testTestInt3()
{
$this->assertFalse($this->cage->testInt('non-existant'));
}
/**
* @todo Implement testTestIp().
*/
public function testTestIp()
{
// Remove the following lines when you implement this test.
$this->markTestIncomplete('This test has not been implemented yet.');
}
/**
* integer, true
*/
public function testTestLessThan()
{
$this->assertSame(7, $this->cage->testLessThan('int', 10));
}
/**
* non-integer, true
*/
public function testTestLessThan2()
{
$this->assertSame('abcdefg', $this->cage->testLessThan('alpha', 'z'));
}
/**
* integer, false
*/
public function testTestLessThan3()
{
$this->assertFalse($this->cage->testLessThan('int', 2));
}
/**
* non-integer, false
* @depends testOffsetSet
*/
public function testTestLessThan4()
{
$this->cage['highAlpha'] = 'z';
$this->assertFalse($this->cage->testLessThan('highAlpha', 'a'));
}
/**
* missing
*/
public function testTestLessThan5()
{
$this->assertFalse($this->cage->testLessThan('non-existant', 5));
}
/**
* missing max (bad idea, should alwasy return false?)
*/
public function testTestLessThan6()
{
$this->assertFalse($this->cage->testLessThan('int'));
}
/**
* @todo Implement testTestOneOf().
*/
public function testTestOneOf()
{
// Remove the following lines when you implement this test.
$this->markTestIncomplete('This test has not been implemented yet.');
}
/**
* @todo Implement testTestPhone().
*/
public function testTestPhone()
{
// Remove the following lines when you implement this test.
$this->markTestIncomplete('This test has not been implemented yet.');
}
/**
* @todo Implement testTestRegex().
*/
public function testTestRegex()
{
// Remove the following lines when you implement this test.
$this->markTestIncomplete('This test has not been implemented yet.');
}
/**
* @todo Implement testTestUri().
*/
public function testTestUri()
{
// Remove the following lines when you implement this test.
$this->markTestIncomplete('This test has not been implemented yet.');
}
/**
* valid zip
*/
public function testTestZip()
{
$this->assertSame(55555, $this->cage->testZip('zip'));
}
/**
* valid zip+4
*/
public function testTestZip2()
{
$this->assertSame('55555-4444', $this->cage->testZip('zip+4'));
}
/**
* invalid zip
*/
public function testTestZip3()
{
$this->assertFalse($this->cage->testZip('date'));
}
/**
* missing
*/
public function testTestZip4()
{
$this->assertFalse($this->cage->testZip('non-existant'));
}
/**
* @todo Implement testNoTags().
*/
public function testNoTags()
{
// Remove the following lines when you implement this test.
$this->markTestIncomplete('This test has not been implemented yet.');
}
/**
* @todo Implement testNoPath().
*/
public function testNoPath()
{
// Remove the following lines when you implement this test.
$this->markTestIncomplete('This test has not been implemented yet.');
}
/**
* @todo Implement testNoTagsOrSpecial().
*/
public function testNoTagsOrSpecial()
{
// Remove the following lines when you implement this test.
$this->markTestIncomplete('This test has not been implemented yet.');
}
/**
* @todo Implement testEscMySQL().
*/
public function testEscMySQL()
{
// Remove the following lines when you implement this test.
$this->markTestIncomplete('This test has not been implemented yet.');
}
/**
* @todo Implement testEscPgSQL().
*/
public function testEscPgSQL()
{
// Remove the following lines when you implement this test.
$this->markTestIncomplete('This test has not been implemented yet.');
}
/**
* @todo Implement testEscPgSQLBytea().
*/
public function testEscPgSQLBytea()
{
// Remove the following lines when you implement this test.
$this->markTestIncomplete('This test has not been implemented yet.');
}
/**
* @todo Implement testKeyExists().
*/
public function testKeyExists()
{
// Remove the following lines when you implement this test.
$this->markTestIncomplete('This test has not been implemented yet.');
}
/**
* @todo Implement test_keyExistsRecursive().
*/
public function test_keyExistsRecursive()
{
// Remove the following lines when you implement this test.
$this->markTestIncomplete('This test has not been implemented yet.');
}
/**
* @todo Implement test_getValue().
*/
public function test_getValue()
{
// Remove the following lines when you implement this test.
$this->markTestIncomplete('This test has not been implemented yet.');
}
/**
* @todo Implement test_getValueRecursive().
*/
public function test_getValueRecursive()
{
// Remove the following lines when you implement this test.
$this->markTestIncomplete('This test has not been implemented yet.');
}
/**
* @todo Implement test_setValue().
*/
public function test_setValue()
{
// Remove the following lines when you implement this test.
$this->markTestIncomplete('This test has not been implemented yet.');
}
/**
* @todo Implement test_setValueRecursive().
*/
public function test_setValueRecursive()
{
// Remove the following lines when you implement this test.
$this->markTestIncomplete('This test has not been implemented yet.');
}
}
?>
\ No newline at end of file
<?php
/**
* Source file for Inspekt_Error
*
* @author Ed Finkler <coj@funkatron.com>
* @package Inspekt
*/
/**
* Error handling for Inspekt
*
* @package Inspekt
*
*/
class Inspekt_Error {
/**
* Constructor
*
* @return Inspekt_Error
*/
public function __construct() {
}
/**
* Raises an error. In >= PHP5, this will throw an exception.
*
* @param string $msg
* @param integer $type One of the PHP Error Constants (E_USER_ERROR, E_USER_WARNING, E_USER_NOTICE)
*
* @link http://www.php.net/manual/en/ref.errorfunc.php#errorfunc.constants
*/
public static function raiseError($msg, $type = E_USER_WARNING)
{
throw new Exception($msg, $type);
}
}
\ No newline at end of file
<?php
/**
* Inspekt Supercage
*
* @author Ed Finkler <coj@funkatron.com>
*
* @package Inspekt
*/
/**
* require main Inspekt class
*/
require_once dirname(dirname(__FILE__)).DIRECTORY_SEPARATOR.'Inspekt.php';
/**
* require the Cage class
*/
require_once dirname(dirname(__FILE__)).DIRECTORY_SEPARATOR.'Inspekt/Cage.php';
/**
* The Supercage object wraps ALL of the superglobals
*
* @package Inspekt
*
*/
Class Inspekt_Supercage {
/**
* The get cage
*
* @var Inspekt_Cage
*/
var $get;
/**
* The post cage
*
* @var Inspekt_Cage
*/
var $post;
/**
* The cookie cage
*
* @var Inspekt_Cage
*/
var $cookie;
/**
* The env cage
*
* @var Inspekt_Cage
*/
var $env;
/**
* The files cage
*
* @var Inspekt_Cage
*/
var $files;
/**
* The session cage
*
* @var Inspekt_Cage
*/
var $session;
var $server;
/**
* Enter description here...
*
* @return Inspekt_Supercage
*/
public function Inspekt_Supercage() {
// placeholder
}
/**
* Enter description here...
*
* @param string $config_file
* @param boolean $strict
* @return Inspekt_Supercage
*/
static public function Factory($config_file = NULL, $strict = TRUE) {
$sc = new Inspekt_Supercage();
$sc->_makeCages($config_file, $strict);
// eliminate the $_REQUEST superglobal
if ($strict) {
$_REQUEST = null;
}
return $sc;
}
/**
* Enter description here...
*
* @see Inspekt_Supercage::Factory()
* @param string $config_file
* @param boolean $strict
*/
protected function _makeCages($config_file=NULL, $strict=TRUE) {
$this->get = Inspekt::makeGetCage($config_file, $strict);
$this->post = Inspekt::makePostCage($config_file, $strict);
$this->cookie = Inspekt::makeCookieCage($config_file, $strict);
$this->env = Inspekt::makeEnvCage($config_file, $strict);
$this->files = Inspekt::makeFilesCage($config_file, $strict);
// $this->session = Inspekt::makeSessionCage($config_file, $strict);
$this->server = Inspekt::makeServerCage($config_file, $strict);
}
public function addAccessor($name) {
$this->get->addAccessor($name);
$this->post->addAccessor($name);
$this->cookie->addAccessor($name);
$this->env->addAccessor($name);
$this->files->addAccessor($name);
// $this->session->addAccessor($name);
$this->server->addAccessor($name);
}
}
\ No newline at end of file
0% Chargement en cours ou .
You are about to add 0 people to the discussion. Proceed with caution.
Terminez d'abord l'édition de ce message.
Veuillez vous inscrire ou vous pour commenter