123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100 |
- <?php
- /**
- *
- * Cube Framework $Id$ Mb+q3NGklhDEfLjdI7KJHpjTTrjH4c3asnT1dGhtIZU=
- *
- * @link http://codecu.be/framework
- * @copyright Copyright (c) 2014 CodeCube SRL
- * @license http://codecu.be/framework/license Commercial License
- *
- * @version 1.2
- */
- /**
- * captcha element validator class
- */
- namespace Cube\Validate;
- use Cube\Controller\Front,
- Cube\Session;
- class Captcha extends AbstractValidate
- {
- const SESSION_NAMESPACE = 'Captcha';
- protected $_message = "The captcha code is not valid.";
- /**
- *
- * session object
- *
- * @var \Cube\Session
- */
- protected $_session;
- /**
- *
- * get session object
- *
- * @return \Cube\Session
- */
- public function getSession()
- {
- if (!($this->_session instanceof Session)) {
- $this->setSession();
- }
- return $this->_session;
- }
- /**
- *
- * set session object
- *
- * @param \Cube\Session $session
- *
- * @return $this
- */
- public function setSession(Session $session = null)
- {
- if ($session === null) {
- $session = Front::getInstance()->getBootstrap()->getResource('session');
- }
- if (!($session instanceof Session)) {
- $session = new Session();
- $session->setNamespace(self::SESSION_NAMESPACE);
- }
- $this->_session = $session;
- return $this;
- }
- /**
- *
- * checks for a valid captcha code, and resets the code if valid
- *
- * @return bool return true if the validation is successful
- */
- public function isValid()
- {
- $name = $this->getName();
- $value = $this->getValue();
- $codes = (array) $this->getSession()->get($name);
- if (($key = array_search($value, $codes)) !== false) {
- unset($codes[$key]);
- $this->getSession()->set($name, $codes);
- return true;
- }
- else {
- return false;
- }
- }
- }
|