/* * mxisd - Matrix Identity Server Daemon * Copyright (C) 2017 Kamax Sarl * * https://www.kamax.io/ * * 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 Affero 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 io.kamax.mxisd.threepid.notification; import io.kamax.matrix.ThreePid; import io.kamax.mxisd.exception.ConfigurationException; import io.kamax.mxisd.invitation.IMatrixIdInvite; import io.kamax.mxisd.invitation.IThreePidInviteReply; import io.kamax.mxisd.notification.NotificationHandler; import io.kamax.mxisd.threepid.connector.ThreePidConnector; import io.kamax.mxisd.threepid.generator.NotificationGenerator; import io.kamax.mxisd.threepid.session.IThreePidSession; import org.apache.commons.lang3.StringUtils; import java.util.List; public abstract class GenericNotificationHandler implements NotificationHandler { private A connector; private B generator; protected abstract String getConnectorId(); protected abstract String getGeneratorId(); protected abstract void send(A connector, String recipient, String content); protected void process(List connectors, List generators) { generator = generators.stream() .filter(o -> StringUtils.equals(getGeneratorId(), o.getId())) .findFirst() .orElseThrow(() -> new ConfigurationException(getMedium() + " notification generator [" + getGeneratorId() + "] could not be found")); connector = connectors.stream() .filter(o -> StringUtils.equals(getConnectorId(), o.getId())) .findFirst() .orElseThrow(() -> new ConfigurationException(getMedium() + " sender connector [" + getConnectorId() + "] could not be found")); } @Override public void sendForInvite(IMatrixIdInvite invite) { send(connector, invite.getAddress(), generator.getForInvite(invite)); } @Override public void sendForReply(IThreePidInviteReply invite) { send(connector, invite.getInvite().getAddress(), generator.getForReply(invite)); } @Override public void sendForValidation(IThreePidSession session) { send(connector, session.getThreePid().getAddress(), generator.getForValidation(session)); } @Override public void sendForUnbind(ThreePid tpid) { send(connector, tpid.getAddress(), generator.getForNotificationUnbind(tpid)); } }