コード例 #1
0
        public async Task <IHttpActionResult> PutPushRegistration(
            PlatformType platform,
            string registrationId,
            [FromBody] PutPushRegistrationRequest request)
        {
            string className  = "MyPushRegistrationsController";
            string methodName = "PutPushRegistration";
            string logEntry   = $"Platform = {platform}, RegistrationId = {registrationId}, LastUpdatedTime = {request?.LastUpdatedTime}";

            this.LogControllerStart(this.log, className, methodName, logEntry);

            // check that the last updated time can be parsed as an ISO 8601 string
            DateTime lastUpdatedTime;

            if (!DateTime.TryParse(request.LastUpdatedTime, out lastUpdatedTime))
            {
                return(this.BadRequest(ResponseStrings.DateTimeMalformed));
            }

            // check that the last updated time is not too far into the future
            if (this.pushNotificationsManager.IsRegistrationTooNew(lastUpdatedTime))
            {
                return(this.BadRequest(ResponseStrings.PushRegistrationTimeTooNew));
            }

            // check that the last updated time is not too old
            if (this.pushNotificationsManager.HasRegistrationExpired(lastUpdatedTime))
            {
                return(this.BadRequest(ResponseStrings.PushRegistrationTimeExpired));
            }

            // decode the registrationId
            string decodedRegistrationId = HttpContext.Current.Server.UrlDecode(registrationId);

            await this.pushNotificationsManager.CreateRegistration(
                ProcessType.Frontend,
                this.UserHandle,
                this.AppHandle,
                platform,
                decodedRegistrationId,
                request.Language,
                lastUpdatedTime);

            this.LogControllerEnd(this.log, className, methodName, logEntry);
            return(this.NoContent());
        }
