Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update validation.hpp #1360

Closed
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
57 changes: 56 additions & 1 deletion homework/password-check/validation.cpp
Original file line number Diff line number Diff line change
@@ -1,2 +1,57 @@
#include "validation.hpp"
// TODO: Put implementations here

std::string getErrorMessage(ErrorCode error) {
switch (error) {
default:
return "";

case ErrorCode::Ok:
return "Ok";

case ErrorCode::PasswordNeedsAtLeastNineCharacters:
return "Password needs to have at least nine characters";

case ErrorCode::PasswordNeedsAtLeastOneNumber:
return "Password needs to have at least one number";

case ErrorCode::PasswordNeedsAtLeastOneSpecialCharacter:
return "Password needs to have at least one special character";

case ErrorCode::PasswordNeedsAtLeastOneUppercaseLetter:
return "Password needs to have at least one uppercase letter";

case ErrorCode::PasswordsDoNotMatch:
return "Passwords do not match";
}
}

bool doPasswordsMatch(const std::string &password1, const std::string &password2) {
if (password1 == password2) {
return true;
} else {
return false;
}
}

ErrorCode checkPasswordRules(const std::string &password) {

if (password.length() < 9) {
return ErrorCode::PasswordNeedsAtLeastNineCharacters;
}

else if (std::none_of(password.begin(), password.end(), [](char c) { return std::isdigit(c); })) {
return ErrorCode::PasswordNeedsAtLeastOneNumber;
} else if (std::none_of(password.begin(), password.end(), [](char c) { return std::isupper(c); })) {
return ErrorCode::PasswordNeedsAtLeastOneUppercaseLetter;
} else if (std::none_of(password.begin(), password.end(), [](char c) { return std::ispunct(c); })) {
return ErrorCode::PasswordNeedsAtLeastOneSpecialCharacter;
} else
return ErrorCode::Ok;
}

ErrorCode checkPassword(const std::string &password1, const std::string &password2) {
if (doPasswordsMatch(password1, password2))
return checkPasswordRules(password1);
else
return ErrorCode::PasswordsDoNotMatch;
}
19 changes: 17 additions & 2 deletions homework/password-check/validation.hpp
Original file line number Diff line number Diff line change
@@ -1,2 +1,17 @@
// TODO: I'm empty :) Put enum and function headers here.
// Don't forget the header guard - #pragma once
#pragma once
#include <string>
#include <cctype>
#include <algorithm>

enum class ErrorCode {
Ok,
PasswordNeedsAtLeastNineCharacters,
PasswordNeedsAtLeastOneNumber,
PasswordNeedsAtLeastOneSpecialCharacter,
PasswordNeedsAtLeastOneUppercaseLetter,
PasswordsDoNotMatch
};
std::string getErrorMessage(ErrorCode error);
bool doPasswordsMatch(const std::string &password1, const std::string &password2);
ErrorCode checkPasswordRules(const std::string &password) ;
ErrorCode checkPassword(const std::string &password1, const std::string &password2);
Loading