X-Git-Url: https://code.wpia.club/?a=blobdiff_plain;f=src%2Forg%2Fcacert%2Fgigi%2FUser.java;h=96e0a111670a6161bc55b428efc3216f007a078e;hb=39427d75e5363cc3eec518333abcbbf34c39922a;hp=e03c55fec2ec75be192bcc9d564bbfa91c4e0f49;hpb=f3dea954b8ac27ab7bebf7eaafd918e330ca65b5;p=gigi.git diff --git a/src/org/cacert/gigi/User.java b/src/org/cacert/gigi/User.java index e03c55fe..96e0a111 100644 --- a/src/org/cacert/gigi/User.java +++ b/src/org/cacert/gigi/User.java @@ -11,7 +11,7 @@ import org.cacert.gigi.util.PasswordHash; public class User { private int id; - Name name; + Name name = new Name(null, null); Date dob; String email; @@ -19,13 +19,16 @@ public class User { public User(int id) { this.id = id; try { - PreparedStatement ps = DatabaseConnection.getInstance().prepare( - "SELECT `fname`, `lname`, `dob` FROM `users` WHERE id=?"); + PreparedStatement ps = DatabaseConnection + .getInstance() + .prepare( + "SELECT `fname`, `lname`, `dob`, `email` FROM `users` WHERE id=?"); ps.setInt(1, id); ResultSet rs = ps.executeQuery(); if (rs.next()) { name = new Name(rs.getString(1), rs.getString(2)); dob = rs.getDate(3); + email = rs.getString(4); } rs.close(); } catch (SQLException e) { @@ -99,4 +102,78 @@ public class User { System.out.println("Inserted: " + id); } + public boolean canAssure() throws SQLException { + if (getAssurancePoints() < 100) { + return false; + } + + return hasPassedCATS(); + + } + public boolean hasPassedCATS() throws SQLException { + PreparedStatement query = DatabaseConnection.getInstance().prepare( + "SELECT 1 FROM `cats_passed` where `user_id`=?"); + query.setInt(1, id); + ResultSet rs = query.executeQuery(); + if (rs.next()) { + return true; + } else { + return false; + } + } + public int getAssurancePoints() throws SQLException { + PreparedStatement query = DatabaseConnection + .getInstance() + .prepare( + "SELECT sum(points) FROM `notary` where `to`=? AND `deleted`=0"); + query.setInt(1, id); + ResultSet rs = query.executeQuery(); + int points = 0; + if (rs.next()) { + points = rs.getInt(1); + } + rs.close(); + return points; + } + public int getExperiencePoints() throws SQLException { + PreparedStatement query = DatabaseConnection.getInstance().prepare( + "SELECT count(*) FROM `notary` where `from`=? AND `deleted`=0"); + query.setInt(1, id); + ResultSet rs = query.executeQuery(); + int points = 0; + if (rs.next()) { + points = rs.getInt(1) * 2; + } + rs.close(); + return points; + } + @Override + public boolean equals(Object obj) { + if (!(obj instanceof User)) { + return false; + } + User s = (User) obj; + return name.equals(s.name) && email.equals(s.email) + && dob.equals(s.dob); + } + public int getMaxAssurePoints() throws SQLException { + int exp = getExperiencePoints(); + int points = 10; + if (exp >= 10) { + points += 5; + } + if (exp >= 20) { + points += 5; + } + if (exp >= 30) { + points += 5; + } + if (exp >= 40) { + points += 5; + } + if (exp >= 50) { + points += 5; + } + return points; + } }