コード例 #2
0
        /// <summary>
        /// Register for push notifications or update an existing registration
        /// </summary>
        /// A push notification will be generated and sent for each activity in my
        /// notifications feed where the unread status is true.
        /// If multiple devices register for push notifications, then all
        /// those devices
        /// will get push notifications.
        /// Each push notification will have three components: (1) a human
        /// readable string
        /// that the mobile OS should display to the user, (2) a
        /// "publisher" string with
        /// value "EmbeddedSocial" to identify that the push notification
        /// came from
        /// this service, and (3) an "activityHandle" that identifies
        /// which activity
        /// in the notification feed this push notification is for.
        /// <param name='platform'>
        /// Platform type. Possible values include: 'Windows', 'Android', 'IOS'
        /// </param>
        /// <param name='registrationId'>
        /// Unique registration ID provided by the mobile OS.
        /// You must URL encode the registration ID.
        /// For Android, this is the GCM or FCM registration ID.
        /// For Windows, this is the PushNotificationChannel URI.
        /// For iOS, this is the device token.
        /// </param>
        /// <param name='request'>
        /// Put push registration request
        /// </param>
        /// <param name='authorization'>
        /// Format is: "Scheme CredentialsList". Possible values are:
        ///
        /// - Anon AK=AppKey
        ///
        /// - SocialPlus TK=SessionToken
        ///
        /// - Facebook AK=AppKey|TK=AccessToken
        ///
        /// - Google AK=AppKey|TK=AccessToken
        ///
        /// - Twitter AK=AppKey|RT=RequestToken|TK=AccessToken
        ///
        /// - Microsoft AK=AppKey|TK=AccessToken
        ///
        /// - AADS2S AK=AppKey|[UH=UserHandle]|TK=AADToken
        /// </param>
        /// <param name='customHeaders'>
        /// Headers that will be added to request.
        /// </param>
        /// <param name='cancellationToken'>
        /// The cancellation token.
        /// </param>
        /// <return>
        /// A response object containing the response body and response headers.
        /// </return>
        public async Task <HttpOperationResponse <object> > PutPushRegistrationWithHttpMessagesAsync(Platform platform, string registrationId, PutPushRegistrationRequest request, string authorization, Dictionary <string, List <string> > customHeaders = null, CancellationToken cancellationToken = default(CancellationToken))
        {
            if (registrationId == null)
            {
                throw new ValidationException(ValidationRules.CannotBeNull, "registrationId");
            }
            if (request == null)
            {
                throw new ValidationException(ValidationRules.CannotBeNull, "request");
            }
            if (request != null)
            {
                request.Validate();
            }
            if (authorization == null)
            {
                throw new ValidationException(ValidationRules.CannotBeNull, "authorization");
            }
            // Tracing
            bool   _shouldTrace  = ServiceClientTracing.IsEnabled;
            string _invocationId = null;

            if (_shouldTrace)
            {
                _invocationId = ServiceClientTracing.NextInvocationId.ToString();
                Dictionary <string, object> tracingParameters = new Dictionary <string, object>();
                tracingParameters.Add("platform", platform);
                tracingParameters.Add("registrationId", registrationId);
                tracingParameters.Add("request", request);
                tracingParameters.Add("authorization", authorization);
                tracingParameters.Add("cancellationToken", cancellationToken);
                ServiceClientTracing.Enter(_invocationId, this, "PutPushRegistration", tracingParameters);
            }
            // Construct URL
            var _baseUrl = this.Client.BaseUri.AbsoluteUri;
            var _url     = new Uri(new Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "v0.7/users/me/push_registrations/{platform}/{registrationId}").ToString();

            _url = _url.Replace("{platform}", Uri.EscapeDataString(SafeJsonConvert.SerializeObject(platform, this.Client.SerializationSettings).Trim('"')));
            _url = _url.Replace("{registrationId}", Uri.EscapeDataString(registrationId));
            // Create HTTP transport objects
            HttpRequestMessage  _httpRequest  = new HttpRequestMessage();
            HttpResponseMessage _httpResponse = null;

            _httpRequest.Method     = new HttpMethod("PUT");
            _httpRequest.RequestUri = new Uri(_url);
            // Set Headers
            if (authorization != null)
            {
                if (_httpRequest.Headers.Contains("Authorization"))
                {
                    _httpRequest.Headers.Remove("Authorization");
                }
                _httpRequest.Headers.TryAddWithoutValidation("Authorization", authorization);
            }
            if (customHeaders != null)
            {
                foreach (var _header in customHeaders)
                {
                    if (_httpRequest.Headers.Contains(_header.Key))
                    {
                        _httpRequest.Headers.Remove(_header.Key);
                    }
                    _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value);
                }
            }

            // Serialize Request
            string _requestContent = null;

            if (request != null)
            {
                _requestContent      = SafeJsonConvert.SerializeObject(request, this.Client.SerializationSettings);
                _httpRequest.Content = new StringContent(_requestContent, Encoding.UTF8);
                _httpRequest.Content.Headers.ContentType = MediaTypeHeaderValue.Parse("application/json; charset=utf-8");
            }
            // Send Request
            if (_shouldTrace)
            {
                ServiceClientTracing.SendRequest(_invocationId, _httpRequest);
            }
            cancellationToken.ThrowIfCancellationRequested();
            _httpResponse = await this.Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false);

            if (_shouldTrace)
            {
                ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse);
            }
            HttpStatusCode _statusCode = _httpResponse.StatusCode;

            cancellationToken.ThrowIfCancellationRequested();
            string _responseContent = null;

            if ((int)_statusCode != 204 && (int)_statusCode != 400 && (int)_statusCode != 401 && (int)_statusCode != 500)
            {
                var ex = new HttpOperationException(string.Format("Operation returned an invalid status code '{0}'", _statusCode));
                _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false);

                ex.Request  = new HttpRequestMessageWrapper(_httpRequest, _requestContent);
                ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent);
                if (_shouldTrace)
                {
                    ServiceClientTracing.Error(_invocationId, ex);
                }
                _httpRequest.Dispose();
                if (_httpResponse != null)
                {
                    _httpResponse.Dispose();
                }
                throw ex;
            }
            // Create Result
            var _result = new HttpOperationResponse <object>();

            _result.Request  = _httpRequest;
            _result.Response = _httpResponse;
            // Deserialize Response
            if ((int)_statusCode == 204)
            {
                _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false);

                try
                {
                    _result.Body = SafeJsonConvert.DeserializeObject <object>(_responseContent, this.Client.DeserializationSettings);
                }
                catch (JsonException ex)
                {
                    _httpRequest.Dispose();
                    if (_httpResponse != null)
                    {
                        _httpResponse.Dispose();
                    }
                    throw new SerializationException("Unable to deserialize the response.", _responseContent, ex);
                }
            }
            if (_shouldTrace)
            {
                ServiceClientTracing.Exit(_invocationId, _result);
            }
            return(_result);
        }
