-
-
Save silasrm/309da82995eb463454ec to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
namespace Obras\Bundle\CadastroBundle\Validator\Constraints; | |
use Symfony\Component\Validator\Constraint; | |
/** | |
* @Annotation | |
* @Target({"PROPERTY", "METHOD", "ANNOTATION"}) | |
* | |
* @author Afranio Martins <[email protected]> | |
* | |
* @api | |
*/ | |
class CpfCnpj extends Constraint | |
{ | |
public $cpf = false; | |
public $cnpj = false; | |
public $message = 'O {{ type }} informado é inválido.'; | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
namespace Obras\Bundle\CadastroBundle\Validator\Constraints; | |
use Symfony\Component\Validator\Constraint; | |
use Symfony\Component\Validator\ConstraintValidator; | |
use Symfony\Component\Validator\Exception\ConstraintDefinitionException; | |
use Symfony\Component\Validator\Exception\UnexpectedTypeException; | |
/** | |
* Validar se o cpf ou cnpj é válido | |
* @see http://www.geradorcpf.com/algoritmo_do_cpf.htm | |
* @see http://www.geradorcnpj.com/algoritmo_do_cnpj.htm | |
* | |
* @author Afranio Martins <[email protected]> | |
* | |
*/ | |
class CpfCnpjValidator extends ConstraintValidator | |
{ | |
protected $messageException = 'A restrição para CPF ou CNPJ espera um valor válido'; | |
/** | |
* {@inheritdoc} | |
*/ | |
public function validate($value, Constraint $constraint) | |
{ | |
if (!$constraint instanceof CpfCnpj) { | |
throw new UnexpectedTypeException($constraint, __NAMESPACE__.'\CpfCnpj'); | |
} | |
if(!$this->validador($value, $constraint)) { | |
$this->context->addViolation( | |
$constraint->message, | |
array('{{ type }}' => $constraint->cnpj ? 'CNPJ' : 'CPF') | |
); | |
} | |
} | |
protected function validador($valor, $constraint) | |
{ | |
$valor = preg_replace('/[^0-9]/', '', $valor); | |
if(empty($valor)) | |
return false; | |
//Verificando se há números repetidos como: 0000000000 | |
for($i = 0; $i <= 9; $i++) { | |
$repetidos = str_pad('', strlen($valor), $i); | |
if($valor === $repetidos) | |
return false; | |
} | |
if($constraint->cpf || $constraint->cnpj) { | |
if($constraint->cpf && strlen($valor) !== 11) { | |
return false; | |
} else if($constraint->cnpj && strlen($valor) !== 14) { | |
return false; | |
} else { | |
throw new ConstraintDefinitionException($this->messageException); | |
} | |
} else { | |
// Verifica se é CPF | |
if (strlen($valor) === 11) { | |
$constraint->cpf = true; | |
} else if (strlen($valor) === 14) {// Verifica se é CNPJ | |
$constraint->cnpj = true; | |
} else { | |
throw new ConstraintDefinitionException($this->messageException); | |
} | |
} | |
if ($constraint->cpf && $valor == "12345678909") | |
return false; | |
$pesos = $constraint->cnpj ? 6 : 11; | |
//Para o CPF serão os pesos 10 e 11 | |
//Para o CNPJ serão os pesos 5 e 6 | |
for($peso = ($pesos - 1), $digito = (strlen($valor) - 2); $peso <= $pesos; $peso++, $digito++) { | |
for($soma = 0, $i = 0, $posicao = $peso; $posicao >= 2; $posicao--, $i++) { | |
$soma = $soma + ($valor[$i] * $posicao); | |
// Parte específica para CNPJ Ex.: 5-4-3-2-9-8-7-6-5-4-3-2 | |
if($constraint->cnpj && $posicao < 3 && $i < 5) | |
$posicao = 10; | |
} | |
$soma = ((10 * $soma) % 11) % 10; | |
if ($valor{$digito} != $soma) { | |
return false; | |
} | |
} | |
return true; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment