Exemplo n.º 1
0
        public async Task <TransactionDetailsResult> GetTransactionDetails(int transactionNumber)
        {
            // Validation
            if (transactionNumber <= 0)
            {
                throw new ArgumentOutOfRangeException(nameof(transactionNumber), "transactionNumber is required");
            }

            // Build string for md5 including all fields except empty strings
            var hashInput = new StringBuilder();

            hashInput.Append(Account.AccountNumber);
            hashInput.Append(transactionNumber);
            // Add encryption key at the end of string to be hashed
            hashInput.Append(Account.EncryptionKey);
            // Create a hash string from the parameters
            string hash;

            MD5Hash.Hash(hashInput.ToString(), out hash);

            // Invoke Initialize method on external PayEx PxOrder web service
            var payexOrder = GetPxOrderClient();
            var xmlReturn  = await payexOrder.GetTransactionDetails2Async(
                Account.AccountNumber, transactionNumber, hash);

            // Parse the result and retrieve code-node to figure out if the service method was invoked successfully.
            var result = ResultParser.ParseTransactionDetailsResult(xmlReturn);

            return(result);
        }
Exemplo n.º 2
0
        protected override void _Init()
        {
            // 读取存储数据
            InitFilePath();
            LoadLoginData();
            LoadRegionData();

            clientId = SystemInfo.deviceUniqueIdentifier;
            Debug.Log("client=" + clientId);

            clientId = MD5Hash.Hash(Encoding.UTF8.GetBytes(clientId));
            Debug.Log("client=" + clientId);

            loginUI.Init();
            loginUI.callbackLogin = OnLoginInput;

            regionList.AddCallbackChangePage(OnRegionChangePage);
            regionList.AddCallbackClick(OnClickRegion);

            regionList.Init();

            GameObject obj = Instantiate(loadingPrefab) as GameObject;

            obj.transform.SetParent(this.transform);
            obj.transform.localPosition = new Vector3(0, 0, 2);
            obj.transform.localRotation = Quaternion.identity;
            loadingUI = obj.GetComponent <LoadingUI>();
            loadingUI.Init();


#if UNITY_EDITOR || UNITY_STANDALONE_WIN
            ServicePointManager.ServerCertificateValidationCallback = (a, b, c, d) => true;
#endif
        }
Exemplo n.º 3
0
        public string GetUrl(string method, Dictionary <string, string> p)
        {
            string url = "https://openapi.mogujie.com/invoke";

            p.Add("app_key", Config.AppKey);
            p.Add("method", method);
            p.Add("access_token", Token.AccessToken);
            p.Add("format", "json");
            p.Add("timestamp", DateTime.Now.Ticks.ToString());

            System.Text.StringBuilder strP = new System.Text.StringBuilder(Config.AppSecret);
            //这个大写的字母开头的参数放在最前面
            if (p.Any(s => s.Key == "CpsChannelGroupParam"))
            {
                var pEx = p["CpsChannelGroupParam"];
                strP.Append($"CpsChannelGroupParam{pEx}");
            }

            foreach (var item in p.OrderBy(s => s.Key))
            {
                if (item.Key != "CpsChannelGroupParam")
                {
                    strP.Append($"{item.Key}{item.Value}");
                }
            }


            strP.Append(Config.AppSecret);
            p.Add("sign", MD5Hash.Hash(strP.ToString()).ToUpper());
            return(url + p.ToParam("?"));
        }
