Search in sources :

Example 1 with Offer

use of io.bitsquare.trade.offer.Offer in project bitsquare by bitsquare.

the class PendingTradesViewModel method getMyRole.

//
String getMyRole(PendingTradesListItem item) {
    Trade trade = item.getTrade();
    Contract contract = trade.getContract();
    if (contract != null) {
        Offer offer = trade.getOffer();
        return formatter.getRole(contract.isBuyerOffererAndSellerTaker(), dataModel.isOfferer(offer), offer.getCurrencyCode());
    } else {
        return "";
    }
}
Also used : Trade(io.bitsquare.trade.Trade) Offer(io.bitsquare.trade.offer.Offer) Contract(io.bitsquare.trade.Contract)

Example 2 with Offer

use of io.bitsquare.trade.offer.Offer in project bitsquare by bitsquare.

the class OpenOffersViewModel method getPrice.

String getPrice(OpenOfferListItem item) {
    if ((item == null))
        return "";
    Offer offer = item.getOffer();
    Fiat price = offer.getPrice();
    if (price != null) {
        String postFix = "";
        if (offer.getUseMarketBasedPrice())
            postFix = " (" + formatter.formatPercentagePrice(offer.getMarketPriceMargin()) + ")";
        return formatter.formatPrice(price) + postFix;
    } else {
        return "N/A";
    }
}
Also used : OpenOffer(io.bitsquare.trade.offer.OpenOffer) Offer(io.bitsquare.trade.offer.Offer) Fiat(org.bitcoinj.utils.Fiat)

Example 3 with Offer

use of io.bitsquare.trade.offer.Offer in project bitsquare by bitsquare.

the class TradeManager method handleInitialTakeOfferRequest.

private void handleInitialTakeOfferRequest(TradeMessage message, NodeAddress peerNodeAddress) {
    log.trace("handleNewMessage: message = " + message.getClass().getSimpleName() + " from " + peerNodeAddress);
    try {
        nonEmptyStringOf(message.tradeId);
    } catch (Throwable t) {
        log.warn("Invalid requestDepositTxInputsMessage " + message.toString());
        return;
    }
    Optional<OpenOffer> openOfferOptional = openOfferManager.findOpenOffer(message.tradeId);
    if (openOfferOptional.isPresent() && openOfferOptional.get().getState() == OpenOffer.State.AVAILABLE) {
        Offer offer = openOfferOptional.get().getOffer();
        openOfferManager.reserveOpenOffer(openOfferOptional.get());
        Trade trade;
        if (offer.getDirection() == Offer.Direction.BUY)
            trade = new BuyerAsOffererTrade(offer, tradableListStorage);
        else
            trade = new SellerAsOffererTrade(offer, tradableListStorage);
        trade.setStorage(tradableListStorage);
        initTrade(trade, trade.getProcessModel().getUseSavingsWallet(), trade.getProcessModel().getFundsNeededForTrade());
        trades.add(trade);
        ((OffererTrade) trade).handleTakeOfferRequest(message, peerNodeAddress);
    } else {
        // TODO respond
        //(RequestDepositTxInputsMessage)message.
        //  messageService.sendEncryptedMessage(peerAddress,messageWithPubKey.getMessage().);
        log.debug("We received a take offer request but don't have that offer anymore.");
    }
}
Also used : OpenOffer(io.bitsquare.trade.offer.OpenOffer) Offer(io.bitsquare.trade.offer.Offer) OpenOffer(io.bitsquare.trade.offer.OpenOffer)

Example 4 with Offer

use of io.bitsquare.trade.offer.Offer in project bitsquare by bitsquare.

the class TakerCreatesDepositTxInputsAsBuyer method run.

@Override
protected void run() {
    try {
        runInterceptHook();
        Offer offer = trade.getOffer();
        Coin takerInputAmount = FeePolicy.getSecurityDeposit(offer).add(FeePolicy.getFixedTxFeeForTrades(offer));
        WalletService walletService = processModel.getWalletService();
        AddressEntry takersAddressEntry = walletService.getOrCreateAddressEntry(processModel.getOffer().getId(), AddressEntry.Context.RESERVED_FOR_TRADE);
        Address changeAddress = walletService.getOrCreateAddressEntry(AddressEntry.Context.AVAILABLE).getAddress();
        InputsAndChangeOutput result = processModel.getTradeWalletService().takerCreatesDepositsTxInputs(takerInputAmount, takersAddressEntry.getAddress(), changeAddress);
        processModel.setRawTransactionInputs(result.rawTransactionInputs);
        processModel.setChangeOutputValue(result.changeOutputValue);
        processModel.setChangeOutputAddress(result.changeOutputAddress);
        complete();
    } catch (Throwable t) {
        failed(t);
    }
}
Also used : Coin(org.bitcoinj.core.Coin) Address(org.bitcoinj.core.Address) Offer(io.bitsquare.trade.offer.Offer) AddressEntry(io.bitsquare.btc.AddressEntry) InputsAndChangeOutput(io.bitsquare.btc.data.InputsAndChangeOutput) WalletService(io.bitsquare.btc.WalletService)

