diff options
| author | Lucas Faria Mendes <lucas.fariamo08@gmail.com> | 2026-03-30 17:17:46 +0000 |
|---|---|---|
| committer | Lucas Faria Mendes <lucas.fariamo08@gmail.com> | 2026-03-30 17:17:46 +0000 |
| commit | 0440c722a221b8068bbf388c1c0c51f0faff0451 (patch) | |
| tree | 169cbf90c50ff7961db82ecb606c50c2a45a1688 /Gestor.Common/Gestor.Common.Validation | |
| parent | 225aa1499e37faf9d38257caabbadc68d78b427e (diff) | |
| download | gestor-master.tar.gz gestor-master.zip | |
Diffstat (limited to 'Gestor.Common/Gestor.Common.Validation')
38 files changed, 1658 insertions, 0 deletions
diff --git a/Gestor.Common/Gestor.Common.Validation/SemValicao.cs b/Gestor.Common/Gestor.Common.Validation/SemValicao.cs new file mode 100644 index 0000000..e551660 --- /dev/null +++ b/Gestor.Common/Gestor.Common.Validation/SemValicao.cs @@ -0,0 +1,12 @@ +using System.Globalization; +using System.Windows.Controls; + +namespace Gestor.Common.Validation; + +public class SemValicao : ValidationRule +{ + public override ValidationResult Validate(object value, CultureInfo cultureInfo) + { + return ValidationResult.ValidResult; + } +} diff --git a/Gestor.Common/Gestor.Common.Validation/ValidacaoAno.cs b/Gestor.Common/Gestor.Common.Validation/ValidacaoAno.cs new file mode 100644 index 0000000..88c2749 --- /dev/null +++ b/Gestor.Common/Gestor.Common.Validation/ValidacaoAno.cs @@ -0,0 +1,18 @@ +using System.Globalization; +using System.Windows.Controls; + +namespace Gestor.Common.Validation; + +public class ValidacaoAno : ValidationRule +{ + public override ValidationResult Validate(object value, CultureInfo cultureInfo) + { + //IL_002f: Unknown result type (might be due to invalid IL or missing references) + //IL_0035: Expected O, but got Unknown + if (string.IsNullOrWhiteSpace((value ?? "").ToString()) || value.ToString().ValidateAno()) + { + return ValidationResult.ValidResult; + } + return new ValidationResult(false, (object)"Ano Inválido"); + } +} diff --git a/Gestor.Common/Gestor.Common.Validation/ValidacaoAnoObrigatorio.cs b/Gestor.Common/Gestor.Common.Validation/ValidacaoAnoObrigatorio.cs new file mode 100644 index 0000000..ae52f52 --- /dev/null +++ b/Gestor.Common/Gestor.Common.Validation/ValidacaoAnoObrigatorio.cs @@ -0,0 +1,24 @@ +using System.Globalization; +using System.Windows.Controls; + +namespace Gestor.Common.Validation; + +public class ValidacaoAnoObrigatorio : ValidationRule +{ + public override ValidationResult Validate(object value, CultureInfo cultureInfo) + { + //IL_003b: Unknown result type (might be due to invalid IL or missing references) + //IL_0041: Expected O, but got Unknown + //IL_002f: Unknown result type (might be due to invalid IL or missing references) + //IL_0035: Expected O, but got Unknown + if (!string.IsNullOrWhiteSpace((value ?? "").ToString())) + { + if (value.ToString().ValidateAno()) + { + return ValidationResult.ValidResult; + } + return new ValidationResult(false, (object)"Ano Inválido"); + } + return new ValidationResult(false, (object)"Obrigatório"); + } +} diff --git a/Gestor.Common/Gestor.Common.Validation/ValidacaoCeiObrigatorio.cs b/Gestor.Common/Gestor.Common.Validation/ValidacaoCeiObrigatorio.cs new file mode 100644 index 0000000..9ed914d --- /dev/null +++ b/Gestor.Common/Gestor.Common.Validation/ValidacaoCeiObrigatorio.cs @@ -0,0 +1,24 @@ +using System.Globalization; +using System.Windows.Controls; + +namespace Gestor.Common.Validation; + +public class ValidacaoCeiObrigatorio : ValidationRule +{ + public override ValidationResult Validate(object value, CultureInfo cultureInfo) + { + //IL_003b: Unknown result type (might be due to invalid IL or missing references) + //IL_0041: Expected O, but got Unknown + //IL_002f: Unknown result type (might be due to invalid IL or missing references) + //IL_0035: Expected O, but got Unknown + if (!string.IsNullOrWhiteSpace((value ?? "").ToString())) + { + if (value.ToString().ValidateCei()) + { + return ValidationResult.ValidResult; + } + return new ValidationResult(false, (object)"CEI Inválido"); + } + return new ValidationResult(false, (object)"Obrigatório"); + } +} diff --git a/Gestor.Common/Gestor.Common.Validation/ValidacaoCep.cs b/Gestor.Common/Gestor.Common.Validation/ValidacaoCep.cs new file mode 100644 index 0000000..71a0f0c --- /dev/null +++ b/Gestor.Common/Gestor.Common.Validation/ValidacaoCep.cs @@ -0,0 +1,18 @@ +using System.Globalization; +using System.Windows.Controls; + +namespace Gestor.Common.Validation; + +public class ValidacaoCep : ValidationRule +{ + public override ValidationResult Validate(object value, CultureInfo cultureInfo) + { + //IL_002f: Unknown result type (might be due to invalid IL or missing references) + //IL_0035: Expected O, but got Unknown + if (string.IsNullOrWhiteSpace((value ?? "").ToString()) || value.ToString().ValidatePostCode()) + { + return ValidationResult.ValidResult; + } + return new ValidationResult(false, (object)"CEP Inválido"); + } +} diff --git a/Gestor.Common/Gestor.Common.Validation/ValidacaoCepObrigatorio.cs b/Gestor.Common/Gestor.Common.Validation/ValidacaoCepObrigatorio.cs new file mode 100644 index 0000000..bc08a87 --- /dev/null +++ b/Gestor.Common/Gestor.Common.Validation/ValidacaoCepObrigatorio.cs @@ -0,0 +1,24 @@ +using System.Globalization; +using System.Windows.Controls; + +namespace Gestor.Common.Validation; + +public class ValidacaoCepObrigatorio : ValidationRule +{ + public override ValidationResult Validate(object value, CultureInfo cultureInfo) + { + //IL_003b: Unknown result type (might be due to invalid IL or missing references) + //IL_0041: Expected O, but got Unknown + //IL_002f: Unknown result type (might be due to invalid IL or missing references) + //IL_0035: Expected O, but got Unknown + if (!string.IsNullOrWhiteSpace((value ?? "").ToString())) + { + if (value.ToString().ValidatePostCode()) + { + return ValidationResult.ValidResult; + } + return new ValidationResult(false, (object)"CEP Inválido"); + } + return new ValidationResult(false, (object)"Obrigatório"); + } +} diff --git a/Gestor.Common/Gestor.Common.Validation/ValidacaoChassi.cs b/Gestor.Common/Gestor.Common.Validation/ValidacaoChassi.cs new file mode 100644 index 0000000..dd1df1e --- /dev/null +++ b/Gestor.Common/Gestor.Common.Validation/ValidacaoChassi.cs @@ -0,0 +1,18 @@ +using System.Globalization; +using System.Windows.Controls; + +namespace Gestor.Common.Validation; + +public class ValidacaoChassi : ValidationRule +{ + public override ValidationResult Validate(object chassiNumber, CultureInfo cultureInfo) + { + //IL_002f: Unknown result type (might be due to invalid IL or missing references) + //IL_0035: Expected O, but got Unknown + if (string.IsNullOrWhiteSpace((chassiNumber ?? "").ToString()) || chassiNumber.ToString().ValidateChassi()) + { + return ValidationResult.ValidResult; + } + return new ValidationResult(false, (object)"Chassi Inválido"); + } +} diff --git a/Gestor.Common/Gestor.Common.Validation/ValidacaoChassiObrigatorio.cs b/Gestor.Common/Gestor.Common.Validation/ValidacaoChassiObrigatorio.cs new file mode 100644 index 0000000..c131126 --- /dev/null +++ b/Gestor.Common/Gestor.Common.Validation/ValidacaoChassiObrigatorio.cs @@ -0,0 +1,24 @@ +using System.Globalization; +using System.Windows.Controls; + +namespace Gestor.Common.Validation; + +public class ValidacaoChassiObrigatorio : ValidationRule +{ + public override ValidationResult Validate(object value, CultureInfo cultureInfo) + { + //IL_003b: Unknown result type (might be due to invalid IL or missing references) + //IL_0041: Expected O, but got Unknown + //IL_002f: Unknown result type (might be due to invalid IL or missing references) + //IL_0035: Expected O, but got Unknown + if (!string.IsNullOrWhiteSpace((value ?? "").ToString())) + { + if (value.ToString().ValidateChassi()) + { + return ValidationResult.ValidResult; + } + return new ValidationResult(false, (object)"Chassi Inválido"); + } + return new ValidationResult(false, (object)"Obrigatório"); + } +} diff --git a/Gestor.Common/Gestor.Common.Validation/ValidacaoData.cs b/Gestor.Common/Gestor.Common.Validation/ValidacaoData.cs new file mode 100644 index 0000000..7377557 --- /dev/null +++ b/Gestor.Common/Gestor.Common.Validation/ValidacaoData.cs @@ -0,0 +1,18 @@ +using System.Globalization; +using System.Windows.Controls; + +namespace Gestor.Common.Validation; + +public class ValidacaoData : ValidationRule +{ + public override ValidationResult Validate(object value, CultureInfo cultureInfo) + { + //IL_002f: Unknown result type (might be due to invalid IL or missing references) + //IL_0035: Expected O, but got Unknown + if (string.IsNullOrWhiteSpace((value ?? "").ToString()) || value.ToString().ValidateDate()) + { + return ValidationResult.ValidResult; + } + return new ValidationResult(false, (object)"Data Inválida"); + } +} diff --git a/Gestor.Common/Gestor.Common.Validation/ValidacaoDataFutura.cs b/Gestor.Common/Gestor.Common.Validation/ValidacaoDataFutura.cs new file mode 100644 index 0000000..6e4ea28 --- /dev/null +++ b/Gestor.Common/Gestor.Common.Validation/ValidacaoDataFutura.cs @@ -0,0 +1,18 @@ +using System.Globalization; +using System.Windows.Controls; + +namespace Gestor.Common.Validation; + +public class ValidacaoDataFutura : ValidationRule +{ + public override ValidationResult Validate(object value, CultureInfo cultureInfo) + { + //IL_002f: Unknown result type (might be due to invalid IL or missing references) + //IL_0035: Expected O, but got Unknown + if (string.IsNullOrWhiteSpace((value ?? "").ToString()) || value.ToString().ValidateFutureDate()) + { + return ValidationResult.ValidResult; + } + return new ValidationResult(false, (object)"Data Inválida"); + } +} diff --git a/Gestor.Common/Gestor.Common.Validation/ValidacaoDataMaior.cs b/Gestor.Common/Gestor.Common.Validation/ValidacaoDataMaior.cs new file mode 100644 index 0000000..88606a5 --- /dev/null +++ b/Gestor.Common/Gestor.Common.Validation/ValidacaoDataMaior.cs @@ -0,0 +1,27 @@ +using System; +using System.Globalization; +using System.Windows.Controls; + +namespace Gestor.Common.Validation; + +public class ValidacaoDataMaior : ValidationRule +{ + public DateTime BaseDate { get; set; } + + public override ValidationResult Validate(object value, CultureInfo cultureInfo) + { + //IL_0041: Unknown result type (might be due to invalid IL or missing references) + //IL_0047: Expected O, but got Unknown + //IL_0035: Unknown result type (might be due to invalid IL or missing references) + //IL_003b: Expected O, but got Unknown + if (!string.IsNullOrWhiteSpace((value ?? "").ToString())) + { + if (!((DateTime)value < BaseDate)) + { + return ValidationResult.ValidResult; + } + return new ValidationResult(false, (object)"Data Inválida"); + } + return new ValidationResult(false, (object)"Obrigatório"); + } +} diff --git a/Gestor.Common/Gestor.Common.Validation/ValidacaoDataObrigatoria.cs b/Gestor.Common/Gestor.Common.Validation/ValidacaoDataObrigatoria.cs new file mode 100644 index 0000000..2606ee3 --- /dev/null +++ b/Gestor.Common/Gestor.Common.Validation/ValidacaoDataObrigatoria.cs @@ -0,0 +1,24 @@ +using System.Globalization; +using System.Windows.Controls; + +namespace Gestor.Common.Validation; + +public class ValidacaoDataObrigatoria : ValidationRule +{ + public override ValidationResult Validate(object value, CultureInfo cultureInfo) + { + //IL_003b: Unknown result type (might be due to invalid IL or missing references) + //IL_0041: Expected O, but got Unknown + //IL_002f: Unknown result type (might be due to invalid IL or missing references) + //IL_0035: Expected O, but got Unknown + if (!string.IsNullOrWhiteSpace((value ?? "").ToString())) + { + if (value.ToString().ValidateDate()) + { + return ValidationResult.ValidResult; + } + return new ValidationResult(false, (object)"Data Inválida"); + } + return new ValidationResult(false, (object)"Obrigatório"); + } +} diff --git a/Gestor.Common/Gestor.Common.Validation/ValidacaoDataPassada.cs b/Gestor.Common/Gestor.Common.Validation/ValidacaoDataPassada.cs new file mode 100644 index 0000000..cb5f1ed --- /dev/null +++ b/Gestor.Common/Gestor.Common.Validation/ValidacaoDataPassada.cs @@ -0,0 +1,18 @@ +using System.Globalization; +using System.Windows.Controls; + +namespace Gestor.Common.Validation; + +public class ValidacaoDataPassada : ValidationRule +{ + public override ValidationResult Validate(object value, CultureInfo cultureInfo) + { + //IL_002f: Unknown result type (might be due to invalid IL or missing references) + //IL_0035: Expected O, but got Unknown + if (string.IsNullOrWhiteSpace((value ?? "").ToString()) || value.ToString().ValidatePastDate()) + { + return ValidationResult.ValidResult; + } + return new ValidationResult(false, (object)"Data Inválida"); + } +} diff --git a/Gestor.Common/Gestor.Common.Validation/ValidacaoDataPassadaObrigatoria.cs b/Gestor.Common/Gestor.Common.Validation/ValidacaoDataPassadaObrigatoria.cs new file mode 100644 index 0000000..456a6d8 --- /dev/null +++ b/Gestor.Common/Gestor.Common.Validation/ValidacaoDataPassadaObrigatoria.cs @@ -0,0 +1,24 @@ +using System.Globalization; +using System.Windows.Controls; + +namespace Gestor.Common.Validation; + +public class ValidacaoDataPassadaObrigatoria : ValidationRule +{ + public override ValidationResult Validate(object value, CultureInfo cultureInfo) + { + //IL_003b: Unknown result type (might be due to invalid IL or missing references) + //IL_0041: Expected O, but got Unknown + //IL_002f: Unknown result type (might be due to invalid IL or missing references) + //IL_0035: Expected O, but got Unknown + if (!string.IsNullOrWhiteSpace((value ?? "").ToString())) + { + if (value.ToString().ValidatePastDate()) + { + return ValidationResult.ValidResult; + } + return new ValidationResult(false, (object)"Data Inválida"); + } + return new ValidationResult(false, (object)"Obrigatório"); + } +} diff --git a/Gestor.Common/Gestor.Common.Validation/ValidacaoDocumento.cs b/Gestor.Common/Gestor.Common.Validation/ValidacaoDocumento.cs new file mode 100644 index 0000000..94eacf1 --- /dev/null +++ b/Gestor.Common/Gestor.Common.Validation/ValidacaoDocumento.cs @@ -0,0 +1,18 @@ +using System.Globalization; +using System.Windows.Controls; + +namespace Gestor.Common.Validation; + +public class ValidacaoDocumento : ValidationRule +{ + public override ValidationResult Validate(object value, CultureInfo cultureInfo) + { + //IL_002f: Unknown result type (might be due to invalid IL or missing references) + //IL_0035: Expected O, but got Unknown + if (string.IsNullOrWhiteSpace((value ?? "").ToString()) || value.ToString().ValidateDocument()) + { + return ValidationResult.ValidResult; + } + return new ValidationResult(false, (object)"Documento Inválido"); + } +} diff --git a/Gestor.Common/Gestor.Common.Validation/ValidacaoDocumentoObrigatorio.cs b/Gestor.Common/Gestor.Common.Validation/ValidacaoDocumentoObrigatorio.cs new file mode 100644 index 0000000..a97d2b2 --- /dev/null +++ b/Gestor.Common/Gestor.Common.Validation/ValidacaoDocumentoObrigatorio.cs @@ -0,0 +1,24 @@ +using System.Globalization; +using System.Windows.Controls; + +namespace Gestor.Common.Validation; + +public class ValidacaoDocumentoObrigatorio : ValidationRule +{ + public override ValidationResult Validate(object value, CultureInfo cultureInfo) + { + //IL_003b: Unknown result type (might be due to invalid IL or missing references) + //IL_0041: Expected O, but got Unknown + //IL_002f: Unknown result type (might be due to invalid IL or missing references) + //IL_0035: Expected O, but got Unknown + if (!string.IsNullOrWhiteSpace((value ?? "").ToString())) + { + if (value.ToString().ValidateDocument()) + { + return ValidationResult.ValidResult; + } + return new ValidationResult(false, (object)"Documento Inválido"); + } + return new ValidationResult(false, (object)"Obrigatório"); + } +} diff --git a/Gestor.Common/Gestor.Common.Validation/ValidacaoDouble.cs b/Gestor.Common/Gestor.Common.Validation/ValidacaoDouble.cs new file mode 100644 index 0000000..8b8b9ab --- /dev/null +++ b/Gestor.Common/Gestor.Common.Validation/ValidacaoDouble.cs @@ -0,0 +1,18 @@ +using System.Globalization; +using System.Windows.Controls; + +namespace Gestor.Common.Validation; + +public class ValidacaoDouble : ValidationRule +{ + public override ValidationResult Validate(object value, CultureInfo cultureInfo) + { + //IL_002f: Unknown result type (might be due to invalid IL or missing references) + //IL_0035: Expected O, but got Unknown + if (string.IsNullOrWhiteSpace((value ?? "").ToString()) || value.ToString().ValidateDouble()) + { + return ValidationResult.ValidResult; + } + return new ValidationResult(false, (object)"Valor Inválido"); + } +} diff --git a/Gestor.Common/Gestor.Common.Validation/ValidacaoEmail.cs b/Gestor.Common/Gestor.Common.Validation/ValidacaoEmail.cs new file mode 100644 index 0000000..8948d1a --- /dev/null +++ b/Gestor.Common/Gestor.Common.Validation/ValidacaoEmail.cs @@ -0,0 +1,18 @@ +using System.Globalization; +using System.Windows.Controls; + +namespace Gestor.Common.Validation; + +public class ValidacaoEmail : ValidationRule +{ + public override ValidationResult Validate(object value, CultureInfo cultureInfo) + { + //IL_002f: Unknown result type (might be due to invalid IL or missing references) + //IL_0035: Expected O, but got Unknown + if (string.IsNullOrWhiteSpace((value ?? "").ToString()) || value.ToString().ValidateMail()) + { + return ValidationResult.ValidResult; + } + return new ValidationResult(false, (object)"E-mail Inválido"); + } +} diff --git a/Gestor.Common/Gestor.Common.Validation/ValidacaoEmailObrigatorio.cs b/Gestor.Common/Gestor.Common.Validation/ValidacaoEmailObrigatorio.cs new file mode 100644 index 0000000..f7006a9 --- /dev/null +++ b/Gestor.Common/Gestor.Common.Validation/ValidacaoEmailObrigatorio.cs @@ -0,0 +1,24 @@ +using System.Globalization; +using System.Windows.Controls; + +namespace Gestor.Common.Validation; + +public class ValidacaoEmailObrigatorio : ValidationRule +{ + public override ValidationResult Validate(object value, CultureInfo cultureInfo) + { + //IL_003b: Unknown result type (might be due to invalid IL or missing references) + //IL_0041: Expected O, but got Unknown + //IL_002f: Unknown result type (might be due to invalid IL or missing references) + //IL_0035: Expected O, but got Unknown + if (!string.IsNullOrWhiteSpace((value ?? "").ToString())) + { + if (value.ToString().ValidateMail()) + { + return ValidationResult.ValidResult; + } + return new ValidationResult(false, (object)"E-mail Inválido"); + } + return new ValidationResult(false, (object)"Obrigatório"); + } +} diff --git a/Gestor.Common/Gestor.Common.Validation/ValidacaoEstado.cs b/Gestor.Common/Gestor.Common.Validation/ValidacaoEstado.cs new file mode 100644 index 0000000..90eee59 --- /dev/null +++ b/Gestor.Common/Gestor.Common.Validation/ValidacaoEstado.cs @@ -0,0 +1,18 @@ +using System.Globalization; +using System.Windows.Controls; + +namespace Gestor.Common.Validation; + +public class ValidacaoEstado : ValidationRule +{ + public override ValidationResult Validate(object value, CultureInfo cultureInfo) + { + //IL_002f: Unknown result type (might be due to invalid IL or missing references) + //IL_0035: Expected O, but got Unknown + if (string.IsNullOrWhiteSpace((value ?? "").ToString()) || value.ToString().ValidateState()) + { + return ValidationResult.ValidResult; + } + return new ValidationResult(false, (object)"Estado Inválido"); + } +} diff --git a/Gestor.Common/Gestor.Common.Validation/ValidacaoEstadoObrigatorio.cs b/Gestor.Common/Gestor.Common.Validation/ValidacaoEstadoObrigatorio.cs new file mode 100644 index 0000000..752d6ce --- /dev/null +++ b/Gestor.Common/Gestor.Common.Validation/ValidacaoEstadoObrigatorio.cs @@ -0,0 +1,24 @@ +using System.Globalization; +using System.Windows.Controls; + +namespace Gestor.Common.Validation; + +public class ValidacaoEstadoObrigatorio : ValidationRule +{ + public override ValidationResult Validate(object value, CultureInfo cultureInfo) + { + //IL_003b: Unknown result type (might be due to invalid IL or missing references) + //IL_0041: Expected O, but got Unknown + //IL_002f: Unknown result type (might be due to invalid IL or missing references) + //IL_0035: Expected O, but got Unknown + if (!string.IsNullOrWhiteSpace((value ?? "").ToString())) + { + if (value.ToString().ValidateState()) + { + return ValidationResult.ValidResult; + } + return new ValidationResult(false, (object)"Estado Inválido"); + } + return new ValidationResult(false, (object)"Obrigatório"); + } +} diff --git a/Gestor.Common/Gestor.Common.Validation/ValidacaoFipeObrigatorio.cs b/Gestor.Common/Gestor.Common.Validation/ValidacaoFipeObrigatorio.cs new file mode 100644 index 0000000..287d8c6 --- /dev/null +++ b/Gestor.Common/Gestor.Common.Validation/ValidacaoFipeObrigatorio.cs @@ -0,0 +1,24 @@ +using System.Globalization; +using System.Windows.Controls; + +namespace Gestor.Common.Validation; + +public class ValidacaoFipeObrigatorio : ValidationRule +{ + public override ValidationResult Validate(object value, CultureInfo cultureInfo) + { + //IL_003b: Unknown result type (might be due to invalid IL or missing references) + //IL_0041: Expected O, but got Unknown + //IL_002f: Unknown result type (might be due to invalid IL or missing references) + //IL_0035: Expected O, but got Unknown + if (!string.IsNullOrWhiteSpace((value ?? "").ToString())) + { + if (value.ToString().ValidateFipe()) + { + return ValidationResult.ValidResult; + } + return new ValidationResult(false, (object)"FIPE Inválido"); + } + return new ValidationResult(false, (object)"Obrigatório"); + } +} diff --git a/Gestor.Common/Gestor.Common.Validation/ValidacaoInt.cs b/Gestor.Common/Gestor.Common.Validation/ValidacaoInt.cs new file mode 100644 index 0000000..0a5eb46 --- /dev/null +++ b/Gestor.Common/Gestor.Common.Validation/ValidacaoInt.cs @@ -0,0 +1,18 @@ +using System.Globalization; +using System.Windows.Controls; + +namespace Gestor.Common.Validation; + +public class ValidacaoInt : ValidationRule +{ + public override ValidationResult Validate(object value, CultureInfo cultureInfo) + { + //IL_002f: Unknown result type (might be due to invalid IL or missing references) + //IL_0035: Expected O, but got Unknown + if (string.IsNullOrWhiteSpace((value ?? "").ToString()) || value.ToString().ValidateInt()) + { + return ValidationResult.ValidResult; + } + return new ValidationResult(false, (object)"Número Inválido"); + } +} diff --git a/Gestor.Common/Gestor.Common.Validation/ValidacaoIntObrigatorio.cs b/Gestor.Common/Gestor.Common.Validation/ValidacaoIntObrigatorio.cs new file mode 100644 index 0000000..778a3fd --- /dev/null +++ b/Gestor.Common/Gestor.Common.Validation/ValidacaoIntObrigatorio.cs @@ -0,0 +1,24 @@ +using System.Globalization; +using System.Windows.Controls; + +namespace Gestor.Common.Validation; + +public class ValidacaoIntObrigatorio : ValidationRule +{ + public override ValidationResult Validate(object value, CultureInfo cultureInfo) + { + //IL_003b: Unknown result type (might be due to invalid IL or missing references) + //IL_0041: Expected O, but got Unknown + //IL_002f: Unknown result type (might be due to invalid IL or missing references) + //IL_0035: Expected O, but got Unknown + if (!string.IsNullOrWhiteSpace((value ?? "").ToString())) + { + if (value.ToString().ValidateInt()) + { + return ValidationResult.ValidResult; + } + return new ValidationResult(false, (object)"Número Inválido"); + } + return new ValidationResult(false, (object)"Obrigatório"); + } +} diff --git a/Gestor.Common/Gestor.Common.Validation/ValidacaoLong.cs b/Gestor.Common/Gestor.Common.Validation/ValidacaoLong.cs new file mode 100644 index 0000000..b60823a --- /dev/null +++ b/Gestor.Common/Gestor.Common.Validation/ValidacaoLong.cs @@ -0,0 +1,18 @@ +using System.Globalization; +using System.Windows.Controls; + +namespace Gestor.Common.Validation; + +public class ValidacaoLong : ValidationRule +{ + public override ValidationResult Validate(object value, CultureInfo cultureInfo) + { + //IL_002f: Unknown result type (might be due to invalid IL or missing references) + //IL_0035: Expected O, but got Unknown + if (string.IsNullOrWhiteSpace((value ?? "").ToString()) || value.ToString().ValidateLong()) + { + return ValidationResult.ValidResult; + } + return new ValidationResult(false, (object)"Número Inválido"); + } +} diff --git a/Gestor.Common/Gestor.Common.Validation/ValidacaoLongObrigatorio.cs b/Gestor.Common/Gestor.Common.Validation/ValidacaoLongObrigatorio.cs new file mode 100644 index 0000000..a1d6519 --- /dev/null +++ b/Gestor.Common/Gestor.Common.Validation/ValidacaoLongObrigatorio.cs @@ -0,0 +1,24 @@ +using System.Globalization; +using System.Windows.Controls; + +namespace Gestor.Common.Validation; + +public class ValidacaoLongObrigatorio : ValidationRule +{ + public override ValidationResult Validate(object value, CultureInfo cultureInfo) + { + //IL_003b: Unknown result type (might be due to invalid IL or missing references) + //IL_0041: Expected O, but got Unknown + //IL_002f: Unknown result type (might be due to invalid IL or missing references) + //IL_0035: Expected O, but got Unknown + if (!string.IsNullOrWhiteSpace((value ?? "").ToString())) + { + if (value.ToString().ValidateLong()) + { + return ValidationResult.ValidResult; + } + return new ValidationResult(false, (object)"Número Inválido"); + } + return new ValidationResult(false, (object)"Obrigatório"); + } +} diff --git a/Gestor.Common/Gestor.Common.Validation/ValidacaoObrigatorio.cs b/Gestor.Common/Gestor.Common.Validation/ValidacaoObrigatorio.cs new file mode 100644 index 0000000..ba91173 --- /dev/null +++ b/Gestor.Common/Gestor.Common.Validation/ValidacaoObrigatorio.cs @@ -0,0 +1,18 @@ +using System.Globalization; +using System.Windows.Controls; + +namespace Gestor.Common.Validation; + +public class ValidacaoObrigatorio : ValidationRule +{ + public override ValidationResult Validate(object value, CultureInfo cultureInfo) + { + //IL_0022: Unknown result type (might be due to invalid IL or missing references) + //IL_0028: Expected O, but got Unknown + if (!string.IsNullOrWhiteSpace((value ?? "").ToString())) + { + return ValidationResult.ValidResult; + } + return new ValidationResult(false, (object)"OBRIGATÓRIO"); + } +} diff --git a/Gestor.Common/Gestor.Common.Validation/ValidacaoOrgao.cs b/Gestor.Common/Gestor.Common.Validation/ValidacaoOrgao.cs new file mode 100644 index 0000000..51527d6 --- /dev/null +++ b/Gestor.Common/Gestor.Common.Validation/ValidacaoOrgao.cs @@ -0,0 +1,18 @@ +using System.Globalization; +using System.Windows.Controls; + +namespace Gestor.Common.Validation; + +public class ValidacaoOrgao : ValidationRule +{ + public override ValidationResult Validate(object value, CultureInfo cultureInfo) + { + //IL_002f: Unknown result type (might be due to invalid IL or missing references) + //IL_0035: Expected O, but got Unknown + if (string.IsNullOrWhiteSpace((value ?? "").ToString()) || value.ToString().ValidateOrgao()) + { + return ValidationResult.ValidResult; + } + return new ValidationResult(false, (object)"Orgão Inválido"); + } +} diff --git a/Gestor.Common/Gestor.Common.Validation/ValidacaoPlaca.cs b/Gestor.Common/Gestor.Common.Validation/ValidacaoPlaca.cs new file mode 100644 index 0000000..b9c7df0 --- /dev/null +++ b/Gestor.Common/Gestor.Common.Validation/ValidacaoPlaca.cs @@ -0,0 +1,18 @@ +using System.Globalization; +using System.Windows.Controls; + +namespace Gestor.Common.Validation; + +public class ValidacaoPlaca : ValidationRule +{ + public override ValidationResult Validate(object value, CultureInfo cultureInfo) + { + //IL_002f: Unknown result type (might be due to invalid IL or missing references) + //IL_0035: Expected O, but got Unknown + if (string.IsNullOrWhiteSpace((value ?? "").ToString()) || value.ToString().ValidatePlate()) + { + return ValidationResult.ValidResult; + } + return new ValidationResult(false, (object)"Placa Inválida"); + } +} diff --git a/Gestor.Common/Gestor.Common.Validation/ValidacaoPlacaObrigatorio.cs b/Gestor.Common/Gestor.Common.Validation/ValidacaoPlacaObrigatorio.cs new file mode 100644 index 0000000..6eef2aa --- /dev/null +++ b/Gestor.Common/Gestor.Common.Validation/ValidacaoPlacaObrigatorio.cs @@ -0,0 +1,24 @@ +using System.Globalization; +using System.Windows.Controls; + +namespace Gestor.Common.Validation; + +public class ValidacaoPlacaObrigatorio : ValidationRule +{ + public override ValidationResult Validate(object value, CultureInfo cultureInfo) + { + //IL_003b: Unknown result type (might be due to invalid IL or missing references) + //IL_0041: Expected O, but got Unknown + //IL_002f: Unknown result type (might be due to invalid IL or missing references) + //IL_0035: Expected O, but got Unknown + if (!string.IsNullOrWhiteSpace((value ?? "").ToString())) + { + if (value.ToString().ValidatePlate()) + { + return ValidationResult.ValidResult; + } + return new ValidationResult(false, (object)"Placa Inválida"); + } + return new ValidationResult(false, (object)"Obrigatório"); + } +} diff --git a/Gestor.Common/Gestor.Common.Validation/ValidacaoPrefixo.cs b/Gestor.Common/Gestor.Common.Validation/ValidacaoPrefixo.cs new file mode 100644 index 0000000..5974905 --- /dev/null +++ b/Gestor.Common/Gestor.Common.Validation/ValidacaoPrefixo.cs @@ -0,0 +1,18 @@ +using System.Globalization; +using System.Windows.Controls; + +namespace Gestor.Common.Validation; + +public class ValidacaoPrefixo : ValidationRule +{ + public override ValidationResult Validate(object value, CultureInfo cultureInfo) + { + //IL_002f: Unknown result type (might be due to invalid IL or missing references) + //IL_0035: Expected O, but got Unknown + if (string.IsNullOrWhiteSpace((value ?? "").ToString()) || value.ToString().ValidatePrefix()) + { + return ValidationResult.ValidResult; + } + return new ValidationResult(false, (object)"DDD Inválido"); + } +} diff --git a/Gestor.Common/Gestor.Common.Validation/ValidacaoPrefixoObrigatorio.cs b/Gestor.Common/Gestor.Common.Validation/ValidacaoPrefixoObrigatorio.cs new file mode 100644 index 0000000..aab4dd2 --- /dev/null +++ b/Gestor.Common/Gestor.Common.Validation/ValidacaoPrefixoObrigatorio.cs @@ -0,0 +1,24 @@ +using System.Globalization; +using System.Windows.Controls; + +namespace Gestor.Common.Validation; + +public class ValidacaoPrefixoObrigatorio : ValidationRule +{ + public override ValidationResult Validate(object value, CultureInfo cultureInfo) + { + //IL_003b: Unknown result type (might be due to invalid IL or missing references) + //IL_0041: Expected O, but got Unknown + //IL_002f: Unknown result type (might be due to invalid IL or missing references) + //IL_0035: Expected O, but got Unknown + if (!string.IsNullOrWhiteSpace((value ?? "").ToString())) + { + if (value.ToString().ValidatePrefix()) + { + return ValidationResult.ValidResult; + } + return new ValidationResult(false, (object)"DDD Inválido"); + } + return new ValidationResult(false, (object)"Obrigatório"); + } +} diff --git a/Gestor.Common/Gestor.Common.Validation/ValidacaoRneObrigatorio.cs b/Gestor.Common/Gestor.Common.Validation/ValidacaoRneObrigatorio.cs new file mode 100644 index 0000000..966fe74 --- /dev/null +++ b/Gestor.Common/Gestor.Common.Validation/ValidacaoRneObrigatorio.cs @@ -0,0 +1,24 @@ +using System.Globalization; +using System.Windows.Controls; + +namespace Gestor.Common.Validation; + +public class ValidacaoRneObrigatorio : ValidationRule +{ + public override ValidationResult Validate(object value, CultureInfo cultureInfo) + { + //IL_003b: Unknown result type (might be due to invalid IL or missing references) + //IL_0041: Expected O, but got Unknown + //IL_002f: Unknown result type (might be due to invalid IL or missing references) + //IL_0035: Expected O, but got Unknown + if (!string.IsNullOrWhiteSpace((value ?? "").ToString())) + { + if (value.ToString().ValidateRne()) + { + return ValidationResult.ValidResult; + } + return new ValidationResult(false, (object)"RNE Inválido"); + } + return new ValidationResult(false, (object)"Obrigatório"); + } +} diff --git a/Gestor.Common/Gestor.Common.Validation/ValidacaoTelefone.cs b/Gestor.Common/Gestor.Common.Validation/ValidacaoTelefone.cs new file mode 100644 index 0000000..ca085ee --- /dev/null +++ b/Gestor.Common/Gestor.Common.Validation/ValidacaoTelefone.cs @@ -0,0 +1,18 @@ +using System.Globalization; +using System.Windows.Controls; + +namespace Gestor.Common.Validation; + +public class ValidacaoTelefone : ValidationRule +{ + public override ValidationResult Validate(object value, CultureInfo cultureInfo) + { + //IL_002f: Unknown result type (might be due to invalid IL or missing references) + //IL_0035: Expected O, but got Unknown + if (string.IsNullOrWhiteSpace((value ?? "").ToString()) || value.ToString().ValidatePhone()) + { + return ValidationResult.ValidResult; + } + return new ValidationResult(false, (object)"Telefone Inválido"); + } +} diff --git a/Gestor.Common/Gestor.Common.Validation/ValidacaoTelefoneObrigatorio.cs b/Gestor.Common/Gestor.Common.Validation/ValidacaoTelefoneObrigatorio.cs new file mode 100644 index 0000000..6744a03 --- /dev/null +++ b/Gestor.Common/Gestor.Common.Validation/ValidacaoTelefoneObrigatorio.cs @@ -0,0 +1,24 @@ +using System.Globalization; +using System.Windows.Controls; + +namespace Gestor.Common.Validation; + +public class ValidacaoTelefoneObrigatorio : ValidationRule +{ + public override ValidationResult Validate(object value, CultureInfo cultureInfo) + { + //IL_003b: Unknown result type (might be due to invalid IL or missing references) + //IL_0041: Expected O, but got Unknown + //IL_002f: Unknown result type (might be due to invalid IL or missing references) + //IL_0035: Expected O, but got Unknown + if (!string.IsNullOrWhiteSpace((value ?? "").ToString())) + { + if (value.ToString().ValidatePhone()) + { + return ValidationResult.ValidResult; + } + return new ValidationResult(false, (object)"Telefone Inválido"); + } + return new ValidationResult(false, (object)"Obrigatório"); + } +} diff --git a/Gestor.Common/Gestor.Common.Validation/ValidacaoValorDiferenteZero.cs b/Gestor.Common/Gestor.Common.Validation/ValidacaoValorDiferenteZero.cs new file mode 100644 index 0000000..e3e7793 --- /dev/null +++ b/Gestor.Common/Gestor.Common.Validation/ValidacaoValorDiferenteZero.cs @@ -0,0 +1,24 @@ +using System.Globalization; +using System.Windows.Controls; + +namespace Gestor.Common.Validation; + +public class ValidacaoValorDiferenteZero : ValidationRule +{ + public override ValidationResult Validate(object value, CultureInfo cultureInfo) + { + //IL_004d: Unknown result type (might be due to invalid IL or missing references) + //IL_0053: Expected O, but got Unknown + //IL_0041: Unknown result type (might be due to invalid IL or missing references) + //IL_0047: Expected O, but got Unknown + if (!string.IsNullOrWhiteSpace((value ?? "").ToString())) + { + if (!value.ToString().ValidateDouble() || (decimal)value == 0m) + { + return new ValidationResult(false, (object)"Valor Inválido"); + } + return ValidationResult.ValidResult; + } + return new ValidationResult(false, (object)"Obrigatório"); + } +} diff --git a/Gestor.Common/Gestor.Common.Validation/ValidacaoValorMaiorQueZero.cs b/Gestor.Common/Gestor.Common.Validation/ValidacaoValorMaiorQueZero.cs new file mode 100644 index 0000000..c0a7459 --- /dev/null +++ b/Gestor.Common/Gestor.Common.Validation/ValidacaoValorMaiorQueZero.cs @@ -0,0 +1,24 @@ +using System.Globalization; +using System.Windows.Controls; + +namespace Gestor.Common.Validation; + +public class ValidacaoValorMaiorQueZero : ValidationRule +{ + public override ValidationResult Validate(object value, CultureInfo cultureInfo) + { + //IL_0052: Unknown result type (might be due to invalid IL or missing references) + //IL_0058: Expected O, but got Unknown + //IL_0046: Unknown result type (might be due to invalid IL or missing references) + //IL_004c: Expected O, but got Unknown + if (!string.IsNullOrWhiteSpace((value ?? "").ToString())) + { + if (!value.ToString().ValidateDouble() || (decimal)value < 0.01m) + { + return new ValidationResult(false, (object)"Valor Inválido"); + } + return ValidationResult.ValidResult; + } + return new ValidationResult(false, (object)"Obrigatório"); + } +} diff --git a/Gestor.Common/Gestor.Common.Validation/ValidationHelper.cs b/Gestor.Common/Gestor.Common.Validation/ValidationHelper.cs new file mode 100644 index 0000000..020b86a --- /dev/null +++ b/Gestor.Common/Gestor.Common.Validation/ValidationHelper.cs @@ -0,0 +1,881 @@ +using System; +using System.Collections.Generic; +using System.Collections.ObjectModel; +using System.ComponentModel; +using System.Globalization; +using System.IO; +using System.Linq; +using System.Reflection; +using System.Text; +using System.Text.RegularExpressions; +using System.Threading; +using Gestor.Common.Helpers; +using Gestor.Model.Attributes; +using Gestor.Model.Helper; +using Microsoft.Win32; + +namespace Gestor.Common.Validation; + +public static class ValidationHelper +{ + public static T GetEnumFromDescription<T>(string description) + { + Type typeFromHandle = typeof(T); + if (!typeFromHandle.IsEnum) + { + throw new InvalidOperationException(); + } + FieldInfo[] fields = typeFromHandle.GetFields(); + foreach (FieldInfo fieldInfo in fields) + { + if (Attribute.GetCustomAttribute(fieldInfo, typeof(DescriptionAttribute)) is DescriptionAttribute descriptionAttribute) + { + if (descriptionAttribute.Description == description) + { + return (T)fieldInfo.GetValue(null); + } + } + else if (fieldInfo.Name == description) + { + return (T)fieldInfo.GetValue(null); + } + } + throw new ArgumentException("Not found.", "description"); + } + + public static T GetEnumFromEntity<T>(this string entityName) + { + Type typeFromHandle = typeof(T); + if (!typeFromHandle.IsEnum) + { + return default(T); + } + FieldInfo[] fields = typeFromHandle.GetFields(); + foreach (FieldInfo fieldInfo in fields) + { + Attribute? customAttribute = Attribute.GetCustomAttribute(fieldInfo, typeof(EntityAttribute)); + EntityAttribute val = (EntityAttribute)(object)((customAttribute is EntityAttribute) ? customAttribute : null); + if (val != null) + { + if (val.Description == entityName) + { + return (T)fieldInfo.GetValue(null); + } + } + else if (fieldInfo.Name == entityName) + { + return (T)fieldInfo.GetValue(null); + } + } + return default(T); + } + + public static string DescriptionAttribute(this PropertyInfo pi) + { + object obj = pi.GetCustomAttributes(typeof(DescriptionAttribute), inherit: true).FirstOrDefault(); + if (obj == null) + { + return ""; + } + return ((DescriptionAttribute)obj).Description; + } + + public static string GetCategory(this Enum genericEnum) + { + MemberInfo[] member = genericEnum.GetType().GetMember(genericEnum.ToString()); + if (member.Length == 0) + { + return genericEnum.ToString(); + } + object[] customAttributes = member[0].GetCustomAttributes(typeof(CategoryAttribute), inherit: false); + if (!customAttributes.Any()) + { + return genericEnum.ToString(); + } + return ((CategoryAttribute)customAttributes.ElementAt(0)).Category; + } + + public static string GetEntity(this Enum genericEnum) + { + //IL_0047: Unknown result type (might be due to invalid IL or missing references) + MemberInfo[] member = genericEnum.GetType().GetMember(genericEnum.ToString()); + if (member.Length == 0) + { + return genericEnum.ToString(); + } + object[] customAttributes = member[0].GetCustomAttributes(typeof(EntityAttribute), inherit: false); + if (!customAttributes.Any()) + { + return genericEnum.ToString(); + } + return ((EntityAttribute)customAttributes.ElementAt(0)).Description; + } + + public static string GetDescription(this Enum genericEnum) + { + if (genericEnum == null) + { + return ""; + } + MemberInfo[] member = genericEnum.GetType().GetMember(genericEnum.ToString()); + if (member.Length == 0) + { + return genericEnum.ToString(); + } + object[] customAttributes = member[0].GetCustomAttributes(typeof(DescriptionAttribute), inherit: false); + if (!customAttributes.Any()) + { + return genericEnum.ToString().Trim(); + } + return ((DescriptionAttribute)customAttributes.ElementAt(0)).Description.Trim(); + } + + public static string GetTipo(this Enum genericEnum) + { + //IL_0047: Unknown result type (might be due to invalid IL or missing references) + MemberInfo[] member = genericEnum.GetType().GetMember(genericEnum.ToString()); + if (member.Length == 0) + { + return genericEnum.ToString(); + } + object[] customAttributes = member[0].GetCustomAttributes(typeof(TipoAttribute), inherit: false); + if (!customAttributes.Any()) + { + return genericEnum.ToString(); + } + return ((TipoAttribute)customAttributes.ElementAt(0)).Description; + } + + public static string GetHelp(this Enum genericEnum) + { + //IL_0047: Unknown result type (might be due to invalid IL or missing references) + MemberInfo[] member = genericEnum.GetType().GetMember(genericEnum.ToString()); + if (member.Length == 0) + { + return genericEnum.ToString(); + } + object[] customAttributes = member[0].GetCustomAttributes(typeof(HelpAttribute), inherit: false); + if (!customAttributes.Any()) + { + return genericEnum.ToString(); + } + return ((HelpAttribute)customAttributes.ElementAt(0)).Description; + } + + public static string Mask(this string value, string mask) + { + int num = mask.Count((char x) => x == '#'); + if (string.IsNullOrEmpty(value) || num != value.Length) + { + return string.Empty; + } + string text = string.Empty; + int num2 = 0; + int num3 = 0; + for (int i = 0; i < mask.Length; i++) + { + if (mask[i] != '#') + { + text += $"{value.Substring(num2, i - num2 - num3)}{mask[i]}"; + num2 = i - num3; + num3++; + } + } + return text + value.Substring(num2, mask.Length - num2 - num3); + } + + public static string Length(this string stringValue, int maxLength) + { + if (stringValue.Length > maxLength) + { + return stringValue.Substring(0, maxLength); + } + return stringValue; + } + + public static string StringValue(this decimal decimalValue) + { + return decimalValue.ToString("F", new CultureInfo("en-US")); + } + + public static int ToInt(this string stringValue) + { + int.TryParse(stringValue, out var result); + return result; + } + + public static long ToLong(this string stringValue) + { + long.TryParse(stringValue, out var result); + return result; + } + + public static int? ToIntNullable(this string stringValue) + { + if (int.TryParse(stringValue, out var result)) + { + return result; + } + return null; + } + + public static long? ToLongNullable(this string stringValue) + { + if (long.TryParse(stringValue, out var result)) + { + return result; + } + return null; + } + + public static string ToTitleCase(this string stringValue) + { + return Thread.CurrentThread.CurrentCulture.TextInfo.ToTitleCase(stringValue.ToLower()); + } + + public static string Join(this IEnumerable<string> stringValues, string separator) + { + return string.Join(separator, stringValues); + } + + public static string ToCurrencyWithSymbol<T>(this T currencyDecimal, string currentCulture = "pt-BR") + { + return string.Format(new CultureInfo(currentCulture), "R$ {0:N2}", currencyDecimal); + } + + public static string ToCurrency<T>(this T currencyDecimal, string currentCulture = "pt-BR") + { + return string.Format(new CultureInfo(currentCulture), "{0:N2}", currencyDecimal); + } + + public static decimal ToCurrency(this string currencyString, string currentCulture = "pt-BR") + { + decimal.TryParse(currencyString.ClearCurrency(), NumberStyles.Any, new CultureInfo(currentCulture), out var result); + return result; + } + + public static string ToFloating<T>(this T currencyDecimal, string currentCulture = "pt-BR") + { + return string.Format(new CultureInfo(currentCulture), "{0:F}", currencyDecimal); + } + + public static string Alphanumeric(this string stringToClean, string replaceWith = "") + { + return Regex.Replace(stringToClean, "[^a-zA-Z0-9]", replaceWith); + } + + public static string AlphanumericAndSpace(this string stringToClean) + { + return Regex.Replace(stringToClean, "[^a-zA-Z0-9 ]", string.Empty); + } + + public static string RemoveDiacritics(this string stringWithAccents) + { + if (stringWithAccents == null) + { + return ""; + } + return Encoding.ASCII.GetString(Encoding.GetEncoding("Cyrillic").GetBytes(stringWithAccents)); + } + + public static string RemoverAcentos(this string text) + { + if (string.IsNullOrEmpty(text)) + { + return string.Empty; + } + return new string((from c in text.Normalize(NormalizationForm.FormD) + where char.GetUnicodeCategory(c) != UnicodeCategory.NonSpacingMark + select c).ToArray()); + } + + public static string RemoveTag(this string stringWithTag) + { + return Regex.Replace(stringWithTag, "<(.|\\n)*?>", string.Empty); + } + + public static string Clear(this string stringToClean) + { + if (stringToClean != null) + { + return Regex.Replace(stringToClean, "[^\\d]", string.Empty); + } + return null; + } + + public static bool IsNullOrEmpty(this string stringToVerify) + { + return string.IsNullOrEmpty(stringToVerify); + } + + public static bool NotEquals(this string obj, string value) + { + return !obj.Equals(value); + } + + public static DateTime ToDateTime(this string dateString) + { + DateTime.TryParse(dateString.Trim(), out var result); + return result; + } + + public static string ToToken(this string postCode) + { + return Functions.GetNetworkTime().ToFileTime().ToString(); + } + + public static DateTime? ToDateTimeNullable(this string dateString) + { + if (dateString == null) + { + return null; + } + DateTime.TryParse(dateString.Trim(), out var result); + if (!(result == DateTime.MinValue)) + { + return result; + } + return null; + } + + public static string ClearCurrency(this string stringToClean) + { + if (!string.IsNullOrEmpty(stringToClean)) + { + return Regex.Replace(stringToClean, "[^\\d\\,\\.]", string.Empty); + } + return string.Empty; + } + + public static bool ContainsEquals<T>(this T @this, params T[] possibles) + { + return possibles.Contains(@this); + } + + public static bool ContainsAny(this string stringToCheck, params string[] stringArray) + { + return stringArray.Any(stringToCheck.Contains); + } + + public static int Age(this DateTime birthDate) + { + DateTime date = Functions.GetNetworkTime().Date; + int num = date.Year - birthDate.Year; + if (birthDate > date.AddYears(-num)) + { + num--; + } + return num; + } + + public static bool ValidateDocument(this string cpfCnpj) + { + if (string.IsNullOrEmpty(cpfCnpj)) + { + return false; + } + string text = cpfCnpj.Clear(); + int[] array = new int[14]; + int[] array2 = new int[2]; + if (text == string.Empty || new string(text[0], text.Length) == text) + { + return false; + } + if (text.Length == 11) + { + for (int i = 0; i <= 10; i++) + { + array[i] = Convert.ToInt32(text.Substring(i, 1)); + } + for (int i = 0; i <= 1; i++) + { + int num = 0; + for (int j = 0; j <= 8 + i; j++) + { + num += array[j] * (10 + i - j); + } + array2[i] = num * 10 % 11; + if (array2[i] == 10) + { + array2[i] = 0; + } + } + return (array2[0] == array[9]) & (array2[1] == array[10]); + } + if (text.Length != 14) + { + return false; + } + for (int i = 0; i <= 13; i++) + { + array[i] = Convert.ToInt32(text.Substring(i, 1)); + } + for (int i = 0; i <= 1; i++) + { + int num = 0; + for (int j = 0; j <= 11 + i; j++) + { + num += array[j] * Convert.ToInt32("6543298765432".Substring(j + 1 - i, 1)); + } + array2[i] = num * 10 % 11; + if (array2[i] == 10) + { + array2[i] = 0; + } + } + return (array2[0] == array[12]) & (array2[1] == array[13]); + } + + public static bool ValidateChassi(this string chassiNumber) + { + chassiNumber = chassiNumber?.ToUpper(); + if (!string.IsNullOrEmpty(chassiNumber)) + { + if (chassiNumber.Length == 17 && !Regex.IsMatch(chassiNumber, "^0| |^.{4,}([0-9A-Z])\\1{5,}|[iIoOqQ]")) + { + return Regex.IsMatch(chassiNumber, "[0-9]{4}$"); + } + return false; + } + return true; + } + + public static bool ValidatePlate(this string plateNumber) + { + if (!string.IsNullOrEmpty(plateNumber?.Alphanumeric())) + { + return Regex.IsMatch(plateNumber, "^[a-zA-Z]{3}-?[0-9]{4}$"); + } + return true; + } + + public static bool ValidateMail(this string mail) + { + if (mail == null) + { + return false; + } + return new Regex("^[\\w-\\.]+@([\\w-]+\\.)+[\\w-]{2,4}$").IsMatch(mail); + } + + public static bool ValidatePhone(this string number) + { + if (number != null) + { + return Regex.Match(number, "^([2-9][0-9]{3,4})\\-([0-9]{4})$").Success; + } + return false; + } + + public static bool ValidateInt(this string value) + { + int result; + return int.TryParse(value, out result); + } + + public static bool ValidateLong(this string value) + { + long result; + return long.TryParse(value, out result); + } + + public static bool ValidateDecimal(this string value) + { + decimal result; + return decimal.TryParse(value, out result); + } + + public static bool ValidateValor(this string value) + { + string[] array = value.Split(new char[1] { '.' }); + if (array.Length < 2) + { + return true; + } + if (array.Length == 2) + { + return array[1].Length <= 2; + } + return false; + } + + public static bool ValidatePrefix(this string prefix) + { + if (!int.TryParse(prefix, out var result)) + { + return false; + } + if (result == 20 || result == 23 || result == 25 || result == 26 || result == 29 || result == 30 || result == 36 || result == 39 || result == 40 || result == 50 || result == 52 || result == 56 || result == 57 || result == 58 || result == 59 || result == 60 || result == 70 || result == 72 || result == 76 || result == 78 || result == 80 || result == 90 || result < 11 || result > 99) + { + return false; + } + return true; + } + + public static bool ValidatePostCode(this string postCode) + { + if (postCode != null) + { + return Regex.Match(postCode, "^[0-9]{2}.?[0-9]{3}-[0-9]{3}$").Success; + } + return false; + } + + public static bool ValidateDouble(this string number) + { + double result; + return double.TryParse(number, out result); + } + + public static bool ValidateDate(this string birthday) + { + DateTime result; + return DateTime.TryParse(birthday, out result); + } + + public static bool ValidateAno(this string ano) + { + if (int.TryParse(ano, out var _)) + { + return ano.Length == 4; + } + return false; + } + + public static bool ValidatePastDate(this string birthday) + { + if (DateTime.TryParse(birthday, out var result)) + { + return result < Functions.GetNetworkTime().Date; + } + return false; + } + + public static bool ValidateFutureDate(this string birthday) + { + if (DateTime.TryParse(birthday, out var result)) + { + return result > Functions.GetNetworkTime().Date; + } + return false; + } + + public static bool ValidateAttendanceNumber(this string number) + { + if (number != null) + { + return Regex.Match(number, "^[0-9]").Success; + } + return false; + } + + public static string Normalized(this string word) + { + if (string.IsNullOrEmpty(word)) + { + return string.Empty; + } + return Encoding.ASCII.GetString(Encoding.GetEncoding("Cyrillic").GetBytes(word)).ToUpper().Trim(); + } + + public static string GetDefaultExtension(this string mimeType) + { + object obj = Registry.ClassesRoot.OpenSubKey("MIME\\Database\\Content Type\\" + mimeType, writable: false)?.GetValue("Extension", null); + if (obj == null) + { + return string.Join(string.Empty, mimeType.Split(Path.GetInvalidPathChars())).Replace("/", "."); + } + return obj.ToString(); + } + + public static string NormalizePath(this string fullFilename) + { + char[] invalidPathChars = Path.GetInvalidPathChars(); + char[] invalidFileNameChars = Path.GetInvalidFileNameChars(); + fullFilename = fullFilename.Replace("/", string.Empty); + string text = Path.GetFileName(fullFilename); + string text2 = Path.GetDirectoryName(fullFilename); + char[] array = invalidPathChars; + foreach (char c in array) + { + text2 = text2.Replace(c.ToString(), string.Empty); + } + array = invalidFileNameChars; + foreach (char c2 in array) + { + text = text.Replace(c2.ToString(), string.Empty); + } + return text2 + "\\" + text; + } + + public static string OnlyNumber(this string sentence) + { + if (sentence == null) + { + return null; + } + return new Regex("[^\\d]").Replace(sentence, ""); + } + + public static string FormatarTelefone(this string number) + { + number = number?.OnlyNumber(); + return number?.Length switch + { + 8 => Convert.ToUInt64(number).ToString("0000\\-0000"), + 9 => Convert.ToUInt64(number).ToString("00000\\-0000"), + 11 => Convert.ToUInt64(number).ToString("0000 000 0000"), + _ => number.Clear(), + }; + } + + public static string FormatPostCode(this string postCode) + { + if (!string.IsNullOrEmpty(postCode)) + { + return Convert.ToUInt64(postCode.OnlyNumber()).ToString("00000\\-000"); + } + return ""; + } + + public static string FormatRegiao(this string str) + { + if (Regex.Match(str, "[^0-9-.]").Success) + { + return str; + } + if (!string.IsNullOrEmpty(str)) + { + return Convert.ToUInt64(str.OnlyNumber()).ToString("00\\.000\\-000"); + } + return ""; + } + + public static string FormatFipe(this string value) + { + if (!string.IsNullOrEmpty(value)) + { + return Convert.ToUInt64(value.OnlyNumber()).ToString("000000\\-0"); + } + return ""; + } + + public static bool IsNotNullOrEmpty(this string stringToVerify) + { + return !string.IsNullOrEmpty(stringToVerify); + } + + public static string FormatRenavam(this string value) + { + if (!string.IsNullOrEmpty(value)) + { + if (!long.TryParse(value.OnlyNumber(), out var result)) + { + return string.Empty; + } + return result.ToString("00\\.000\\.000\\.000"); + } + return string.Empty; + } + + public static string FormatCi(this string value) + { + string text = value.OnlyNumber().Trim(); + if (string.IsNullOrEmpty(text)) + { + return string.Empty; + } + if (long.TryParse(text, out var _)) + { + return Convert.ToUInt64(text).ToString("00\\.000\\.000\\.000\\.000"); + } + return text; + } + + public static bool ValidateState(this string state) + { + if (!string.IsNullOrEmpty(state)) + { + return new string[27] + { + "AC", "AL", "AP", "AM", "BA", "CE", "DF", "ES", "GO", "MA", + "MT", "MS", "MG", "PA", "PB", "PR", "PE", "PI", "RJ", "RN", + "RS", "RO", "RR", "SC", "SP", "SE", "TO" + }.Contains(state.ToUpper()); + } + return false; + } + + public static bool ValidateOrgao(this string orgao) + { + if (!string.IsNullOrEmpty(orgao)) + { + return new string[70] + { + "SSP", "DETRAN", "ABNC", "CGPI", "DUREX", "DPF", "CGPI", "CGPMAF", "CNIG", "CNT", + "COREN", "CORECON", "CRA", "CRAS", "CRB", "CRC", "CRE", "CREA", "CRECI", "CREFIT", + "CRESS", "CRF", "CRM", "CRN", "CRO", "CRP", "CRPRE", "CRQ", "CRRC", "CRMV", + "CSC", "CTPS", "DIC", "DIREX", "DPMAF", "DPT", "DST", "FGTS", "FIPE", "FLS", + "GOVGO", "I CLA", "IFP", "IGP", "IICCECF/RO", "IIMG", "IML", "IPC", "IPF", "MAE", + "MEX", "MMA", "OAB", "OMB", "PCMG", "PMMG", "POM", "SDS", "SNJ", "SECC", + "SEJUSP", "SES", "EST", "SESP", "SJS", "SJTC", "SJTS", "SPTC", "DGPC", "" + }.Contains(orgao.ToUpper()); + } + return false; + } + + public static bool ValidateFipe(this string value) + { + if (new Regex("^\\d{6}\\-\\d{1}$").IsMatch(value)) + { + return true; + } + return false; + } + + public static string FormatDocument(this string number) + { + number = number.OnlyNumber(); + return number.Length switch + { + 11 => Convert.ToUInt64(number).ToString("000\\.000\\.000\\-00"), + 14 => Convert.ToUInt64(number).ToString("00\\.000\\.000\\/0000\\-00"), + _ => number, + }; + } + + public static string FormatCurrency(this string value) + { + if (string.IsNullOrEmpty(value)) + { + return ""; + } + return value.ToCurrency().ToString("c"); + } + + public static string FormatDate(this string date) + { + if (string.IsNullOrEmpty(date)) + { + return ""; + } + date = date.OnlyNumber(); + switch (date.Length) + { + case 4: + date += Functions.GetNetworkTime().Date.Year; + return Convert.ToUInt64(date).ToString("00\\/00\\/0000"); + case 6: + return Convert.ToUInt64(date).ToString("00\\/00\\/00"); + case 8: + return Convert.ToUInt64(date).ToString("00\\/00\\/0000"); + default: + return date; + } + } + + public static string FormatCompetencia(this string date) + { + if (string.IsNullOrEmpty(date)) + { + return ""; + } + date = date.OnlyNumber(); + switch (date.Length) + { + case 2: + date += Functions.GetNetworkTime().Date.Year; + return Convert.ToUInt64(date).ToString("00\\/0000"); + case 4: + return Convert.ToUInt64(date).ToString("00\\/00"); + case 6: + return Convert.ToUInt64(date).ToString("00\\/0000"); + default: + return date; + } + } + + public static string FormatTime(this string time) + { + if (string.IsNullOrEmpty(time)) + { + return null; + } + time = time.OnlyNumber(); + return time.Length switch + { + 4 => Convert.ToUInt64(time).ToString("00:00"), + 3 => Convert.ToUInt64(time).ToString("00:00"), + _ => null, + }; + } + + public static void AddSorted<T>(this ObservableCollection<T> list, T item, IComparer<T> comparer = null) + { + if (comparer == null) + { + comparer = Comparer<T>.Default; + } + int i; + for (i = 0; i < list.Count && comparer.Compare(list[i], item) < 0; i++) + { + } + list.Insert(i, item); + } + + public static bool ValidateCei(this string cei) + { + if (string.IsNullOrEmpty(cei)) + { + return false; + } + cei = cei.Trim(); + cei = Regex.Replace(cei, "[^\\d]", ""); + if (cei.Length != 12) + { + return false; + } + int num = 0; + for (int i = 1; i < 12; i++) + { + int num2 = Convert.ToInt32("74185216374".Substring(i - 1, 1)); + int num3 = Convert.ToInt32(cei.Substring(i - 1, 1)); + num += num2 * num3; + } + int num4 = num / 10; + int num5 = num - num / 10 * 10; + num = num4 + num5; + num5 = num - num / 10 * 10; + int num6 = Convert.ToInt32(cei.Substring(11, 1)); + int num7 = 10 - num5; + return num6 == num7; + } + + public static bool ValidateRne(this string rne) + { + if (string.IsNullOrEmpty(rne)) + { + return false; + } + return true; + } + + public static bool ValidateCaepf(this string caepf) + { + return !string.IsNullOrEmpty(caepf); + } + + public static string Captalize(this string text) + { + return new CultureInfo("pt-Br", useUserOverride: false).TextInfo.ToTitleCase(text.ToLower()); + } + + public static bool ValidaCep(this string cep) + { + if (string.IsNullOrWhiteSpace(cep)) + { + return Regex.IsMatch(cep, "^\\d{5}-?\\d{3}$"); + } + return false; + } +} |