Exemplo n.º 4
0
        /// <summary>
        /// When the user is returned after performing/cancelling an order, the status of the transaction is not returned in the
        /// querystring.
        /// Thus the merchant needs to call the Completes method to retrieve the transaction status.
        /// It is important to notice that this function can only be used in combination with Initialize.
        /// If you at a later time want to get the transaction status you will need to call the Check function.
        /// Complete may only be called once for each transaction.
        /// Note: You have to check both errorCode and transactionStatus to be sure the transaction was successful.
        /// You need to save transactionRef and optionally transactionNumber as a reference to the transaction.
        /// The orderRef used during initialize and purchase is deleted upon completion of the transaction.
        /// Returns a boolean indicating if the request was successful.
        /// </summary>
        /// <param name="orderRef"></param>
        /// <returns>A boolean indicating if the result was transferred without errors. See also TransactionComplete.</returns>
        public async Task <CompleteResult> Complete(string orderRef)
        {
            // Validation
            if (string.IsNullOrEmpty(orderRef))
            {
                throw new ArgumentNullException(nameof(orderRef), "orderRef is required");
            }

            // Build string for md5 including all fields except empty strings and description field
            var hashInput = new StringBuilder();

            hashInput.Append(Account.AccountNumber);
            hashInput.Append(orderRef);
            // Add encryption key at the end of string to be hashed
            hashInput.Append(Account.EncryptionKey);
            // Make hash
            string hash;

            MD5Hash.Hash(hashInput.ToString(), out hash);

            // Call web service
            var payexOrder = GetPxOrderClient();
            var xmlReturn  = await payexOrder.CompleteAsync(Account.AccountNumber, orderRef, hash);

            // Parse the result
            var result = ResultParser.ParseCompleteResult(xmlReturn);

            return(result);
        }
Exemplo n.º 5
0
        /// <summary>
        /// 初始化
        /// </summary>
        protected override void _Init()
        {
            clientId = SystemInfo.deviceUniqueIdentifier;
            Debug.Log("client=" + clientId);

            clientId = MD5Hash.Hash(Encoding.UTF8.GetBytes(clientId));
            Debug.Log("client=" + clientId);

            enterRoomResult = EnterRoomResult.Waiting;
        }
Exemplo n.º 6
0
        /// <summary>
        /// Credit a transaction after a completed purchase.
        /// The credit functionality can behave differently based on the payment instrument and/or if the financial institution
        /// accepts credit instructions (not all do). Also note that some financial institutions don’t support partial credit
        /// before 24 hours have past. Please contact PayEx Support for more information.
        /// </summary>
        /// <param name="transactionNumber">The transactionNumber of the transaction you wish to credit.</param>
        /// <param name="amount">The amount you wish to credit.</param>
        /// <param name="orderID">
        /// Order Id that will be presented in PayEx report. This value have to be numeric if merchant have
        /// chosen to send orderId to the aquiring institution.
        /// </param>
        public async Task <CreditResult> Credit(int transactionNumber, decimal amount, string orderID)
        {
            // Validation
            if (transactionNumber <= 0)
            {
                throw new ArgumentOutOfRangeException(nameof(transactionNumber), "transactionNumber is required");
            }
            if (amount <= decimal.Zero)
            {
                throw new ArgumentOutOfRangeException(nameof(amount), "amount must be non-zero.");
            }

            // Null not allowed
            orderID = orderID ?? string.Empty;
            var convAmount       = amount.ToPayEx();
            var vatAmount        = 0;
            var additionalValues = string.Empty;

            // Build string for md5 including all fields except empty strings
            var hashInput = new StringBuilder();

            hashInput.Append(Account.AccountNumber);
            hashInput.Append(transactionNumber);
            hashInput.Append(convAmount);
            hashInput.Append(orderID);
            hashInput.Append(vatAmount);
            hashInput.Append(additionalValues);
            // Add encryption key at the end of string to be hashed
            hashInput.Append(Account.EncryptionKey);
            // Create a hash string from the parameters
            string hash;

            MD5Hash.Hash(hashInput.ToString(), out hash);

            // Invoke Initialize method on external PayEx PxOrder web service
            var payexOrder = GetPxOrderClient();
            var xmlReturn  = await payexOrder.Credit5Async(
                Account.AccountNumber,
                transactionNumber,
                convAmount,
                orderID,
                vatAmount,
                additionalValues,
                hash);

            // Parse the result and retrieve code-node to figure out if the service method was invoked successfully.
            var result = ResultParser.ParseCreditResult(xmlReturn);

            return(result);
        }
