예제 #1
0
        /// <summary>
        /// Pass updated contacts to the UpdatedCrmContact topic of the Event Grid
        /// </summary>
        /// <param name="updatedContacts"></param>
        internal static async Task <EventGridSubmissionResult> RaiseUpdatedContactEventsAsync(List <UpdatedContactEvent> updatedContacts)
        {
            EventGridSubmissionResult retval = null;

            if (updatedContacts.Count > 0)
            {
                //log.LogInformation("We got {0} updated contacts to pass to the event grid", updatedContacts.Count);
                var eventGridTopicEndpoint = Environment.GetEnvironmentVariable("UpdatedCrmContactTopicEndpoint", EnvironmentVariableTarget.Process);

                if (string.IsNullOrEmpty(eventGridTopicEndpoint))
                {
                    retval = new EventGridSubmissionResult(HttpStatusCode.InternalServerError, "eventGridTopicEndpoint was null");
                    return(retval);
                }

                //log.LogInformation(eventGridTopicEndpoint);
                //log.LogInformation("Contact {0} ({1} {2}) updated {3}", updatedContacts[0].data.contactId, updatedContacts[0].data.firstName, updatedContacts[0].data.lastName, updatedContacts[0].eventType);
                //log.LogInformation(JsonConvert.SerializeObject(updatedContacts));

                var response = await updatedContactHttpClient.PostAsJsonAsync <List <UpdatedContactEvent> >(eventGridTopicEndpoint, updatedContacts);

                //log.LogInformation(eventGridTopicEndpoint);
                retval = new EventGridSubmissionResult(response);

                if (response.StatusCode != HttpStatusCode.OK)
                {
                    //log.LogError("Error: HTTP {0} {1} ", (int)response.StatusCode, response.StatusCode);
                    retval.ErrorMessage = await response.Content.ReadAsStringAsync();

                    //log.LogInformation(resultText);
                }
            }

            return(retval);
        }
예제 #2
0
        /// <summary>
        /// Pass new contacts to the NewCrmContact topic of the Event Grid
        /// </summary>
        /// <param name="newContacts"></param>
        internal static async Task <EventGridSubmissionResult> RaiseNewContactEventsAsync(List <NewContactEvent> newContacts)
        {
            EventGridSubmissionResult retval = null;

            if (newContacts.Count > 0)
            {
                //log.LogInformation("We got {0} new contacts to pass to the event grid", newContacts.Count);
                var eventGridTopicEndpoint = Environment.GetEnvironmentVariable("NewCrmContactTopicEndpoint", EnvironmentVariableTarget.Process);

                //log.LogInformation(eventGridTopicEndpoint);
                //log.LogInformation("Sending contact {0}: {1} {2}", newContacts[0].data.contactId, newContacts[0].data.firstName, newContacts[0].data.lastName);
                //log.LogInformation(JsonConvert.SerializeObject(newContacts));

                var response = await newContactHttpClient.PostAsJsonAsync <List <NewContactEvent> >(eventGridTopicEndpoint, newContacts);

                retval = new EventGridSubmissionResult(response);

                if (response.StatusCode != HttpStatusCode.OK)
                {
                    //log.LogError("Error: HTTP {0} {1} ", (int)response.StatusCode, response.StatusCode);
                    retval.ErrorMessage = await response.Content.ReadAsStringAsync();

                    //log.LogInformation(resultText);
                }
            }

            return(retval);
        }
예제 #3
0
        internal static async Task <EventGridSubmissionResult> RaiseUpdatedSynergyDataEventsAsync(List <UpdatedSynergyDataEvent> updatedSynergyDataList)
        {
            EventGridSubmissionResult retval = null;

            if (updatedSynergyDataList.Count > 0)
            {
                var eventGridTopicEndpoint = Environment.GetEnvironmentVariable("UpdatedInstallationTopicEndpoint", EnvironmentVariableTarget.Process);

                if (string.IsNullOrEmpty(eventGridTopicEndpoint))
                {
                    retval = new EventGridSubmissionResult(HttpStatusCode.InternalServerError, "eventGridTopicEndpoint was null");
                    return(retval);
                }

                var response = await updatedInstallationHttpClient.PostAsJsonAsync <List <UpdatedSynergyDataEvent> >(eventGridTopicEndpoint, updatedSynergyDataList);

                retval = new EventGridSubmissionResult(response);

                if (response.StatusCode != HttpStatusCode.OK)
                {
                    //log.LogError("Error: HTTP {0} {1} ", (int)response.StatusCode, response.StatusCode);
                    retval.ErrorMessage = await response.Content.ReadAsStringAsync();

                    //log.LogInformation(resultText);
                }
            }

            return(retval);
        }