X-Git-Url: https://code.wpia.club/?a=blobdiff_plain;ds=sidebyside;f=src%2Forg%2Fcacert%2Fgigi%2FdbObjects%2FUser.java;h=7a11cdb40b9a294a568c8c934f6d277f2d02f93b;hb=dfaa563cedb03ec862a55f06266e500f95432a93;hp=9166b0443f4b564bb8f37894c01592ba515e7508;hpb=e409ba881965634f63f0b67824bc93dda4ec4327;p=gigi.git diff --git a/src/org/cacert/gigi/dbObjects/User.java b/src/org/cacert/gigi/dbObjects/User.java index 9166b044..7a11cdb4 100644 --- a/src/org/cacert/gigi/dbObjects/User.java +++ b/src/org/cacert/gigi/dbObjects/User.java @@ -28,7 +28,7 @@ public class User implements IdCachable { private Locale locale; - public User(int id) { + private User(int id) { this.id = id; updateName(id); } @@ -162,6 +162,9 @@ public class User implements IdCachable { } public boolean canAssure() throws SQLException { + if ( !isOfAge(14)) { // PoJAM + return false; + } if (getAssurancePoints() < 100) { return false; } @@ -227,17 +230,12 @@ public class User implements IdCachable { * @throws SQLException */ public int getMaxAssurePoints() throws SQLException { + if ( !isOfAge(18)) { + return 10; // PoJAM + } + 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; @@ -257,6 +255,17 @@ public class User implements IdCachable { return points; } + public boolean isOfAge(int desiredAge) { + 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, month, day); + c.add(Calendar.YEAR, desiredAge); + return System.currentTimeMillis() >= c.getTime().getTime(); + } + public EmailAddress[] getEmails() { try { PreparedStatement ps = DatabaseConnection.getInstance().prepare("SELECT id FROM emails WHERE memid=? AND deleted=0");