Example 5 with Offer

use of io.bitsquare.trade.offer.Offer in project bitsquare by bitsquare.

the class OfferDetailsWindow method addContent.

private void addContent() {
    int rows = 5;
    List<String> acceptedBanks = offer.getAcceptedBankIds();
    boolean showAcceptedBanks = acceptedBanks != null && !acceptedBanks.isEmpty();
    List<String> acceptedCountryCodes = offer.getAcceptedCountryCodes();
    boolean showAcceptedCountryCodes = acceptedCountryCodes != null && !acceptedCountryCodes.isEmpty();
    if (!takeOfferHandlerOptional.isPresent())
        rows++;
    if (showAcceptedBanks)
        rows++;
    if (showAcceptedCountryCodes)
        rows++;
    addTitledGroupBg(gridPane, ++rowIndex, rows, "Offer");
    String fiatDirectionInfo = ":";
    String btcDirectionInfo = ":";
    Offer.Direction direction = offer.getDirection();
    String currencyCode = offer.getCurrencyCode();
    if (takeOfferHandlerOptional.isPresent()) {
        addLabelTextField(gridPane, rowIndex, "Offer type:", formatter.getDirectionForTakeOffer(direction, currencyCode), Layout.FIRST_ROW_DISTANCE);
        fiatDirectionInfo = direction == Offer.Direction.BUY ? " to receive:" : " to spend:";
        btcDirectionInfo = direction == Offer.Direction.SELL ? " to receive:" : " to spend:";
    } else if (placeOfferHandlerOptional.isPresent()) {
        addLabelTextField(gridPane, rowIndex, "Offer type:", formatter.getOfferDirectionForCreateOffer(direction, currencyCode), Layout.FIRST_ROW_DISTANCE);
        fiatDirectionInfo = direction == Offer.Direction.SELL ? " to receive:" : " to spend:";
        btcDirectionInfo = direction == Offer.Direction.BUY ? " to receive:" : " to spend:";
    } else {
        addLabelTextField(gridPane, rowIndex, "Offer type:", formatter.getDirectionBothSides(direction, currencyCode), Layout.FIRST_ROW_DISTANCE);
    }
    if (takeOfferHandlerOptional.isPresent()) {
        addLabelTextField(gridPane, ++rowIndex, "Bitcoin amount" + btcDirectionInfo, formatter.formatCoinWithCode(tradeAmount));
        addLabelTextField(gridPane, ++rowIndex, formatter.formatVolumeLabel(currencyCode) + fiatDirectionInfo, formatter.formatVolumeWithCode(offer.getVolumeByAmount(tradeAmount)));
    } else {
        addLabelTextField(gridPane, ++rowIndex, "Bitcoin amount" + btcDirectionInfo, formatter.formatCoinWithCode(offer.getAmount()));
        addLabelTextField(gridPane, ++rowIndex, "Min. bitcoin amount:", formatter.formatCoinWithCode(offer.getMinAmount()));
        String volume = formatter.formatVolumeWithCode(offer.getOfferVolume());
        String minVolume = "";
        if (!offer.getAmount().equals(offer.getMinAmount()))
            minVolume = " (min. " + formatter.formatVolumeWithCode(offer.getMinOfferVolume()) + ")";
        addLabelTextField(gridPane, ++rowIndex, formatter.formatVolumeLabel(currencyCode) + fiatDirectionInfo, volume + minVolume);
    }
    if (takeOfferHandlerOptional.isPresent()) {
        addLabelTextField(gridPane, ++rowIndex, "Price:", formatter.formatPrice(tradePrice));
    } else {
        Fiat price = offer.getPrice();
        if (offer.getUseMarketBasedPrice()) {
            addLabelTextField(gridPane, ++rowIndex, "Price:", formatter.formatPrice(price) + " (distance from market price: " + formatter.formatPercentagePrice(offer.getMarketPriceMargin()) + ")");
        } else {
            addLabelTextField(gridPane, ++rowIndex, "Price:", formatter.formatPrice(price));
        }
    }
    final PaymentMethod paymentMethod = offer.getPaymentMethod();
    final String offererPaymentAccountId = offer.getOffererPaymentAccountId();
    final PaymentAccount paymentAccount = user.getPaymentAccount(offererPaymentAccountId);
    String bankId = offer.getBankId();
    if (bankId == null || bankId.equals("null"))
        bankId = "";
    else
        bankId = " (" + bankId + ")";
    final boolean isSpecificBanks = paymentMethod.equals(PaymentMethod.SPECIFIC_BANKS);
    final boolean isNationalBanks = paymentMethod.equals(PaymentMethod.NATIONAL_BANK);
    final boolean isSepa = paymentMethod.equals(PaymentMethod.SEPA);
    if (offer.isMyOffer(keyRing) && offererPaymentAccountId != null && paymentAccount != null) {
        addLabelTextField(gridPane, ++rowIndex, "My trading account:", paymentAccount.getAccountName());
    } else {
        final String method = BSResources.get(paymentMethod.getId());
        if (isNationalBanks || isSpecificBanks || isSepa) {
            if (BankUtil.isBankIdRequired(offer.getCountryCode()))
                addLabelTextField(gridPane, ++rowIndex, "Payment method (offerer's bank ID):", method + bankId);
            else if (BankUtil.isBankNameRequired(offer.getCountryCode()))
                addLabelTextField(gridPane, ++rowIndex, "Payment method (offerer's bank name):", method + bankId);
        } else {
            addLabelTextField(gridPane, ++rowIndex, "Payment method:", method);
        }
    }
    if (showAcceptedBanks) {
        if (paymentMethod.equals(PaymentMethod.SAME_BANK)) {
            addLabelTextField(gridPane, ++rowIndex, "Bank ID (e.g. BIC or SWIFT):", acceptedBanks.get(0));
        } else if (isSpecificBanks) {
            String value = Joiner.on(", ").join(acceptedBanks);
            Tooltip tooltip = new Tooltip("Accepted banks: " + value);
            TextField acceptedBanksTextField = addLabelTextField(gridPane, ++rowIndex, "Accepted banks:", value).second;
            acceptedBanksTextField.setMouseTransparent(false);
            acceptedBanksTextField.setTooltip(tooltip);
        }
    }
    if (showAcceptedCountryCodes) {
        String countries;
        Tooltip tooltip = null;
        if (CountryUtil.containsAllSepaEuroCountries(acceptedCountryCodes)) {
            countries = "All Euro countries";
        } else {
            if (acceptedCountryCodes.size() == 1) {
                countries = CountryUtil.getNameAndCode(acceptedCountryCodes.get(0));
                tooltip = new Tooltip(countries);
            } else {
                countries = CountryUtil.getCodesString(acceptedCountryCodes);
                tooltip = new Tooltip(CountryUtil.getNamesByCodesString(acceptedCountryCodes));
            }
        }
        TextField acceptedCountries = addLabelTextField(gridPane, ++rowIndex, "Accepted taker countries:", countries).second;
        if (tooltip != null) {
            acceptedCountries.setMouseTransparent(false);
            acceptedCountries.setTooltip(tooltip);
        }
    }
    rows = 5;
    String paymentMethodCountryCode = offer.getCountryCode();
    if (paymentMethodCountryCode != null)
        rows++;
    if (offer.getOfferFeePaymentTxID() != null)
        rows++;
    addTitledGroupBg(gridPane, ++rowIndex, rows, "Details", Layout.GROUP_DISTANCE);
    addLabelTextFieldWithCopyIcon(gridPane, rowIndex, "Offer ID:", offer.getId(), Layout.FIRST_ROW_AND_GROUP_DISTANCE);
    addLabelTextFieldWithCopyIcon(gridPane, ++rowIndex, "Offerer's onion address:", offer.getOffererNodeAddress().getFullAddress());
    addLabelTextField(gridPane, ++rowIndex, "Creation date:", formatter.formatDateTime(offer.getDate()));
    addLabelTextField(gridPane, ++rowIndex, "Security deposit:", formatter.formatCoinWithCode(FeePolicy.getSecurityDeposit(offer)));
    if (paymentMethodCountryCode != null)
        addLabelTextField(gridPane, ++rowIndex, "Offerer's country of bank:", CountryUtil.getNameAndCode(paymentMethodCountryCode));
    addLabelTextFieldWithCopyIcon(gridPane, ++rowIndex, "Accepted arbitrators:", formatter.arbitratorAddressesToString(offer.getArbitratorNodeAddresses()));
    if (offer.getOfferFeePaymentTxID() != null)
        addLabelTxIdTextField(gridPane, ++rowIndex, "Offer fee transaction ID:", offer.getOfferFeePaymentTxID());
    if (placeOfferHandlerOptional.isPresent()) {
        addTitledGroupBg(gridPane, ++rowIndex, 1, "Commitment", Layout.GROUP_DISTANCE);
        addLabelTextField(gridPane, rowIndex, "I agree:", Offer.TAC_OFFERER, Layout.FIRST_ROW_AND_GROUP_DISTANCE);
        addConfirmAndCancelButtons(true);
    } else if (takeOfferHandlerOptional.isPresent()) {
        addTitledGroupBg(gridPane, ++rowIndex, 1, "Contract", Layout.GROUP_DISTANCE);
        addLabelTextField(gridPane, rowIndex, "Terms and conditions:", Offer.TAC_TAKER, Layout.FIRST_ROW_AND_GROUP_DISTANCE);
        addConfirmAndCancelButtons(false);
    } else {
        Button cancelButton = addButtonAfterGroup(gridPane, ++rowIndex, "Close");
        cancelButton.setOnAction(e -> {
            closeHandlerOptional.ifPresent(Runnable::run);
            hide();
        });
    }
}
Also used : Button(javafx.scene.control.Button) Overlay(io.bitsquare.gui.main.overlays.Overlay) PaymentMethod(io.bitsquare.payment.PaymentMethod) Popup(io.bitsquare.gui.main.overlays.popups.Popup) MainView(io.bitsquare.gui.main.MainView) AccountSettingsView(io.bitsquare.gui.main.account.settings.AccountSettingsView) CountryUtil(io.bitsquare.locale.CountryUtil) Coin(org.bitcoinj.core.Coin) LoggerFactory(org.slf4j.LoggerFactory) ArbitratorSelectionView(io.bitsquare.gui.main.account.content.arbitratorselection.ArbitratorSelectionView) Inject(javax.inject.Inject) PaymentAccount(io.bitsquare.payment.PaymentAccount) User(io.bitsquare.user.User) Insets(javafx.geometry.Insets) Navigation(io.bitsquare.gui.Navigation) Layout(io.bitsquare.gui.util.Layout) KeyRing(io.bitsquare.common.crypto.KeyRing) FeePolicy(io.bitsquare.btc.FeePolicy) BankUtil(io.bitsquare.locale.BankUtil) Tooltip(javafx.scene.control.Tooltip) BSFormatter(io.bitsquare.gui.util.BSFormatter) TextField(javafx.scene.control.TextField) Label(javafx.scene.control.Label) Logger(org.slf4j.Logger) Fiat(org.bitcoinj.utils.Fiat) Preferences(io.bitsquare.user.Preferences) Offer(io.bitsquare.trade.offer.Offer) List(java.util.List) FormBuilder(io.bitsquare.gui.util.FormBuilder) Tuple3(io.bitsquare.common.util.Tuple3) ImageView(javafx.scene.image.ImageView) BusyAnimation(io.bitsquare.gui.components.BusyAnimation) Optional(java.util.Optional) BSResources(io.bitsquare.locale.BSResources) Joiner(com.google.common.base.Joiner) AccountView(io.bitsquare.gui.main.account.AccountView) PaymentAccount(io.bitsquare.payment.PaymentAccount) Tooltip(javafx.scene.control.Tooltip) Offer(io.bitsquare.trade.offer.Offer) Button(javafx.scene.control.Button) Fiat(org.bitcoinj.utils.Fiat) PaymentMethod(io.bitsquare.payment.PaymentMethod) TextField(javafx.scene.control.TextField)

Aggregations

Offer (io.bitsquare.trade.offer.Offer)27 Fiat (org.bitcoinj.utils.Fiat)8 Coin (org.bitcoinj.core.Coin)7 MainView (io.bitsquare.gui.main.MainView)5 Popup (io.bitsquare.gui.main.overlays.popups.Popup)5 BSFormatter (io.bitsquare.gui.util.BSFormatter)5 ImageView (javafx.scene.image.ImageView)5 AddressEntry (io.bitsquare.btc.AddressEntry)4 WalletService (io.bitsquare.btc.WalletService)4 Navigation (io.bitsquare.gui.Navigation)4 TradeCurrency (io.bitsquare.locale.TradeCurrency)4 ListChangeListener (javafx.collections.ListChangeListener)4 FeePolicy (io.bitsquare.btc.FeePolicy)3 ActivatableViewAndModel (io.bitsquare.gui.common.view.ActivatableViewAndModel)3 FxmlView (io.bitsquare.gui.common.view.FxmlView)3 AccountView (io.bitsquare.gui.main.account.AccountView)3 ArbitratorSelectionView (io.bitsquare.gui.main.account.content.arbitratorselection.ArbitratorSelectionView)3 AccountSettingsView (io.bitsquare.gui.main.account.settings.AccountSettingsView)3 GUIUtil (io.bitsquare.gui.util.GUIUtil)3 FiatCurrency (io.bitsquare.locale.FiatCurrency)3