2021-10-03 21:35:59 +00:00
|
|
|
using System;
|
|
|
|
using System.Collections.Generic;
|
|
|
|
using System.Linq;
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
2021-10-31 16:36:14 +00:00
|
|
|
namespace EFB.Controllers.Form
|
2021-10-03 21:35:59 +00:00
|
|
|
{
|
|
|
|
public static class FormAuthenticator
|
|
|
|
{
|
|
|
|
|
|
|
|
public static bool ValidateEMail(string EMail){
|
2021-11-15 21:22:24 +00:00
|
|
|
if (EMail != null && EMail.Contains("@") && EMail.Contains(".") && !EMail.Contains(" "))
|
2021-10-03 21:35:59 +00:00
|
|
|
{
|
|
|
|
if (EMail.Count(x => x == '@') == 1)
|
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2021-10-03 21:37:17 +00:00
|
|
|
public static bool ValidateEndpoint(string Endpoint){
|
|
|
|
//If it contains http & :// it can be either https or http
|
|
|
|
if (Endpoint.Contains("http") && Endpoint.Contains("://") && Endpoint.Length > 7)
|
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
public static bool ValidateICAOCode(string ICAO){
|
|
|
|
if (ICAO.Length == 4)
|
|
|
|
{
|
|
|
|
//If the value contains a Number, then the value will return false
|
|
|
|
return !ICAO.Any(x => char.IsDigit(x));
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2021-11-22 13:07:56 +00:00
|
|
|
public static bool ValidateCruiseAlt(uint CruiseAlt){
|
2021-10-03 21:37:17 +00:00
|
|
|
if (CruiseAlt > 0 && CruiseAlt < 50000)
|
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2021-10-03 21:35:59 +00:00
|
|
|
|
|
|
|
}
|
|
|
|
}
|