X-Git-Url: https://code.wpia.club/?a=blobdiff_plain;f=src%2Forg%2Fcacert%2Fgigi%2Futil%2FNotary.java;h=3dfc4faab5700647bb8ba0ecee6113fab6ebde2d;hb=d347c58d1e4ea52e1b866b4041b1e75ab629e487;hp=d1f92c801caedab6526f07595b582cd02f4b51f0;hpb=3e123160ad59a2e1162518923965562ff947b6d1;p=gigi.git diff --git a/src/org/cacert/gigi/util/Notary.java b/src/org/cacert/gigi/util/Notary.java index d1f92c80..3dfc4faa 100644 --- a/src/org/cacert/gigi/util/Notary.java +++ b/src/org/cacert/gigi/util/Notary.java @@ -7,15 +7,16 @@ import org.cacert.gigi.GigiApiException; import org.cacert.gigi.database.DatabaseConnection; import org.cacert.gigi.database.GigiPreparedStatement; import org.cacert.gigi.database.GigiResultSet; +import org.cacert.gigi.dbObjects.Group; import org.cacert.gigi.dbObjects.Name; import org.cacert.gigi.dbObjects.User; import org.cacert.gigi.output.DateSelector; public class Notary { - public static void writeUserAgreement(int memid, String document, String method, String comment, boolean active, int secmemid) { + public static void writeUserAgreement(User member, String document, String method, String comment, boolean active, int secmemid) { GigiPreparedStatement q = DatabaseConnection.getInstance().prepare("insert into `user_agreements` set `memid`=?, `secmemid`=?," + " `document`=?,`date`=NOW(), `active`=?,`method`=?,`comment`=?"); - q.setInt(1, memid); + q.setInt(1, member.getId()); q.setInt(2, secmemid); q.setString(3, document); q.setInt(4, active ? 1 : 0); @@ -28,7 +29,7 @@ public class Notary { if (assurer.getId() == target.getId()) { throw new GigiApiException("You cannot assure yourself."); } - GigiPreparedStatement ps = DatabaseConnection.getInstance().prepare("SELECT 1 FROM `notary` where `to`=? and `from`=? AND `deleted`=0"); + GigiPreparedStatement ps = DatabaseConnection.getInstance().prepare("SELECT 1 FROM `notary` where `to`=? and `from`=? AND `deleted` IS NULL"); ps.setInt(1, target.getId()); ps.setInt(2, assurer.getId()); GigiResultSet rs = ps.executeQuery(); @@ -42,6 +43,10 @@ public class Notary { } } + public static final Group ASSURER_BLOCKED = Group.getByString("blockedassurer"); + + public static final Group ASSUREE_BLOCKED = Group.getByString("blockedassuree"); + /** * This method assures another user. * @@ -66,7 +71,15 @@ public class Notary { */ public synchronized static void assure(User assurer, User assuree, Name assureeName, Date dob, int awarded, String location, String date) throws GigiApiException { GigiApiException gae = new GigiApiException(); - + if (assuree.isInGroup(ASSUREE_BLOCKED)) { + gae.mergeInto(new GigiApiException("The assuree is blocked.")); + } + if (assurer.isInGroup(ASSURER_BLOCKED)) { + gae.mergeInto(new GigiApiException("The assurer is blocked.")); + } + if ( !gae.isEmpty()) { + throw gae; + } if (date == null || date.equals("")) { gae.mergeInto(new GigiApiException("You must enter the date when you met the assuree.")); } else {