ch.openchvote.votingclient.writein.states.S360 Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of voting-client Show documentation
Show all versions of voting-client Show documentation
This module implements the 'voting client' party of the CHVote protocol.
/*
* 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.votingclient.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.protocol.protocols.writein.content.userinterface.output.UCV3;
import ch.openchvote.protocol.protocols.writein.content.requestresponse.response.REC3;
import ch.openchvote.protocol.phases.Election;
import ch.openchvote.utilities.tuples.Pair;
import ch.openchvote.votingclient.VotingClient;
import ch.openchvote.votingclient.writein.EventContext;
import ch.openchvote.votingclient.writein.states.error.A6;
import ch.openchvote.votingclient.writein.tasks.TC6;
@SuppressWarnings("MissingJavadoc")
@Phase(Election.class)
public final class S360 extends State {
public S360(VotingClient votingClient, EventContext eventContext) {
super(votingClient, eventContext);
this.registerResponseHandler(REC3.class, this::handleREC3);
}
private void handleREC3(Response response) {
// decompose event context
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 event data
var VP_v = publicData.get_VP_v().get();
// get and check response content
var aux = new Pair<>(ES, VP_v);
var REC3 = this.party.getAndCheckContent(REC3.class, response, aux, securityLevel);
// update public data
publicData.setContent(j, REC3);
// 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();
var secretData = this.eventContext.getSecretData();
// check if all REC3 messages are available
if (TC6.isReady(publicData)) {
try {
// perform task
TC6.run(publicData, secretData, algorithmService);
// select event data
var PC = publicData.get_PC().get();
// display UCV3 to voter
this.party.displayOutput(this.party.getVoter(), eventId, new UCV3(PC));
// update state
this.party.updateState(this.eventContext, FINAL.class);
} catch (Algorithm.Exception exception) {
// move to error state
this.party.updateState(this.eventContext, A6.class);
}
}
}
}