static void send(C2dmMessage msg, string googleLoginAuthorizationToken, string senderID, string applicationID)
        {
            C2dmMessageTransportResponse result = new C2dmMessageTransportResponse();

            result.Message = msg;

            var postData = msg.GetPostData();

            var webReq = (HttpWebRequest)WebRequest.Create(C2DM_SEND_URL);

            //webReq.ContentLength = postData.Length;
            webReq.Method      = "POST";
            webReq.ContentType = "application/x-www-form-urlencoded";
            webReq.UserAgent   = "C2DM-Sharp (version: 1.0)";
            webReq.Headers.Add("Authorization: GoogleLogin auth=" + googleLoginAuthorizationToken);

            webReq.BeginGetRequestStream(new AsyncCallback(requestStreamCallback), new C2dmAsyncParameters()
            {
                WebRequest      = webReq,
                WebResponse     = null,
                Message         = msg,
                GoogleAuthToken = googleLoginAuthorizationToken,
                SenderId        = senderID,
                ApplicationId   = applicationID
            });
        }
        static void processResponseError(C2dmAsyncParameters asyncParam)
        {
            var result = new C2dmMessageTransportResponse()
            {
                ResponseCode   = MessageTransportResponseCode.Error,
                ResponseStatus = MessageTransportResponseStatus.Error,
                Message        = asyncParam.Message,
                MessageId      = string.Empty
            };

            if (asyncParam.WebResponse.StatusCode == HttpStatusCode.Unauthorized)
            {
                //401 bad auth token
                result.ResponseCode   = MessageTransportResponseCode.InvalidAuthToken;
                result.ResponseStatus = MessageTransportResponseStatus.Error;
                throw new InvalidAuthenticationTokenTransportException(result);
            }
            else if (asyncParam.WebResponse.StatusCode == HttpStatusCode.ServiceUnavailable)
            {
                //First try grabbing the retry-after header and parsing it.
                TimeSpan retryAfter = new TimeSpan(0, 0, 120);

                var wrRetryAfter = asyncParam.WebResponse.GetResponseHeader("Retry-After");

                if (!string.IsNullOrEmpty(wrRetryAfter))
                {
                    DateTime wrRetryAfterDate = DateTime.UtcNow;

                    if (DateTime.TryParse(wrRetryAfter, out wrRetryAfterDate))
                    {
                        retryAfter = wrRetryAfterDate - DateTime.UtcNow;
                    }
                    else
                    {
                        int wrRetryAfterSeconds = 120;
                        if (int.TryParse(wrRetryAfter, out wrRetryAfterSeconds))
                        {
                            retryAfter = new TimeSpan(0, 0, wrRetryAfterSeconds);
                        }
                    }
                }

                //503 exponential backoff, get retry-after header
                result.ResponseCode   = MessageTransportResponseCode.ServiceUnavailable;
                result.ResponseStatus = MessageTransportResponseStatus.Error;

                throw new ServiceUnavailableTransportException(retryAfter, result);
            }

            asyncParam.WebResponse.Close();

            if (MessageResponseReceived != null)
            {
                MessageResponseReceived(result);
            }
        }
        static void processResponseError(C2dmAsyncParameters asyncParam)
        {
            var result = new C2dmMessageTransportResponse()
            {
                ResponseCode = MessageTransportResponseCode.Error,
                ResponseStatus = MessageTransportResponseStatus.Error,
                Message = asyncParam.Message,
                MessageId = string.Empty
            };

            if (asyncParam.WebResponse.StatusCode == HttpStatusCode.Unauthorized)
            {
                //401 bad auth token
                result.ResponseCode = MessageTransportResponseCode.InvalidAuthToken;
                result.ResponseStatus = MessageTransportResponseStatus.Error;
                throw new InvalidAuthenticationTokenTransportException(result);
            }
            else if (asyncParam.WebResponse.StatusCode == HttpStatusCode.ServiceUnavailable)
            {
                //First try grabbing the retry-after header and parsing it.
                TimeSpan retryAfter = new TimeSpan(0, 0, 120);

                var wrRetryAfter = asyncParam.WebResponse.GetResponseHeader("Retry-After");

                if (!string.IsNullOrEmpty(wrRetryAfter))
                {
                    DateTime wrRetryAfterDate = DateTime.UtcNow;

                    if (DateTime.TryParse(wrRetryAfter, out wrRetryAfterDate))
                        retryAfter = wrRetryAfterDate - DateTime.UtcNow;
                    else
                    {
                        int wrRetryAfterSeconds = 120;
                        if (int.TryParse(wrRetryAfter, out wrRetryAfterSeconds))
                            retryAfter = new TimeSpan(0, 0, wrRetryAfterSeconds);
                    }
                }

                //503 exponential backoff, get retry-after header
                result.ResponseCode = MessageTransportResponseCode.ServiceUnavailable;
                result.ResponseStatus = MessageTransportResponseStatus.Error;

                throw new ServiceUnavailableTransportException(retryAfter, result);
            }

            asyncParam.WebResponse.Close();

            if (MessageResponseReceived != null)
                MessageResponseReceived(result);
        }
