]> WPIA git - gigi.git/blobdiff - src/org/cacert/gigi/User.java
Implement restrictions for PoJam
[gigi.git] / src / org / cacert / gigi / User.java
index b049bc3ffde11edb06d49e4263dfad0001f604f7..b6086aa9a074fcfe5a407e84ec5bc45437ebde6f 100644 (file)
@@ -3,7 +3,8 @@ package org.cacert.gigi;
 import java.sql.PreparedStatement;
 import java.sql.ResultSet;
 import java.sql.SQLException;
-import java.util.Date;
+import java.sql.Date;
+import java.util.Calendar;
 
 import org.cacert.gigi.database.DatabaseConnection;
 import org.cacert.gigi.util.PasswordHash;
@@ -11,23 +12,25 @@ import org.cacert.gigi.util.PasswordHash;
 public class User {
 
        private int id;
-       String fname;
-       String mname;
-       String lname;
-       String suffix;
+       Name name = new Name(null, null, null, null);
+
        Date dob;
        String email;
 
        public User(int id) {
                this.id = id;
                try {
-                       PreparedStatement ps = DatabaseConnection.getInstance().prepare(
-                                       "SELECT `fname`, `lname` FROM `users` WHERE id=?");
+                       PreparedStatement ps = DatabaseConnection
+                                       .getInstance()
+                                       .prepare(
+                                                       "SELECT `fname`, `lname`,`mname`, `suffix`, `dob`, `email` FROM `users` WHERE id=?");
                        ps.setInt(1, id);
                        ResultSet rs = ps.executeQuery();
                        if (rs.next()) {
-                               fname = rs.getString(1);
-                               lname = rs.getString(2);
+                               name = new Name(rs.getString(1), rs.getString(2),
+                                               rs.getString(3), rs.getString(4));
+                               dob = rs.getDate(5);
+                               email = rs.getString(6);
                        }
                        rs.close();
                } catch (SQLException e) {
@@ -40,22 +43,25 @@ public class User {
                return id;
        }
        public String getFname() {
-               return fname;
+               return name.fname;
        }
        public String getLname() {
-               return lname;
+               return name.lname;
        }
        public String getMname() {
-               return mname;
+               return name.mname;
+       }
+       public Name getName() {
+               return name;
        }
        public void setMname(String mname) {
-               this.mname = mname;
+               this.name.mname = mname;
        }
        public String getSuffix() {
-               return suffix;
+               return name.suffix;
        }
        public void setSuffix(String suffix) {
-               this.suffix = suffix;
+               this.name.suffix = suffix;
        }
        public Date getDob() {
                return dob;
@@ -73,10 +79,10 @@ public class User {
                this.id = id;
        }
        public void setFname(String fname) {
-               this.fname = fname;
+               this.name.fname = fname;
        }
        public void setLname(String lname) {
-               this.lname = lname;
+               this.name.lname = lname;
        }
        public void insert(String password) throws SQLException {
                if (id != 0) {
@@ -85,19 +91,102 @@ public class User {
                PreparedStatement query = DatabaseConnection.getInstance().prepare(
                                "insert into `users` set `email`=?, `password`=?, "
                                                + "`fname`=?, `mname`=?, `lname`=?, "
-                                               + "`suffix`=?, `dob`=?, `created`=NOW(),"
-                                               + " `orgadmin`=0, `adadmin`=0, `locked`=0,"
-                                               + " `uniqueID`=0, `otphash`='', `otppin`=0");
+                                               + "`suffix`=?, `dob`=?, `created`=NOW(), locked=0");
                query.setString(1, email);
                query.setString(2, PasswordHash.hash(password));
-               query.setString(3, fname);
-               query.setString(4, mname);
-               query.setString(5, lname);
-               query.setString(6, suffix);
+               query.setString(3, name.fname);
+               query.setString(4, name.mname);
+               query.setString(5, name.lname);
+               query.setString(6, name.suffix);
                query.setDate(7, new java.sql.Date(dob.getTime()));
                query.execute();
                id = DatabaseConnection.lastInsertId(query);
                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.toString().equals(s.dob.toString()); // This is due to
+                                                                                                                       // day cutoff
+       }
+       public int getMaxAssurePoints() throws SQLException {
+               int exp = getExperiencePoints();
+               int points = 10;
+               Calendar c = Calendar.getInstance();
+               c.setTime(dob);
+               int year = c.get(Calendar.YEAR);
+               int month = c.get(Calendar.MONTH);
+               int day = c.get(Calendar.DAY_OF_MONTH);
+               c.set(year + 18, month, day);
+               if (System.currentTimeMillis() < c.getTime().getTime()) {
+                       return points; // not 18 Years old.
+               }
+
+               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;
+       }
 }