예제 #1
0
        internal static void InvokeNotificationReceived(PagSeguroNotificationEventArgs args)
        {
            var @event = NotificationReceived;

            if (@event != null)
            {
                Delegate[] subscribers = @event.GetInvocationList();
                Execute(subscribers, args);
            }
        }
예제 #2
0
        public void ProcessRequest(HttpContext context)
        {
            var response = context.Response;

            response.ContentType = "text/plain";

            Writeline(response, "Request on Thread: " + Thread.CurrentThread.ManagedThreadId);

            var method = context.Request.HttpMethod;
            var rawUrl = context.Request.RawUrl;

            Writeline(response, method + ":" + rawUrl);

            var action = context.Request.RequestContext.RouteData.GetRequiredString("action");

            Writeline(response, "Action: " + action);

            var ambiente = context.Request.RequestContext.RouteData.GetRequiredString("ambiente");

            Writeline(response, "Ambiente: " + ambiente);

            var notificationCode = context.Request["notificationCode"];
            var transactionId    = context.Request["transaction_id"];

            if (context.Request.HttpMethod.ToLowerInvariant() == "get")
            {
                if (!context.User.IsInRole("admin"))
                {
                    Writeline(response, "Somente admin");
                    response.StatusCode = 403;
                    response.End(); //thread abort ?
                    return;
                }
            }

            var    isProduction = ambiente != "sandbox";
            string environment  = isProduction ? "" : "sandbox";

            switch (action.ToLowerInvariant())
            {
            case "return":
            {
                if (!string.IsNullOrEmpty(notificationCode))
                {
                    var args = new PagSeguroNotificationEventArgs(notificationCode, environment, _write);
                    PagSeguroEvents.InvokeNotificationReceived(args);
                }
                break;
            }

            case "redirecturl":     //nao utilizar
            {
                if (!string.IsNullOrEmpty(transactionId))
                {
                    var args = new PagSeguroTransactionEventArgs(transactionId, environment, _write);
                    PagSeguroEvents.InvokeTransactionReceived(args);
                }
                break;
            }

            default:
            {
                Writeline(response, "Requisição com Action não reconhecida ou não suportada.");
                break;
            }
            }
        }