Exemplo n.º 7
0
        /// <summary>
        /// Creates a new agreement between the merchant and the client. Before any AutoPay transactions can take place the client
        /// has to complete a purchase with the agreement reference. The agreement will be set to verified when this is done.
        /// Documentation: http://www.payexpim.com/technical-reference/pxagreement/createagreement3/
        /// </summary>
        /// <param name="request">The parameters to the CreateAgreement request</param>
        public async Task <CreateAgreementResult> CreateAgreement(CreateAgreementRequest request)
        {
            // Validation
            if (request == null)
            {
                throw new ArgumentNullException(nameof(request), "request is required");
            }

            var notifyUrl = string.Empty; // Deprecated, leave blank

            // Build string for md5 including all fields except empty strings and description field
            var hashInput = new StringBuilder();

            hashInput.Append(Account.AccountNumber);
            hashInput.Append(request.MerchantRef);
            hashInput.Append(request.Description);
            hashInput.Append(request.PurchaseOperation.ToPayEx());
            hashInput.Append(request.MaxAmount.ToPayEx());
            hashInput.Append(notifyUrl);
            hashInput.Append(request.StartDate.ToPayEx());
            hashInput.Append(request.StopDate.ToPayEx());
            // Add encryption key at the end of string to be hashed
            hashInput.Append(Account.EncryptionKey);
            // Create a hash string from the parameters
            string hash;

            MD5Hash.Hash(hashInput.ToString(), out hash);

            // Invoke Initialize method on external PayEx PxOrder web service
            var payexAgreement = GetPxAgreementClient();
            var xmlReturn      = await payexAgreement.CreateAgreement3Async(
                Account.AccountNumber,
                request.MerchantRef ?? "",
                request.Description ?? "",
                request.PurchaseOperation.ToPayEx(),
                request.MaxAmount.ToPayEx(),
                notifyUrl,
                request.StartDate.ToPayEx(),
                request.StopDate.ToPayEx(),
                hash);

            // Parse the result
            var result = ResultParser.ParseCreateAgreementResult(xmlReturn);

            return(result);
        }
Exemplo n.º 8
0
        /// <summary>
        /// Makes a transaction when there exist a verified agreement between the client and the merchant.
        /// In case of payment failure: Please use a minimum of 30 minutes delay between the first try and the second. If the
        /// transaction still fails, please wait a couple of hours before the next try. After a total period of 8 hours, you should
        /// stop trying to charge the customer.
        /// Documentation: http://www.payexpim.com/technical-reference/pxagreement/autopay/
        /// </summary>
        /// <param name="request">The parameters to the AutoPay request</param>
        public async Task <AutoPayResult> AutoPay(AutoPayRequest request)
        {
            // Validation
            if (request == null)
            {
                throw new ArgumentNullException(nameof(request), "request is required");
            }

            // Build string for md5 including all fields except empty strings and description field
            var hashInput = new StringBuilder();

            hashInput.Append(Account.AccountNumber);
            hashInput.Append(request.AgreementRef);
            hashInput.Append(request.Amount.ToPayEx());
            hashInput.Append(request.ProductNumber);
            hashInput.Append(request.Description);
            hashInput.Append(request.OrderID);
            hashInput.Append(request.PurchaseOperation.ToPayEx());
            hashInput.Append(request.CurrencyCode);
            // Add encryption key at the end of string to be hashed
            hashInput.Append(Account.EncryptionKey);
            // Create a hash string from the parameters
            string hash;

            MD5Hash.Hash(hashInput.ToString(), out hash);

            // Invoke Initialize method on external PayEx PxOrder web service
            var payexAgreement = GetPxAgreementClient();
            var xmlReturn      = await payexAgreement.AutoPay3Async(
                Account.AccountNumber,
                request.AgreementRef ?? "",
                request.Amount.ToPayEx(),
                request.ProductNumber ?? "",
                request.Description ?? "",
                request.OrderID ?? "",
                request.PurchaseOperation.ToPayEx(),
                request.CurrencyCode ?? "",
                hash);

            // Parse the result
            var result = ResultParser.ParseAutoPayResult(xmlReturn);

            return(result);
        }
