]> WPIA git - gigi.git/commitdiff
Implement restrictions for PoJam
authorFelix Dörre <felix@dogcraft.de>
Sat, 5 Jul 2014 18:11:44 +0000 (20:11 +0200)
committerFelix Dörre <felix@dogcraft.de>
Sat, 5 Jul 2014 18:11:44 +0000 (20:11 +0200)
src/org/cacert/gigi/User.java

index f43bcdcfc78b0608485addae453c6837ad1f84f9..b6086aa9a074fcfe5a407e84ec5bc45437ebde6f 100644 (file)
@@ -4,6 +4,7 @@ import java.sql.PreparedStatement;
 import java.sql.ResultSet;
 import java.sql.SQLException;
 import java.sql.Date;
 import java.sql.ResultSet;
 import java.sql.SQLException;
 import java.sql.Date;
+import java.util.Calendar;
 
 import org.cacert.gigi.database.DatabaseConnection;
 import org.cacert.gigi.util.PasswordHash;
 
 import org.cacert.gigi.database.DatabaseConnection;
 import org.cacert.gigi.util.PasswordHash;
@@ -161,6 +162,16 @@ public class User {
        public int getMaxAssurePoints() throws SQLException {
                int exp = getExperiencePoints();
                int points = 10;
        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 >= 10) {
                        points += 5;
                }