org.kapott.hbci.dialog.HBCIProcessTanMedia Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of hbci4j-core Show documentation
Show all versions of hbci4j-core Show documentation
HBCI4j - Home Banking Computer Interface for Java
/**********************************************************************
*
* This file is part of HBCI4Java.
* Copyright (c) 2019 Olaf Willuhn
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library 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
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*
**********************************************************************/
package org.kapott.hbci.dialog;
import java.util.Objects;
import java.util.Properties;
import org.kapott.hbci.manager.Feature;
import org.kapott.hbci.manager.HBCIUtils;
import org.kapott.hbci.status.HBCIMsgStatus;
/**
* Kapselt die HBCI-Nachrichten zum Abruf der TAN-Medien.
*/
public class HBCIProcessTanMedia implements HBCIProcess
{
private HBCIDialogTanMedia dialog = null;
private boolean force = false;
/**
* ct.
* @param force true, wenn der Abruf der TAN-Medien forciert werden soll, auch wenn er eigentlich nicht noetig ist.
*/
public HBCIProcessTanMedia(boolean force)
{
this.dialog = new HBCIDialogTanMedia();
this.force = force;
}
/**
* @see org.kapott.hbci.dialog.HBCIProcess#execute(org.kapott.hbci.dialog.DialogContext)
*/
@Override
public HBCIMsgStatus execute(final DialogContext ctx)
{
if (!this.dialog.supported(ctx))
return null;
if (!this.force && !this.dialog.required(ctx))
return null;
boolean skip = Feature.PINTAN_INIT_SKIPONESTEPSCA.isEnabled();
// Wir versuchen es erstmal mit dem Einschritt-TAN-Verfahren und ohne SCA - wenn es per Feature erlaubt ist
// Das unterstuetzen aber nicht alle Banken. Die Deutsche Bank z.Bsp. hier ein konkretes Zweischritt-Verfahren,
// was voellig absurd ist. Denn fuer das Zweischritt-Verfahren brauche ich ja die Medienbezeichnung.
// Und die will ich ja gerade erst abrufen.
try
{
return this.execute(ctx,skip);
}
catch (Exception e)
{
HBCIUtils.log("failed: " + e.getMessage(),HBCIUtils.LOG_INFO);
HBCIUtils.log(e,HBCIUtils.LOG_DEBUG);
// Den erneuten Versuch mit SCA brauchen wir natuerlich machen, wenn wir ihn beim ersten weggelassen haben
if (skip)
{
try
{
return this.execute(ctx,false);
}
catch (Exception e2)
{
// Wir werfen das nicht hoch. Wenn es fehlschlaegt, dann haben wir halt keine TAN-Medien. Davon geht die Welt nicht unter
HBCIUtils.log("fetching of TAN media names failed: " + e.getMessage(),HBCIUtils.LOG_INFO);
HBCIUtils.log(e,HBCIUtils.LOG_DEBUG);
}
}
return null;
}
}
/**
* Fuehrt die HBCI-Dialoge aus.
* @param ctx der Context.
* @param skipSCA true, wenn die SCA weggelassen werden soll.
* @return der Status der Dialoge.
*/
private HBCIMsgStatus execute(final DialogContext ctx, boolean skipSCA)
{
HBCIUtils.log("trying to fetch TAN media names [skip sca: " + skipSCA + "]",HBCIUtils.LOG_INFO);
final HBCIDialogInit init = new HBCIDialogInit()
{
/**
* @see org.kapott.hbci.dialog.AbstractRawHBCIDialog#createSCARequest(java.util.Properties, int)
*/
@Override
public SCARequest createSCARequest(Properties secmechInfo, int hktanVersion)
{
if (!skipSCA)
return null;
// Anpassen des SCA-Requests fuer das Abfragen der TAN-Medien per HKTAB
SCARequest r = super.createSCARequest(secmechInfo, hktanVersion);
r.setTanReference("HKTAB");
final String needed = secmechInfo != null ? secmechInfo.getProperty("needtanmedia","") : "";
r.setTanMedia(Objects.equals(needed,"2") ? "noref" : "");
return r;
}
};
init.execute(ctx);
this.dialog.execute(ctx);
final HBCIDialogEnd end = new HBCIDialogEnd();
return end.execute(ctx);
}
}