protected override void ApplyPromoCouponeCode(XsollaForm pForm) { Logger.Log("Apply promo recieved"); PromoCodeController promoController = mainScreenContainer.GetComponentInChildren <PromoCodeController>(); if (pForm.GetError() != null) { if (pForm.GetError().elementName == XsollaApiConst.COUPON_CODE) { promoController.SetError(pForm.GetError()); return; } return; } RightTowerController controller = mainScreenContainer.GetComponentInChildren <RightTowerController>(); // update rigth tower info, if we get rigth tower controller if (controller != null) { controller.UpdateDiscont(Utils.GetTranslations(), pForm.GetSummary()); } // update total amount on payment form total PaymentFormController paymentController = mainScreenContainer.GetComponentInChildren <PaymentFormController>(); if (paymentController != null) { Text[] footerTexts = paymentController.layout.objects[paymentController.layout.objects.Count - 1].gameObject.GetComponentsInChildren <Text> (); footerTexts[1].text = Utils.GetTranslations().Get(XsollaTranslations.TOTAL) + " " + pForm.GetSumTotal(); } promoController.ApplySuccessful(); }
public new void OnFormReceived(XsollaForm form) { XsollaForm.CurrentCommand command = form.GetCurrentCommand(); switch (command) { case XsollaForm.CurrentCommand.FORM: XsollaError error = form.GetError(); if (!form.IsValidPaymentSystem()) { OnErrorReceived(XsollaError.GetUnsuportedError()); } else if (error == null) { form.UpdateElement(XsollaApiConst.CARD_NUMBER, _cardNumber); form.UpdateElement(XsollaApiConst.CARD_EXP_YEAR, _cardExpYear); form.UpdateElement(XsollaApiConst.CARD_EXP_MONTH, _cardExpMonth); form.UpdateElement(XsollaApiConst.CARD_CVV, _cardCvv); form.UpdateElement(XsollaApiConst.CARD_ZIP, _cardZip); form.UpdateElement(XsollaApiConst.CARD_HOLDER, _cardHolder); NextStep(form.GetXpsMap()); } else { OnErrorReceived(error); } break; case XsollaForm.CurrentCommand.CHECK: if (form.GetItem(XsollaApiConst.CARD_ZIP) != null) { form.UpdateElement(XsollaApiConst.CARD_ZIP, _cardZip); NextStep(form.GetXpsMap()); } else { OnNextStepRecieved(form); } break; case XsollaForm.CurrentCommand.ACCOUNT: case XsollaForm.CurrentCommand.STATUS: case XsollaForm.CurrentCommand.CREATE: default: break; } }
public new void OnFormReceived(XsollaForm form) { XsollaForm.CurrentCommand command = form.GetCurrentCommand (); switch (command) { case XsollaForm.CurrentCommand.FORM: XsollaError error = form.GetError(); if (!form.IsValidPaymentSystem ()) { OnErrorReceived (XsollaError.GetUnsuportedError ()); } else if (error == null) { form.UpdateElement (XsollaApiConst.CARD_NUMBER, _cardNumber); form.UpdateElement (XsollaApiConst.CARD_EXP_YEAR, _cardExpYear); form.UpdateElement (XsollaApiConst.CARD_EXP_MONTH, _cardExpMonth); form.UpdateElement (XsollaApiConst.CARD_CVV, _cardCvv); form.UpdateElement (XsollaApiConst.CARD_ZIP, _cardZip); form.UpdateElement (XsollaApiConst.CARD_HOLDER, _cardHolder); NextStep (form.GetXpsMap()); } else { OnErrorReceived (error); } break; case XsollaForm.CurrentCommand.CHECK: if(form.GetItem(XsollaApiConst.CARD_ZIP) != null) { form.UpdateElement (XsollaApiConst.CARD_ZIP, _cardZip); NextStep (form.GetXpsMap()); } else { OnNextStepRecieved(form); } break; case XsollaForm.CurrentCommand.ACCOUNT: case XsollaForm.CurrentCommand.STATUS: case XsollaForm.CurrentCommand.CREATE: default: break; } }
public void InitView(XsollaTranslations pTranslations, XsollaForm form) { _form = form; // if have skipCheckout and this checkout form if ((form.GetCurrentCommand() == XsollaForm.CurrentCommand.CHECKOUT) && form.GetSkipChekout()) { string checkoutToken = _form.GetCheckoutToken(); bool isLinkRequired = checkoutToken != null && !"".Equals(checkoutToken) && !"null".Equals(checkoutToken) && !"false".Equals(checkoutToken); if (isLinkRequired) { OnClickPay(isLinkRequired); return; } } string pattern = "{{.*?}}"; Regex regex = new Regex(pattern); string title = regex.Replace(pTranslations.Get(XsollaTranslations.PAYMENT_PAGE_TITLE_VIA), form.GetTitle(), 1); layout.AddObject(GetTitle(title)); layout.AddObject(GetError(form.GetError())); layout.AddObject(GetInfo(form.GetMessage())); if (form.GetVisible().Count > 0) { GameObject formView = GetFormView(form, pTranslations); layout.AddObject(formView); } if (form.GetAccountXsolla() != null && !"".Equals(form.GetAccountXsolla()) && !"null".Equals(form.GetAccountXsolla())) { layout.AddObject(GetTwoTextPlate("Xsolla number", form.GetAccountXsolla())); } if (form.GetAccount() != null && !"".Equals(form.GetAccount()) && !"null".Equals(form.GetAccount())) { layout.AddObject(GetTwoTextPlate("2pay number", form.GetAccount())); } if (form.IsValidPaymentSystem()) { layout.AddObject(GetTextPlate(pTranslations.Get(XsollaTranslations.FORM_CC_EULA))); } GameObject footerInstance = Instantiate(footer); Text[] footerTexts = footerInstance.GetComponentsInChildren <Text> (); // footerTexts [0].text = "back";//back string nextStep = form.GetNextStepString(); footerTexts [2].text = nextStep; //translations.Get (XsollaTranslations.FORM_CONTINUE);//pay now Button[] footerButtons = footerInstance.GetComponentsInChildren <Button> (); if (OnClickBack != null) { footerButtons [0].onClick.AddListener(() => { OnBack(); }); } else { footerButtons [0].gameObject.SetActive(false); } if (form.GetCurrentCommand() == XsollaForm.CurrentCommand.ACCOUNT || form.GetCurrentCommand() == XsollaForm.CurrentCommand.CREATE || form.GetCurrentCommand() == XsollaForm.CurrentCommand.CHECKOUT) // { footerTexts [1].text = ""; //total RectTransform buttonRect = footerButtons [1].GetComponent <RectTransform>(); Vector2 vecMin = buttonRect.anchorMin; vecMin.x = vecMin.x - (buttonRect.anchorMax.x - vecMin.x) / 2; buttonRect.anchorMin = vecMin; } else { footerTexts [1].text = pTranslations.Get(XsollaTranslations.TOTAL) + " " + form.GetSumTotal(); //total } layout.AddObject(footerInstance); layout.Invalidate(); if (!"".Equals(nextStep) && form.GetCurrentCommand() != XsollaForm.CurrentCommand.ACCOUNT) { string checkoutToken = _form.GetCheckoutToken(); bool isLinkRequired = checkoutToken != null && !"".Equals(checkoutToken) && !"null".Equals(checkoutToken) && !"false".Equals(checkoutToken); string link = "https://secure.xsolla.com/pages/checkout/?token=" + _form.GetCheckoutToken(); if (isLinkRequired && Application.platform == RuntimePlatform.WebGLPlayer) { RectTransform buttonRect = footerButtons [1].GetComponent <RectTransform>(); int width = (int)(buttonRect.rect.xMax - buttonRect.rect.xMin); int height = (int)(buttonRect.rect.yMax - buttonRect.rect.yMin); height = height * 8; Vector3[] vec = new Vector3[4]; buttonRect.GetWorldCorners(vec); int xPos = (int)vec[0].x; int yPos = (int)vec[0].y; yPos = yPos / 2; CreateLinkButtonWebGl(xPos, yPos, width, height, link, "CardPaymeentForm", "Next"); footerButtons [1].onClick.AddListener(() => { OnClickPay(false); }); } else { footerButtons [1].onClick.AddListener(() => { OnClickPay(isLinkRequired); }); } } else { footerButtons [1].gameObject.SetActive(false); } }
protected override void ApplyPromoCouponeCode(XsollaForm pForm) { Logger.Log("Apply promo recieved"); PromoCodeController promoController = mainScreenContainer.GetComponentInChildren<PromoCodeController>(); if (pForm.GetError() != null) { if (pForm.GetError().elementName == XsollaApiConst.COUPON_CODE) { promoController.SetError(pForm.GetError()); return; } return; } RightTowerController controller = mainScreenContainer.GetComponentInChildren<RightTowerController>(); // update rigth tower info, if we get rigth tower controller if (controller != null) controller.UpdateDiscont(Utils.GetTranslations(),pForm.GetSummary()); // update total amount on payment form total PaymentFormController paymentController = mainScreenContainer.GetComponentInChildren<PaymentFormController>(); if (paymentController != null) { Text[] footerTexts = paymentController.layout.objects[paymentController.layout.objects.Count - 1].gameObject.GetComponentsInChildren<Text> (); footerTexts[1].text = Utils.GetTranslations().Get(XsollaTranslations.TOTAL) + " " + pForm.GetSumTotal (); } promoController.ApplySuccessful(); }