-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathUser.java
More file actions
232 lines (173 loc) · 5.83 KB
/
User.java
File metadata and controls
232 lines (173 loc) · 5.83 KB
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
package oopprojecthalilkayra;
import java.util.*;
// user class ı içerisinde kullanıcı bilgileri ile kullanıcının sahip olduğu
public class User {
private String username;
private String name;
private String surname;
private Date dateOfBirth;
private String password;
private String email;
private String homeAddress;
private String workAddress;
private ProductsOrdered productsOrdered;
private ArrayList<Product> favoriteProducts;
private ArrayList<CreditCard> creditCards;
private ArrayList<Product> cart;
public User(String username, String name, String surname, Date dateOfBirth, String password, String email,
String homeAddress, String workAddress) {
this.username = username;
this.name = name;
this.surname = surname;
this.dateOfBirth = dateOfBirth;
this.password = password;
this.email = email;
this.homeAddress = homeAddress;
this.workAddress = workAddress;
this.productsOrdered = new ProductsOrdered();
this.favoriteProducts = new ArrayList<>();
this.creditCards = new ArrayList<>();
this.cart = new ArrayList<>();
}
//getters setters
public String getUsername() {
return username;
}
public void setUsername(String username) {
this.username = username;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public String getSurname() {
return surname;
}
public void setSurname(String surname) {
this.surname = surname;
}
public Date getDateOfBirth() {
return dateOfBirth;
}
public void setDateOfBirth(Date dateOfBirth) {
this.dateOfBirth = dateOfBirth;
}
public String getPassword() {
return password;
}
public void setPassword(String password) {
this.password = password;
}
public String getEmail() {
return email;
}
public void setEmail(String email) {
this.email = email;
}
public String getHomeAddress() {
return homeAddress;
}
public void setHomeAddress(String homeAddress) {
this.homeAddress = homeAddress;
}
public String getWorkAddress() {
return workAddress;
}
public void setWorkAddress(String workAddress) {
this.workAddress = workAddress;
}
public ProductsOrdered getProductsOrdered() {
return productsOrdered;
}
public void setProductsOrdered(ProductsOrdered productsOrdered) {
this.productsOrdered = productsOrdered;
}
public ArrayList<Product> getFavoriteProducts() {
return favoriteProducts;
}
public void setFavoriteProducts(ArrayList<Product> favoriteProducts) {
this.favoriteProducts = favoriteProducts;
}
public ArrayList<CreditCard> getCreditCards() {
return creditCards;
}
public void setCreditCards(ArrayList<CreditCard> creditCards) {
this.creditCards = creditCards;
}
public ArrayList<Product> getCart() {
return cart;
}
public void setCart(ArrayList<Product> cart) {
this.cart = cart;
}
//kredi kartı ekleme çıkarma
public boolean addCreditCard(CreditCard creditCard) {
if (!this.creditCards.contains(creditCard)) {
Database db = new Database();
getCreditCards().add(creditCard);
db.addCreditCard(creditCard);
return true;
} else {
return false;
}
}
public boolean removeCreditCard(CreditCard creditCard) {
if (this.getCreditCards().contains(creditCard)) {
Database db = new Database();
getCreditCards().remove(creditCard);
db.removeCreditCard(creditCard);
return true;
} else {
return false;
}
}
// favori ekleme ve çıkarma methodları
public boolean addToFavorites(Product product) {
if (!favoriteProducts.contains(product)) {
getFavoriteProducts().add(product);
Database db = new Database();
db.addToFavoritesDatabase(product);
return true;
} else {
return false;
}
}
public boolean removeFromFavorites(Product product) {
if (getFavoriteProducts().contains(product)) {
getFavoriteProducts().remove(product);
Database db = new Database();
db.removeFromFavoritesDatabase(product);
return true;
} else {
return false;
}
}
// sepete ekleme çıkarma
public boolean addToCart(Product product) {
Database db = new Database();
if (db.addToCartDatabase(product, 1)) {
OopProjectHalilKayra.activeUser.getCart().add(product);
return true;
} else {
return false;
}
}
public void confirmOrder(Order order) {
Database db = new Database();
this.getProductsOrdered().getProducts().add(order.getOrderedProduct());
this.getProductsOrdered().getAmount().add(order.getOrderAmount());
db.addOrderToDatabase(order);
order.getOrderedProduct().decreaseStock(order.getOrderAmount());
db.decreaseMarketplaceStockDatabase(order.getOrderedProduct(), order.getOrderAmount());
}
public CreditCard getCreditCardByCardNumber(String cardNumber) {
for (CreditCard card : this.getCreditCards()) {
if (card.getCardNumber().equals(cardNumber)) {
return card;
}
}
return null;
}
}