Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

V3 #230

Open
wants to merge 31 commits into
base: master
Choose a base branch
from
Open

V3 #230

Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
31 commits
Select commit Hold shift + click to select a range
d2d3d67
Update charge Payload field names; Add v3 charge endpoint
jeremiahAI Aug 26, 2020
954fc9a
Implement v3 card charge (redirect auth method)
jeremiahAI Aug 27, 2020
a7ea9ba
v3 PIN auth and OTP validation
jeremiahAI Aug 27, 2020
f232cef
v3 transaction verification
jeremiahAI Aug 27, 2020
10c0a59
v3 AVS authentication
jeremiahAI Aug 27, 2020
7b19bf8
v3 MPesa payment
jeremiahAI Sep 1, 2020
11f1d92
v3 USSD payment
jeremiahAI Sep 2, 2020
bf35565
v3 Rwanda Mobile money payment
jeremiahAI Sep 2, 2020
eab1f95
v3 Francophone Mobile money payment
jeremiahAI Sep 2, 2020
f018945
v3 Uganda Mobile money payment
jeremiahAI Sep 2, 2020
145b754
v3 Zambia Mobile money payment
jeremiahAI Sep 2, 2020
6233e86
v3 GH Mobile money payment
jeremiahAI Sep 2, 2020
7e09936
v3 Bank Transfer payment
jeremiahAI Sep 2, 2020
9661431
v3 Account charge
jeremiahAI Sep 12, 2020
4185b16
Saved card Charge
jeremiahAI Sep 12, 2020
5967d3c
Pay with Barter
jeremiahAI Sep 12, 2020
21821d0
v3 South Africa ACH charge
jeremiahAI Sep 14, 2020
647c217
Make txRef setting internal to Payload constructor
jeremiahAI Sep 16, 2020
eea1754
v3 UK payment
jeremiahAI Sep 16, 2020
0ebdc3e
Collect country for Francophone mobile money charges
jeremiahAI Sep 17, 2020
7be66a3
v3 ACH
jeremiahAI Sep 21, 2020
6600c4d
Clear redundant Todos in strings.xml
jeremiahAI Sep 30, 2020
d8b7696
Fix strings.xml
jeremiahAI Sep 30, 2020
a53d6ad
Remove unused methods and fields in Payload and Payload builder
jeremiahAI Sep 30, 2020
b0ba8b5
Fix Fee display strings
jeremiahAI Sep 30, 2020
59a2d4d
Setup meta field for v2 and v3
jeremiahAI Sep 30, 2020
eacf057
Fix Gh momo endpoint
jeremiahAI Sep 30, 2020
c1f9007
Remove todos
jeremiahAI Sep 30, 2020
ccfc197
Merge branch 'master' into v3
jeremiahAI Oct 14, 2020
e7f9dd4
Clean up
jeremiahAI Oct 14, 2020
8cfebc3
Change default test keys
jeremiahAI Oct 14, 2020
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
33 changes: 19 additions & 14 deletions app/src/main/java/com/flutterwave/rave_android/MainActivity.java
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@
import com.flutterwave.raveandroid.RaveUiManager;
import com.flutterwave.raveandroid.data.Utils;
import com.flutterwave.raveandroid.rave_core.models.SavedCard;
import com.flutterwave.raveandroid.rave_java_commons.AddressDetails;
import com.flutterwave.raveandroid.rave_java_commons.Meta;
import com.flutterwave.raveandroid.rave_java_commons.RaveConstants;
import com.flutterwave.raveandroid.rave_java_commons.SubAccount;
Expand All @@ -32,7 +33,6 @@
import com.flutterwave.raveandroid.rave_presentation.card.CardPaymentCallback;
import com.flutterwave.raveandroid.rave_presentation.card.CardPaymentManager;
import com.flutterwave.raveandroid.rave_presentation.card.SavedCardsListener;
import com.flutterwave.raveandroid.rave_presentation.data.AddressDetails;
import com.flutterwave.raveutils.verification.AVSVBVFragment;
import com.flutterwave.raveutils.verification.OTPFragment;
import com.flutterwave.raveutils.verification.PinFragment;
Expand All @@ -58,8 +58,7 @@ public class MainActivity
EditText narrationEt;
EditText currencyEt;
EditText countryEt;
EditText fNameEt;
EditText lNameEt;
EditText fullNameEt;
EditText durationEt;
EditText frequencyEt;
EditText phoneNumberEt;
Expand Down Expand Up @@ -112,8 +111,7 @@ protected void onCreate(Bundle savedInstanceState) {
narrationEt = findViewById(R.id.narrationTV);
currencyEt = findViewById(R.id.currencyEt);
countryEt = findViewById(R.id.countryEt);
fNameEt = findViewById(R.id.fNameEt);
lNameEt = findViewById(R.id.lnameEt);
fullNameEt = findViewById(R.id.fullNameEt);
phoneNumberEt = findViewById(R.id.phoneNumberEt);
durationEt = findViewById(R.id.expiryDaysEt);
frequencyEt = findViewById(R.id.frequencyEt);
Expand Down Expand Up @@ -162,6 +160,17 @@ public void onCheckedChanged(CompoundButton compoundButton, boolean b) {
}
});

