Last active
August 14, 2020 11:17
-
-
Save afranioce/81bff0bdb479a2c6a90e to your computer and use it in GitHub Desktop.
Validador de cpf e cnpj para symfony2
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 AppBundle\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 $mask = false; | |
public $messageMask = 'O {{ type }} não está em um formato válido.'; | |
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 AppBundle\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 e/ou se tem um formato 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 | |
{ | |
const CPF_REGEXP = '/^(\d{3}\.\d{3}\.\d{3}\-\d{2})$/'; | |
const CNPJ_REGEXP = '/^(\d{2}\.\d{3}\.\d{3}\/\d{4}-\d{2})$/'; | |
protected $messageException = 'A restrição para CPF ou CNPJ espera um valor válido'; | |
protected $isCnpj = false; | |
/** | |
* {@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 }}' => $this->isCnpj ? 'CNPJ' : 'CPF') | |
); | |
return false; | |
} | |
if ($constraint->mask && !$this->maskValidador($value, $constraint)) { | |
$this->context->addViolation( | |
$constraint->messageMask, | |
array('{{ type }}' => $this->isCnpj ? 'CNPJ' : 'CPF') | |
); | |
return false; | |
} | |
} | |
/** | |
* Verificando se está em um formato válido | |
* | |
* @param string $value | |
* @param CpfCnpj $constraint | |
* @return bool | |
*/ | |
protected function maskValidador($value, $constraint) | |
{ | |
if (!$this->isCnpj && !preg_match(self::CPF_REGEXP, $value)) { | |
return false; | |
} else if ($this->isCnpj && !preg_match(self::CNPJ_REGEXP, $value)) { | |
return false; | |
} | |
return true; | |
} | |
/** | |
* Verificar se é um documento válido | |
* | |
* @param string $value | |
* @param CpfCnpj $constraint | |
* @return bool | |
*/ | |
protected function validador($value, $constraint) | |
{ | |
$value = preg_replace('/[^0-9]/', '', $value); | |
if (empty($value)) { | |
return false; | |
} | |
//Verificando se há números repetidos como: 0000000000, 1111111111, etc | |
for ($i = 0; $i <= 9; $i++) { | |
$repetidos = str_pad('', strlen($value), $i); | |
if ($value === $repetidos) { | |
return false; | |
} | |
} | |
if ($constraint->cpf || $constraint->cnpj) { | |
$this->isCnpj = $constraint->cnpj; | |
if ($constraint->cpf && strlen($value) !== 11) { | |
return false; | |
} else if ($constraint->cnpj && strlen($value) !== 14) { | |
return false; | |
} | |
} //Identifica o tipo de documento pela quantidade de caracteres | |
else { | |
if (strlen($value) === 11) { | |
$constraint->cpf = true; | |
} else if (strlen($value) === 14) { | |
$this->isCnpj = true; | |
$constraint->cnpj = true; | |
} else { | |
throw new ConstraintDefinitionException($this->messageException); | |
} | |
} | |
if ($constraint->cpf && $value == "01234567890") { | |
return false; | |
} | |
$weights = $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 ($weight = ($weights - 1), $digit = (strlen($value) - 2); $weight <= $weights; $weight++, $digit++) { | |
for ($sum = 0, $i = 0, $position = $weight; $position >= 2; $position--, $i++) { | |
$sum = $sum + ($value[$i] * $position); | |
// Parte específica para CNPJ Ex.: 5-4-3-2-9-8-7-6-5-4-3-2 | |
if ($constraint->cnpj && $position < 3 && $i < 5) { | |
$position = 10; | |
} | |
} | |
$sum = ((10 * $sum) % 11) % 10; | |
if ($value{$digit} != $sum) { | |
return false; | |
} | |
} | |
return true; | |
} | |
} |
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
AppBundle\Entity\Person: | |
properties: | |
cpf: | |
- AppBundle\Validator\Constraints\CpfCnpj: | |
cpf: true #Se cpf ou cnpj não for definido, o documento é detectado pela quantidade de caracteres | |
mask: true |
Achei o erro, tu está definindo $this->isCnpj
depois do return
no primeiro if
do validator()
o corretor seria assim:
if ($constraint->cpf || $constraint->cnpj) {
$this->isCnpj = $constraint->cnpj; // <==== colocar isso antes dos possíveis return
if ($constraint->cpf && strlen($value) !== 11) {
return false;
} else if ($constraint->cnpj && strlen($value) !== 14) {
return false;
}
}
@cassianotartari muito obrigado pela sua ajuda, já fiz a correção ;)
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Bom dia. Primeiro muito obrigado por compartilhar o código.
Numa rápida olhada não entendi porque ao configurar o
validation.yml
com:Num teste com
0123456789123
a mensagem que retorna éO CPF informado é inválido.
ao invés de vir com CNPJ.Vou continuar olhando o seu código pra entender o porquê disso.