-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMain.java
153 lines (137 loc) · 6.67 KB
/
Main.java
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
/*
Names: Niki & Cheryl, Team Red
Date: 12/3/2023
AD325 - Project 4: Social Media Network
*/
import java.util.List;
import java.util.Scanner;
public class Main {
private static ProfileManager profileManager = new ProfileManager();
private static Profile newProfile;
private static Profile currentUser;
public static void main(String[] args) {
//add the active user profile
Scanner userInput = new Scanner(System.in);
System.out.print("Enter First Name: " );
String name = userInput.next();
System.out.print("Enter Last Name: " );
name += " " + userInput.next();
System.out.print("Enter Status: ");
String status = userInput.next();
profileManager.addProfile(newProfile = new Profile(name, status));
currentUser = newProfile;
//create a switch for menu actions
int option = -1;
while (option != 9) {
//prints profile with each return to menu
System.out.println();
currentUser.printProfile();
System.out.println();
//prints menu after action has been completed
System.out.println("Menu:");
System.out.println("1. Modify profile");
System.out.println("2. View all profiles");
System.out.println("3. Add a friend");
System.out.println("4. View your friend list");
System.out.println("5. View your friend's friend list");
System.out.println("6. Delete a profile");
System.out.println("7. Add another profile");
System.out.println("8. Switch user");
System.out.println("9. Logout\n");
System.out.println("Enter menu option: ");
option = userInput.nextInt();
//menu-action switch
switch (option) {
case 1: //modify profile
System.out.println("----------------Modify Profile----------------\n");
System.out.print("Enter Name: ");
name = userInput.next();
System.out.print("Enter Last Name: ");
name += " " + userInput.next();
currentUser.setName(name);
System.out.print("Enter Status: ");
status = userInput.next();
currentUser.setStatus(status);
System.out.println("\n----------Modify profile successful-----------");
break;
case 2: //view all
System.out.println("---------All profiles in the network----------\n");
profileManager.displayAllProfiles();
break;
case 3: //add friend
System.out.println("-----------------Add a friend-----------------\n");
System.out.print("Enter Friend's First Name: ");
name = userInput.next();
System.out.print("Enter Friend's Last Name: ");
name += " " + userInput.next();
Profile friend = profileManager.getProfile(name);
if (friend == null) {
System.out.println("\n-------------"+name+" not found---------------");
} else {
profileManager.connectProfiles(currentUser, friend);
System.out.println("\n-------"+name+" successfully added---------");
}
break;
case 4: //friend list
System.out.println("----------------Friend List------------------\n");
profileManager.displayFriend(currentUser, currentUser);
break;
case 5: //friend's friend list
System.out.println("------------"+name+"'s Friend List--------------\n");
List<Profile> friends = currentUser.getFriendsList();
for (Profile current : friends) {
System.out.println(current.getName());
profileManager.displayFriendOfFriend(currentUser, current);
}
break;
case 6: //delete profile
System.out.println("--------------Delete A Profile----------------\n");
System.out.print("Enter First Name: ");
name = userInput.next();
System.out.print("Enter Last Name: ");
name += " " + userInput.next();
// check if the profile is in the database
Profile deleting = profileManager.getProfile(name);
if (deleting != null) {
currentUser.removeFriends(deleting);
profileManager.removeProfile(name);
System.out.println("\n-------"+name+" successfully deleted---------");
} else {
System.out.println("\n----------"+name+" does not exist------------");
}
break;
case 7: //add profile
System.out.println("-------------Add Another Profile--------------\n");
System.out.print("Enter First Name: ");
name = userInput.next();
System.out.print("Enter Last Name: ");
name += " " + userInput.next();
System.out.print("Enter Status: ");
status = userInput.next();
Profile newProfile = new Profile(name, status);
profileManager.addProfile(newProfile);
System.out.println("\n---------"+name+" successfully added-----------");
break;
case 8: //switch user
System.out.println("-----------------Switch User------------------\n");
System.out.print("Enter First Name: ");
name = userInput.next();
System.out.print("Enter Last Name: ");
name += " " + userInput.next();
Profile change = profileManager.getProfile(name);
if (change != null) {
currentUser = change;
}else{
System.out.println("\n-------------"+name+" not found---------------");
}
break;
default:
if (option == 9) continue;
System.out.println("Please enter number 1 - 9: ");
break;
}
}
userInput.close();
System.out.println("You have successfully logged out");
}
}