francMobileMoneySwitch.setOnCheckedChangeListener(new CompoundButton.OnCheckedChangeListener() {
@Override
public void onCheckedChanged(CompoundButton compoundButton, boolean b) {
if (b) {
countryEt.setVisibility(View.VISIBLE);
} else {
countryEt.setVisibility(View.GONE);
}
}
});

cardSwitch.setOnCheckedChangeListener(new CompoundButton.OnCheckedChangeListener() {
@Override
public void onCheckedChanged(CompoundButton compoundButton, boolean b) {
Expand Down Expand Up @@ -254,8 +263,7 @@ private void validateEntries() {
String txRef = txRefEt.getText().toString();
String narration = narrationEt.getText().toString();
String currency = currencyEt.getText().toString();
String fName = fNameEt.getText().toString();
String lName = lNameEt.getText().toString();
String fullName = fullNameEt.getText().toString();
String phoneNumber = phoneNumberEt.getText().toString();
String accountDuration = durationEt.getText().toString();
String accountPaymentFrequency = frequencyEt.getText().toString();
Expand Down Expand Up @@ -321,7 +329,7 @@ private void validateEntries() {
.acceptRwfMobileMoneyPayments(rwfMobileMoneySwitch.isChecked())
.acceptUkPayments(ukbankSwitch.isChecked())
.acceptSaBankPayments(saBankSwitch.isChecked())
.acceptFrancMobileMoneyPayments(francMobileMoneySwitch.isChecked())
.acceptFrancMobileMoneyPayments(francMobileMoneySwitch.isChecked(), countryEt.getText().toString())
.acceptBankTransferPayments(bankTransferSwitch.isChecked())
.acceptUssdPayments(ussdSwitch.isChecked())
.acceptBarterPayments(barterSwitch.isChecked())
Expand All @@ -330,8 +338,7 @@ private void validateEntries() {
.setAmount(Double.parseDouble(amount))
.setCurrency(currency)
.setEmail(email)
.setfName(fName)
.setlName(lName)
.setFullName(fullName)
.setPhoneNumber(phoneNumber, false)
.setNarration(narration)
.setPublicKey(publicKey)
Expand Down Expand Up @@ -365,8 +372,7 @@ private void validateEntries() {
raveManager = new RaveNonUIManager().setAmount(Double.parseDouble(amount))
.setCurrency(currency)
.setEmail(email)
.setfName(fName)
.setlName(lName)
.setFullName(fullName)
.setPhoneNumber(phoneNumber)
.setNarration(narration)
.setPublicKey(publicKey)
Expand Down Expand Up @@ -459,8 +465,7 @@ private void clearErrors() {
narrationEt.setError(null);
currencyEt.setError(null);
countryEt.setError(null);
fNameEt.setError(null);
lNameEt.setError(null);
fullNameEt.setError(null);
durationEt.setError(null);
frequencyEt.setError(null);
}
Expand Down
30 changes: 11 additions & 19 deletions app/src/main/res/layout/activity_main.xml
Original file line number Diff line number Diff line change
Expand Up @@ -149,6 +149,15 @@
android:checked="false"
android:text="@string/francophone" />

<EditText
android:id="@+id/countryEt"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginBottom="10dp"
android:hint="@string/country_code_e_g_ng"
android:textSize="14sp"
android:visibility="gone" />

<androidx.appcompat.widget.SwitchCompat
android:id="@+id/accountGHMobileMoneySwitch"
android:layout_width="match_parent"
Expand Down Expand Up @@ -361,30 +370,13 @@
android:hint="@string/currency_code_e_g_ngn"
android:textSize="14sp" />

<EditText
android:id="@+id/countryEt"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginBottom="10dp"
android:hint="@string/country_code_e_g_ng"
android:textSize="14sp"
android:visibility="gone" />


<EditText
android:id="@+id/fNameEt"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginBottom="10dp"
android:hint="@string/first_name"
android:textSize="14sp" />

<EditText
android:id="@+id/lnameEt"
android:id="@+id/fullNameEt"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginBottom="10dp"
android:hint="@string/last_name"
android:hint="Customer Name"
android:textSize="14sp" />

<EditText
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,7 @@
@Parcel
public class RavePayInitializer {
private final ArrayList<Integer> orderedPaymentTypesList = new ArrayList<>();
private boolean isPhoneEditable = true;
String phoneNumber = "";
private boolean saveCardFeatureAllowed = true;
private boolean usePhoneAndEmailSuppliedToSaveCards = true;
String email;
double amount;
String publicKey;
Expand All @@ -26,7 +23,6 @@ public class RavePayInitializer {
String currency;
String country;
String fName;
String lName;
String meta;
String subAccounts;
String payment_plan;
Expand All @@ -38,11 +34,13 @@ public class RavePayInitializer {
boolean isPermanent;
int frequency;
int duration;
private boolean isPhoneEditable = true;
private boolean saveCardFeatureAllowed = true;
private boolean usePhoneAndEmailSuppliedToSaveCards = true;

public RavePayInitializer(String email, double amount, String publicKey,
String encryptionKey, String txRef, String narration,
String currency, String country, String fName,
String lName, int theme, String phoneNumber,
String currency, String country, String fullName, int theme, String phoneNumber,
boolean isPhoneEditable, boolean saveCardFeatureAllowed, boolean usePhoneAndEmailSuppliedToSaveCards,
boolean isPermanent, int duration, int frequency,
boolean staging, String meta, String subAccounts, String payment_plan, boolean isPreAuth,
Expand All @@ -56,7 +54,6 @@ public RavePayInitializer(String email, double amount, String publicKey,
this.currency = currency;
this.country = country;
this.fName = fName;
this.lName = lName;
this.isPermanent = isPermanent;
this.duration = duration;
this.frequency = frequency;
Expand Down Expand Up @@ -96,22 +93,26 @@ public void setMeta(String meta) {
this.meta = meta;
}

public String getSubAccount(){return subAccounts;}
public String getSubAccount() {
return subAccounts;
}

public void setSubAccount(String subAccounts){this.subAccounts=subAccounts;}
public void setSubAccount(String subAccounts) {
this.subAccounts = subAccounts;
}

public boolean isStaging() {
return staging;
}

public ArrayList<Integer> getOrderedPaymentTypesList() {
return orderedPaymentTypesList;
}

public void setStaging(boolean staging) {
this.staging = staging;
}

public ArrayList<Integer> getOrderedPaymentTypesList() {
return orderedPaymentTypesList;
}

public int getTheme() {
return theme;
}
Expand Down Expand Up @@ -201,15 +202,6 @@ public void setPhoneNumber(String phoneNumber) {
this.phoneNumber = phoneNumber;
}


public String getlName() {
return lName;
}

public void setlName(String lName) {
this.lName = lName;
}

public String getPayment_plan() {
return payment_plan;
}
Expand All @@ -222,20 +214,22 @@ public void setPreAuth(boolean isPreAuth) {
this.isPreAuth = isPreAuth;
}

public boolean getIsPreAuth() { return isPreAuth; }
public boolean getIsPreAuth() {
return isPreAuth;
}

public boolean getIsDisplayFee() {
return displayFee;
}

public boolean getIsPhoneEditable() {
return isPhoneEditable;
}

public void setIsDisplayFee(boolean displayFee) {
this.displayFee = displayFee;
}

public boolean getIsPhoneEditable() {
return isPhoneEditable;
}

public boolean getIsPermanent() {
return isPermanent;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,6 @@ public RaveUiManager setCurrency(String currency) {
country = "TZ";
break;
default:
country = "NG";
break;
}
return this;
Expand All @@ -134,16 +133,23 @@ public RaveUiManager setCountry(String country) {
return this;
}

@Deprecated
public RaveUiManager setfName(String fName) {
this.fName = fName;
return this;
}

@Deprecated
public RaveUiManager setlName(String lName) {
this.lName = lName;
return this;
}

public RaveUiManager setFullName(String fullName) {
this.fullName = fullName;
return this;
}

public RaveUiManager setPhoneNumber(String phoneNumber) {
this.phoneNumber = phoneNumber;
return this;
Expand Down Expand Up @@ -256,9 +262,10 @@ public RaveUiManager acceptSaBankPayments(boolean withSaBankAccount) {
return this;
}

public RaveUiManager acceptFrancMobileMoneyPayments(boolean withFrancMobileMoney) {
public RaveUiManager acceptFrancMobileMoneyPayments(boolean withFrancMobileMoney, String country) {
if (!orderedPaymentTypesList.contains(PAYMENT_TYPE_FRANCO_MOBILE_MONEY) && withFrancMobileMoney)
orderedPaymentTypesList.add(PAYMENT_TYPE_FRANCO_MOBILE_MONEY);
this.country = country;
return this;
}

Expand Down Expand Up @@ -348,8 +355,7 @@ private RavePayInitializer createRavePayInitializer() {
getNarration(),
getCurrency(),
getCountry(),
getfName(),
getlName(),
getFullName(),
theme,
getPhoneNumber(),
allowEditPhone,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -202,25 +202,27 @@ public void processTransaction(HashMap<String, ViewObject> dataHashMap, RavePayI
.setCountry(NG)
.setCurrency(NGN)
.setPBFPubKey(ravePayInitializer.getPublicKey())
.setFirstname(ravePayInitializer.getfName())
.setLastname(ravePayInitializer.getlName())
.setFullname(ravePayInitializer.getfName())
.setDevice_fingerprint(deviceIdGetter.getDeviceId())
.setIP(deviceIdGetter.getDeviceId())
.setTxRef(ravePayInitializer.getTxRef())
.setAccountbank(dataHashMap.get(fieldBankCode).getData())
.setMeta(ravePayInitializer.getMeta())
.setSubAccount(ravePayInitializer.getSubAccount())
.setBVN(dataHashMap.get(fieldBVN).getData())
.setIsPreAuth(ravePayInitializer.getIsPreAuth());


if (dataHashMap.get(fieldAccount) != null && dataHashMap.get(fieldAccount).getData() != null) {
builder.setAccountnumber(dataHashMap.get(fieldAccount).getData());
}

if (dataHashMap.get(fieldBVN).getData() != null && !dataHashMap.get(fieldBVN).getData().isEmpty())
builder.setBVN(dataHashMap.get(fieldBVN).getData());

Payload body = builder.createBankPayload();
body.setPasscode(dataHashMap.get(fieldDOB).getData());
body.setPhonenumber(dataHashMap.get(fieldPhone).getData());
String dob = dataHashMap.get(fieldDOB).getData();
if (dob != null && !dob.isEmpty()) body.setPasscode(dob);
body.setPhone_number(dataHashMap.get(fieldPhone).getData());


boolean isInternetBanking = dataHashMap.get(fieldAccount) == null;
Expand Down
Loading