public override async Task Initialize(NavigationParams navParams)
        {
            _connection = navParams.Connection as IHealthVaultConnection;
            Context     = navParams.Context as ActionPlanInstance;

            OnPropertyChanged("Context");
        }
        public ActionPlanDetailsViewModel(ActionPlanInstance actionPlanInstance, IHealthVaultSodaConnection connection, INavigationService navigationService)
            : base(navigationService)
        {
            _connection         = connection;
            ItemSelectedCommand = new Command <ActionPlanTaskInstance>(async o => await HandleTaskSelectedAsync(o));

            Plan = actionPlanInstance;
        }
Esempio n. 3
0
 private async Task GoToActionPlanDetailsPageAsync(ActionPlanInstance actionPlan)
 {
     var actionPlanDetailsPage = new ActionPlanDetailsPage
     {
         BindingContext = new ActionPlanDetailsViewModel(actionPlan, _connection, NavigationService),
     };
     await NavigationService.NavigateAsync(actionPlanDetailsPage);
 }
 /// <summary>
 /// Call the HV REST API to partially edit the action plan in a user's HealthVault record.
 /// Edits an action plan of a user who is not signed in ("offline" scenario) if both personId and recordId are provided.
 /// Otherwise, this edits the action plan of the user who is actively signed into the application ("online" scenario).
 /// See Getting Started doc for more information on offline scenarios.
 /// </summary>
 private HealthServiceRestResponseData PatchPlan(ActionPlanInstance plan, Guid?personId, Guid?recordId)
 {
     return(HealthServiceRestHelper.CallHeathServiceRest(
                personId,
                recordId,
                User.PersonInfo(),
                "PATCH",
                _basePlanRestUrl,
                null,
                JsonConvert.SerializeObject(plan)));
 }
