Skip to content

Commit

Permalink
atualiza funções CPf e senha
Browse files Browse the repository at this point in the history
  • Loading branch information
MegahNevel committed Dec 13, 2024
1 parent dac7d53 commit b66e57f
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/Utils/cpf.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,12 @@ const validarCPF = (cpf) => {
cpf = cpf.replace(/[^\d]+/g, "");

if (cpf.length !== 11) {
console.error("Erro: CPF deve conter 11 dígitos");
return false;
}

if (/^(\d)\1+$/.test(cpf)) {
console.error("Erro: CPF não pode conter todos dígitos iguais");
return false;
}

Expand All @@ -18,6 +20,7 @@ const validarCPF = (cpf) => {
resto = 0;
}
if (resto !== parseInt(cpf.charAt(9))) {
console.error("Erro: Primeiro dígito verificador do CPF é inválido");
return false;
}

Expand All @@ -30,6 +33,7 @@ const validarCPF = (cpf) => {
resto = 0;
}
if (resto !== parseInt(cpf.charAt(10))) {
console.error("Erro: Segundo dígito verificador do CPF é inválido");
return false;
}

Expand Down
18 changes: 18 additions & 0 deletions src/Utils/senha.js
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,24 @@ const validaSenha = (novaSenha) => {
const temMinuscula = /[a-z]/.test(novaSenha);
const temNumero = /\d/.test(novaSenha);

if (novaSenha < comprimentoMinimo) {
console.error(
"Erro: A senha deve ter pelo menos ${comprimentoMinimo} caracteres"
);
}

if (!temMaiuscula) {
console.error("Erro: A senha deve ter pelo menos uma letra maiuscula");
}

if (!temMinuscula) {
console.error("Erro: A senha deve ter pelo menos uma letra minuscula");
}

if (!temNumero) {
console.error("Erro: A senha deve ter pelo menos um numero");
}

return (
novaSenha.legnth >= comprimentoMinimo &&
temMinuscula &&
Expand Down

0 comments on commit b66e57f

Please sign in to comment.