/* // this.signature.creation_date = Util.getCalendar(creationTime); try { this.signature.setEditable(); this.signature.storeVerified(); } catch (P2PDDSQLException e) { e.printStackTrace(); } */ public void setChoiceOldJustification(/*String creationTime*/){ if(DEBUG) System.out.println("VoteEditor: setChoiceOldJustification start"); JustGIDItem selected = (JustGIDItem) just_old_just_field.getSelectedItem(); String id = null, gid=null; try { if(selected == null){ if(DEBUG) System.out.println("VoteEditor: setChoiceOldJustification no selection null"); id = null; }else{ if(DEBUG) out.println("VoteEditor:handleFieldEvent: selected old just ="+selected.toStringDump()); if(selected.id == null){ if(DEBUG) out.println("VoteEditor:handleFieldEvent: selected id=null"); id = null; } else{ id = ""+(new Integer(selected.id).longValue()); gid = selected.gid; } } signature.justification_ID = id; signature.global_justification_ID = gid; } catch (NumberFormatException e) { e.printStackTrace(); } }
public void setNewJustificationID(String jID) { try{ signature.justification_ID = jID; signature.global_justification_ID = null; //this.signature.creation_date = Util.getCalendar(creationTime); this.signature.setEditable(); this.signature.storeVerified(); } catch (P2PDDSQLException e) { e.printStackTrace(); } }
public void setChoice(){ if(DEBUG) System.out.println("VoteEditor: setChoice start"); D_MotionChoice selected = (D_MotionChoice) this.vote_choice_field.getSelectedItem(); String name = null, short_name=null; try { if(selected == null){ if(DEBUG) System.out.println("VoteEditor: setChoiceOldJustification no selection null"); short_name = null; }else{ if(DEBUG) out.println("VoteEditor:handleFieldEvent: selected old just ="+selected.toStringDump()); if(selected.short_name == null){ if(DEBUG) out.println("VoteEditor:handleFieldEvent: selected choice = null"); short_name = null; } else { short_name = selected.short_name; name = selected.name; } } signature.choice = short_name; if(DEBUG) out.println("VoteEditor:handleFieldEvent: selected choice = "+name); } catch (NumberFormatException e) { e.printStackTrace(); } }
private void handleChoiceEvent(Object source) { //boolean DEBUG = true; if(DEBUG) out.println("JustificationEditor:handleFieldEvent: start"); /* String creationTime; if(vote_date_field != null) { creationTime = vote_date_field.getText(); }else{ creationTime = Util.getGeneralizedTime(); } */ if((this.vote_date_field==source)||(this.vote_date_field.getDocument()==source)) { if(DEBUG) out.println("JustificationEditor:handleFieldEvent: date title"); String new_text = this.vote_date_field.getText(); Calendar cal = Util.getCalendar(new_text); if(cal == null) return; this.signature.creation_date = cal; this.signature.setEditable(); try { this.signature.storeVerified(); } catch (P2PDDSQLException e) { e.printStackTrace(); } return; } if(this.vote_dategen_field==source) { this.signature.creation_date = Util.CalendargetInstance(); this.vote_date_field.setText(Encoder.getGeneralizedTime(this.signature.creation_date)); this.signature.setEditable(); try { this.signature.storeVerified(); } catch (P2PDDSQLException e) { e.printStackTrace(); } return; } if(this.vote_newjust_field==source) { if(DEBUG) out.println("VoteEditor:handleFieldEvent: choice newjust_radio"); this.just_old_just_field.setEnabled(false); //setChoiceOldJustification(creationTime); //enable_just(); if(motionEditor!=null){ if(_DEBUG) out.println("VoteEditor:handleFieldEvent: choice newjust_radio, in motioneditor"); motionEditor.enableNewJustification(true); signature.justification_ID = motionEditor.getNewJustificationID(); signature.global_justification_ID = null; }else{ if(_DEBUG) out.println("VoteEditor:handleFieldEvent: choice newjust_radio, in justeditor"); this.justificationEditor.make_new(); this.enable_just(); signature.justification_ID = justification.justification_ID; signature.global_justification_ID = null; } return; } if(this.vote_oldjust_field==source) { if(DEBUG) out.println("VoteEditor:handleFieldEvent: choice oldjust_radio"); this.just_old_just_field.setEnabled(true); setChoiceOldJustification(); if(motionEditor!=null){ motionEditor.enableNewJustification(false); }else{ this.disable_just(); } return; } if(this.vote_nojust_field==source) { if(DEBUG) out.println("VoteEditor:handleFieldEvent: choice nojust_radio"); this.just_old_just_field.setEnabled(false); if(motionEditor!=null){ motionEditor.enableNewJustification(false); }else{ this.disable_just(); } try{ signature.justification_ID = null; signature.global_justification_ID = null; //this.signature.creation_date = Util.getCalendar(creationTime); this.signature.setEditable(); this.signature.storeVerified(); } catch (P2PDDSQLException e) { e.printStackTrace(); } } if(just_old_just_field==source) { if(DEBUG) out.println("VoteEditor:handleFieldEvent: choice old_just_combo"); //if(DEBUG) Util.printCallPath("Linux tracing"); setChoiceOldJustification(); return; } if(this.vote_choice_field == source) { if(DEBUG) out.println("VoteEditor:handleFieldEvent: choice vote_choice_field combo"); setChoice(); return; } if((just_submit_field == source)) { if(DEBUG) out.println("VoteEditor:handleFieldEvent: submit"); try { long j_id=-1; D_Justification justification =null; if(signature.choice==null){ Application.warning(_("No voting choice made.\nPlease return and make a voting choice."), _("No Choice Made")); return; } if(vote_newjust_field.isSelected()) { if(DEBUG) out.println("VoteEditor:handleFieldEvent: new justification"); justification = justificationEditor.just; if(motionEditor!=null){ justification = motionEditor.getNewJustification(); if(DEBUG) out.println("VoteEditor:handleFieldEvent: new justification from motionEditor="+justification); }else{ if(DEBUG) out.println("VoteEditor:handleFieldEvent: new justification from justEditor="+justification); } if(justification.global_constituent_ID==null){ if(DEBUG) out.println("VoteEditor:handleFieldEvent: reget justification"); justification.global_constituent_ID = Application.constituents.tree.getModel().getConstituentGIDMyself(); justification.constituent_ID = Util.getStringID(Application.constituents.tree.getModel().getConstituentIDMyself()); if(justification.global_constituent_ID==null) { Application.warning(_("You should first select a constituent identity for this organization!"), _("No Constituent ID for this org!")); return; } } justification.global_justificationID = justification.make_ID(); justification.sign(); j_id = justification.storeVerified(DEBUG); if(j_id<=0){ if(_DEBUG) out.println("VoteEditor:handleFieldEvent: failed saving no new justif"); return; } }else{ if(DEBUG) out.println("VoteEditor:handleFieldEvent: no new justification selected"); } //signature = signature; //signature.global_motion_ID = null; //signature.motion_ID = justificationEditor.just.motion_ID; if(vote_newjust_field.isSelected()) { signature.global_justification_ID = justification.global_justificationID; signature.justification_ID = Util.getStringID(j_id);//justificationEditor.just.justification_ID; } signature.global_vote_ID = signature.make_ID(); D_Vote old = new D_Vote(signature.global_vote_ID); if(old.vote_ID!=null){ String old_date = Encoder.getGeneralizedTime(old.creation_date); String new_date = Encoder.getGeneralizedTime(signature.creation_date); if(old_date.equals(new_date)){ int attack = Application.ask( _("Are you sure you want to create a new vote \n" + "with the same date as your previous vote? \n" + "This can amount to an attack where you give different people different votes!\n" + "Except if they order such votes by signature (to be implemented)\n" + "On selecting NO, we will update the creation date to now."), _("Votes from you on the same issue and with same date!"), JOptionPane.YES_NO_CANCEL_OPTION); switch(attack) { case 0: //YES break; case 1: // NO signature.creation_date = Util.CalendargetInstance(); this.vote_date_field.setText(Encoder.getGeneralizedTime(this.signature.creation_date)); break; case 2: // CANCEL default: return; } } } signature.sign(); long v_id = this.signature.storeVerified(); if(v_id<=0){ if(_DEBUG) out.println("VoteEditor:handleFieldEvent: submit sign got no local ID"); return; } /* justificationEditor.just.global_justificationID = justificationEditor.just.make_ID(); justificationEditor.just.sign(); long id = justificationEditor.just.storeVerified(); if(id<=0) return; */ disable_it(); justificationEditor.disable_it(); try{ D_Motion m = new D_Motion(Util.lval(signature.motion_ID)); m.broadcasted = true; m.storeVerified(); }catch(Exception e){e.printStackTrace();} } catch (P2PDDSQLException e) { e.printStackTrace(); } } }