X-Git-Url: https://code.wpia.club/?a=blobdiff_plain;f=src%2Forg%2Fcacert%2Fgigi%2Futil%2FNotary.java;h=7f937236fbb559b430216a7951463a70faded075;hb=0c207a41dca8c839e5e52cee0299d95887b374fe;hp=7cd38e37080d9557978aadee889c086ecfc329d0;hpb=2824d1c165c501e2f3a8809044788b33b81f478a;p=gigi.git diff --git a/src/org/cacert/gigi/util/Notary.java b/src/org/cacert/gigi/util/Notary.java index 7cd38e37..7f937236 100644 --- a/src/org/cacert/gigi/util/Notary.java +++ b/src/org/cacert/gigi/util/Notary.java @@ -3,86 +3,96 @@ package org.cacert.gigi.util; import java.sql.PreparedStatement; import java.sql.ResultSet; import java.sql.SQLException; +import java.text.ParseException; +import java.util.Date; -import org.cacert.gigi.User; +import org.cacert.gigi.GigiApiException; import org.cacert.gigi.database.DatabaseConnection; +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) throws SQLException { - PreparedStatement q = DatabaseConnection.getInstance().prepare( - "insert into `user_agreements` set `memid`=?, `secmemid`=?," - + " `document`=?,`date`=NOW(), `active`=?,`method`=?,`comment`=?"); - q.setInt(1, memid); - q.setInt(2, secmemid); - q.setString(3, document); - q.setInt(4, active ? 1 : 0); - q.setString(5, method); - q.setString(6, comment); - q.execute(); - } - public static AssuranceResult checkAssuranceIsPossible(User assurer, User target) { - if (assurer.getId() == target.getId()) { - return AssuranceResult.CANNOT_ASSURE_SELF; - } - try { - PreparedStatement ps = DatabaseConnection.getInstance().prepare( - "SELECT 1 FROM `notary` where `to`=? and `from`=? AND `deleted`=0"); - ps.setInt(1, target.getId()); - ps.setInt(2, assurer.getId()); - ResultSet rs = ps.executeQuery(); - if (rs.next()) { - rs.close(); - return AssuranceResult.ALREADY_ASSUREED; - } - rs.close(); - if (!assurer.canAssure()) { - return AssuranceResult.CANNOT_ASSURE; - } - } catch (SQLException e) { - e.printStackTrace(); - } - return AssuranceResult.ASSURANCE_SUCCEDED; - } + public static void writeUserAgreement(int memid, String document, String method, String comment, boolean active, int secmemid) throws SQLException { + PreparedStatement q = DatabaseConnection.getInstance().prepare("insert into `user_agreements` set `memid`=?, `secmemid`=?," + " `document`=?,`date`=NOW(), `active`=?,`method`=?,`comment`=?"); + q.setInt(1, memid); + q.setInt(2, secmemid); + q.setString(3, document); + q.setInt(4, active ? 1 : 0); + q.setString(5, method); + q.setString(6, comment); + q.execute(); + } - public enum AssuranceResult { - CANNOT_ASSURE("You cannot assure."), ALREADY_ASSUREED("You already assured this person."), CANNOT_ASSURE_SELF( - "Cannot assure myself."), ASSURANCE_SUCCEDED(""), ASSUREE_CHANGED( - "Person details changed. Please start over again."), POINTS_OUT_OF_RANGE("Points out of range."); - private final String message; + public static void checkAssuranceIsPossible(User assurer, User target) throws GigiApiException { + if (assurer.getId() == target.getId()) { + throw new GigiApiException("You cannot assure yourself."); + } + try { + PreparedStatement ps = DatabaseConnection.getInstance().prepare("SELECT 1 FROM `notary` where `to`=? and `from`=? AND `deleted`=0"); + ps.setInt(1, target.getId()); + ps.setInt(2, assurer.getId()); + ResultSet rs = ps.executeQuery(); + if (rs.next()) { + rs.close(); + throw new GigiApiException("You have already assured this member."); + } + rs.close(); + if ( !assurer.canAssure()) { + throw new GigiApiException("You are not an assurer."); + } + } catch (SQLException e) { + throw new GigiApiException(e); + } + } - private AssuranceResult(String message) { - this.message = message; - } + public synchronized static void assure(User assurer, User target, int awarded, String location, String date) throws SQLException, GigiApiException { + GigiApiException gae = new GigiApiException(); - public String getMessage() { - return message; - } - } + if (date == null || date.equals("")) { + gae.mergeInto(new GigiApiException("You must enter the date when you met the assuree.")); + } else { + try { + Date d = DateSelector.getDateFormat().parse(date); + if (d.getTime() > System.currentTimeMillis()) { + gae.mergeInto(new GigiApiException("You must not enter a date in the future.")); + } + } catch (ParseException e) { + gae.mergeInto(new GigiApiException("You must enter the date in this format: YYYY-MM-DD.")); + } + } + // check location, min 3 characters + if (location == null || location.equals("")) { + gae.mergeInto(new GigiApiException("You failed to enter a location of your meeting.")); + } else if (location.length() <= 2) { + gae.mergeInto(new GigiApiException("You must enter a location with at least 3 characters eg town and country.")); + } - public synchronized static AssuranceResult assure(User assurer, User target, int awarded, String location, - String date) throws SQLException { - AssuranceResult can = checkAssuranceIsPossible(assurer, target); - if (can != AssuranceResult.ASSURANCE_SUCCEDED) { - return can; - } - User u = new User(target.getId()); - if (!u.equals(target)) { - return AssuranceResult.ASSUREE_CHANGED; - } - if (awarded > assurer.getMaxAssurePoints() || awarded < 0) { - return AssuranceResult.POINTS_OUT_OF_RANGE; - } + try { + checkAssuranceIsPossible(assurer, target); + } catch (GigiApiException e) { + gae.mergeInto(e); + } - PreparedStatement ps = DatabaseConnection.getInstance().prepare( - "INSERT INTO `notary` SET `from`=?, `to`=?, `points`=?, `location`=?, `date`=?"); - ps.setInt(1, assurer.getId()); - ps.setInt(2, target.getId()); - ps.setInt(3, awarded); - ps.setString(4, location); - ps.setString(5, date); - ps.execute(); - return AssuranceResult.ASSURANCE_SUCCEDED; - } + User u = new User(target.getId()); + if ( !u.equals(target)) { + gae.mergeInto(new GigiApiException("The person you are assuring changed his personal details.")); + } + if (awarded > assurer.getMaxAssurePoints() || awarded < 0) { + gae.mergeInto(new GigiApiException("The points you are trying to award are out of range.")); + } + if ( !gae.isEmpty()) { + throw gae; + } + + PreparedStatement ps = DatabaseConnection.getInstance().prepare("INSERT INTO `notary` SET `from`=?, `to`=?, `points`=?, `location`=?, `date`=?"); + ps.setInt(1, assurer.getId()); + ps.setInt(2, target.getId()); + ps.setInt(3, awarded); + ps.setString(4, location); + ps.setString(5, date); + ps.execute(); + assurer.invalidateMadeAssurances(); + target.invalidateReceivedAssurances(); + } }