示例#4
0
        static C2dmMessageTransportResponse send(C2dmMessage msg, string googleLoginAuthorizationToken, string senderID, string applicationID)
        {
            C2dmMessageTransportResponse result = new C2dmMessageTransportResponse();
            result.Message = msg;

            var postData = msg.GetPostData();

            var webReq = (HttpWebRequest)WebRequest.Create(C2DM_SEND_URL);
            //webReq.ContentLength = postData.Length;
            webReq.Method = "POST";
            webReq.ContentType = "application/x-www-form-urlencoded";
            webReq.UserAgent = "C2DM-Sharp (version: 1.0)";
            webReq.Headers.Add("Authorization: GoogleLogin auth=" + googleLoginAuthorizationToken);

            using (var webReqStream = new StreamWriter(webReq.GetRequestStream(), Encoding.ASCII))
            {
                webReqStream.Write(postData);
                webReqStream.Close();
            }

            try
            {
                var webResp = webReq.GetResponse() as HttpWebResponse;

                if (webResp != null)
                {
                    result.ResponseStatus = MessageTransportResponseStatus.Ok;

                    //Check for an updated auth token and store it here if necessary
                    var updateClientAuth = webResp.GetResponseHeader("Update-Client-Auth");
                    if (!string.IsNullOrEmpty(updateClientAuth) && C2dmMessageTransport.UpdateGoogleClientAuthToken != null)
                        UpdateGoogleClientAuthToken(updateClientAuth);

                    //Get the response body
                    var responseBody = "Error=";
                    try { responseBody = (new StreamReader(webResp.GetResponseStream())).ReadToEnd(); }
                    catch { }

                    //Handle the type of error
                    if (responseBody.StartsWith("Error="))
                    {
                        var wrErr = responseBody.Substring(responseBody.IndexOf("Error=") + 6);
                        switch (wrErr.ToLower().Trim())
                        {
                            case "quotaexceeded":
                                result.ResponseStatus = MessageTransportResponseStatus.QuotaExceeded;
                                break;
                            case "devicequotaexceeded":
                                result.ResponseStatus = MessageTransportResponseStatus.DeviceQuotaExceeded;
                                break;
                            case "invalidregistration":
                                result.ResponseStatus = MessageTransportResponseStatus.InvalidRegistration;
                                break;
                            case "notregistered":
                                result.ResponseStatus = MessageTransportResponseStatus.NotRegistered;
                                break;
                            case "messagetoobig":
                                result.ResponseStatus = MessageTransportResponseStatus.MessageTooBig;
                                break;
                            case "missingcollapsekey":
                                result.ResponseStatus = MessageTransportResponseStatus.MissingCollapseKey;
                                break;
                            default:
                                result.ResponseStatus = MessageTransportResponseStatus.Error;
                                break;
                        }

                        throw new MessageTransportException(wrErr, result);
                    }
                    else
                    {
                        //Get the message ID
                        if (responseBody.StartsWith("id="))
                            result.MessageId = responseBody.Substring(3).Trim();
                    }
                }
            }
            catch (WebException webEx)
            {
                var webResp = webEx.Response as HttpWebResponse;

                if (webResp != null)
                {
                    if (webResp.StatusCode == HttpStatusCode.Unauthorized)
                    {
                        //401 bad auth token
                        result.ResponseCode = MessageTransportResponseCode.InvalidAuthToken;
                        result.ResponseStatus = MessageTransportResponseStatus.Error;
                        throw new InvalidAuthenticationTokenTransportException(result);
                    }
                    else if (webResp.StatusCode == HttpStatusCode.ServiceUnavailable)
                    {
                        //First try grabbing the retry-after header and parsing it.
                        TimeSpan retryAfter = new TimeSpan(0, 0, 120);

                        var wrRetryAfter = webResp.GetResponseHeader("Retry-After");

                        if (!string.IsNullOrEmpty(wrRetryAfter))
                        {
                            DateTime wrRetryAfterDate = DateTime.UtcNow;

                            if (DateTime.TryParse(wrRetryAfter, out wrRetryAfterDate))
                                retryAfter = wrRetryAfterDate - DateTime.UtcNow;
                            else
                            {
                                int wrRetryAfterSeconds = 120;
                                if (int.TryParse(wrRetryAfter, out wrRetryAfterSeconds))
                                    retryAfter = new TimeSpan(0,0, wrRetryAfterSeconds);
                            }
                        }

                        //503 exponential backoff, get retry-after header
                        result.ResponseCode = MessageTransportResponseCode.ServiceUnavailable;
                        result.ResponseStatus = MessageTransportResponseStatus.Error;

                        throw new ServiceUnavailableTransportException(retryAfter, result);
                    }
                }
            }

            return result;
        }