Exemplo n.º 9
0
        /// <summary>
        /// This method deletes an existing agreement between a customer and a merchant with given agreementRef.
        /// All recurring agreements connected to the agreementRef will also be deleted.
        /// </summary>
        /// <param name="request">Ref to an agreement that will be deleted.</param>
        public async Task <DeleteAgreementResult> DeleteAgreement(string agreementRef)
        {
            // Build string for md5 including all fields except empty strings and description field
            var hashInput = new StringBuilder();

            hashInput.Append(Account.AccountNumber);
            hashInput.Append(agreementRef);
            // Add encryption key at the end of string to be hashed
            hashInput.Append(Account.EncryptionKey);
            // Create a hash string from the parameters
            string hash;

            MD5Hash.Hash(hashInput.ToString(), out hash);

            // Invoke Initialize method on external PayEx PxOrder web service
            var payexAgreement = GetPxAgreementClient();
            var xmlReturn      = await payexAgreement.DeleteAgreementAsync(Account.AccountNumber, agreementRef, hash);

            // Parse the result
            var result = ResultParser.ParseDeleteAgreementResult(xmlReturn);

            return(result);
        }
Exemplo n.º 10
0
        /// <summary>
        /// This will allow merchants to do add multiple orderlines to a PayEx transaction.
        /// Run this method for every order line you want to add to the order. It is run after initialize since you need the
        /// orderRef to reference the order lines to.
        /// </summary>
        public async Task <BaseResult> AddSingleOrderLine(AddSingleOrderLineRequest request)
        {
            // Validation
            if (request == null)
            {
                throw new ArgumentNullException(nameof(request), "request is required");
            }
            if (string.IsNullOrEmpty(request.OrderRef))
            {
                throw new ArgumentNullException("OrderRef", "OrderRef is required");
            }
            if (string.IsNullOrEmpty(request.ItemNumber))
            {
                throw new ArgumentNullException("ItemNumber", "ItemNumber is required");
            }
            if (string.IsNullOrEmpty(request.ItemDescription1))
            {
                throw new ArgumentNullException("ItemDescription1", "ItemDescription1 is required");
            }
            //if (request.Quantity <= 0)
            //    throw new ArgumentOutOfRangeException("Quantity", "Quantity must be positive.");
            //if (request.Amount < 0)
            //    throw new ArgumentOutOfRangeException("Amount", "Amount must be positive.");

            var convAmount = request.Amount.ToPayEx();
            var vatPrice   = request.VatAmount.ToPayEx();
            var vatPercent = request.VatPercent.ToPayEx();

            // Build string for md5 hash
            var hashInput = new StringBuilder();

            hashInput.Append(Account.AccountNumber);
            hashInput.Append(request.OrderRef);
            hashInput.Append(request.ItemNumber);
            hashInput.Append(request.ItemDescription1);
            hashInput.Append(request.ItemDescription2);
            hashInput.Append(request.ItemDescription3);
            hashInput.Append(request.ItemDescription4);
            hashInput.Append(request.ItemDescription5);
            hashInput.Append(request.Quantity);
            hashInput.Append(convAmount);
            hashInput.Append(vatPrice);
            hashInput.Append(vatPercent);
            // Add encryption key at the end of string to be hashed
            hashInput.Append(Account.EncryptionKey);
            // Create a hash string from the parameters
            string hash;

            MD5Hash.Hash(hashInput.ToString(), out hash);

            // Invoke Initialize method on external PayEx PxOrder web service
            var payexOrder = GetPxOrderClient();
            var xmlReturn  = await payexOrder.AddSingleOrderLine2Async(
                Account.AccountNumber, request.OrderRef, request.ItemNumber,
                request.ItemDescription1,
                request.ItemDescription2 ?? "",
                request.ItemDescription3 ?? "",
                request.ItemDescription4 ?? "",
                request.ItemDescription5 ?? "",
                request.Quantity, convAmount, vatPrice, vatPercent, hash);

            // Parse the result
            var result = ResultParser.ParseBaseResult(xmlReturn);

            return(result);
        }
