using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
using NopSolutions.NopCommerce.BusinessLogic;
using NopSolutions.NopCommerce.BusinessLogic.Orders;
using NopSolutions.NopCommerce.BusinessLogic.SEO;
using NopSolutions.NopCommerce.Common.Utils;
using NopSolutions.NopCommerce.Payment.Methods.PayPoint;
namespace NopSolutions.NopCommerce.Web{
public partial class PayPointHostedPaymentReturn : BaseNopPage
{
protected void Page_Load(object sender, EventArgs e)
{
if(NopContext.Current.User == null)
{
string loginURL = SEOHelper.GetLoginPageUrl(true);
Response.Redirect(loginURL);
}
CommonHelper.SetResponseNoCache(Response);
if(!Page.IsPostBack)
{
if(!PayPointHelper.ValidateResponseSign(Request.Url))
{
Response.Redirect(CommonHelper.GetStoreLocation());
}
if(!CommonHelper.QueryStringBool("valid"))
{
Response.Redirect(CommonHelper.GetStoreLocation());
}
int orderId = CommonHelper.QueryStringInt("trans_id");
Order order = OrderManager.GetOrderById(orderId);
if(order == null)
{
Response.Redirect(CommonHelper.GetStoreLocation());
}
if(NopContext.Current.User.CustomerId != order.CustomerId)
{
Response.Redirect(CommonHelper.GetStoreLocation());
}
if (OrderManager.CanMarkOrderAsPaid(order))
{
OrderManager.MarkOrderAsPaid(order.OrderId);
}
Response.Redirect("~/checkoutcompleted.aspx");
}
}
public override bool AllowGuestNavigation
{
get
{
return true;
}
}
}
}
|