Walidacja REGON dla Zend Framework

/**
 * Zend Framework
 *
 * LICENSE
 *
 * This source file is subject to the new BSD license that is bundled
 * with this package in the file LICENSE.txt.
 * It is also available through the world-wide-web at this URL:
 * http://framework.zend.com/license/new-bsd
 * If you did not receive a copy of the license and are unable to
 * obtain it through the world-wide-web, please send an email
 * to license@zend.com so we can send you a copy immediately.
 *
 * @category   Zend
 * @package    Zend_Validate
 * @copyright  Copyright (c) 2005-2007 Zend Technologies USA Inc. (http://www.zend.com)
 * @license    http://framework.zend.com/license/new-bsd     New BSD License
 * @version    $Id$
 */ 

/**
 * @see Zend_Validate_Abstract
 */
require_once 'Zend/Validate/Abstract.php'; 

/**
 * @category   Zend
 * @package    Zend_Validate
 * @copyright  Copyright (c) 2005-2007 Zend Technologies USA Inc. (http://www.zend.com)
 * @license    http://framework.zend.com/license/new-bsd     New BSD License
 */
class Zend_Validate_Regon extends Zend_Validate_Abstract
{
    /**
     * Validation failure message key for when the value is not of valid length
     */
    const LENGTH   = 'numLength';

    /**
     * Validation failure message key for when the value fails the mod  checksum
     */
    const CHECKSUM = 'numChecksum';

     /**
     * Digits filter for input
     *
     * @var Zend_Filter_Digits
     */
    protected static $_filter = null;

    /**
     * @var array
     */
    protected $_messageTemplates = array(
        self::LENGTH   => "'%value%' must contain either 7, 9 or 14 digits",
        self::CHECKSUM => "Luhn algorithm (mod-11 checksum) failed on '%value%'"
    ); 

    /**
     * Defined by Zend_Validate_Interface
     *
     * Returns true if and only if $value contains a valid Eividencial namber message
     *
     * @param  string $value
     * @return boolean
     */
    public function isValid($value)
    {

        $this->_setValue($value);

        if (null === self::$_filter) {
            /**
             * @see Zend_Filter_Digits
             */
            require_once 'Zend/Filter/Digits.php';
            self::$_filter = new Zend_Filter_Digits();
        }

        $valueFiltered = self::$_filter->filter($value);

        $length = strlen($valueFiltered);

        if ($length != 7 && $length != 9 && $length != 14) {
            $this->_error(self::LENGTH);
            return false;
        }

        $mod = 11;
        $sum = 0;
        $weights[7] = array (2, 3, 4, 5, 6, 7);
        $weights[9] = array (8, 9, 2, 3, 4, 5, 6, 7);
        $weights[14] = array (2, 4, 8, 5, 0, 9, 7, 3, 6, 1, 2, 4, 8);

        preg_match_all("/\d/", $valueFiltered, $digits) ;

        $valueFilteredArray = $digits[0];        

        $weights = $weights[$length];
        foreach ( $valueFilteredArray as $digit )
        {
            $weight = current($weights);
            $sum += $digit * $weight;
            next($weights);
        }

        if ( ( ($sum % $mod == 10) ? 0 : $sum % $mod) != $valueFilteredArray[$length - 1] )
        {
            $this->_error(self::CHECKSUM, $valueFiltered);
            return false;
        }

        return true;
    }
}
        $validator3 = new Zend_Validate_Regon();
        if (!$validator3->isValid('0000000')) {
            $messages3 = $validator3->getMessages();
            echo current($messages3);
        }
        $element->setValidators(
                array(
                    array('Regon', true, array(
                        'messages' => array(
                        'numLength' => "'%value%' must contain either 7, 9 or 14 digits",
                        'numChecksum' => "Luhn algorithm (mod-11 checksum) failed on '%value%'"
                    )))
                ));

Dodaj odpowiedź


9 - = one