-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMedicalCare.java
239 lines (193 loc) · 9.14 KB
/
MedicalCare.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
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
import java.util.ArrayList;
import java.util.Iterator;
import java.util.Scanner;
public class MedicalCare {
//instancias pra admin e payment
public Admin admin;
public Payment payment;
public MedicalCare() {
this.admin = Admin.getInstance();
this.payment = new CreditCard();
}
void Run(){
admin.AddDoctors();
admin.AddDummyPatients();
System.out.println("-------------------------------");
System.out.println("Seja bem-vindo ao Medical Care");
System.out.println("-------------------------------");
System.out.println("Quem é você?\n \n1. Médico \n2. Paciente\n");
Scanner sc = new Scanner(System.in);
System.out.print("Digite: ");
Integer login = sc.nextInt();
switch (login) {
// doctor
case 1:
// login doctor
System.out.println("Olá novamente \n \nDigite seu usuário: ");
String userDoctor = sc.next();
System.out.print("Digite sua senha:\n ");
// System.out.println();
String passwordDoctor = sc.next();
Credentials userDoctorCredential = new Credentials(userDoctor, passwordDoctor);
Doctor doctor = admin.authDoctor(userDoctorCredential);
if (doctor != null) {
System.out.printf("|Seus dados: \n|Nome: %s \n|E-mail: %s\n|Especialização: %s", doctor.name, doctor.email,
doctor.specialization);
doctor.showOptions();
Integer respOp = sc.nextInt();
if (respOp == 1) {
ArrayList<Patients> patients = new ArrayList<>(admin.getLoginPatients().values());
Integer cont = 0;
Iterator<Patients> patientIterator = patients.iterator();
while (patientIterator.hasNext()) {
cont += 1;
System.out.println("----------------------------------");
System.out.printf("%s - %s\n", cont, patientIterator.next());
System.out.println("----------------------------------");
}
}
} else {
System.out.println("É nulo");
}
break;
// patient
case 2:
System.out.println("-------------------------------------------");
System.out.println("| Você já é paciente? Digite 1 para LOGAR |");
System.out.println("-------------------------------------------");
System.out.println("----------------------------------------------------");
System.out.println("| Ainda não é paciente? Digite 2 para se CADASTRAR |");
System.out.println("----------------------------------------------------");
Integer resp = sc.nextInt();
if (resp == 1) {
// login paciente
System.out.println("Olá novamente \n \nDigite seu usuário: ");
String user = sc.next();
System.out.print("Digite sua senha:\n ");
// System.out.println();
String password = sc.next();
Credentials userCredential = new Credentials(user, password);
Patients patient = admin.authPatient(userCredential);
if (patient == null) {
System.out.println("É nulo");
return;
}
System.out.printf("|Seus dados: \n|Nome: %s \n|E-mail: %s\n|Data de nascimento: %s", patient.name,
patient.email, patient.birthDate);
patient.showOptions();
// resp = 1;
Integer respOp = sc.nextInt();
// System.out.println(resp);
switch (respOp) {
case 1:
ArrayList<Doctor> doctors = new ArrayList<>(admin.getLoginDoctor().values());
Integer cont = 0;
Iterator<Doctor> doctorIterator = doctors.iterator();
while (doctorIterator.hasNext()) {
cont += 1;
System.out.println("----------------------------------");
System.out.printf("%s - %s\n", cont, doctorIterator.next());
System.out.println("----------------------------------");
}
System.out.println("Deseja marcar uma consulta? \n1. Sim\n2. Não");
Integer respCon = sc.nextInt();
if (respCon == 1) {
System.out.println("Com qual médico você gostaria de se consultar? Digite o número do médico da lista");
Integer respChooseDoctor = sc.nextInt();
respChooseDoctor -= 1;
Doctor selectedDoctor = doctors.get(respChooseDoctor);
System.out.printf("Você marcou uma consulta com o médico(a) %s\n", selectedDoctor.name);
System.out.println("Como você gostaria de pagar?");
System.out.println("1. PIX\n2. Cartão de Crédito");
Integer selectedPaymentMethod = sc.nextInt();
if (selectedPaymentMethod == 1) {
Pix pix = new Pix();
pix.pay();
} else if (selectedPaymentMethod == 2) {
CreditCard creditCard = new CreditCard();
creditCard.pay();
} else {
System.out.println("Método de pagamento não disponível.");
return;
}
System.out.println("Obrigada por ter marcado sua consulta com a Medical Care.");
} else if (respCon == 2) {
System.out.println("Volte sempre para a Medical Care");
} else {
return;
}
break;
case 2:
System.out.println("Dê seu feedback sobre a nossa clínica");
String feedback = sc.next();
System.out.println("Obrigado pelo seu feedback!");
default:
break;
}
} else if (resp == 2) {
// cadastro do paciente
Credentials patientRegistration = RegisterPatients.signIn();
Patients patient = new Patients(patientRegistration.name, patientRegistration.email,
patientRegistration.birthDate, patientRegistration.password);
admin.addPatients(patient);
System.out.printf("|Seus dados: \n|Nome: %s \n|E-mail: %s\n|Data de nascimento: %s", patient.name,
patient.email, patient.birthDate);
// alerta: falta fazer o login pra tela de quem acabou de cadastrar
patient.showOptions();
// resp = 1;
Integer respOp = sc.nextInt();
// System.out.println(resp);
switch (respOp) {
case 1:
ArrayList<Doctor> doctors = new ArrayList<>(admin.getLoginDoctor().values());
Integer cont = 0;
for (Doctor currenDoctor : doctors) {
cont += 1;
System.out.println("----------------------------------");
System.out.printf("%s - %s\n", cont, currenDoctor);
System.out.println("----------------------------------");
}
System.out.println("Deseja marcar uma consulta? \n1. Sim\n2. Não");
Integer respCon = sc.nextInt();
if (respCon == 1) {
System.out.println("Com qual médico você gostaria de se consultar? Digite o número do médico da lista");
Integer respChooseDoctor = sc.nextInt();
respChooseDoctor -= 1;
Doctor selectedDoctor = doctors.get(respChooseDoctor);
System.out.printf("Você marcou uma consulta com o médico(a) %s\n", selectedDoctor.name);
System.out.println("Como você gostaria de pagar?");
System.out.println("1. PIX\n2. Cartão de Crédito");
Integer selectedPaymentMethod = sc.nextInt();
if (selectedPaymentMethod == 1) {
Pix pix = new Pix();
pix.pay();
} else if (selectedPaymentMethod == 2) {
CreditCard creditCard = new CreditCard();
creditCard.pay();
} else {
System.out.println("Método de pagamento não disponível.");
return;
}
System.out.println("Obrigada por ter marcado sua consulta com a Medical Care.");
} else if (respCon == 2) {
System.out.println("Volte sempre para a Medical Care");
} else {
return;
}
break;
case 2:
System.out.println("Dê seu feedback sobre a nossa clínica");
String feedback = sc.next();
System.out.println("Obrigado pelo seu feedback!");
default:
break;
}
} else
System.out.println("Tente novamente.");
break;
default:
System.out.println("Código inválido! Reenvie.");
break;
}
}
}