All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.hps.integrator.entities.credit.HpsCreditCard Maven / Gradle / Ivy

Go to download

The SecureSubmit Java SDK simplifies processing of credit card transactions using Heartland Payment Systems' Portico Payment Gateway

There is a newer version: v2.5.2
Show newest version
package com.hps.integrator.entities.credit;

import com.hps.integrator.entities.HpsEncryptionData;

import java.util.HashMap;
import java.util.Map;
import java.util.Map.Entry;
import java.util.regex.Pattern;

public class HpsCreditCard {
	
	private static final Pattern AmexRegex = Pattern.compile("^3[47][0-9]{13}$");
	private static final Pattern MasterCardRegex = Pattern.compile("^5[1-5][0-9]{14}$");
	private static final Pattern VisaRegex = Pattern.compile("^4[0-9]{12}(?:[0-9]{3})?$");
	private static final Pattern DinersClubRegex = Pattern.compile("^3(?:0[0-5]|[68][0-9])[0-9]{11}$");
	private static final Pattern RouteClubRegex = Pattern.compile("^(2014|2149)");
	private static final Pattern DiscoverRegex = Pattern.compile("^6(?:011|5[0-9]{2})[0-9]{12}$");
	
	// TODO: Verify this regex works, had to escape characters
	private static final Pattern JcbRegex = Pattern.compile("^(?:2131|1800|35\\d{3})\\d{11}$");
	
	private Map regexMap;
	private String number;
	private String cvv;
	private Integer expMonth;
	private Integer expYear;
    private HpsEncryptionData encryptionData;
	
	public HpsCreditCard()
	{
		regexMap = new HashMap();
		regexMap.put("Amex", AmexRegex);
		regexMap.put("MasterCard", MasterCardRegex);
		regexMap.put("Visa", VisaRegex);
		regexMap.put("DinersClub", DinersClubRegex);
		regexMap.put("EnRoute", RouteClubRegex);
		regexMap.put("Discover", DiscoverRegex);
		regexMap.put("Jcb", JcbRegex);
	}
	
	public String getNumber() {
		return number;
	}
	
	public void setNumber(String number) {
		this.number = number;
	}
	
	public String getCvv() {
		return cvv;
	}
	
	public void setCvv(String cvv) {
		this.cvv = cvv;
	}
	
	public Integer getExpMonth() {
		return expMonth;
	}
	
	public void setExpMonth(Integer expMonth) {
		this.expMonth = expMonth;
	}
	
	public Integer getExpYear() {
		return expYear;
	}
	
	public void setExpYear(Integer expYear) {
		this.expYear = expYear;
	}

    public HpsEncryptionData getEncryptionData() {
        return encryptionData;
    }

    public void setEncryptionData(HpsEncryptionData encryptionData) {
        this.encryptionData = encryptionData;
    }

    public String getCardType() {
		String cardType = "Unknown";
		
		try {
			String cardNum = number.replace(" ", "").replace("-", "");
            for (Entry kvp : regexMap.entrySet()) {
                if (kvp.getValue().matcher(cardNum).find()) {
                    cardType = kvp.getKey();
                    break;
                }
            }
			
		} catch (Exception e) {
            cardType = "Unknown";
		}
		
		return cardType;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy