ch.openchvote.inspectionclient.writein.states.S620 Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of inspection-client Show documentation
Show all versions of inspection-client Show documentation
This module implements the 'verification client' party of the CHVote protocol.
The newest version!
/*
* Copyright (C) 2024 Berner Fachhochschule https://e-voting.bfh.ch
*
* - This program is free software: you can redistribute it and/or modify -
* - it under the terms of the GNU Affero General Public License as published by -
* - the Free Software Foundation, either version 3 of the License, or -
* - (at your option) any later version. -
* - -
* - This program is distributed in the hope that it will be useful, -
* - but WITHOUT ANY WARRANTY; without even the implied warranty of -
* - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -
* - GNU General Public License for more details. -
* - -
* - You should have received a copy of the GNU Affero General Public License -
* - along with this program. If not, see . -
*/
package ch.openchvote.inspectionclient.writein.states;
import ch.openchvote.algorithms.Algorithm;
import ch.openchvote.framework.annotations.state.Phase;
import ch.openchvote.framework.communication.Response;
import ch.openchvote.framework.party.State;
import ch.openchvote.inspectionclient.InspectionClient;
import ch.openchvote.inspectionclient.writein.EventContext;
import ch.openchvote.inspectionclient.writein.states.error.A1;
import ch.openchvote.inspectionclient.writein.tasks.TI1;
import ch.openchvote.protocol.phases.Inspection;
import ch.openchvote.protocol.protocols.writein.content.requestresponse.response.REI1;
import ch.openchvote.protocol.protocols.writein.content.userinterface.output.UIV1;
import ch.openchvote.utilities.tuples.Triple;
@SuppressWarnings("MissingJavadoc")
@Phase(Inspection.class)
public final class S620 extends State {
public S620(InspectionClient inspectionClient, EventContext eventContext) {
super(inspectionClient, eventContext);
this.registerResponseHandler(REI1.class, this::handleREI1);
}
private void handleREI1(Response response) {
// select event data
var eventId = this.eventContext.getEventId();
var publicData = this.eventContext.getPublicData();
var securityLevel = this.eventContext.getSecurityLevel();
// select setup parameters
var ES = publicData.get_ES().get();
var j = ES.get_SP().getIndexOf(response.getResponderId());
// select voting parameters and descriptions
var VP_v = publicData.get_VP_v().get();
var VD_v = publicData.get_VD_v().get();
// get and check response content
var aux = new Triple<>(ES, VP_v, VD_v);
var REI1 = this.party.getAndCheckContent(REI1.class, response, aux, securityLevel);
// update public data
publicData.setContent(j, REI1);
// run self activation
var stateId = this.getId();
this.party.selfActivate(eventId, stateId, State::handleSelfActivation);
}
@SuppressWarnings("unused")
@Override
public void handleSelfActivation() {
// get algorithm service from voting client
var algorithmService = this.party.getAlgorithmService();
// decompose event context
var eventId = this.eventContext.getEventId();
var publicData = this.eventContext.getPublicData();
// check if all MEC4 messages are available
if (TI1.isReady(publicData)) {
try {
// perform task
TI1.run(publicData, algorithmService);
// select event data
var IC = publicData.get_IC().get();
// send UIV1 to voter
this.party.displayOutput(this.party.getVoter(), eventId, new UIV1(IC));
// update state
this.party.updateState(this.eventContext, FINAL.class);
} catch (Algorithm.Exception exception) {
// move to error state
this.party.updateState(this.eventContext, A1.class);
}
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy