diff options
| author | Lucas Faria Mendes <lucas.fariamo08@gmail.com> | 2026-03-30 13:35:25 +0000 |
|---|---|---|
| committer | Lucas Faria Mendes <lucas.fariamo08@gmail.com> | 2026-03-30 13:35:25 +0000 |
| commit | 674ca83ba9243a9e95a7568c797668dab6aee26a (patch) | |
| tree | 4a905b3fb1d827665a34d63f67bc5559f8e7235b /Gestor.Common/Gestor.Common.Validation | |
| download | gestor-674ca83ba9243a9e95a7568c797668dab6aee26a.tar.gz gestor-674ca83ba9243a9e95a7568c797668dab6aee26a.zip | |
feat: upload files
Diffstat (limited to 'Gestor.Common/Gestor.Common.Validation')
38 files changed, 2065 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..7c6fde3 --- /dev/null +++ b/Gestor.Common/Gestor.Common.Validation/SemValicao.cs @@ -0,0 +1,18 @@ +using System;
+using System.Globalization;
+using System.Windows.Controls;
+
+namespace Gestor.Common.Validation
+{
+ public class SemValicao : ValidationRule
+ {
+ public SemValicao()
+ {
+ }
+
+ public override ValidationResult Validate(object value, CultureInfo cultureInfo)
+ {
+ return ValidationResult.ValidResult;
+ }
+ }
+}
\ No newline at end of file diff --git a/Gestor.Common/Gestor.Common.Validation/ValidacaoAno.cs b/Gestor.Common/Gestor.Common.Validation/ValidacaoAno.cs new file mode 100644 index 0000000..ccdc82b --- /dev/null +++ b/Gestor.Common/Gestor.Common.Validation/ValidacaoAno.cs @@ -0,0 +1,27 @@ +using System;
+using System.Globalization;
+using System.Windows.Controls;
+
+namespace Gestor.Common.Validation
+{
+ public class ValidacaoAno : ValidationRule
+ {
+ public ValidacaoAno()
+ {
+ }
+
+ public override ValidationResult Validate(object value, CultureInfo cultureInfo)
+ {
+ object obj = value;
+ if (obj == null)
+ {
+ obj = "";
+ }
+ if (string.IsNullOrWhiteSpace(obj.ToString()) || value.ToString().ValidateAno())
+ {
+ return ValidationResult.ValidResult;
+ }
+ return new ValidationResult(false, "Ano Inválido");
+ }
+ }
+}
\ No newline at end of file diff --git a/Gestor.Common/Gestor.Common.Validation/ValidacaoAnoObrigatorio.cs b/Gestor.Common/Gestor.Common.Validation/ValidacaoAnoObrigatorio.cs new file mode 100644 index 0000000..5b6c947 --- /dev/null +++ b/Gestor.Common/Gestor.Common.Validation/ValidacaoAnoObrigatorio.cs @@ -0,0 +1,31 @@ +using System;
+using System.Globalization;
+using System.Windows.Controls;
+
+namespace Gestor.Common.Validation
+{
+ public class ValidacaoAnoObrigatorio : ValidationRule
+ {
+ public ValidacaoAnoObrigatorio()
+ {
+ }
+
+ public override ValidationResult Validate(object value, CultureInfo cultureInfo)
+ {
+ object obj = value;
+ if (obj == null)
+ {
+ obj = "";
+ }
+ if (string.IsNullOrWhiteSpace(obj.ToString()))
+ {
+ return new ValidationResult(false, "Obrigatório");
+ }
+ if (value.ToString().ValidateAno())
+ {
+ return ValidationResult.ValidResult;
+ }
+ return new ValidationResult(false, "Ano Inválido");
+ }
+ }
+}
\ No newline at end of file diff --git a/Gestor.Common/Gestor.Common.Validation/ValidacaoCeiObrigatorio.cs b/Gestor.Common/Gestor.Common.Validation/ValidacaoCeiObrigatorio.cs new file mode 100644 index 0000000..c2598d5 --- /dev/null +++ b/Gestor.Common/Gestor.Common.Validation/ValidacaoCeiObrigatorio.cs @@ -0,0 +1,31 @@ +using System;
+using System.Globalization;
+using System.Windows.Controls;
+
+namespace Gestor.Common.Validation
+{
+ public class ValidacaoCeiObrigatorio : ValidationRule
+ {
+ public ValidacaoCeiObrigatorio()
+ {
+ }
+
+ public override ValidationResult Validate(object value, CultureInfo cultureInfo)
+ {
+ object obj = value;
+ if (obj == null)
+ {
+ obj = "";
+ }
+ if (string.IsNullOrWhiteSpace(obj.ToString()))
+ {
+ return new ValidationResult(false, "Obrigatório");
+ }
+ if (value.ToString().ValidateCei())
+ {
+ return ValidationResult.ValidResult;
+ }
+ return new ValidationResult(false, "CEI Inválido");
+ }
+ }
+}
\ No newline at end of file diff --git a/Gestor.Common/Gestor.Common.Validation/ValidacaoCep.cs b/Gestor.Common/Gestor.Common.Validation/ValidacaoCep.cs new file mode 100644 index 0000000..1ef2a5e --- /dev/null +++ b/Gestor.Common/Gestor.Common.Validation/ValidacaoCep.cs @@ -0,0 +1,27 @@ +using System;
+using System.Globalization;
+using System.Windows.Controls;
+
+namespace Gestor.Common.Validation
+{
+ public class ValidacaoCep : ValidationRule
+ {
+ public ValidacaoCep()
+ {
+ }
+
+ public override ValidationResult Validate(object value, CultureInfo cultureInfo)
+ {
+ object obj = value;
+ if (obj == null)
+ {
+ obj = "";
+ }
+ if (string.IsNullOrWhiteSpace(obj.ToString()) || value.ToString().ValidatePostCode())
+ {
+ return ValidationResult.ValidResult;
+ }
+ return new ValidationResult(false, "CEP Inválido");
+ }
+ }
+}
\ No newline at end of file diff --git a/Gestor.Common/Gestor.Common.Validation/ValidacaoCepObrigatorio.cs b/Gestor.Common/Gestor.Common.Validation/ValidacaoCepObrigatorio.cs new file mode 100644 index 0000000..7f801fc --- /dev/null +++ b/Gestor.Common/Gestor.Common.Validation/ValidacaoCepObrigatorio.cs @@ -0,0 +1,31 @@ +using System;
+using System.Globalization;
+using System.Windows.Controls;
+
+namespace Gestor.Common.Validation
+{
+ public class ValidacaoCepObrigatorio : ValidationRule
+ {
+ public ValidacaoCepObrigatorio()
+ {
+ }
+
+ public override ValidationResult Validate(object value, CultureInfo cultureInfo)
+ {
+ object obj = value;
+ if (obj == null)
+ {
+ obj = "";
+ }
+ if (string.IsNullOrWhiteSpace(obj.ToString()))
+ {
+ return new ValidationResult(false, "Obrigatório");
+ }
+ if (value.ToString().ValidatePostCode())
+ {
+ return ValidationResult.ValidResult;
+ }
+ return new ValidationResult(false, "CEP Inválido");
+ }
+ }
+}
\ No newline at end of file diff --git a/Gestor.Common/Gestor.Common.Validation/ValidacaoChassi.cs b/Gestor.Common/Gestor.Common.Validation/ValidacaoChassi.cs new file mode 100644 index 0000000..5ec78c0 --- /dev/null +++ b/Gestor.Common/Gestor.Common.Validation/ValidacaoChassi.cs @@ -0,0 +1,27 @@ +using System;
+using System.Globalization;
+using System.Windows.Controls;
+
+namespace Gestor.Common.Validation
+{
+ public class ValidacaoChassi : ValidationRule
+ {
+ public ValidacaoChassi()
+ {
+ }
+
+ public override ValidationResult Validate(object chassiNumber, CultureInfo cultureInfo)
+ {
+ object obj = chassiNumber;
+ if (obj == null)
+ {
+ obj = "";
+ }
+ if (string.IsNullOrWhiteSpace(obj.ToString()) || chassiNumber.ToString().ValidateChassi())
+ {
+ return ValidationResult.ValidResult;
+ }
+ return new ValidationResult(false, "Chassi Inválido");
+ }
+ }
+}
\ No newline at end of file diff --git a/Gestor.Common/Gestor.Common.Validation/ValidacaoChassiObrigatorio.cs b/Gestor.Common/Gestor.Common.Validation/ValidacaoChassiObrigatorio.cs new file mode 100644 index 0000000..a2e81ab --- /dev/null +++ b/Gestor.Common/Gestor.Common.Validation/ValidacaoChassiObrigatorio.cs @@ -0,0 +1,31 @@ +using System;
+using System.Globalization;
+using System.Windows.Controls;
+
+namespace Gestor.Common.Validation
+{
+ public class ValidacaoChassiObrigatorio : ValidationRule
+ {
+ public ValidacaoChassiObrigatorio()
+ {
+ }
+
+ public override ValidationResult Validate(object value, CultureInfo cultureInfo)
+ {
+ object obj = value;
+ if (obj == null)
+ {
+ obj = "";
+ }
+ if (string.IsNullOrWhiteSpace(obj.ToString()))
+ {
+ return new ValidationResult(false, "Obrigatório");
+ }
+ if (value.ToString().ValidateChassi())
+ {
+ return ValidationResult.ValidResult;
+ }
+ return new ValidationResult(false, "Chassi Inválido");
+ }
+ }
+}
\ No newline at end of file diff --git a/Gestor.Common/Gestor.Common.Validation/ValidacaoData.cs b/Gestor.Common/Gestor.Common.Validation/ValidacaoData.cs new file mode 100644 index 0000000..98b507a --- /dev/null +++ b/Gestor.Common/Gestor.Common.Validation/ValidacaoData.cs @@ -0,0 +1,27 @@ +using System;
+using System.Globalization;
+using System.Windows.Controls;
+
+namespace Gestor.Common.Validation
+{
+ public class ValidacaoData : ValidationRule
+ {
+ public ValidacaoData()
+ {
+ }
+
+ public override ValidationResult Validate(object value, CultureInfo cultureInfo)
+ {
+ object obj = value;
+ if (obj == null)
+ {
+ obj = "";
+ }
+ if (string.IsNullOrWhiteSpace(obj.ToString()) || value.ToString().ValidateDate())
+ {
+ return ValidationResult.ValidResult;
+ }
+ return new ValidationResult(false, "Data Inválida");
+ }
+ }
+}
\ No newline at end of file diff --git a/Gestor.Common/Gestor.Common.Validation/ValidacaoDataFutura.cs b/Gestor.Common/Gestor.Common.Validation/ValidacaoDataFutura.cs new file mode 100644 index 0000000..4180751 --- /dev/null +++ b/Gestor.Common/Gestor.Common.Validation/ValidacaoDataFutura.cs @@ -0,0 +1,27 @@ +using System;
+using System.Globalization;
+using System.Windows.Controls;
+
+namespace Gestor.Common.Validation
+{
+ public class ValidacaoDataFutura : ValidationRule
+ {
+ public ValidacaoDataFutura()
+ {
+ }
+
+ public override ValidationResult Validate(object value, CultureInfo cultureInfo)
+ {
+ object obj = value;
+ if (obj == null)
+ {
+ obj = "";
+ }
+ if (string.IsNullOrWhiteSpace(obj.ToString()) || value.ToString().ValidateFutureDate())
+ {
+ return ValidationResult.ValidResult;
+ }
+ return new ValidationResult(false, "Data Inválida");
+ }
+ }
+}
\ No newline at end of file diff --git a/Gestor.Common/Gestor.Common.Validation/ValidacaoDataMaior.cs b/Gestor.Common/Gestor.Common.Validation/ValidacaoDataMaior.cs new file mode 100644 index 0000000..4345958 --- /dev/null +++ b/Gestor.Common/Gestor.Common.Validation/ValidacaoDataMaior.cs @@ -0,0 +1,38 @@ +using System;
+using System.Globalization;
+using System.Runtime.CompilerServices;
+using System.Windows.Controls;
+
+namespace Gestor.Common.Validation
+{
+ public class ValidacaoDataMaior : ValidationRule
+ {
+ public DateTime BaseDate
+ {
+ get;
+ set;
+ }
+
+ public ValidacaoDataMaior()
+ {
+ }
+
+ public override ValidationResult Validate(object value, CultureInfo cultureInfo)
+ {
+ object obj = value;
+ if (obj == null)
+ {
+ obj = "";
+ }
+ if (string.IsNullOrWhiteSpace(obj.ToString()))
+ {
+ return new ValidationResult(false, "Obrigatório");
+ }
+ if ((DateTime)value >= this.BaseDate)
+ {
+ return ValidationResult.ValidResult;
+ }
+ return new ValidationResult(false, "Data Inválida");
+ }
+ }
+}
\ No newline at end of file diff --git a/Gestor.Common/Gestor.Common.Validation/ValidacaoDataObrigatoria.cs b/Gestor.Common/Gestor.Common.Validation/ValidacaoDataObrigatoria.cs new file mode 100644 index 0000000..6a498dc --- /dev/null +++ b/Gestor.Common/Gestor.Common.Validation/ValidacaoDataObrigatoria.cs @@ -0,0 +1,31 @@ +using System;
+using System.Globalization;
+using System.Windows.Controls;
+
+namespace Gestor.Common.Validation
+{
+ public class ValidacaoDataObrigatoria : ValidationRule
+ {
+ public ValidacaoDataObrigatoria()
+ {
+ }
+
+ public override ValidationResult Validate(object value, CultureInfo cultureInfo)
+ {
+ object obj = value;
+ if (obj == null)
+ {
+ obj = "";
+ }
+ if (string.IsNullOrWhiteSpace(obj.ToString()))
+ {
+ return new ValidationResult(false, "Obrigatório");
+ }
+ if (value.ToString().ValidateDate())
+ {
+ return ValidationResult.ValidResult;
+ }
+ return new ValidationResult(false, "Data Inválida");
+ }
+ }
+}
\ No newline at end of file diff --git a/Gestor.Common/Gestor.Common.Validation/ValidacaoDataPassada.cs b/Gestor.Common/Gestor.Common.Validation/ValidacaoDataPassada.cs new file mode 100644 index 0000000..cb22fb4 --- /dev/null +++ b/Gestor.Common/Gestor.Common.Validation/ValidacaoDataPassada.cs @@ -0,0 +1,27 @@ +using System;
+using System.Globalization;
+using System.Windows.Controls;
+
+namespace Gestor.Common.Validation
+{
+ public class ValidacaoDataPassada : ValidationRule
+ {
+ public ValidacaoDataPassada()
+ {
+ }
+
+ public override ValidationResult Validate(object value, CultureInfo cultureInfo)
+ {
+ object obj = value;
+ if (obj == null)
+ {
+ obj = "";
+ }
+ if (string.IsNullOrWhiteSpace(obj.ToString()) || value.ToString().ValidatePastDate())
+ {
+ return ValidationResult.ValidResult;
+ }
+ return new ValidationResult(false, "Data Inválida");
+ }
+ }
+}
\ No newline at end of file diff --git a/Gestor.Common/Gestor.Common.Validation/ValidacaoDataPassadaObrigatoria.cs b/Gestor.Common/Gestor.Common.Validation/ValidacaoDataPassadaObrigatoria.cs new file mode 100644 index 0000000..f5fd4c8 --- /dev/null +++ b/Gestor.Common/Gestor.Common.Validation/ValidacaoDataPassadaObrigatoria.cs @@ -0,0 +1,31 @@ +using System;
+using System.Globalization;
+using System.Windows.Controls;
+
+namespace Gestor.Common.Validation
+{
+ public class ValidacaoDataPassadaObrigatoria : ValidationRule
+ {
+ public ValidacaoDataPassadaObrigatoria()
+ {
+ }
+
+ public override ValidationResult Validate(object value, CultureInfo cultureInfo)
+ {
+ object obj = value;
+ if (obj == null)
+ {
+ obj = "";
+ }
+ if (string.IsNullOrWhiteSpace(obj.ToString()))
+ {
+ return new ValidationResult(false, "Obrigatório");
+ }
+ if (value.ToString().ValidatePastDate())
+ {
+ return ValidationResult.ValidResult;
+ }
+ return new ValidationResult(false, "Data Inválida");
+ }
+ }
+}
\ No newline at end of file diff --git a/Gestor.Common/Gestor.Common.Validation/ValidacaoDocumento.cs b/Gestor.Common/Gestor.Common.Validation/ValidacaoDocumento.cs new file mode 100644 index 0000000..2f1a886 --- /dev/null +++ b/Gestor.Common/Gestor.Common.Validation/ValidacaoDocumento.cs @@ -0,0 +1,27 @@ +using System;
+using System.Globalization;
+using System.Windows.Controls;
+
+namespace Gestor.Common.Validation
+{
+ public class ValidacaoDocumento : ValidationRule
+ {
+ public ValidacaoDocumento()
+ {
+ }
+
+ public override ValidationResult Validate(object value, CultureInfo cultureInfo)
+ {
+ object obj = value;
+ if (obj == null)
+ {
+ obj = "";
+ }
+ if (string.IsNullOrWhiteSpace(obj.ToString()) || value.ToString().ValidateDocument())
+ {
+ return ValidationResult.ValidResult;
+ }
+ return new ValidationResult(false, "Documento Inválido");
+ }
+ }
+}
\ No newline at end of file diff --git a/Gestor.Common/Gestor.Common.Validation/ValidacaoDocumentoObrigatorio.cs b/Gestor.Common/Gestor.Common.Validation/ValidacaoDocumentoObrigatorio.cs new file mode 100644 index 0000000..787942f --- /dev/null +++ b/Gestor.Common/Gestor.Common.Validation/ValidacaoDocumentoObrigatorio.cs @@ -0,0 +1,31 @@ +using System;
+using System.Globalization;
+using System.Windows.Controls;
+
+namespace Gestor.Common.Validation
+{
+ public class ValidacaoDocumentoObrigatorio : ValidationRule
+ {
+ public ValidacaoDocumentoObrigatorio()
+ {
+ }
+
+ public override ValidationResult Validate(object value, CultureInfo cultureInfo)
+ {
+ object obj = value;
+ if (obj == null)
+ {
+ obj = "";
+ }
+ if (string.IsNullOrWhiteSpace(obj.ToString()))
+ {
+ return new ValidationResult(false, "Obrigatório");
+ }
+ if (value.ToString().ValidateDocument())
+ {
+ return ValidationResult.ValidResult;
+ }
+ return new ValidationResult(false, "Documento Inválido");
+ }
+ }
+}
\ No newline at end of file diff --git a/Gestor.Common/Gestor.Common.Validation/ValidacaoDouble.cs b/Gestor.Common/Gestor.Common.Validation/ValidacaoDouble.cs new file mode 100644 index 0000000..ce33724 --- /dev/null +++ b/Gestor.Common/Gestor.Common.Validation/ValidacaoDouble.cs @@ -0,0 +1,27 @@ +using System;
+using System.Globalization;
+using System.Windows.Controls;
+
+namespace Gestor.Common.Validation
+{
+ public class ValidacaoDouble : ValidationRule
+ {
+ public ValidacaoDouble()
+ {
+ }
+
+ public override ValidationResult Validate(object value, CultureInfo cultureInfo)
+ {
+ object obj = value;
+ if (obj == null)
+ {
+ obj = "";
+ }
+ if (string.IsNullOrWhiteSpace(obj.ToString()) || value.ToString().ValidateDouble())
+ {
+ return ValidationResult.ValidResult;
+ }
+ return new ValidationResult(false, "Valor Inválido");
+ }
+ }
+}
\ No newline at end of file diff --git a/Gestor.Common/Gestor.Common.Validation/ValidacaoEmail.cs b/Gestor.Common/Gestor.Common.Validation/ValidacaoEmail.cs new file mode 100644 index 0000000..504fd63 --- /dev/null +++ b/Gestor.Common/Gestor.Common.Validation/ValidacaoEmail.cs @@ -0,0 +1,27 @@ +using System;
+using System.Globalization;
+using System.Windows.Controls;
+
+namespace Gestor.Common.Validation
+{
+ public class ValidacaoEmail : ValidationRule
+ {
+ public ValidacaoEmail()
+ {
+ }
+
+ public override ValidationResult Validate(object value, CultureInfo cultureInfo)
+ {
+ object obj = value;
+ if (obj == null)
+ {
+ obj = "";
+ }
+ if (string.IsNullOrWhiteSpace(obj.ToString()) || value.ToString().ValidateMail())
+ {
+ return ValidationResult.ValidResult;
+ }
+ return new ValidationResult(false, "E-mail Inválido");
+ }
+ }
+}
\ No newline at end of file diff --git a/Gestor.Common/Gestor.Common.Validation/ValidacaoEmailObrigatorio.cs b/Gestor.Common/Gestor.Common.Validation/ValidacaoEmailObrigatorio.cs new file mode 100644 index 0000000..ab1a6ad --- /dev/null +++ b/Gestor.Common/Gestor.Common.Validation/ValidacaoEmailObrigatorio.cs @@ -0,0 +1,31 @@ +using System;
+using System.Globalization;
+using System.Windows.Controls;
+
+namespace Gestor.Common.Validation
+{
+ public class ValidacaoEmailObrigatorio : ValidationRule
+ {
+ public ValidacaoEmailObrigatorio()
+ {
+ }
+
+ public override ValidationResult Validate(object value, CultureInfo cultureInfo)
+ {
+ object obj = value;
+ if (obj == null)
+ {
+ obj = "";
+ }
+ if (string.IsNullOrWhiteSpace(obj.ToString()))
+ {
+ return new ValidationResult(false, "Obrigatório");
+ }
+ if (value.ToString().ValidateMail())
+ {
+ return ValidationResult.ValidResult;
+ }
+ return new ValidationResult(false, "E-mail Inválido");
+ }
+ }
+}
\ No newline at end of file diff --git a/Gestor.Common/Gestor.Common.Validation/ValidacaoEstado.cs b/Gestor.Common/Gestor.Common.Validation/ValidacaoEstado.cs new file mode 100644 index 0000000..de54bc8 --- /dev/null +++ b/Gestor.Common/Gestor.Common.Validation/ValidacaoEstado.cs @@ -0,0 +1,27 @@ +using System;
+using System.Globalization;
+using System.Windows.Controls;
+
+namespace Gestor.Common.Validation
+{
+ public class ValidacaoEstado : ValidationRule
+ {
+ public ValidacaoEstado()
+ {
+ }
+
+ public override ValidationResult Validate(object value, CultureInfo cultureInfo)
+ {
+ object obj = value;
+ if (obj == null)
+ {
+ obj = "";
+ }
+ if (string.IsNullOrWhiteSpace(obj.ToString()) || value.ToString().ValidateState())
+ {
+ return ValidationResult.ValidResult;
+ }
+ return new ValidationResult(false, "Estado Inválido");
+ }
+ }
+}
\ No newline at end of file diff --git a/Gestor.Common/Gestor.Common.Validation/ValidacaoEstadoObrigatorio.cs b/Gestor.Common/Gestor.Common.Validation/ValidacaoEstadoObrigatorio.cs new file mode 100644 index 0000000..526327e --- /dev/null +++ b/Gestor.Common/Gestor.Common.Validation/ValidacaoEstadoObrigatorio.cs @@ -0,0 +1,31 @@ +using System;
+using System.Globalization;
+using System.Windows.Controls;
+
+namespace Gestor.Common.Validation
+{
+ public class ValidacaoEstadoObrigatorio : ValidationRule
+ {
+ public ValidacaoEstadoObrigatorio()
+ {
+ }
+
+ public override ValidationResult Validate(object value, CultureInfo cultureInfo)
+ {
+ object obj = value;
+ if (obj == null)
+ {
+ obj = "";
+ }
+ if (string.IsNullOrWhiteSpace(obj.ToString()))
+ {
+ return new ValidationResult(false, "Obrigatório");
+ }
+ if (value.ToString().ValidateState())
+ {
+ return ValidationResult.ValidResult;
+ }
+ return new ValidationResult(false, "Estado Inválido");
+ }
+ }
+}
\ No newline at end of file diff --git a/Gestor.Common/Gestor.Common.Validation/ValidacaoFipeObrigatorio.cs b/Gestor.Common/Gestor.Common.Validation/ValidacaoFipeObrigatorio.cs new file mode 100644 index 0000000..a3547da --- /dev/null +++ b/Gestor.Common/Gestor.Common.Validation/ValidacaoFipeObrigatorio.cs @@ -0,0 +1,31 @@ +using System;
+using System.Globalization;
+using System.Windows.Controls;
+
+namespace Gestor.Common.Validation
+{
+ public class ValidacaoFipeObrigatorio : ValidationRule
+ {
+ public ValidacaoFipeObrigatorio()
+ {
+ }
+
+ public override ValidationResult Validate(object value, CultureInfo cultureInfo)
+ {
+ object obj = value;
+ if (obj == null)
+ {
+ obj = "";
+ }
+ if (string.IsNullOrWhiteSpace(obj.ToString()))
+ {
+ return new ValidationResult(false, "Obrigatório");
+ }
+ if (value.ToString().ValidateFipe())
+ {
+ return ValidationResult.ValidResult;
+ }
+ return new ValidationResult(false, "FIPE Inválido");
+ }
+ }
+}
\ No newline at end of file diff --git a/Gestor.Common/Gestor.Common.Validation/ValidacaoInt.cs b/Gestor.Common/Gestor.Common.Validation/ValidacaoInt.cs new file mode 100644 index 0000000..551a95e --- /dev/null +++ b/Gestor.Common/Gestor.Common.Validation/ValidacaoInt.cs @@ -0,0 +1,27 @@ +using System;
+using System.Globalization;
+using System.Windows.Controls;
+
+namespace Gestor.Common.Validation
+{
+ public class ValidacaoInt : ValidationRule
+ {
+ public ValidacaoInt()
+ {
+ }
+
+ public override ValidationResult Validate(object value, CultureInfo cultureInfo)
+ {
+ object obj = value;
+ if (obj == null)
+ {
+ obj = "";
+ }
+ if (string.IsNullOrWhiteSpace(obj.ToString()) || value.ToString().ValidateInt())
+ {
+ return ValidationResult.ValidResult;
+ }
+ return new ValidationResult(false, "Número Inválido");
+ }
+ }
+}
\ No newline at end of file diff --git a/Gestor.Common/Gestor.Common.Validation/ValidacaoIntObrigatorio.cs b/Gestor.Common/Gestor.Common.Validation/ValidacaoIntObrigatorio.cs new file mode 100644 index 0000000..c62cf85 --- /dev/null +++ b/Gestor.Common/Gestor.Common.Validation/ValidacaoIntObrigatorio.cs @@ -0,0 +1,31 @@ +using System;
+using System.Globalization;
+using System.Windows.Controls;
+
+namespace Gestor.Common.Validation
+{
+ public class ValidacaoIntObrigatorio : ValidationRule
+ {
+ public ValidacaoIntObrigatorio()
+ {
+ }
+
+ public override ValidationResult Validate(object value, CultureInfo cultureInfo)
+ {
+ object obj = value;
+ if (obj == null)
+ {
+ obj = "";
+ }
+ if (string.IsNullOrWhiteSpace(obj.ToString()))
+ {
+ return new ValidationResult(false, "Obrigatório");
+ }
+ if (value.ToString().ValidateInt())
+ {
+ return ValidationResult.ValidResult;
+ }
+ return new ValidationResult(false, "Número Inválido");
+ }
+ }
+}
\ No newline at end of file diff --git a/Gestor.Common/Gestor.Common.Validation/ValidacaoLong.cs b/Gestor.Common/Gestor.Common.Validation/ValidacaoLong.cs new file mode 100644 index 0000000..042454d --- /dev/null +++ b/Gestor.Common/Gestor.Common.Validation/ValidacaoLong.cs @@ -0,0 +1,27 @@ +using System;
+using System.Globalization;
+using System.Windows.Controls;
+
+namespace Gestor.Common.Validation
+{
+ public class ValidacaoLong : ValidationRule
+ {
+ public ValidacaoLong()
+ {
+ }
+
+ public override ValidationResult Validate(object value, CultureInfo cultureInfo)
+ {
+ object obj = value;
+ if (obj == null)
+ {
+ obj = "";
+ }
+ if (string.IsNullOrWhiteSpace(obj.ToString()) || value.ToString().ValidateLong())
+ {
+ return ValidationResult.ValidResult;
+ }
+ return new ValidationResult(false, "Número Inválido");
+ }
+ }
+}
\ No newline at end of file diff --git a/Gestor.Common/Gestor.Common.Validation/ValidacaoLongObrigatorio.cs b/Gestor.Common/Gestor.Common.Validation/ValidacaoLongObrigatorio.cs new file mode 100644 index 0000000..fd4773b --- /dev/null +++ b/Gestor.Common/Gestor.Common.Validation/ValidacaoLongObrigatorio.cs @@ -0,0 +1,31 @@ +using System;
+using System.Globalization;
+using System.Windows.Controls;
+
+namespace Gestor.Common.Validation
+{
+ public class ValidacaoLongObrigatorio : ValidationRule
+ {
+ public ValidacaoLongObrigatorio()
+ {
+ }
+
+ public override ValidationResult Validate(object value, CultureInfo cultureInfo)
+ {
+ object obj = value;
+ if (obj == null)
+ {
+ obj = "";
+ }
+ if (string.IsNullOrWhiteSpace(obj.ToString()))
+ {
+ return new ValidationResult(false, "Obrigatório");
+ }
+ if (value.ToString().ValidateLong())
+ {
+ return ValidationResult.ValidResult;
+ }
+ return new ValidationResult(false, "Número Inválido");
+ }
+ }
+}
\ No newline at end of file diff --git a/Gestor.Common/Gestor.Common.Validation/ValidacaoObrigatorio.cs b/Gestor.Common/Gestor.Common.Validation/ValidacaoObrigatorio.cs new file mode 100644 index 0000000..23eb517 --- /dev/null +++ b/Gestor.Common/Gestor.Common.Validation/ValidacaoObrigatorio.cs @@ -0,0 +1,27 @@ +using System;
+using System.Globalization;
+using System.Windows.Controls;
+
+namespace Gestor.Common.Validation
+{
+ public class ValidacaoObrigatorio : ValidationRule
+ {
+ public ValidacaoObrigatorio()
+ {
+ }
+
+ public override ValidationResult Validate(object value, CultureInfo cultureInfo)
+ {
+ object obj = value;
+ if (obj == null)
+ {
+ obj = "";
+ }
+ if (!string.IsNullOrWhiteSpace(obj.ToString()))
+ {
+ return ValidationResult.ValidResult;
+ }
+ return new ValidationResult(false, "OBRIGATÓRIO");
+ }
+ }
+}
\ No newline at end of file diff --git a/Gestor.Common/Gestor.Common.Validation/ValidacaoOrgao.cs b/Gestor.Common/Gestor.Common.Validation/ValidacaoOrgao.cs new file mode 100644 index 0000000..d2f3dd1 --- /dev/null +++ b/Gestor.Common/Gestor.Common.Validation/ValidacaoOrgao.cs @@ -0,0 +1,27 @@ +using System;
+using System.Globalization;
+using System.Windows.Controls;
+
+namespace Gestor.Common.Validation
+{
+ public class ValidacaoOrgao : ValidationRule
+ {
+ public ValidacaoOrgao()
+ {
+ }
+
+ public override ValidationResult Validate(object value, CultureInfo cultureInfo)
+ {
+ object obj = value;
+ if (obj == null)
+ {
+ obj = "";
+ }
+ if (string.IsNullOrWhiteSpace(obj.ToString()) || value.ToString().ValidateOrgao())
+ {
+ return ValidationResult.ValidResult;
+ }
+ return new ValidationResult(false, "Orgão Inválido");
+ }
+ }
+}
\ No newline at end of file diff --git a/Gestor.Common/Gestor.Common.Validation/ValidacaoPlaca.cs b/Gestor.Common/Gestor.Common.Validation/ValidacaoPlaca.cs new file mode 100644 index 0000000..b1825e1 --- /dev/null +++ b/Gestor.Common/Gestor.Common.Validation/ValidacaoPlaca.cs @@ -0,0 +1,27 @@ +using System;
+using System.Globalization;
+using System.Windows.Controls;
+
+namespace Gestor.Common.Validation
+{
+ public class ValidacaoPlaca : ValidationRule
+ {
+ public ValidacaoPlaca()
+ {
+ }
+
+ public override ValidationResult Validate(object value, CultureInfo cultureInfo)
+ {
+ object obj = value;
+ if (obj == null)
+ {
+ obj = "";
+ }
+ if (string.IsNullOrWhiteSpace(obj.ToString()) || value.ToString().ValidatePlate())
+ {
+ return ValidationResult.ValidResult;
+ }
+ return new ValidationResult(false, "Placa Inválida");
+ }
+ }
+}
\ No newline at end of file diff --git a/Gestor.Common/Gestor.Common.Validation/ValidacaoPlacaObrigatorio.cs b/Gestor.Common/Gestor.Common.Validation/ValidacaoPlacaObrigatorio.cs new file mode 100644 index 0000000..cd56924 --- /dev/null +++ b/Gestor.Common/Gestor.Common.Validation/ValidacaoPlacaObrigatorio.cs @@ -0,0 +1,31 @@ +using System;
+using System.Globalization;
+using System.Windows.Controls;
+
+namespace Gestor.Common.Validation
+{
+ public class ValidacaoPlacaObrigatorio : ValidationRule
+ {
+ public ValidacaoPlacaObrigatorio()
+ {
+ }
+
+ public override ValidationResult Validate(object value, CultureInfo cultureInfo)
+ {
+ object obj = value;
+ if (obj == null)
+ {
+ obj = "";
+ }
+ if (string.IsNullOrWhiteSpace(obj.ToString()))
+ {
+ return new ValidationResult(false, "Obrigatório");
+ }
+ if (value.ToString().ValidatePlate())
+ {
+ return ValidationResult.ValidResult;
+ }
+ return new ValidationResult(false, "Placa Inválida");
+ }
+ }
+}
\ No newline at end of file diff --git a/Gestor.Common/Gestor.Common.Validation/ValidacaoPrefixo.cs b/Gestor.Common/Gestor.Common.Validation/ValidacaoPrefixo.cs new file mode 100644 index 0000000..8b4197b --- /dev/null +++ b/Gestor.Common/Gestor.Common.Validation/ValidacaoPrefixo.cs @@ -0,0 +1,27 @@ +using System;
+using System.Globalization;
+using System.Windows.Controls;
+
+namespace Gestor.Common.Validation
+{
+ public class ValidacaoPrefixo : ValidationRule
+ {
+ public ValidacaoPrefixo()
+ {
+ }
+
+ public override ValidationResult Validate(object value, CultureInfo cultureInfo)
+ {
+ object obj = value;
+ if (obj == null)
+ {
+ obj = "";
+ }
+ if (string.IsNullOrWhiteSpace(obj.ToString()) || value.ToString().ValidatePrefix())
+ {
+ return ValidationResult.ValidResult;
+ }
+ return new ValidationResult(false, "DDD Inválido");
+ }
+ }
+}
\ No newline at end of file diff --git a/Gestor.Common/Gestor.Common.Validation/ValidacaoPrefixoObrigatorio.cs b/Gestor.Common/Gestor.Common.Validation/ValidacaoPrefixoObrigatorio.cs new file mode 100644 index 0000000..36f2157 --- /dev/null +++ b/Gestor.Common/Gestor.Common.Validation/ValidacaoPrefixoObrigatorio.cs @@ -0,0 +1,31 @@ +using System;
+using System.Globalization;
+using System.Windows.Controls;
+
+namespace Gestor.Common.Validation
+{
+ public class ValidacaoPrefixoObrigatorio : ValidationRule
+ {
+ public ValidacaoPrefixoObrigatorio()
+ {
+ }
+
+ public override ValidationResult Validate(object value, CultureInfo cultureInfo)
+ {
+ object obj = value;
+ if (obj == null)
+ {
+ obj = "";
+ }
+ if (string.IsNullOrWhiteSpace(obj.ToString()))
+ {
+ return new ValidationResult(false, "Obrigatório");
+ }
+ if (value.ToString().ValidatePrefix())
+ {
+ return ValidationResult.ValidResult;
+ }
+ return new ValidationResult(false, "DDD Inválido");
+ }
+ }
+}
\ No newline at end of file diff --git a/Gestor.Common/Gestor.Common.Validation/ValidacaoRneObrigatorio.cs b/Gestor.Common/Gestor.Common.Validation/ValidacaoRneObrigatorio.cs new file mode 100644 index 0000000..5314ac6 --- /dev/null +++ b/Gestor.Common/Gestor.Common.Validation/ValidacaoRneObrigatorio.cs @@ -0,0 +1,31 @@ +using System;
+using System.Globalization;
+using System.Windows.Controls;
+
+namespace Gestor.Common.Validation
+{
+ public class ValidacaoRneObrigatorio : ValidationRule
+ {
+ public ValidacaoRneObrigatorio()
+ {
+ }
+
+ public override ValidationResult Validate(object value, CultureInfo cultureInfo)
+ {
+ object obj = value;
+ if (obj == null)
+ {
+ obj = "";
+ }
+ if (string.IsNullOrWhiteSpace(obj.ToString()))
+ {
+ return new ValidationResult(false, "Obrigatório");
+ }
+ if (value.ToString().ValidateRne())
+ {
+ return ValidationResult.ValidResult;
+ }
+ return new ValidationResult(false, "RNE Inválido");
+ }
+ }
+}
\ No newline at end of file diff --git a/Gestor.Common/Gestor.Common.Validation/ValidacaoTelefone.cs b/Gestor.Common/Gestor.Common.Validation/ValidacaoTelefone.cs new file mode 100644 index 0000000..1723d56 --- /dev/null +++ b/Gestor.Common/Gestor.Common.Validation/ValidacaoTelefone.cs @@ -0,0 +1,27 @@ +using System;
+using System.Globalization;
+using System.Windows.Controls;
+
+namespace Gestor.Common.Validation
+{
+ public class ValidacaoTelefone : ValidationRule
+ {
+ public ValidacaoTelefone()
+ {
+ }
+
+ public override ValidationResult Validate(object value, CultureInfo cultureInfo)
+ {
+ object obj = value;
+ if (obj == null)
+ {
+ obj = "";
+ }
+ if (string.IsNullOrWhiteSpace(obj.ToString()) || value.ToString().ValidatePhone())
+ {
+ return ValidationResult.ValidResult;
+ }
+ return new ValidationResult(false, "Telefone Inválido");
+ }
+ }
+}
\ No newline at end of file diff --git a/Gestor.Common/Gestor.Common.Validation/ValidacaoTelefoneObrigatorio.cs b/Gestor.Common/Gestor.Common.Validation/ValidacaoTelefoneObrigatorio.cs new file mode 100644 index 0000000..37f33c6 --- /dev/null +++ b/Gestor.Common/Gestor.Common.Validation/ValidacaoTelefoneObrigatorio.cs @@ -0,0 +1,31 @@ +using System;
+using System.Globalization;
+using System.Windows.Controls;
+
+namespace Gestor.Common.Validation
+{
+ public class ValidacaoTelefoneObrigatorio : ValidationRule
+ {
+ public ValidacaoTelefoneObrigatorio()
+ {
+ }
+
+ public override ValidationResult Validate(object value, CultureInfo cultureInfo)
+ {
+ object obj = value;
+ if (obj == null)
+ {
+ obj = "";
+ }
+ if (string.IsNullOrWhiteSpace(obj.ToString()))
+ {
+ return new ValidationResult(false, "Obrigatório");
+ }
+ if (value.ToString().ValidatePhone())
+ {
+ return ValidationResult.ValidResult;
+ }
+ return new ValidationResult(false, "Telefone Inválido");
+ }
+ }
+}
\ No newline at end of file diff --git a/Gestor.Common/Gestor.Common.Validation/ValidacaoValorDiferenteZero.cs b/Gestor.Common/Gestor.Common.Validation/ValidacaoValorDiferenteZero.cs new file mode 100644 index 0000000..f7f7aa3 --- /dev/null +++ b/Gestor.Common/Gestor.Common.Validation/ValidacaoValorDiferenteZero.cs @@ -0,0 +1,31 @@ +using System;
+using System.Globalization;
+using System.Windows.Controls;
+
+namespace Gestor.Common.Validation
+{
+ public class ValidacaoValorDiferenteZero : ValidationRule
+ {
+ public ValidacaoValorDiferenteZero()
+ {
+ }
+
+ public override ValidationResult Validate(object value, CultureInfo cultureInfo)
+ {
+ object obj = value;
+ if (obj == null)
+ {
+ obj = "";
+ }
+ if (string.IsNullOrWhiteSpace(obj.ToString()))
+ {
+ return new ValidationResult(false, "Obrigatório");
+ }
+ if (value.ToString().ValidateDouble() && !((decimal)value == decimal.Zero))
+ {
+ return ValidationResult.ValidResult;
+ }
+ return new ValidationResult(false, "Valor Inválido");
+ }
+ }
+}
\ No newline at end of file diff --git a/Gestor.Common/Gestor.Common.Validation/ValidacaoValorMaiorQueZero.cs b/Gestor.Common/Gestor.Common.Validation/ValidacaoValorMaiorQueZero.cs new file mode 100644 index 0000000..5ab3a4f --- /dev/null +++ b/Gestor.Common/Gestor.Common.Validation/ValidacaoValorMaiorQueZero.cs @@ -0,0 +1,31 @@ +using System;
+using System.Globalization;
+using System.Windows.Controls;
+
+namespace Gestor.Common.Validation
+{
+ public class ValidacaoValorMaiorQueZero : ValidationRule
+ {
+ public ValidacaoValorMaiorQueZero()
+ {
+ }
+
+ public override ValidationResult Validate(object value, CultureInfo cultureInfo)
+ {
+ object obj = value;
+ if (obj == null)
+ {
+ obj = "";
+ }
+ if (string.IsNullOrWhiteSpace(obj.ToString()))
+ {
+ return new ValidationResult(false, "Obrigatório");
+ }
+ if (value.ToString().ValidateDouble() && !((decimal)value < new decimal(1, 0, 0, false, 2)))
+ {
+ return ValidationResult.ValidResult;
+ }
+ return new ValidationResult(false, "Valor Inválido");
+ }
+ }
+}
\ No newline at end of file diff --git a/Gestor.Common/Gestor.Common.Validation/ValidationHelper.cs b/Gestor.Common/Gestor.Common.Validation/ValidationHelper.cs new file mode 100644 index 0000000..585565c --- /dev/null +++ b/Gestor.Common/Gestor.Common.Validation/ValidationHelper.cs @@ -0,0 +1,992 @@ +using Gestor.Common.Helpers;
+using Gestor.Model.Attributes;
+using Gestor.Model.Helper;
+using Microsoft.Win32;
+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.Runtime.CompilerServices;
+using System.Text;
+using System.Text.RegularExpressions;
+using System.Threading;
+
+namespace Gestor.Common.Validation
+{
+ public static class ValidationHelper
+ {
+ public static void AddSorted<T>(this ObservableCollection<T> list, T item, IComparer<T> comparer = null)
+ {
+ if (comparer == null)
+ {
+ comparer = Comparer<T>.Default;
+ }
+ int num = 0;
+ while (num < list.Count && comparer.Compare(list[num], item) < 0)
+ {
+ num++;
+ }
+ list.Insert(num, item);
+ }
+
+ public static int Age(this DateTime birthDate)
+ {
+ DateTime date = Functions.GetNetworkTime().Date;
+ int year = date.Year - birthDate.Year;
+ if (birthDate > date.AddYears(-year))
+ {
+ year--;
+ }
+ return year;
+ }
+
+ 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 Captalize(this string text)
+ {
+ return (new CultureInfo("pt-Br", false)).TextInfo.ToTitleCase(text.ToLower());
+ }
+
+ public static string Clear(this string stringToClean)
+ {
+ if (stringToClean == null)
+ {
+ return null;
+ }
+ return Regex.Replace(stringToClean, "[^\\d]", string.Empty);
+ }
+
+ public static string ClearCurrency(this string stringToClean)
+ {
+ if (string.IsNullOrEmpty(stringToClean))
+ {
+ return string.Empty;
+ }
+ return Regex.Replace(stringToClean, "[^\\d\\,\\.]", string.Empty);
+ }
+
+ public static bool ContainsAny(this string stringToCheck, params string[] stringArray)
+ {
+ return stringArray.Any<string>(new Func<string, bool>(stringToCheck.Contains));
+ }
+
+ public static bool ContainsEquals<T>(this T @this, params T[] possibles)
+ {
+ return possibles.Contains<T>(@this);
+ }
+
+ public static string DescriptionAttribute(this PropertyInfo pi)
+ {
+ object obj = pi.GetCustomAttributes(typeof(DescriptionAttribute), true).FirstOrDefault<object>();
+ if (obj == null)
+ {
+ return "";
+ }
+ return ((DescriptionAttribute)obj).Description;
+ }
+
+ public static string FormatarTelefone(this string number)
+ {
+ string str;
+ int? nullable;
+ if (number != null)
+ {
+ str = number.OnlyNumber();
+ }
+ else
+ {
+ str = null;
+ }
+ number = str;
+ if (number != null)
+ {
+ nullable = new int?(number.Length);
+ }
+ else
+ {
+ nullable = null;
+ }
+ int? nullable1 = nullable;
+ if (nullable1.HasValue)
+ {
+ switch (nullable1.GetValueOrDefault())
+ {
+ case 8:
+ {
+ return Convert.ToUInt64(number).ToString("0000\\-0000");
+ }
+ case 9:
+ {
+ return Convert.ToUInt64(number).ToString("00000\\-0000");
+ }
+ case 11:
+ {
+ return Convert.ToUInt64(number).ToString("0000 000 0000");
+ }
+ }
+ }
+ return number.Clear();
+ }
+
+ public static string FormatCi(this string value)
+ {
+ long num;
+ string str = value.OnlyNumber().Trim();
+ if (string.IsNullOrEmpty(str))
+ {
+ return string.Empty;
+ }
+ if (!long.TryParse(str, out num))
+ {
+ return str;
+ }
+ return Convert.ToUInt64(str).ToString("00\\.000\\.000\\.000\\.000");
+ }
+
+ public static string FormatCompetencia(this string date)
+ {
+ if (string.IsNullOrEmpty(date))
+ {
+ return "";
+ }
+ date = date.OnlyNumber();
+ switch (date.Length)
+ {
+ case 2:
+ {
+ int year = Functions.GetNetworkTime().Date.Year;
+ date = string.Concat(date, year.ToString());
+ return Convert.ToUInt64(date).ToString("00\\/0000");
+ }
+ case 3:
+ case 5:
+ {
+ return date;
+ }
+ case 4:
+ {
+ return Convert.ToUInt64(date).ToString("00\\/00");
+ }
+ case 6:
+ {
+ return Convert.ToUInt64(date).ToString("00\\/0000");
+ }
+ default:
+ {
+ return date;
+ }
+ }
+ }
+
+ public static string FormatCurrency(this string value)
+ {
+ if (string.IsNullOrEmpty(value))
+ {
+ return "";
+ }
+ return value.ToCurrency("pt-BR").ToString("c");
+ }
+
+ public static string FormatDate(this string date)
+ {
+ if (string.IsNullOrEmpty(date))
+ {
+ return "";
+ }
+ date = date.OnlyNumber();
+ switch (date.Length)
+ {
+ case 4:
+ {
+ int year = Functions.GetNetworkTime().Date.Year;
+ date = string.Concat(date, year.ToString());
+ return Convert.ToUInt64(date).ToString("00\\/00\\/0000");
+ }
+ case 5:
+ case 7:
+ {
+ return date;
+ }
+ 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 FormatDocument(this string number)
+ {
+ number = number.OnlyNumber();
+ int length = number.Length;
+ if (length == 11)
+ {
+ return Convert.ToUInt64(number).ToString("000\\.000\\.000\\-00");
+ }
+ if (length != 14)
+ {
+ return number;
+ }
+ return Convert.ToUInt64(number).ToString("00\\.000\\.000\\/0000\\-00");
+ }
+
+ public static string FormatFipe(this string value)
+ {
+ if (string.IsNullOrEmpty(value))
+ {
+ return "";
+ }
+ ulong num = Convert.ToUInt64(value.OnlyNumber());
+ return num.ToString("000000\\-0");
+ }
+
+ public static string FormatPostCode(this string postCode)
+ {
+ if (string.IsNullOrEmpty(postCode))
+ {
+ return "";
+ }
+ return postCode.FormataCep();
+ }
+
+ public static string FormatRegiao(this string str)
+ {
+ if (Regex.Match(str, "[^0-9-.]").Success)
+ {
+ return str;
+ }
+ if (string.IsNullOrEmpty(str))
+ {
+ return "";
+ }
+ ulong num = Convert.ToUInt64(str.OnlyNumber());
+ return num.ToString("00\\.000\\-000");
+ }
+
+ public static string FormatRenavam(this string value)
+ {
+ long num;
+ if (string.IsNullOrEmpty(value))
+ {
+ return string.Empty;
+ }
+ if (!long.TryParse(value.OnlyNumber(), out num))
+ {
+ return string.Empty;
+ }
+ return num.ToString("00\\.000\\.000\\.000");
+ }
+
+ public static string FormatTime(this string time)
+ {
+ if (string.IsNullOrEmpty(time))
+ {
+ return null;
+ }
+ time = time.OnlyNumber();
+ int length = time.Length;
+ if (length == 3)
+ {
+ return Convert.ToUInt64(time).ToString("00:00");
+ }
+ if (length != 4)
+ {
+ return null;
+ }
+ return Convert.ToUInt64(time).ToString("00:00");
+ }
+
+ 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), false);
+ if (!customAttributes.Any<object>())
+ {
+ return genericEnum.ToString();
+ }
+ return ((CategoryAttribute)customAttributes.ElementAt<object>(0)).Category;
+ }
+
+ public static string GetDefaultExtension(this string mimeType)
+ {
+ object value;
+ RegistryKey registryKey = Registry.ClassesRoot.OpenSubKey(string.Concat("MIME\\Database\\Content Type\\", mimeType), false);
+ if (registryKey != null)
+ {
+ value = registryKey.GetValue("Extension", null);
+ }
+ else
+ {
+ value = null;
+ }
+ object obj = value;
+ if (obj != null)
+ {
+ return obj.ToString();
+ }
+ return string.Join(string.Empty, mimeType.Split(Path.GetInvalidPathChars())).Replace("/", ".");
+ }
+
+ 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), false);
+ if (!customAttributes.Any<object>())
+ {
+ return genericEnum.ToString().Trim();
+ }
+ return ((DescriptionAttribute)customAttributes.ElementAt<object>(0)).Description.Trim();
+ }
+
+ public static string GetEntity(this Enum genericEnum)
+ {
+ MemberInfo[] member = genericEnum.GetType().GetMember(genericEnum.ToString());
+ if (member.Length == 0)
+ {
+ return genericEnum.ToString();
+ }
+ object[] customAttributes = member[0].GetCustomAttributes(typeof(EntityAttribute), false);
+ if (!customAttributes.Any<object>())
+ {
+ return genericEnum.ToString();
+ }
+ return ((EntityAttribute)customAttributes.ElementAt<object>(0)).Description;
+ }
+
+ public static T GetEnumFromDescription<T>(string description)
+ {
+ Type type = typeof(T);
+ if (!type.IsEnum)
+ {
+ throw new InvalidOperationException();
+ }
+ FieldInfo[] fields = type.GetFields();
+ for (int i = 0; i < (int)fields.Length; i++)
+ {
+ FieldInfo fieldInfo = fields[i];
+ DescriptionAttribute customAttribute = Attribute.GetCustomAttribute(fieldInfo, typeof(DescriptionAttribute)) as DescriptionAttribute;
+ if (customAttribute != null)
+ {
+ if (customAttribute.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)
+ {
+ T t;
+ Type type = typeof(T);
+ if (!type.IsEnum)
+ {
+ t = default(T);
+ return t;
+ }
+ FieldInfo[] fields = type.GetFields();
+ for (int i = 0; i < (int)fields.Length; i++)
+ {
+ FieldInfo fieldInfo = fields[i];
+ EntityAttribute customAttribute = Attribute.GetCustomAttribute(fieldInfo, typeof(EntityAttribute)) as EntityAttribute;
+ if (customAttribute != null)
+ {
+ if (customAttribute.Description == entityName)
+ {
+ return (T)fieldInfo.GetValue(null);
+ }
+ }
+ else if (fieldInfo.Name == entityName)
+ {
+ return (T)fieldInfo.GetValue(null);
+ }
+ }
+ t = default(T);
+ return t;
+ }
+
+ public static string GetHelp(this Enum genericEnum)
+ {
+ MemberInfo[] member = genericEnum.GetType().GetMember(genericEnum.ToString());
+ if (member.Length == 0)
+ {
+ return genericEnum.ToString();
+ }
+ object[] customAttributes = member[0].GetCustomAttributes(typeof(HelpAttribute), false);
+ if (!customAttributes.Any<object>())
+ {
+ return genericEnum.ToString();
+ }
+ return ((HelpAttribute)customAttributes.ElementAt<object>(0)).Description;
+ }
+
+ public static string GetTipo(this Enum genericEnum)
+ {
+ MemberInfo[] member = genericEnum.GetType().GetMember(genericEnum.ToString());
+ if (member.Length == 0)
+ {
+ return genericEnum.ToString();
+ }
+ object[] customAttributes = member[0].GetCustomAttributes(typeof(TipoAttribute), false);
+ if (!customAttributes.Any<object>())
+ {
+ return genericEnum.ToString();
+ }
+ return ((TipoAttribute)customAttributes.ElementAt<object>(0)).Description;
+ }
+
+ public static bool IsNotNullOrEmpty(this string stringToVerify)
+ {
+ return !string.IsNullOrEmpty(stringToVerify);
+ }
+
+ public static bool IsNullOrEmpty(this string stringToVerify)
+ {
+ return string.IsNullOrEmpty(stringToVerify);
+ }
+
+ public static string Join(this IEnumerable<string> stringValues, string separator)
+ {
+ return string.Join(separator, stringValues);
+ }
+
+ public static string Length(this string stringValue, int maxLength)
+ {
+ if (stringValue.Length <= maxLength)
+ {
+ return stringValue;
+ }
+ return stringValue.Substring(0, maxLength);
+ }
+
+ public static string Mask(this string value, string mask)
+ {
+ int num = mask.Count<char>((char x) => x == '#');
+ if (string.IsNullOrEmpty(value) || num != value.Length)
+ {
+ return string.Empty;
+ }
+ string empty = string.Empty;
+ int num1 = 0;
+ int num2 = 0;
+ for (int i = 0; i < mask.Length; i++)
+ {
+ if (mask[i] != '#')
+ {
+ empty = string.Concat(empty, string.Format("{0}{1}", value.Substring(num1, i - num1 - num2), mask[i]));
+ num1 = i - num2;
+ num2++;
+ }
+ }
+ empty = string.Concat(empty, value.Substring(num1, mask.Length - num1 - num2));
+ return empty;
+ }
+
+ 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 NormalizePath(this string fullFilename)
+ {
+ int i;
+ char[] invalidPathChars = Path.GetInvalidPathChars();
+ char[] invalidFileNameChars = Path.GetInvalidFileNameChars();
+ fullFilename = fullFilename.Replace("/", string.Empty);
+ string fileName = Path.GetFileName(fullFilename);
+ string directoryName = Path.GetDirectoryName(fullFilename);
+ char[] chrArray = invalidPathChars;
+ for (i = 0; i < (int)chrArray.Length; i++)
+ {
+ char chr = chrArray[i];
+ directoryName = directoryName.Replace(chr.ToString(), string.Empty);
+ }
+ chrArray = invalidFileNameChars;
+ for (i = 0; i < (int)chrArray.Length; i++)
+ {
+ char chr1 = chrArray[i];
+ fileName = fileName.Replace(chr1.ToString(), string.Empty);
+ }
+ return string.Concat(directoryName, "\\", fileName);
+ }
+
+ public static bool NotEquals(this string obj, string value)
+ {
+ return !obj.Equals(value);
+ }
+
+ public static string OnlyNumber(this string sentence)
+ {
+ if (sentence == null)
+ {
+ return null;
+ }
+ return (new Regex("[^\\d]")).Replace(sentence, "");
+ }
+
+ 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<char>());
+ }
+
+ public static string RemoveTag(this string stringWithTag)
+ {
+ return Regex.Replace(stringWithTag, "<(.|\\n)*?>", string.Empty);
+ }
+
+ public static string StringValue(this decimal decimalValue)
+ {
+ return decimalValue.ToString("F", new CultureInfo("en-US"));
+ }
+
+ 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 num;
+ decimal.TryParse(currencyString.ClearCurrency(), NumberStyles.Any, new CultureInfo(currentCulture), out num);
+ return num;
+ }
+
+ public static string ToCurrencyWithSymbol<T>(this T currencyDecimal, string currentCulture = "pt-BR")
+ {
+ return string.Format(new CultureInfo(currentCulture), "R$ {0:N2}", currencyDecimal);
+ }
+
+ public static DateTime ToDateTime(this string dateString)
+ {
+ DateTime dateTime;
+ DateTime.TryParse(dateString.Trim(), out dateTime);
+ return dateTime;
+ }
+
+ public static DateTime? ToDateTimeNullable(this string dateString)
+ {
+ DateTime dateTime;
+ DateTime? nullable;
+ if (dateString == null)
+ {
+ nullable = null;
+ return nullable;
+ }
+ DateTime.TryParse(dateString.Trim(), out dateTime);
+ if (dateTime != DateTime.MinValue)
+ {
+ return new DateTime?(dateTime);
+ }
+ nullable = null;
+ return nullable;
+ }
+
+ public static string ToFloating<T>(this T currencyDecimal, string currentCulture = "pt-BR")
+ {
+ return string.Format(new CultureInfo(currentCulture), "{0:F}", currencyDecimal);
+ }
+
+ public static int ToInt(this string stringValue)
+ {
+ int num;
+ int.TryParse(stringValue, out num);
+ return num;
+ }
+
+ public static int? ToIntNullable(this string stringValue)
+ {
+ int num;
+ if (int.TryParse(stringValue, out num))
+ {
+ return new int?(num);
+ }
+ return null;
+ }
+
+ public static long ToLong(this string stringValue)
+ {
+ long num;
+ long.TryParse(stringValue, out num);
+ return num;
+ }
+
+ public static long? ToLongNullable(this string stringValue)
+ {
+ long num;
+ if (long.TryParse(stringValue, out num))
+ {
+ return new long?(num);
+ }
+ return null;
+ }
+
+ public static string ToTitleCase(this string stringValue)
+ {
+ return Thread.CurrentThread.CurrentCulture.TextInfo.ToTitleCase(stringValue.ToLower());
+ }
+
+ public static string ToToken(this string postCode)
+ {
+ return Functions.GetNetworkTime().ToFileTime().ToString();
+ }
+
+ public static bool ValidaCep(this string cep)
+ {
+ if (!string.IsNullOrWhiteSpace(cep))
+ {
+ return false;
+ }
+ return Regex.IsMatch(cep, "^\\d{5}-?\\d{3}$");
+ }
+
+ public static bool ValidateAno(this string ano)
+ {
+ int num;
+ if (!int.TryParse(ano, out num))
+ {
+ return false;
+ }
+ return ano.Length == 4;
+ }
+
+ public static bool ValidateAttendanceNumber(this string number)
+ {
+ if (number == null)
+ {
+ return false;
+ }
+ return Regex.Match(number, "^[0-9]").Success;
+ }
+
+ public static bool ValidateCaepf(this string caepf)
+ {
+ return !string.IsNullOrEmpty(caepf);
+ }
+
+ 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 num1 = Convert.ToInt32("74185216374".Substring(i - 1, 1));
+ int num2 = Convert.ToInt32(cei.Substring(i - 1, 1));
+ num = num + num1 * num2;
+ }
+ int num3 = num / 10;
+ int num4 = num - num / 10 * 10;
+ num = num3 + num4;
+ num4 = num - num / 10 * 10;
+ int num5 = 10 - num4;
+ return Convert.ToInt32(cei.Substring(11, 1)) == num5;
+ }
+
+ public static bool ValidateChassi(this string chassiNumber)
+ {
+ string upper;
+ if (chassiNumber != null)
+ {
+ upper = chassiNumber.ToUpper();
+ }
+ else
+ {
+ upper = null;
+ }
+ chassiNumber = upper;
+ if (string.IsNullOrEmpty(chassiNumber))
+ {
+ return true;
+ }
+ if (chassiNumber.Length != 17 || Regex.IsMatch(chassiNumber, "^0| |^.{4,}([0-9A-Z])\\1{5,}|[iIoOqQ]"))
+ {
+ return false;
+ }
+ return Regex.IsMatch(chassiNumber, "[0-9]{4}$");
+ }
+
+ public static bool ValidateDate(this string birthday)
+ {
+ DateTime dateTime;
+ return DateTime.TryParse(birthday, out dateTime);
+ }
+
+ public static bool ValidateDecimal(this string value)
+ {
+ decimal num;
+ return decimal.TryParse(value, out num);
+ }
+
+ public static bool ValidateDocument(this string cpfCnpj)
+ {
+ int j;
+ int i;
+ int num;
+ if (string.IsNullOrEmpty(cpfCnpj))
+ {
+ return false;
+ }
+ string str = cpfCnpj.Clear();
+ int[] numArray = new int[14];
+ int[] numArray1 = new int[2];
+ if (str == string.Empty || new string(str[0], str.Length) == str)
+ {
+ return false;
+ }
+ if (str.Length == 11)
+ {
+ for (i = 0; i <= 10; i++)
+ {
+ numArray[i] = Convert.ToInt32(str.Substring(i, 1));
+ }
+ for (i = 0; i <= 1; i++)
+ {
+ num = 0;
+ for (j = 0; j <= 8 + i; j++)
+ {
+ num = num + numArray[j] * (10 + i - j);
+ }
+ numArray1[i] = num * 10 % 11;
+ if (numArray1[i] == 10)
+ {
+ numArray1[i] = 0;
+ }
+ }
+ return numArray1[0] == numArray[9] & numArray1[1] == numArray[10];
+ }
+ if (str.Length != 14)
+ {
+ return false;
+ }
+ for (i = 0; i <= 13; i++)
+ {
+ numArray[i] = Convert.ToInt32(str.Substring(i, 1));
+ }
+ for (i = 0; i <= 1; i++)
+ {
+ num = 0;
+ for (j = 0; j <= 11 + i; j++)
+ {
+ num = num + numArray[j] * Convert.ToInt32("6543298765432".Substring(j + 1 - i, 1));
+ }
+ numArray1[i] = num * 10 % 11;
+ if (numArray1[i] == 10)
+ {
+ numArray1[i] = 0;
+ }
+ }
+ return numArray1[0] == numArray[12] & numArray1[1] == numArray[13];
+ }
+
+ public static bool ValidateDouble(this string number)
+ {
+ double num;
+ return double.TryParse(number, out num);
+ }
+
+ public static bool ValidateFipe(this string value)
+ {
+ if ((new Regex("^\\d{6}\\-\\d{1}$")).IsMatch(value))
+ {
+ return true;
+ }
+ return false;
+ }
+
+ public static bool ValidateFutureDate(this string birthday)
+ {
+ DateTime dateTime;
+ if (!DateTime.TryParse(birthday, out dateTime))
+ {
+ return false;
+ }
+ return dateTime > Functions.GetNetworkTime().Date;
+ }
+
+ public static bool ValidateInt(this string value)
+ {
+ int num;
+ return int.TryParse(value, out num);
+ }
+
+ public static bool ValidateLong(this string value)
+ {
+ long num;
+ return long.TryParse(value, out num);
+ }
+
+ 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 ValidateOrgao(this string orgao)
+ {
+ if (string.IsNullOrEmpty(orgao))
+ {
+ return false;
+ }
+ return (new string[] { "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<string>(orgao.ToUpper());
+ }
+
+ public static bool ValidatePastDate(this string birthday)
+ {
+ DateTime dateTime;
+ if (!DateTime.TryParse(birthday, out dateTime))
+ {
+ return false;
+ }
+ return dateTime < Functions.GetNetworkTime().Date;
+ }
+
+ public static bool ValidatePhone(this string number)
+ {
+ if (number == null)
+ {
+ return false;
+ }
+ return Regex.Match(number, "^([2-9][0-9]{3,4})\\-([0-9]{4})$").Success;
+ }
+
+ public static bool ValidatePlate(this string plateNumber)
+ {
+ string str;
+ if (plateNumber != null)
+ {
+ str = plateNumber.Alphanumeric("");
+ }
+ else
+ {
+ str = null;
+ }
+ if (string.IsNullOrEmpty(str))
+ {
+ return true;
+ }
+ return Regex.IsMatch(plateNumber, "^[a-zA-Z]{3}-?[0-9]{4}$");
+ }
+
+ public static bool ValidatePostCode(this string postCode)
+ {
+ if (postCode == null)
+ {
+ return false;
+ }
+ return Regex.Match(postCode, "^[0-9]{2}.?[0-9]{3}-[0-9]{3}$").Success;
+ }
+
+ public static bool ValidatePrefix(this string prefix)
+ {
+ int num;
+ if (!int.TryParse(prefix, out num))
+ {
+ return false;
+ }
+ if (num != 20 && num != 23 && num != 25 && num != 26 && num != 29 && num != 30 && num != 36 && num != 39 && num != 40 && num != 50 && num != 52 && num != 56 && num != 57 && num != 58 && num != 59 && num != 60 && num != 70 && num != 72 && num != 76 && num != 78 && num != 80 && num != 90 && num >= 11 && num <= 99)
+ {
+ return true;
+ }
+ return false;
+ }
+
+ public static bool ValidateRne(this string rne)
+ {
+ if (string.IsNullOrEmpty(rne))
+ {
+ return false;
+ }
+ return true;
+ }
+
+ public static bool ValidateState(this string state)
+ {
+ if (string.IsNullOrEmpty(state))
+ {
+ return false;
+ }
+ return (new string[] { "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<string>(state.ToUpper());
+ }
+
+ public static bool ValidateValor(this string value)
+ {
+ string[] strArrays = value.Split(new char[] { '.' });
+ if ((int)strArrays.Length < 2)
+ {
+ return true;
+ }
+ if ((int)strArrays.Length != 2)
+ {
+ return false;
+ }
+ return strArrays[1].Length <= 2;
+ }
+ }
+}
\ No newline at end of file |