示例#5
0
 public ServiceUnavailableTransportException(TimeSpan retryAfter, C2dmMessageTransportResponse response)
     : base("Service Temporarily Unavailable.  Please wait the retryAfter amount and implement an Exponential Backoff", response)
 {
     this.RetryAfter = retryAfter;
 }
示例#6
0
 public MessageTransportException(string message, C2dmMessageTransportResponse response)
     : base(message)
 {
     this.Response = response;
 }
示例#7
0
 public InvalidAuthenticationTokenTransportException(C2dmMessageTransportResponse response)
     : base("Invalid ClientLogin GoogleLogin Authentication Token", response)
 {
 }
        static void processResponseOk(C2dmAsyncParameters asyncParam)
        {
            var result = new C2dmMessageTransportResponse()
            {
                ResponseCode   = MessageTransportResponseCode.Ok,
                ResponseStatus = MessageTransportResponseStatus.Ok,
                Message        = asyncParam.Message,
                MessageId      = string.Empty
            };

            var updateClientAuth = asyncParam.WebResponse.GetResponseHeader("Update-Client-Auth");

            if (!string.IsNullOrEmpty(updateClientAuth) && C2dmMessageTransportAsync.UpdateGoogleClientAuthToken != null)
            {
                UpdateGoogleClientAuthToken(updateClientAuth);
            }

            //Get the response body
            var responseBody = "Error=";

            try { responseBody = (new StreamReader(asyncParam.WebResponse.GetResponseStream())).ReadToEnd(); }
            catch { }

            //Handle the type of error
            if (responseBody.StartsWith("Error="))
            {
                var wrErr = responseBody.Substring(responseBody.IndexOf("Error=") + 6);
                switch (wrErr.ToLower().Trim())
                {
                case "quotaexceeded":
                    result.ResponseStatus = MessageTransportResponseStatus.QuotaExceeded;
                    break;

                case "devicequotaexceeded":
                    result.ResponseStatus = MessageTransportResponseStatus.DeviceQuotaExceeded;
                    break;

                case "invalidregistration":
                    result.ResponseStatus = MessageTransportResponseStatus.InvalidRegistration;
                    break;

                case "notregistered":
                    result.ResponseStatus = MessageTransportResponseStatus.NotRegistered;
                    break;

                case "messagetoobig":
                    result.ResponseStatus = MessageTransportResponseStatus.MessageTooBig;
                    break;

                case "missingcollapsekey":
                    result.ResponseStatus = MessageTransportResponseStatus.MissingCollapseKey;
                    break;

                default:
                    result.ResponseStatus = MessageTransportResponseStatus.Error;
                    break;
                }

                throw new MessageTransportException(wrErr, result);
            }
            else
            {
                //Get the message ID
                if (responseBody.StartsWith("id="))
                {
                    result.MessageId = responseBody.Substring(3).Trim();
                }
            }

            asyncParam.WebResponse.Close();

            if (MessageResponseReceived != null)
            {
                MessageResponseReceived(result);
            }
        }
        static void send(C2dmMessage msg, string googleLoginAuthorizationToken, string senderID, string applicationID)
        {
            C2dmMessageTransportResponse result = new C2dmMessageTransportResponse();
            result.Message = msg;

            var postData = msg.GetPostData();

            var webReq = (HttpWebRequest)WebRequest.Create(C2DM_SEND_URL);
            //webReq.ContentLength = postData.Length;
            webReq.Method = "POST";
            webReq.ContentType = "application/x-www-form-urlencoded";
            webReq.UserAgent = "C2DM-Sharp (version: 1.0)";
            webReq.Headers.Add("Authorization: GoogleLogin auth=" + googleLoginAuthorizationToken);

            webReq.BeginGetRequestStream(new AsyncCallback(requestStreamCallback), new C2dmAsyncParameters()
            {
                WebRequest = webReq,
                WebResponse = null,
                Message = msg,
                GoogleAuthToken = googleLoginAuthorizationToken,
                SenderId = senderID,
                ApplicationId = applicationID
            });
        }
        static void processResponseOk(C2dmAsyncParameters asyncParam)
        {
            var result = new C2dmMessageTransportResponse()
            {
                ResponseCode = MessageTransportResponseCode.Ok,
                ResponseStatus = MessageTransportResponseStatus.Ok,
                Message = asyncParam.Message,
                MessageId = string.Empty
            };

            var updateClientAuth = asyncParam.WebResponse.GetResponseHeader("Update-Client-Auth");

            if (!string.IsNullOrEmpty(updateClientAuth) && C2dmMessageTransportAsync.UpdateGoogleClientAuthToken != null)
                UpdateGoogleClientAuthToken(updateClientAuth);

            //Get the response body
            var responseBody = "Error=";
            try { responseBody = (new StreamReader(asyncParam.WebResponse.GetResponseStream())).ReadToEnd(); }
            catch { }

            //Handle the type of error
            if (responseBody.StartsWith("Error="))
            {
                var wrErr = responseBody.Substring(responseBody.IndexOf("Error=") + 6);
                switch (wrErr.ToLower().Trim())
                {
                    case "quotaexceeded":
                        result.ResponseStatus = MessageTransportResponseStatus.QuotaExceeded;
                        break;
                    case "devicequotaexceeded":
                        result.ResponseStatus = MessageTransportResponseStatus.DeviceQuotaExceeded;
                        break;
                    case "invalidregistration":
                        result.ResponseStatus = MessageTransportResponseStatus.InvalidRegistration;
                        break;
                    case "notregistered":
                        result.ResponseStatus = MessageTransportResponseStatus.NotRegistered;
                        break;
                    case "messagetoobig":
                        result.ResponseStatus = MessageTransportResponseStatus.MessageTooBig;
                        break;
                    case "missingcollapsekey":
                        result.ResponseStatus = MessageTransportResponseStatus.MissingCollapseKey;
                        break;
                    default:
                        result.ResponseStatus = MessageTransportResponseStatus.Error;
                        break;
                }

                throw new MessageTransportException(wrErr, result);
            }
            else
            {
                //Get the message ID
                if (responseBody.StartsWith("id="))
                    result.MessageId = responseBody.Substring(3).Trim();
            }

            asyncParam.WebResponse.Close();

            if (MessageResponseReceived != null)
                MessageResponseReceived(result);
        }
