Validator.php 1.13 KB
Newer Older
Ketan's avatar
Ketan committed
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
<?php
/**
 * Copyright © Magento, Inc. All rights reserved.
 * See COPYING.txt for license details.
 */
namespace Magento\Directory\Model\Country\Postcode;

class Validator implements ValidatorInterface
{
    /**
     * @var ConfigInterface
     */
    protected $postCodesConfig;

    /**
     * @param ConfigInterface $postCodesConfig
     */
    public function __construct(\Magento\Directory\Model\Country\Postcode\ConfigInterface $postCodesConfig)
    {
        $this->postCodesConfig = $postCodesConfig;
    }

    /**
     * {@inheritdoc}
     */
    public function validate($postcode, $countryId)
    {
        $postCodes = $this->postCodesConfig->getPostCodes();
        if (isset($postCodes[$countryId]) && is_array($postCodes[$countryId])) {
            $patterns = $postCodes[$countryId];
            foreach ($patterns as $pattern) {
                preg_match('/' . $pattern['pattern'] . '/', $postcode, $matches);
                if (count($matches)) {
                    return true;
                }
            }
            return false;
        }
        throw new \InvalidArgumentException('Provided countryId does not exist.');
    }
}