EventUser.java 10.1 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 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 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485
package fi.codecrew.moya.model;

import static javax.persistence.CascadeType.DETACH;
import static javax.persistence.CascadeType.MERGE;
import static javax.persistence.CascadeType.PERSIST;
import static javax.persistence.CascadeType.REFRESH;

import java.math.BigDecimal;
import java.math.RoundingMode;
import java.util.ArrayList;
import java.util.Calendar;
import java.util.Date;
import java.util.List;

import javax.persistence.CascadeType;
import javax.persistence.Column;
import javax.persistence.Entity;
import javax.persistence.FetchType;
import javax.persistence.JoinColumn;
import javax.persistence.ManyToMany;
import javax.persistence.ManyToOne;
import javax.persistence.OneToMany;
import javax.persistence.OrderBy;
import javax.persistence.Table;
import javax.persistence.Temporal;
import javax.persistence.TemporalType;
import javax.persistence.UniqueConstraint;

import fi.codecrew.moya.enums.Gender;

@Entity
@Table(name = "event_users", uniqueConstraints = @UniqueConstraint(columnNames = { EventUser.USER_ID_COLUMN, EventUser.EVENT_ID_COLUMN }))
public class EventUser extends GenericEntity {

	protected static final String USER_ID_COLUMN = "user_id";
	protected static final String EVENT_ID_COLUMN = "event_id";

	@ManyToOne(cascade = { PERSIST, MERGE, REFRESH, DETACH })
	@JoinColumn(nullable = false, name = USER_ID_COLUMN)
	private User user;

	@ManyToOne
	@JoinColumn(nullable = false, name = EVENT_ID_COLUMN)
	private LanEvent event;

	private static final long serialVersionUID = 6042691271548196815L;

	@OneToMany(mappedBy = "voter")
	private List<Vote> votes;

	@OneToMany(mappedBy = "user", cascade = CascadeType.ALL)
	private List<UserNote> notes;

	@ManyToMany(mappedBy = "users")
	private List<Role> roles = new ArrayList<Role>();

	@OneToMany(mappedBy = "user")
	private List<CompoEntryParticipant> compoEntryParticipants;

	@OneToMany(mappedBy = "creator")
	@OrderBy()
	private List<CompoEntry> compoEntries;

	@OneToMany(mappedBy = "creator", cascade = CascadeType.ALL)
	private List<PlaceGroup> placeGroups = new ArrayList<PlaceGroup>();

	@OneToMany(mappedBy = "user")
	@OrderBy
	private List<GroupMembership> groupMemberships;

	/**
	 * The places this user has registered into.
	 */
	@OneToMany(mappedBy = "currentUser", fetch = FetchType.LAZY)
	@OrderBy()
	private List<Place> currentPlaces;

	@OneToMany(cascade = CascadeType.ALL, mappedBy = "user")
	private List<PrintedCard> printedCards;

	@OneToMany(mappedBy = "user")
	@OrderBy()
	private List<AccountEvent> accountEvents;

	@OneToMany(mappedBy = "user")
	@OrderBy()
	private List<Bill> bills;

	@OneToMany(mappedBy = "seller")
	@OrderBy(AccountEvent.ID_COLUMN)
	private List<AccountEvent> soldItems;

	@OneToMany(mappedBy = "user")
	private List<PollAnswer> pollAnswers;

	@ManyToOne()
	@JoinColumn(name = "creator")
	private EventUser creator;

	@Temporal(TemporalType.TIMESTAMP)
	@Column(name = "createtime", nullable = false, updatable = false)
	private Date eventuserCreated;

	@OneToMany(mappedBy = "eventUser")
	private List<GameID> gameIDs;
	
	
	@ManyToMany(mappedBy = "participants")
	private List<Lecture> lectures = new ArrayList<Lecture>();

	public List<GameID> getGameIDs() {
		return gameIDs;
	}