Esempio n. 5
0
        public async Task SimpleActionPlans()
        {
            IHealthVaultSodaConnection connection = HealthVaultConnectionFactory.Current.GetOrCreateSodaConnection(Constants.Configuration);
            PersonInfo personInfo = await connection.GetPersonInfoAsync();

            HealthRecordInfo record = personInfo.SelectedRecord;

            var restClient = connection.CreateMicrosoftHealthVaultRestApi(record.Id);

            await RemoveAllActionPlansAsync(restClient);

            Guid objectiveId = Guid.NewGuid();
            await restClient.ActionPlans.CreateAsync(CreateWeightActionPlan(objectiveId));

            ActionPlansResponseActionPlanInstance plans = await restClient.ActionPlans.GetAsync();

            Assert.AreEqual(1, plans.Plans.Count);

            ActionPlanInstance planInstance = plans.Plans[0];

            Assert.AreEqual(objectiveId, planInstance.Objectives[0].Id);
            Assert.AreEqual(ObjectiveName, planInstance.Objectives[0].Name);
            Assert.AreEqual(PlanName, planInstance.Name);
        }
        public ActionResult Plan(Guid id, ActionPlanInstance plan, Guid?personId = null, Guid?recordId = null)
        {
            var response = PatchPlan(plan, personId, recordId);

            return(HandleRestResponse(response, HttpStatusCode.OK, personId, recordId));
        }
        /// <summary>
        /// Update an action plan instance with merge
        /// </summary>
        /// <param name='actionPlan'>
        /// The instance of the plan to update. Only the fields present in the passed
        /// in model will be updated. All other fields and colelctions
        /// will be left, as is, unless invalid.
        /// </param>
        /// <param name='customHeaders'>
        /// Headers that will be added to request.
        /// </param>
        /// <param name='cancellationToken'>
        /// The cancellation token.
        /// </param>
        /// <exception cref="ErrorResponseException">
        /// Thrown when the operation returned an invalid status code
        /// </exception>
        /// <exception cref="SerializationException">
        /// Thrown when unable to deserialize the response
        /// </exception>
        /// <exception cref="ValidationException">
        /// Thrown when a required parameter is null
        /// </exception>
        /// <exception cref="System.ArgumentNullException">
        /// Thrown when a required parameter is null
        /// </exception>
        /// <return>
        /// A response object containing the response body and response headers.
        /// </return>
        public async Task <HttpOperationResponse <ActionPlanInstance> > UpdateWithHttpMessagesAsync(ActionPlanInstance actionPlan, Dictionary <string, List <string> > customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken))
        {
            if (actionPlan == null)
            {
                throw new ValidationException(ValidationRules.CannotBeNull, "actionPlan");
            }
            // Tracing
            bool   _shouldTrace  = ServiceClientTracing.IsEnabled;
            string _invocationId = null;

            if (_shouldTrace)
            {
                _invocationId = ServiceClientTracing.NextInvocationId.ToString();
                Dictionary <string, object> tracingParameters = new Dictionary <string, object>();
                tracingParameters.Add("actionPlan", actionPlan);
                tracingParameters.Add("cancellationToken", cancellationToken);
                ServiceClientTracing.Enter(_invocationId, this, "Update", tracingParameters);
            }
            // Construct URL
            var _baseUrl = Client.BaseUri.AbsoluteUri;
            var _url     = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "ActionPlans").ToString();
            // Create HTTP transport objects
            var _httpRequest = new HttpRequestMessage();
            HttpResponseMessage _httpResponse = null;

            _httpRequest.Method     = new HttpMethod("PATCH");
            _httpRequest.RequestUri = new System.Uri(_url);
            // Set Headers


            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 (actionPlan != null)
            {
                _requestContent      = Microsoft.Rest.Serialization.SafeJsonConvert.SerializeObject(actionPlan, Client.SerializationSettings);
                _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8);
                _httpRequest.Content.Headers.ContentType = System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json; charset=utf-8");
            }
            // Set Credentials
            if (Client.Credentials != null)
            {
                cancellationToken.ThrowIfCancellationRequested();
                await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false);
            }
            // Send Request
            if (_shouldTrace)
            {
                ServiceClientTracing.SendRequest(_invocationId, _httpRequest);
            }
            cancellationToken.ThrowIfCancellationRequested();
            _httpResponse = await 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 != 200)
            {
                var ex = new ErrorResponseException(string.Format("Operation returned an invalid status code '{0}'", _statusCode));
                try
                {
                    _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false);

                    ErrorResponse _errorBody = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject <ErrorResponse>(_responseContent, Client.DeserializationSettings);
                    if (_errorBody != null)
                    {
                        ex.Body = _errorBody;
                    }
                }
                catch (JsonException)
                {
                    // Ignore the exception
                }
                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 <ActionPlanInstance>();

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

                try
                {
                    _result.Body = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject <ActionPlanInstance>(_responseContent, 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);
        }
 /// <summary>
 /// Update/Replace a complete action plan instance with no merge.
 /// </summary>
 /// <param name='operations'>
 /// The operations group for this extension method.
 /// </param>
 /// <param name='actionPlan'>
 /// The instance of the plan to update. The entire plan will be replaced with
 /// this version.
 /// </param>
 /// <param name='cancellationToken'>
 /// The cancellation token.
 /// </param>
 public static async Task <ActionPlanInstance> ReplaceAsync(this IActionPlans operations, ActionPlanInstance actionPlan, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken))
 {
     using (var _result = await operations.ReplaceWithHttpMessagesAsync(actionPlan, null, cancellationToken).ConfigureAwait(false))
     {
         return(_result.Body);
     }
 }
 /// <summary>
 /// Update/Replace a complete action plan instance with no merge.
 /// </summary>
 /// <param name='operations'>
 /// The operations group for this extension method.
 /// </param>
 /// <param name='actionPlan'>
 /// The instance of the plan to update. The entire plan will be replaced with
 /// this version.
 /// </param>
 public static ActionPlanInstance Replace(this IActionPlans operations, ActionPlanInstance actionPlan)
 {
     return(operations.ReplaceAsync(actionPlan).GetAwaiter().GetResult());
 }
        public async Task <ActionResult> Plan(Guid id, ActionPlanInstance plan, Guid personId, Guid recordId)
        {
            await ExecuteMicrosoftHealthVaultRestApiAsync(api => api.ActionPlans.UpdateAsync(plan), personId, recordId);

            return(RedirectToAction("Plan", new { id, personId, recordId }));
        }