Example #1
0
  private void rebuildUserList() throws DoesNotExistException {

    for (Integer userID : usersTable.currentUIDList("USERS")) {
      if (usersTable.getParticipant(userID)) {
        userList.add(rebuildParticipant(userID));
      } else {
        userList.add((Participant) rebuildUser(userID));
      }
    }
  }
Example #2
0
  public User createUser(User user) throws DuplicateEmailException {

    if (usersTable.checkEmail(user.getEmailAddress())) {
      throw new DuplicateEmailException("Email address already exists in the system");
    } else {
      User newUser = new User(usersTable.createUser(new InputUser(user)), user);
      userList.add(newUser);
      return newUser;
    }
  }
Example #3
0
  public void editEventCreationPrivilege(boolean eventCreationPrivilege)
      throws PrivilegeInsufficientException, DoesNotExistException {

    User loggedInUser = logInManager.getLoggedInUser();
    if (PrivilegeManager.hasAdminPrivilege(loggedInUser)) {
      selectedUser.setEventCreationPrivilege(eventCreationPrivilege);
      usersTable.setLevel(selectedUser.getUserId(), eventCreationPrivilege == true ? 1 : 0);
    }
  }
Example #4
0
  public void editPhoneNumber(PhoneNumber phoneNumber)
      throws PrivilegeInsufficientException, DoesNotExistException {

    User loggedInUser = logInManager.getLoggedInUser();
    if (PrivilegeManager.hasUserPrivilege(loggedInUser, selectedUser)) {
      selectedUser.setPhoneNumber(phoneNumber);
      usersTable.setPhone(selectedUser.getUserId(), phoneNumber.toString());
    }
  }
Example #5
0
  public void editAddress(Address address)
      throws PrivilegeInsufficientException, DoesNotExistException {

    User loggedInUser = logInManager.getLoggedInUser();
    if (PrivilegeManager.hasUserPrivilege(loggedInUser, selectedUser)) {
      selectedUser.setAddress(address);
      usersTable.setAddress(selectedUser.getUserId(), address);
    }
  }
Example #6
0
  public void editLastName(String lastName)
      throws PrivilegeInsufficientException, DoesNotExistException {

    User loggedInUser = logInManager.getLoggedInUser();
    if (PrivilegeManager.hasUserPrivilege(loggedInUser, selectedUser)) {
      selectedUser.setLastName(lastName);
      usersTable.setLastName(selectedUser.getUserId(), lastName);
    }
  }
Example #7
0
  public void editPassword(String password, String passwordMatch)
      throws IllegalCharacterException, PasswordMismatchError, PrivilegeInsufficientException,
          DoesNotExistException, InvalidKeyException, UnsupportedEncodingException,
          IllegalBlockSizeException, BadPaddingException {

    User loggedInUser = logInManager.getLoggedInUser();
    if (PrivilegeManager.hasUserPrivilege(loggedInUser, selectedUser)) {
      selectedUser.setPassword(password, passwordMatch);
      usersTable.setPwd(selectedUser.getUserId(), password);
    }
  }
Example #8
0
  private Participant rebuildParticipant(int userID) throws DoesNotExistException {

    Participant participant =
        new Participant(
            userID,
            usersTable.getFirstName(userID),
            usersTable.getLastName(userID),
            usersTable.getEmail(userID));
    participant.setPhoneNumber(new PhoneNumber(usersTable.getPhone(userID)));
    participant.setAddress(
        new Address(
            usersTable.getStreet(userID),
            usersTable.getCity(userID),
            usersTable.getState(userID),
            usersTable.getZipcode(userID),
            usersTable.getCountry(userID)));

    return participant;
  }
Example #9
0
  private User rebuildUser(int userID) throws DoesNotExistException {

    User user =
        new User(
            userID,
            usersTable.getFirstName(userID),
            usersTable.getLastName(userID),
            usersTable.getEmail(userID),
            usersTable.getPwd(userID));

    user.setAdminPrivilege(usersTable.getLevel(userID) == 1 ? true : false);
    user.setEventCreationPrivilege(
        usersTable.getEventCreationPrivilege(userID) == 1 ? true : false);
    user.setPhoneNumber(new PhoneNumber(usersTable.getPhone(userID)));
    user.setAddress(
        new Address(
            usersTable.getStreet(userID),
            usersTable.getCity(userID),
            usersTable.getState(userID),
            usersTable.getZipcode(userID),
            usersTable.getCountry(userID)));

    return user;
  }
Example #10
0
 public void deleteUser(User user) throws DoesNotExistException {
   userList.remove(selectedUser);
   usersTable.removeUser(selectedUser.getUserId());
 }