	public void setGameIDs(List<GameID> gameIDs) {
		this.gameIDs = gameIDs;
	}

	public EventUser getCreator() {
		return creator;
	}

	public void setCreator(EventUser creator) {
		this.creator = creator;
	}

	public Date getEventuserCreated() {
		return eventuserCreated;
	}

	public void setEventuserCreated(Date eventuserCreated) {
		this.eventuserCreated = eventuserCreated;
	}

	public EventUser()
	{
		super();
	}

	public EventUser(User usr, LanEvent evnt, EventUser usercreator) {
		super();
		this.eventuserCreated = new Date();
		this.creator = usercreator;
		this.user = usr;
		this.event = evnt;
	}

	public User getUser() {
		return user;
	}

	public void setUser(User user) {
		this.user = user;
	}

	public LanEvent getEvent() {
		return event;
	}

	public void setEvent(LanEvent event) {
		this.event = event;
	}

	public List<Vote> getVotes() {
		return votes;
	}

	public void setVotes(List<Vote> votes) {
		this.votes = votes;
	}

	public List<UserNote> getNotes() {
		return notes;
	}

	public void setNotes(List<UserNote> notes) {
		this.notes = notes;
	}

	/**
	 * NOTICE: This returns only manually added roles. If you want to get all
	 * roles from products, places, etc, use
	 * {@link fi.codecrew.moya.beans.UserBeanLocal#findUsersRoles(EventUser)
	 * UserBeanLocal#findUsersRoles(EventUser) }
	 * 
	 * @return
	 */
	public List<Role> getRoles() {
		return roles;
	}

	public void setRoles(List<Role> roles) {
		this.roles = roles;
	}

	public List<CompoEntryParticipant> getCompoEntryParticipants() {
		return compoEntryParticipants;
	}

	public void setCompoEntryParticipants(List<CompoEntryParticipant> compoEntryParticipants) {
		this.compoEntryParticipants = compoEntryParticipants;
	}

	public List<CompoEntry> getCompoEntries() {
		return compoEntries;
	}

	public void setCompoEntries(List<CompoEntry> compoEntries) {
		this.compoEntries = compoEntries;
	}

	public List<PlaceGroup> getPlaceGroups() {
		return placeGroups;
	}

	public void setPlaceGroups(List<PlaceGroup> placeGroups) {
		this.placeGroups = placeGroups;
	}

	public List<GroupMembership> getGroupMemberships() {
		return groupMemberships;
	}

	public void setGroupMemberships(List<GroupMembership> groupMemberships) {
		this.groupMemberships = groupMemberships;
	}

	public List<Place> getCurrentPlaces() {
		return currentPlaces;
	}

	public void setCurrentPlaces(List<Place> currentPlaces) {
		this.currentPlaces = currentPlaces;
	}

	public List<PrintedCard> getPrintedCards() {
		return printedCards;
	}

	public void setPrintedCards(List<PrintedCard> printedCards) {
		this.printedCards = printedCards;
	}

	public List<AccountEvent> getAccountEvents() {
		return accountEvents;
	}

	public void setAccountEvents(List<AccountEvent> accountEvents) {
		this.accountEvents = accountEvents;
	}

	public List<Bill> getBills() {
		return bills;
	}

	public void setBills(List<Bill> bills) {
		this.bills = bills;
	}

	public List<AccountEvent> getSoldItems() {
		return soldItems;
	}

	public void setSoldItems(List<AccountEvent> soldItems) {
		this.soldItems = soldItems;
	}

	public List<PollAnswer> getPollAnswers() {
		return pollAnswers;
	}

	public void setPollAnswers(List<PollAnswer> pollAnswers) {
		this.pollAnswers = pollAnswers;
	}

	public void setCreated(Calendar created) {
		user.setCreated(created);
	}

	public boolean getActive() {
		return user.getActive();
	}

	public void setActive(boolean active) {
		user.setActive(active);
	}

	public String getPassword() {
		return user.getPassword();
	}