Exemplo n.º 11
0
        /// <summary>
        /// The Initialize method call is the backbone of the credit card implementation and all other payment methods. This method
        /// is used for setting up the transaction, specifying the price of the transaction and the purchase operation.<br />
        /// Initialize is used to supply PayEx with all the necessary data to initialize an order. Upon the successful
        /// initialization of an order, a reference (orderRef) is returned to the merchant. The merchant may then redirect the user
        /// or alternatively call one of the server to server methods.
        /// Documentation: http://www.payexpim.com/technical-reference/pxorder/initialize8/
        /// </summary>
        /// <param name="request">The parameters to the Initialize request</param>
        public async Task <InitializeResult> Initialize(InitializeRequest request)
        {
            // Validation
            if (request == null)
            {
                throw new ArgumentNullException(nameof(request), "request is required");
            }
            if (string.IsNullOrEmpty(request.OrderID))
            {
                throw new ArgumentNullException("OrderID", "OrderID is required");
            }
            if (string.IsNullOrEmpty(request.CurrencyCode))
            {
                throw new ArgumentNullException("CurrencyCode", "CurrencyCode is required");
            }
            if (request.Amount <= 0)
            {
                throw new ArgumentOutOfRangeException("Price", "Price must be non-zero.");
            }

            var clientIdentifier = "USERAGENT=" + (request.UserAgent ?? string.Empty);

            var additionalValues = "RESPONSIVE=1";

            if (!string.IsNullOrWhiteSpace(request.MobilePhoneNumber))
            {
                additionalValues += $"&MSISDN={Regex.Replace(request.MobilePhoneNumber, @"\D", "")}";
            }

            var convPrice    = request.Amount.ToPayEx();
            var priceArgList = string.Empty;
            // string.Format("VISA={0},MC={0},AMEX={0},FSPA={0},NB={0},SHB={0},SEB={0},SWISH={0}", convPrice);
            long usedPrice  = convPrice;
            var  vat        = request.VatPercent.ToPayEx(); // Percent * 100
            var  externalID = string.Empty;
            var  view       = request.View ?? "CREDITCARD"; // Default payment method.

            // Build string for md5 including all fields except empty strings and description field
            var hashInput = new StringBuilder();

            hashInput.Append(Account.AccountNumber);
            hashInput.Append(request.PurchaseOperation.ToPayEx());
            hashInput.Append(usedPrice);
            hashInput.Append(priceArgList);
            hashInput.Append(request.CurrencyCode);
            hashInput.Append(vat);
            hashInput.Append(request.OrderID);
            hashInput.Append(request.ProductNumber);
            hashInput.Append(request.Description);
            hashInput.Append(request.ClientIPAddress);
            hashInput.Append(clientIdentifier);
            hashInput.Append(additionalValues);
            hashInput.Append(externalID);
            hashInput.Append(request.ReturnURL);
            hashInput.Append(view);
            hashInput.Append(request.AgreementRef);
            hashInput.Append(request.CancelUrl);
            hashInput.Append(request.ClientLanguage);
            // Add encryption key at the end of string to be hashed
            hashInput.Append(Account.EncryptionKey);
            // Create a hash string from the parameters
            string hash;

            MD5Hash.Hash(hashInput.ToString(), out hash);

            // Invoke Initialize method on external PayEx PxOrder web service
            var payexOrder = GetPxOrderClient();
            var xmlReturn  = await payexOrder.Initialize8Async(
                Account.AccountNumber,
                request.PurchaseOperation.ToPayEx(),
                usedPrice,
                priceArgList,
                request.CurrencyCode,
                vat,
                request.OrderID,
                request.ProductNumber ?? "",
                request.Description ?? "",
                request.ClientIPAddress ?? "",
                clientIdentifier,
                additionalValues,
                externalID,
                request.ReturnURL ?? "",
                view,
                request.AgreementRef ?? "",
                request.CancelUrl ?? "",
                request.ClientLanguage ?? "",
                hash);

            // Parse the result
            var result = ResultParser.ParseInitializeResult(xmlReturn);

            return(result);
        }