All Downloads are FREE. Search and download functionalities are using the official Maven repository.

no.digipost.signature.client.portal.PortalSigner Maven / Gradle / Ivy

There is a newer version: 7.0.4
Show newest version
package no.digipost.signature.client.portal;

import no.digipost.signature.client.core.OnBehalfOf;
import no.digipost.signature.client.core.SignatureType;
import no.digipost.signature.client.core.internal.IdentifierType;
import no.digipost.signature.client.core.internal.SignerCustomizations;

import java.util.Optional;

import static no.digipost.signature.client.core.OnBehalfOf.OTHER;
import static no.digipost.signature.client.core.internal.IdentifierType.EMAIL;
import static no.digipost.signature.client.core.internal.IdentifierType.EMAIL_AND_MOBILE_NUMBER;
import static no.digipost.signature.client.core.internal.IdentifierType.MOBILE_NUMBER;
import static no.digipost.signature.client.core.internal.IdentifierType.PERSONAL_IDENTIFICATION_NUMBER;
import static no.digipost.signature.client.core.internal.PersonalIdentificationNumbers.mask;

public class PortalSigner {

    private final IdentifierType identifierType;
    private final Optional identifier;

    private Notifications notifications;
    private NotificationsUsingLookup notificationsUsingLookup;

    private int order = 0;
    private Optional signatureType = Optional.empty();
    private Optional onBehalfOf = Optional.empty();

    private PortalSigner(IdentifierType identifierType, Notifications notifications) {
        this.identifier = Optional.empty();
        this.identifierType = identifierType;
        this.notifications = notifications;
    }

    private PortalSigner(String personalIdentificationNumber, Notifications notifications, NotificationsUsingLookup notificationsUsingLookup) {
        this.identifier = Optional.of(personalIdentificationNumber);
        this.identifierType = PERSONAL_IDENTIFICATION_NUMBER;
        this.notifications = notifications;
        this.notificationsUsingLookup = notificationsUsingLookup;
    }

    public static Builder identifiedByPersonalIdentificationNumber(String personalIdentificationNumber, Notifications notifications) {
        return new Builder(personalIdentificationNumber, notifications, null);
    }

    public static Builder identifiedByPersonalIdentificationNumber(String personalIdentificationNumber, NotificationsUsingLookup notificationsUsingLookup) {
        return new Builder(personalIdentificationNumber, null, notificationsUsingLookup);
    }

    public static Builder identifiedByEmail(String emailAddress) {
        return new Builder(EMAIL, Notifications.builder().withEmailTo(emailAddress).build());
    }

    public static Builder identifiedByMobileNumber(String number) {
        return new Builder(MOBILE_NUMBER, Notifications.builder().withSmsTo(number).build());
    }

    public static Builder identifiedByEmailAndMobileNumber(String emailAddress, String number) {
        return new Builder(EMAIL_AND_MOBILE_NUMBER, Notifications.builder().withEmailTo(emailAddress).withSmsTo(number).build());
    }

    public boolean isIdentifiedByPersonalIdentificationNumber() {
        return identifierType == PERSONAL_IDENTIFICATION_NUMBER;
    }

    public Optional getIdentifier() {
        return identifier;
    }

    public IdentifierType getIdentifierType() {
        return identifierType;
    }

    public int getOrder() {
        return order;
    }

    public Notifications getNotifications() {
        return notifications;
    }

    public NotificationsUsingLookup getNotificationsUsingLookup() {
        return notificationsUsingLookup;
    }

    public Optional getSignatureType() {
        return signatureType;
    }

    public Optional getOnBehalfOf() {
        return onBehalfOf;
    }

    @Override
    public String toString() {
        return isIdentifiedByPersonalIdentificationNumber() ? mask(identifier.get()) : "Signer with " + notifications;
    }


    public static class Builder implements SignerCustomizations {

        private final PortalSigner target;
        private boolean built = false;

        private Builder(String personalIdentificationNumber, Notifications notifications, NotificationsUsingLookup notificationsUsingLookup) {
            target = new PortalSigner(personalIdentificationNumber, notifications, notificationsUsingLookup);
        }

        private Builder(IdentifierType identifierType, Notifications notifications) {
            target = new PortalSigner(identifierType, notifications);
        }

        public Builder withOrder(int order) {
            target.order = order;
            return this;
        }

        @Override
        public Builder withSignatureType(SignatureType type) {
            target.signatureType = Optional.of(type);
            return this;
        }

        @Override
        public Builder onBehalfOf(OnBehalfOf onBehalfOf) {
            target.onBehalfOf = Optional.of(onBehalfOf);
            return this;
        }

        public PortalSigner build() {
            if (target.onBehalfOf.isPresent() && target.onBehalfOf.get() == OTHER && target.notificationsUsingLookup != null) {
                throw new IllegalStateException("Can't look up contact information for notifications when signing on behalf of a third party");
            }
            if (built) throw new IllegalStateException("Can't build twice");
            built = true;
            return target;
        }

    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy