-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add new payment method: Australian PayID
- Loading branch information
1 parent
89cfb34
commit faf7f6d
Showing
11 changed files
with
447 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,69 @@ | ||
/* | ||
* This file is part of Bisq. | ||
* | ||
* Bisq 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. | ||
* | ||
* Bisq 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 Bisq. If not, see <http://www.gnu.org/licenses/>. | ||
*/ | ||
|
||
package bisq.core.payment; | ||
|
||
import bisq.core.payment.payload.AustraliaPayIDPayload; | ||
import bisq.core.payment.payload.PaymentAccountPayload; | ||
import bisq.core.payment.payload.PaymentMethod; | ||
import bisq.core.payment.payload.AustraliaPayIDPayload; | ||
|
||
import org.jetbrains.annotations.NotNull; | ||
|
||
import lombok.Getter; | ||
import lombok.Setter; | ||
|
||
import bisq.core.locale.Country; | ||
import bisq.core.locale.FiatCurrency; | ||
import bisq.core.payment.payload.AustraliaPayIDPayload; | ||
|
||
public final class AustraliaPayID extends PaymentAccount | ||
{ | ||
public AustraliaPayID() | ||
{ | ||
super(PaymentMethod.AUSTRALIA_PAYID); | ||
setSingleTradeCurrency(new FiatCurrency("AUD")); | ||
} | ||
|
||
@Override | ||
protected PaymentAccountPayload createPayload() | ||
{ | ||
return new AustraliaPayIDPayload(paymentMethod.getId(), id); | ||
} | ||
|
||
// payid | ||
public String getPayID() | ||
{ | ||
return ((AustraliaPayIDPayload) paymentAccountPayload).getPayid(); | ||
} | ||
public void setPayID(String payid) | ||
{ | ||
if (payid == null) payid = ""; | ||
((AustraliaPayIDPayload) paymentAccountPayload).setPayid(payid); | ||
} | ||
|
||
// bankAccount name | ||
public String getBankAccountName() | ||
{ | ||
return ((AustraliaPayIDPayload) paymentAccountPayload).getBankAccountName(); | ||
} | ||
public void setBankAccountName(String bankAccountName) | ||
{ | ||
if (bankAccountName == null) bankAccountName = ""; | ||
((AustraliaPayIDPayload) paymentAccountPayload).setBankAccountName(bankAccountName); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
116 changes: 116 additions & 0 deletions
116
core/src/main/java/bisq/core/payment/payload/AustraliaPayIDPayload.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,116 @@ | ||
/* | ||
* This file is part of Bisq. | ||
* | ||
* Bisq 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. | ||
* | ||
* Bisq 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 Bisq. If not, see <http://www.gnu.org/licenses/>. | ||
*/ | ||
|
||
package bisq.core.payment.payload; | ||
|
||
import bisq.core.locale.Res; | ||
|
||
import bisq.common.util.CollectionUtils; | ||
|
||
import com.google.protobuf.Message; | ||
|
||
import java.nio.charset.Charset; | ||
|
||
import java.util.HashMap; | ||
import java.util.Map; | ||
|
||
import lombok.EqualsAndHashCode; | ||
import lombok.Getter; | ||
import lombok.Setter; | ||
import lombok.ToString; | ||
import lombok.extern.slf4j.Slf4j; | ||
|
||
@EqualsAndHashCode(callSuper = true) | ||
@ToString | ||
@Setter | ||
@Getter | ||
@Slf4j | ||
public final class AustraliaPayIDPayload extends PaymentAccountPayload { | ||
// payid | ||
private String payid = ""; | ||
private String bankAccountName = ""; | ||
|
||
public AustraliaPayIDPayload(String paymentMethod, String id) { | ||
super(paymentMethod, id); | ||
} | ||
|
||
|
||
/////////////////////////////////////////////////////////////////////////////////////////// | ||
// PROTO BUFFER | ||
/////////////////////////////////////////////////////////////////////////////////////////// | ||
|
||
private AustraliaPayIDPayload(String paymentMethod, | ||
String id, | ||
String payid, | ||
String bankAccountName, | ||
long maxTradePeriod, | ||
Map<String, String> excludeFromJsonDataMap) { | ||
super(paymentMethod, | ||
id, | ||
maxTradePeriod, | ||
excludeFromJsonDataMap); | ||
|
||
this.payid = payid; | ||
this.bankAccountName = bankAccountName; | ||
} | ||
|
||
@Override | ||
public Message toProtoMessage() { | ||
return getPaymentAccountPayloadBuilder() | ||
.setAustraliaPayidPayload( | ||
protobuf.AustraliaPayIDPayload.newBuilder() | ||
.setPayid(payid) | ||
.setBankAccountName(bankAccountName) | ||
).build(); | ||
} | ||
|
||
public static AustraliaPayIDPayload fromProto(protobuf.PaymentAccountPayload proto) { | ||
protobuf.AustraliaPayIDPayload AustraliaPayIDPayload = proto.getAustraliaPayidPayload(); | ||
return new AustraliaPayIDPayload(proto.getPaymentMethodId(), | ||
proto.getId(), | ||
AustraliaPayIDPayload.getPayid(), | ||
AustraliaPayIDPayload.getBankAccountName(), | ||
proto.getMaxTradePeriod(), | ||
CollectionUtils.isEmpty(proto.getExcludeFromJsonDataMap()) ? null : new HashMap<>(proto.getExcludeFromJsonDataMap())); | ||
} | ||
|
||
|
||
/////////////////////////////////////////////////////////////////////////////////////////// | ||
// API | ||
/////////////////////////////////////////////////////////////////////////////////////////// | ||
|
||
@Override | ||
public String getPaymentDetails() | ||
{ | ||
return Res.get(paymentMethodId) + " - " + getPaymentDetailsForTradePopup().replace("\n", ", "); | ||
} | ||
|
||
@Override | ||
public String getPaymentDetailsForTradePopup() | ||
{ | ||
return | ||
Res.get("payment.australia.payid") + ": " + payid + "\n" + | ||
Res.get("payment.account.owner") + ": " + bankAccountName; | ||
} | ||
|
||
|
||
@Override | ||
public byte[] getAgeWitnessInputData() { | ||
String all = this.payid + this.bankAccountName; | ||
return super.getAgeWitnessInputData(all.getBytes(Charset.forName("UTF-8"))); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.