Skip to content

password-check works #1476

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

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
61 changes: 60 additions & 1 deletion homework/password-check/validation.cpp
Original file line number Diff line number Diff line change
@@ -1,2 +1,61 @@
#include "validation.hpp"
// TODO: Put implementations here
#include <algorithm>
#include <iostream>
#include <string>

std::string getErrorMessage(ErrorCode errorCode) {
switch (errorCode) {
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";
default:
return "-1";
}
}

bool doPasswordsMatch(std::string pass1, std::string pass2) {
if (pass1.empty() && pass2.empty()) {
return true;
}

if (pass1.empty() || pass2.empty()) {
return false;
}

if (pass1.compare(pass2) == 0) {
return true;
} else {
return false;
}
}

ErrorCode checkPasswordRules(std::string pass) {
if (pass.length() < 9) {
return ErrorCode::PasswordNeedsAtLeastNineCharacters;
} else if (!std::any_of(pass.begin(), pass.end(), isdigit)) {
return ErrorCode::PasswordNeedsAtLeastOneNumber;
} else if (std::all_of(pass.begin(), pass.end(), isalnum)) {
return ErrorCode::PasswordNeedsAtLeastOneSpecialCharacter;
} else if (!std::any_of(pass.begin(), pass.end(), isupper)) {
return ErrorCode::PasswordNeedsAtLeastOneUppercaseLetter;
} else {
return ErrorCode::Ok;
}
}

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

enum class ErrorCode {
Ok,
PasswordNeedsAtLeastNineCharacters,
PasswordNeedsAtLeastOneNumber,
PasswordNeedsAtLeastOneSpecialCharacter,
PasswordNeedsAtLeastOneUppercaseLetter,
PasswordsDoNotMatch
};

std::string getErrorMessage(ErrorCode errorCode);
bool doPasswordsMatch(std::string pass1, std::string pass2);
ErrorCode checkPasswordRules(std::string pass);
ErrorCode checkPassword(std::string pass1, std::string pass2);