示例#11
0
 public MessageTransportException(string message, C2dmMessageTransportResponse response)
     : base(message)
 {
     this.Response = response;
 }
示例#12
0
 public InvalidAuthenticationTokenTransportException(C2dmMessageTransportResponse response)
     : base("Invalid ClientLogin GoogleLogin Authentication Token", response)
 {
 }
示例#13
0
 public ServiceUnavailableTransportException(TimeSpan retryAfter, C2dmMessageTransportResponse response)
     : base("Service Temporarily Unavailable.  Please wait the retryAfter amount and implement an Exponential Backoff", response)
 {
     this.RetryAfter = retryAfter;
 }
        static C2dmMessageTransportResponse send(C2dmMessage msg, string googleLoginAuthorizationToken, string senderID, string applicationID)
        {
            C2dmMessageTransportResponse result = new C2dmMessageTransportResponse();

            result.Message = msg;

            var postData = msg.GetPostData();

            var webReq = (HttpWebRequest)WebRequest.Create(C2DM_SEND_URL);

            //webReq.ContentLength = postData.Length;
            webReq.Method      = "POST";
            webReq.ContentType = "application/x-www-form-urlencoded";
            webReq.UserAgent   = "C2DM-Sharp (version: 1.0)";
            webReq.Headers.Add("Authorization: GoogleLogin auth=" + googleLoginAuthorizationToken);

            using (var webReqStream = new StreamWriter(webReq.GetRequestStream(), Encoding.ASCII))
            {
                webReqStream.Write(postData);
                webReqStream.Close();
            }

            try
            {
                var webResp = webReq.GetResponse() as HttpWebResponse;

                if (webResp != null)
                {
                    result.ResponseStatus = MessageTransportResponseStatus.Ok;

                    //Check for an updated auth token and store it here if necessary
                    var updateClientAuth = webResp.GetResponseHeader("Update-Client-Auth");
                    if (!string.IsNullOrEmpty(updateClientAuth) && C2dmMessageTransport.UpdateGoogleClientAuthToken != null)
                    {
                        UpdateGoogleClientAuthToken(updateClientAuth);
                    }

                    //Get the response body
                    var responseBody = "Error=";
                    try { responseBody = (new StreamReader(webResp.GetResponseStream())).ReadToEnd(); }
                    catch { }

                    //Handle the type of error
                    if (responseBody.StartsWith("Error="))
                    {
                        var wrErr = responseBody.Substring(responseBody.IndexOf("Error=") + 6);
                        switch (wrErr.ToLower().Trim())
                        {
                        case "quotaexceeded":
                            result.ResponseStatus = MessageTransportResponseStatus.QuotaExceeded;
                            break;

                        case "devicequotaexceeded":
                            result.ResponseStatus = MessageTransportResponseStatus.DeviceQuotaExceeded;
                            break;

                        case "invalidregistration":
                            result.ResponseStatus = MessageTransportResponseStatus.InvalidRegistration;
                            break;

                        case "notregistered":
                            result.ResponseStatus = MessageTransportResponseStatus.NotRegistered;
                            break;

                        case "messagetoobig":
                            result.ResponseStatus = MessageTransportResponseStatus.MessageTooBig;
                            break;

                        case "missingcollapsekey":
                            result.ResponseStatus = MessageTransportResponseStatus.MissingCollapseKey;
                            break;

                        default:
                            result.ResponseStatus = MessageTransportResponseStatus.Error;
                            break;
                        }

                        throw new MessageTransportException(wrErr, result);
                    }
                    else
                    {
                        //Get the message ID
                        if (responseBody.StartsWith("id="))
                        {
                            result.MessageId = responseBody.Substring(3).Trim();
                        }
                    }
                }
            }
            catch (WebException webEx)
            {
                var webResp = webEx.Response as HttpWebResponse;

                if (webResp != null)
                {
                    if (webResp.StatusCode == HttpStatusCode.Unauthorized)
                    {
                        //401 bad auth token
                        result.ResponseCode   = MessageTransportResponseCode.InvalidAuthToken;
                        result.ResponseStatus = MessageTransportResponseStatus.Error;
                        throw new InvalidAuthenticationTokenTransportException(result);
                    }
                    else if (webResp.StatusCode == HttpStatusCode.ServiceUnavailable)
                    {
                        //First try grabbing the retry-after header and parsing it.
                        TimeSpan retryAfter = new TimeSpan(0, 0, 120);

                        var wrRetryAfter = webResp.GetResponseHeader("Retry-After");

                        if (!string.IsNullOrEmpty(wrRetryAfter))
                        {
                            DateTime wrRetryAfterDate = DateTime.UtcNow;

                            if (DateTime.TryParse(wrRetryAfter, out wrRetryAfterDate))
                            {
                                retryAfter = wrRetryAfterDate - DateTime.UtcNow;
                            }
                            else
                            {
                                int wrRetryAfterSeconds = 120;
                                if (int.TryParse(wrRetryAfter, out wrRetryAfterSeconds))
                                {
                                    retryAfter = new TimeSpan(0, 0, wrRetryAfterSeconds);
                                }
                            }
                        }

                        //503 exponential backoff, get retry-after header
                        result.ResponseCode   = MessageTransportResponseCode.ServiceUnavailable;
                        result.ResponseStatus = MessageTransportResponseStatus.Error;

                        throw new ServiceUnavailableTransportException(retryAfter, result);
                    }
                }
            }

            return(result);
        }