Esempio n. 1
0
 public String register() throws Exception {
   String flag = INPUT;
   // && !&&!)
   if (Common.isEmpty(user.getUsername())) {
     this.setParameters("username_reg=null&pattern=reg");
   } else if (Common.isEmpty(user.getPassword())) {
     this.setParameters("password_reg=null&pattern=reg");
   } else if (Common.isEmpty(user.getEmail())) {
     this.setParameters("email=null&pattern=reg");
   } else if (!this.getExtention().equals(user.getPassword())) {
     this.setParameters("password=different&pattern=reg");
   } else {
     if (CommonEmail.isEmail(user.getEmail())) {
       if (userService.getByUserName(user.getUsername()).size() == 0) {
         if (userService.getByEmail(user.getEmail()).size() == 0) {
           userService.add(user);
         } else {
           this.setParameters("user=existed&pattern=reg");
         }
       } else {
         this.setParameters("user=existed&pattern=reg");
       }
     } else {
       this.setParameters("email=incorrect&pattern=reg");
     }
   }
   return flag;
 }
Esempio n. 2
0
  public String right() {

    try {
      List<Resources> list = userService.getResourcesByUser(user.getId());
      System.out.println("begin to export the list " + list.size() + ":");
      for (Resources r : list) {
        boolean flag = false;
        if (!r.getIsLeaf()) {
          System.out.println("+" + r.getName() + " : " + r.getDescription());
          flag = true;
        }
        if (flag) {
          for (Resources subR : list) {
            if (subR.getParent().getId() == r.getId()) {
              System.out.println("--" + subR.getName() + " : " + subR.getDescription());
            }
          }
        }
      }
      getSession().put("userResources", list);
      getSession().put("something", "this is a test message");
    } catch (Exception e) {
      // TODO Auto-generated catch block
      e.printStackTrace();
      return "error";
    }
    return "attrResources";
  }
Esempio n. 3
0
 public String getAdminUserList() throws IndexOutOfBoundsException, NumberFormatException {
   List<User> list = new ArrayList<User>();
   if (null != getPager()) {
     list = userService.getByPage(getPager());
   }
   getSession().put("userList", list);
   return SUCCESS;
 }
Esempio n. 4
0
 public String getUserSingled() throws NonUniqueObjectException {
   System.out.println("0000.1");
   if (null != user) {
     user = userService.getById(user.getId());
     getSession().put("user", user);
   }
   return SUCCESS;
 }
Esempio n. 5
0
  public String delete() throws SQLException, NumberFormatException {
    int result = 0;
    String flag = ERROR;
    if (null != user) result = userService.delete(user);
    if (result > 0) flag = SUCCESS;
    else if (result == 0) flag = INPUT;

    return flag;
  }
Esempio n. 6
0
 /**
  * @target
  * @useage
  * @param
  * @return
  * @throws Exception
  */
 public String add() throws SQLException, NumberFormatException, NullPointerException {
   String flag = "";
   int i = 0;
   if (null != user) i = userService.add(user);
   if (i > 0) flag = SUCCESS;
   else if (i == 0) flag = INPUT;
   else if (i < 0) flag = ERROR;
   return flag;
 }
Esempio n. 7
0
  public String list() {
    List<User> users = new ArrayList<User>();

    users = userService.getByPage(pager);
    pager.setRecords(users);
    System.out.println("The list size in the Pager is " + pager.getRecords().size());
    getSession().put("user_list", pager);
    return "list";
  }
Esempio n. 8
0
 public String edit() throws NonUniqueObjectException {
   if (null != user) {
     user = userService.getById(user.getId());
     if (null == user || "".equals(user.getUsername())) {
       return "list";
     }
     getSession().put("user", user);
   }
   return "edit";
 }
Esempio n. 9
0
 public String update() throws SQLException, NullPointerException {
   int result = 0;
   String flag = INPUT;
   if (null != user)
     try {
       result = userService.update(user);
     } catch (InvalidInputException e) {
       // TODO Auto-generated catch block
       e.printStackTrace();
     }
   if (result > 0) flag = "list";
   else if (result == 0) flag = INPUT;
   else flag = ERROR;
   return flag;
 }
Esempio n. 10
0
 public String retrievePwd() throws Exception {
   String flag = "empty";
   if (null != user && !"".equals(user.getEmail())) {
     List<User> ul = new ArrayList<User>();
     ul = userService.getByEmail(user.getEmail());
     if (ul.size() > 0) {
       user = ul.get(0);
     }
     if (null != user) {
       flag = INPUT;
       getSession().put("email", user.getEmail());
       CommonEmail ce = new CommonEmail();
       ce.send(
           null,
           user.getEmail(),
           "Retrieve your Password",
           retrievePasswordContent + Common.generateSecurityCode(4));
     } else {
       this.setParameters("user=nofound");
     }
   }
   return flag;
 }
Esempio n. 11
0
  /*public String getUserAll() throws Exception{
  	Session.put("userList", userService.getAll());
  	return SUCCESS;
  }*/
  public String login() {

    String flag = INPUT;
    User user_temp = null;
    if (null != user) {
      if (Common.isEmpty(user.getUsername())) {
        this.addFieldError("usernameEmpty", "Username is required");
        this.setParameters("username=null");
        System.out.println("username is null;");
        return flag;
      } else if (Common.isEmpty(user.getPassword())) {
        this.addFieldError("passwordEmpty", "Password is required");
        this.setParameters("password=null");
        System.out.println("password is null");
        return flag;
      } else {
        try {
          user_temp = userService.isExistUser(user.getUsername(), user.getPassword());
        } catch (Exception e) {
          flag = ERROR;
          e.printStackTrace();
          return flag;
        }
        if (null != user_temp) {
          // Get More User Info
          getSession().put("currentUser", user_temp);
          try {
            List<Resources> list = userService.getResourcesByUser(user_temp.getId());
            System.out.println("begin to export the list " + list.size() + ":");
            for (Resources r : list) {
              boolean flags = false;
              if (!r.getIsLeaf()) {
                System.out.println("+" + r.getName() + " : " + r.getDescription());
                flags = true;
              }
              if (flags) {
                for (Resources subR : list) {
                  if (subR.getParent().getId() == r.getId()) {
                    System.out.println("--" + subR.getName() + " : " + subR.getDescription());
                  }
                }
              }
            }
            getSession().put("userResources", list);
            getSession().put("something", "this is a test message");
          } catch (Exception e) {
            // TODO Auto-generated catch block
            e.printStackTrace();
            return "error";
          }
          this.setParameters("");
          flag = SUCCESS;
          return flag;
        } else {
          this.addFieldError("userEmpty", "User does not exist!");
          System.out.println("no user data from database, user_temp is unll");
          this.setParameters("user=nofound");
          return flag;
        }
      }
    }
    System.out.println("begin to return");
    return flag;
  }
Esempio n. 12
0
 public String getUserListByRole() throws NullPointerException, NumberFormatException {
   List<User> list = new ArrayList<User>();
   if (null != role) list = userService.getByRole(role.getId());
   getSession().put("userList", list);
   return SUCCESS;
 }