public IDictionary <string, string> Post([FromBody] User user) { Dictionary <string, string> token = new Dictionary <string, string> { { "Message", MessageService.Custom("Dados inválidos").text }, }; if (user != null) { // obter dados dos utilizadores na base de dados using (var db = new DbHelper()) { // devolve-os (dados) num array var userDB = db.user.ToArray(); //valida o email if (user.email != null) { try { System.Net.Mail.MailAddress email = new System.Net.Mail.MailAddress(user.email); } catch (Exception) { Dictionary <string, string> msg = new Dictionary <string, string> { { "Message", MessageService.Custom("Formato de Email inválido").text }, }; return(msg); } } if (user.phone != 0 || user.email != null) { // percorre todos os id's de utilizadores for (int i = 0; i < userDB.Length; i++) { // verificar se o email ou numero de telemovel inserido corresposnde ao da BD, // e se password inserida (encriptada) corresponde à da BD if ((user.email == userDB[i].email || user.phone == userDB[i].phone) && HashPassword.VerifyHash(user.password, userDB[i].password)) { token = new Dictionary <string, string> { { "Token", TokenManager.GenerateToken(userDB[i].email, userDB[i].userType, userDB[i].idUser) }, }; return(token); } } } } return(token); } else { return(token); } }