/* * This file is part of Bitsquare. * * Bitsquare 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. * * Bitsquare 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 Bitsquare. If not, see <http://www.gnu.org/licenses/>. */ package io.bitsquare.trade.protocol.trade.tasks.seller; import io.bitsquare.btc.AddressEntry; import io.bitsquare.btc.WalletService; import io.bitsquare.common.taskrunner.TaskRunner; import io.bitsquare.p2p.messaging.SendMailboxMessageListener; import io.bitsquare.trade.Trade; import io.bitsquare.trade.protocol.trade.messages.FinalizePayoutTxRequest; import io.bitsquare.trade.protocol.trade.tasks.TradeTask; import org.slf4j.Logger; import org.slf4j.LoggerFactory; public class SendFinalizePayoutTxRequest extends TradeTask { private static final Logger log = LoggerFactory.getLogger(SendFinalizePayoutTxRequest.class); public SendFinalizePayoutTxRequest(TaskRunner taskHandler, Trade trade) { super(taskHandler, trade); } @Override protected void run() { try { runInterceptHook(); if (trade.getTradingPeerNodeAddress() != null) { WalletService walletService = processModel.getWalletService(); AddressEntry sellerPayoutAddressEntry = walletService.getOrCreateAddressEntry(processModel.getOffer().getId(), AddressEntry.Context.TRADE_PAYOUT); FinalizePayoutTxRequest message = new FinalizePayoutTxRequest( processModel.getId(), processModel.getPayoutTxSignature(), sellerPayoutAddressEntry.getAddressString(), trade.getLockTimeAsBlockHeight(), processModel.getMyNodeAddress() ); processModel.getP2PService().sendEncryptedMailboxMessage( trade.getTradingPeerNodeAddress(), processModel.tradingPeer.getPubKeyRing(), message, new SendMailboxMessageListener() { @Override public void onArrived() { log.trace("Message arrived at peer."); trade.setState(Trade.State.SELLER_SENT_FIAT_PAYMENT_RECEIPT_MSG); complete(); } @Override public void onStoredInMailbox() { log.trace("Message stored in mailbox."); trade.setState(Trade.State.SELLER_SENT_FIAT_PAYMENT_RECEIPT_MSG); complete(); } @Override public void onFault(String errorMessage) { appendToErrorMessage("FinalizePayoutTxRequest sending failed. errorMessage=" + errorMessage); failed(errorMessage); } } ); } else { log.error("trade.getTradingPeerAddress() = " + trade.getTradingPeerNodeAddress()); failed("A needed dependency is null"); } } catch (Throwable t) { failed(t); } } }