-
Notifications
You must be signed in to change notification settings - Fork 1
/
ConsolePrinter.java
89 lines (73 loc) · 3.07 KB
/
ConsolePrinter.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
import java.util.List;
public class ConsolePrinter {
public static final String SEPARATOR = "|";
public static final String BREAKER = System.getProperty("line.separator");
public ConsolePrinter() {}
public String index() {
StringBuffer buffer = new StringBuffer(separator());
buffer.append(SEPARATOR);
buffer.append(
"# Voulez vous vous connecter ? la ligne de commande est : connect <username>:<password>");
buffer.append(SEPARATOR);
buffer.append(
"# Voulez vous créer un compte ? la ligne de commande est : create user <username>:<password>:<phone>:<email>");
buffer.append(SEPARATOR);
return buffer.toString();
}
public String list(List<Annonce> annonces, String... titles) {
StringBuffer buffer = new StringBuffer(separator());
buffer.append(SEPARATOR);
buffer.append(annonces(annonces, titles));
buffer.append(menu());
return buffer.toString();
}
public String annonces(List<Annonce> annonces, String... titles) {
StringBuffer buffer = new StringBuffer(titles[0]);
for (int i = 1; i < titles.length; i++) {
buffer.append(" * " + titles[i]);
}
buffer.append(SEPARATOR);
buffer.append(tr());
for (int i = 0; i < annonces.size(); i++) {
buffer.append(SEPARATOR);
Annonce annonce = annonces.get(i);
if (titles[0].equals("ID")) {
buffer.append(annonce.getId() + " * ");
}
buffer.append(
annonce.getDescription()
+ " * "
+ annonce.getPrice()
+ " * "
+ annonce.getDomain().getType()
+ " * "
+ annonce.getUser().getEmail());
buffer.append(SEPARATOR);
buffer.append(tr());
}
buffer.append(SEPARATOR);
return buffer.toString();
}
private String separator() {
return "#############################################################";
}
private String tr() {
return "-------------------------------------------------------------";
}
public String menu() {
StringBuffer buffer = new StringBuffer(separator());
buffer.append(SEPARATOR);
buffer.append(
"# Voulez vous ajouter une annonce ? la ligne de commande est : annonce <price>:<description>:<domain>");
buffer.append(SEPARATOR);
buffer.append(
"# Voulez vous lister les annonces des autre utilisateurs ? la ligne de commande est : annonce <username>");
buffer.append(SEPARATOR);
buffer.append("# Voulez vous lister vos annonces ? la ligne de commande est : myannonce");
buffer.append(SEPARATOR);
// buffer.append("# Voulez vous supprimer une de vos annonces ? la ligne de commande est :
// delete <ID-annonce>");
// buffer.append(SEPARATOR);
return buffer.toString();
}
}