1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284
|
#include <iostream>
#include <algorithm>
#include <vector>
#include <fstream>
#include <limits>
using namespace std;
class message
{
public:
string title;
string time;
message(string t,string tm)
: title(t),time(tm)
{
}
string getHeader(const string& header)
{
if(header == "title")
{
return title;
}
if(header == "time")
{
return time;
}
}
};
class messageSorter
{
public:
string field;
messageSorter(string f)
:field(f)
{}
bool operator()(message& lhs,message& rhs)
{
return lhs.getHeader(field) < rhs.getHeader(field);
}
};
class account
{
public:
string username;
string password;
vector<message> messages;
account()
{
username = "";
password = "";
}
account(string u,string p)
{
username = u;
password = p;
}
};
bool usernameNotTaken(vector<account> &accounts,string username)
{
for(int i = 0; i < accounts.size(); i++)
{
if(username == accounts.at(i).username)
{
return false;
}
}
return true;
}
bool createAccount(vector<account> &accounts,string &username,string &password,ofstream &accountsFileO)
{
if(usernameNotTaken(accounts,username))
{
accounts.push_back(account(username,password));
accountsFileO << username << endl;
accountsFileO << password << endl;
ofstream messagesFile;
string fileName = username.append(".txt");
messagesFile.open(fileName.c_str());
cout << "success" << endl;
return true;
}
cout << "sorry username taken will need a different name" << endl;
return false;
}
bool enterNumber(int &num){
if(cin >> num){
return true;
}else{
cin.clear();
cin.ignore(numeric_limits<streamsize>::max(), '\n');
return false;
}
}
void driver()
{
vector<account> accounts;
ofstream accountsFileO;
ifstream accountsFileI;
vector<ofstream> accountMessages;
string username;
string password;
string createUser;
string createPass;
bool loggedIn = false;
int newAccount;
accountsFileO.open("accounts.txt",ios::app);
if(!accountsFileO.is_open()){
return;
}
accountsFileI.open("accounts.txt");
if(!accountsFileI.is_open()){
return;
}
// read in all accounts from file
// and set up ofstreams for account messages
while(accountsFileI){
string name;
string pass;
accountsFileI >> name;
accountsFileI >> pass;
string messagesFileName = name.append(".txt");
ofstream tempOf;
tempOf.open(messagesFileName.c_str());
accountMessages.emplace_back();
account temp(name,pass);
accounts.push_back(temp);
}
cout << "***** WELCOME TO THE MESSAGES SERVICE ****** " << endl;
cout << "are you not a member want to create an account? press 1 for yes " << endl;
while(!enterNumber(newAccount)){
cout << "wrong input,you entered characters? please re enter choice" << endl;
cout << "are you not a member want to create an account? press 1 for yes " << endl;
}
if(newAccount == 1)
{
do
{
cout << "enter a username" << endl;
cin >> createUser;
cout << "enter a password" << endl;
cin >> createPass;
}
while(!createAccount(accounts,createUser,createPass,accountsFileO));
}
cin.get();
while(!loggedIn)
{
cout << "> enter username" << endl;
getline(cin,username);
cout << "> enter password" << endl;
getline(cin,password);
for(int i = 0; i < accounts.size(); i++)
{
if(username == accounts.at(i).username && password == accounts.at(i).password)
{
loggedIn = true;
}
}
}
if(loggedIn)
{
account thisAccount ;
for(int i = 0; i < accounts.size(); i++)
{
if(username == accounts.at(i).username && password == accounts.at(i).password)
{
thisAccount = accounts.at(i);
}
}
while(true)
{
int choice;
cout << "view messages" << endl;
cout << "press 1 to view by title,press 2 to view by time"
<< "3 to send message to self " << "press to quit " << endl;
while(!enterNumber(choice))
{
cout << "wrong input,you entered characters? please re enter choice" << endl;
cout << "press 1 to view by title,press 2 to view by time"
<< "3 to send message to self " << "press to quit " << endl;
}
cin.get();
if(choice == 1)
{
sort(thisAccount.messages.begin(),thisAccount.messages.end(),
messageSorter("title"));
for(int i = 0; i < thisAccount.messages.size(); i++)
{
cout << thisAccount.messages.at(i).title <<
thisAccount.messages.at(i).time << endl;
}
}
if(choice == 2)
{
sort(thisAccount.messages.begin(),thisAccount.messages.end(),
messageSorter("time"));
for(int i = 0; i < thisAccount.messages.size(); i++)
{
cout << thisAccount.messages.at(i).title <<
thisAccount.messages.at(i).time << endl;
}
}
if(choice == 3)
{
string title;
string time;
cout << "enter title of message " << endl;
getline(cin,title);
cout << "enter time of message " << endl;
getline(cin,time);
thisAccount.messages.push_back(message(title,time));
}
if(choice == 4)
{
return;
}
}
}
}
int main()
{
driver();
}
|