コード例 #3
0
 /// <summary>
 /// Register for push notifications or update an existing registration
 /// </summary>
 /// A push notification will be generated and sent for each activity in my
 /// notifications feed where the unread status is true.
 /// If multiple devices register for push notifications, then all
 /// those devices
 /// will get push notifications.
 /// Each push notification will have three components: (1) a human
 /// readable string
 /// that the mobile OS should display to the user, (2) a
 /// "publisher" string with
 /// value "EmbeddedSocial" to identify that the push notification
 /// came from
 /// this service, and (3) an "activityHandle" that identifies
 /// which activity
 /// in the notification feed this push notification is for.
 /// <param name='operations'>
 /// The operations group for this extension method.
 /// </param>
 /// <param name='platform'>
 /// Platform type. Possible values include: 'Windows', 'Android', 'IOS'
 /// </param>
 /// <param name='registrationId'>
 /// Unique registration ID provided by the mobile OS.
 /// You must URL encode the registration ID.
 /// For Android, this is the GCM or FCM registration ID.
 /// For Windows, this is the PushNotificationChannel URI.
 /// For iOS, this is the device token.
 /// </param>
 /// <param name='request'>
 /// Put push registration request
 /// </param>
 /// <param name='authorization'>
 /// Format is: "Scheme CredentialsList". Possible values are:
 ///
 /// - Anon AK=AppKey
 ///
 /// - SocialPlus TK=SessionToken
 ///
 /// - Facebook AK=AppKey|TK=AccessToken
 ///
 /// - Google AK=AppKey|TK=AccessToken
 ///
 /// - Twitter AK=AppKey|RT=RequestToken|TK=AccessToken
 ///
 /// - Microsoft AK=AppKey|TK=AccessToken
 ///
 /// - AADS2S AK=AppKey|[UH=UserHandle]|TK=AADToken
 /// </param>
 public static object PutPushRegistration(this IMyPushRegistrations operations, Platform platform, string registrationId, PutPushRegistrationRequest request, string authorization)
 {
     return(Task.Factory.StartNew(s => ((IMyPushRegistrations)s).PutPushRegistrationAsync(platform, registrationId, request, authorization), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult());
 }
コード例 #4
0
 /// <summary>
 /// Register for push notifications or update an existing registration
 /// </summary>
 /// A push notification will be generated and sent for each activity in my
 /// notifications feed where the unread status is true.
 /// If multiple devices register for push notifications, then all
 /// those devices
 /// will get push notifications.
 /// Each push notification will have three components: (1) a human
 /// readable string
 /// that the mobile OS should display to the user, (2) a
 /// "publisher" string with
 /// value "EmbeddedSocial" to identify that the push notification
 /// came from
 /// this service, and (3) an "activityHandle" that identifies
 /// which activity
 /// in the notification feed this push notification is for.
 /// <param name='operations'>
 /// The operations group for this extension method.
 /// </param>
 /// <param name='platform'>
 /// Platform type. Possible values include: 'Windows', 'Android', 'IOS'
 /// </param>
 /// <param name='registrationId'>
 /// Unique registration ID provided by the mobile OS.
 /// You must URL encode the registration ID.
 /// For Android, this is the GCM or FCM registration ID.
 /// For Windows, this is the PushNotificationChannel URI.
 /// For iOS, this is the device token.
 /// </param>
 /// <param name='request'>
 /// Put push registration request
 /// </param>
 /// <param name='authorization'>
 /// Format is: "Scheme CredentialsList". Possible values are:
 ///
 /// - Anon AK=AppKey
 ///
 /// - SocialPlus TK=SessionToken
 ///
 /// - Facebook AK=AppKey|TK=AccessToken
 ///
 /// - Google AK=AppKey|TK=AccessToken
 ///
 /// - Twitter AK=AppKey|RT=RequestToken|TK=AccessToken
 ///
 /// - Microsoft AK=AppKey|TK=AccessToken
 ///
 /// - AADS2S AK=AppKey|[UH=UserHandle]|TK=AADToken
 /// </param>
 /// <param name='cancellationToken'>
 /// The cancellation token.
 /// </param>
 public static async Task <object> PutPushRegistrationAsync(this IMyPushRegistrations operations, Platform platform, string registrationId, PutPushRegistrationRequest request, string authorization, CancellationToken cancellationToken = default(CancellationToken))
 {
     using (var _result = await operations.PutPushRegistrationWithHttpMessagesAsync(platform, registrationId, request, authorization, null, cancellationToken).ConfigureAwait(false))
     {
         return(_result.Body);
     }
 }