	public void setPassword(String password) {
		user.setPassword(password);
	}

	public String getWholeName() {
		return user.getWholeName();
	}

	public String getLastname() {
		return user.getLastname();
	}

	public void setLastname(String lastname) {
		user.setLastname(lastname);
	}

	public String getFirstnames() {
		return user.getFirstnames();
	}

	public void setFirstnames(String firstnames) {
		user.setFirstnames(firstnames);
	}

	public Date getBirthday() {
		return user.getBirthday();
	}

	public void setBirthday(Date birthday) {
		user.setBirthday(birthday);
	}

	public String getNick() {
		return user.getNick();
	}

	public void setNick(String nick) {
		user.setNick(nick);
	}

	public String getEmail() {
		return user.getEmail();
	}

	public void setEmail(String email) {
		user.setEmail(email);
	}

	public String getAddress() {
		return user.getAddress();
	}

	public void setAddress(String address) {
		user.setAddress(address);
	}

	public String getZip() {
		return user.getZip();
	}

	public void setZip(String zip) {
		user.setZip(zip);
	}

	public String getTown() {
		return user.getTown();
	}

	public void setTown(String town) {
		user.setTown(town);
	}

	public String getPhone() {
		return user.getPhone();
	}

	public void setPhone(String phone) {
		user.setPhone(phone);
	}

	public String getLogin() {
		return user.getLogin();
	}

	public void setLogin(String login) {
		user.setLogin(login);
	}

	public List<UserImage> getUserImageList() {
		return user.getUserImageList();
	}

	public void setUserImageList(List<UserImage> userImageList) {
		user.setUserImageList(userImageList);
	}

	public String getConfirmHash() {
		return user.getConfirmHash();
	}

	public void setConfirmHash(String confirmHash) {
		user.setConfirmHash(confirmHash);
	}

	public Calendar getConfirmTime() {
		return user.getConfirmTime();
	}

	public void setConfirmTime(Calendar confirmTime) {
		user.setConfirmTime(confirmTime);
	}

	public void resetPassword(String password) {
		user.resetPassword(password);
	}

	public boolean checkPassword(String plainPassword) {
		return user.checkPassword(plainPassword);
	}

	public boolean isSuperadmin() {
		return user.isSuperadmin();
	}

	public void setPostalTown(String postalTown) {
		user.setPostalTown(postalTown);
	}

	public String getPostalTown() {
		return user.getPostalTown();
	}

	public void setGender(Gender gender) {
		user.setGender(gender);
	}

	public Gender getGender() {
		return user.getGender();
	}

	public void setCurrentImage(UserImage currentImage) {
		user.setCurrentImage(currentImage);
	}

	public UserImage getCurrentImage() {
		return user.getCurrentImage();
	}

	public boolean isAnonymous() {
		return user.isAnonymous();
	}

	public Calendar getCreated() {
		return user.getCreated();
	}

	public BigDecimal getAccountBalance() {

		BigDecimal ret = BigDecimal.ZERO;
		if (accountEvents != null)
		{
			for (AccountEvent ac : accountEvents) {
				ret = ret.add(ac.getTotal()).setScale(2, RoundingMode.HALF_UP);
			}
		}
		return ret;

	}

	public String getShortUserDescriptor() {
		return user.getShortUserDescriptor();
	}

	public void addAccountevent(AccountEvent accountevent) {
		if (accountEvents == null) {
			accountEvents = new ArrayList<AccountEvent>();
		}
		if (!this.equals(accountevent.getUser())) {
			throw new RuntimeException("Trying to add accountevent for eventuser with different eventuser");
		}
		accountEvents.add(accountevent);
	}

	public List<Lecture> getLectures() {
		if(lectures == null)
			lectures = new ArrayList<Lecture>();
		
		return lectures;
	}

	public void setLectures(List<Lecture> lectures) {
		this.lectures = lectures;
	}
}