/// <summary> /// Accepts an incoming webhook request, creates a turn context, /// and runs the middleware pipeline for an incoming TRUSTED activity. /// </summary> /// <param name="httpRequest">Represents the incoming side of an HTTP request.</param> /// <param name="httpResponse">Represents the outgoing side of an HTTP request.</param> /// <param name="bot">The code to run at the end of the adapter's middleware pipeline.</param> /// <param name="cancellationToken">A cancellation token that can be used by other objects /// or threads to receive notice of cancellation.</param> /// <returns>A task that represents the work queued to execute.</returns> /// <exception cref="AuthenticationException">The webhook receives message with invalid signature.</exception> public async Task ProcessAsync(HttpRequest httpRequest, HttpResponse httpResponse, IBot bot, CancellationToken cancellationToken = default) { if (httpRequest.Query["hub.mode"] == HubModeSubscribe && _options.VerifyIncomingRequests) { await _facebookClient.VerifyWebhookAsync(httpRequest, httpResponse, cancellationToken).ConfigureAwait(false); return; } string stringifiedBody; using (var sr = new StreamReader(httpRequest.Body)) { stringifiedBody = await sr.ReadToEndAsync().ConfigureAwait(false); } if (!_facebookClient.VerifySignature(httpRequest, stringifiedBody) && _options.VerifyIncomingRequests) { await FacebookHelper.WriteAsync(httpResponse, HttpStatusCode.Unauthorized, string.Empty, Encoding.UTF8, cancellationToken).ConfigureAwait(false); throw new AuthenticationException("Webhook received message with invalid signature. Potential malicious behavior!"); } FacebookResponseEvent facebookResponseEvent = null; facebookResponseEvent = JsonConvert.DeserializeObject <FacebookResponseEvent>(stringifiedBody); foreach (var entry in facebookResponseEvent.Entry) { var payload = entry.Changes.Count > 0 ? entry.Changes : entry.Messaging.Count > 0 ? entry.Messaging : entry.Standby.Count > 0 ? entry.Standby : new List <FacebookMessage>(); foreach (var message in payload) { message.IsStandby = entry.Standby.Count > 0; var activity = FacebookHelper.ProcessSingleMessage(message); using (var context = new TurnContext(this, activity)) { await RunPipelineAsync(context, bot.OnTurnAsync, cancellationToken).ConfigureAwait(false); } } } }
/// <summary> /// Accept an incoming webhook request and convert it into a TurnContext which can be processed by the bot's logic. /// </summary> /// <param name="request">A request object.</param> /// <param name="response">A response object.</param> /// <param name="bot">A bot logic function.</param> /// <param name="cancellationToken">A cancellation token for the task.</param> /// <returns>A <see cref="Task"/> representing the asynchronous operation.</returns> public async Task ProcessAsync(HttpRequest request, HttpResponse response, IBot bot, CancellationToken cancellationToken) { if (request.Query["hub.mode"] == HubModeSubscribe) { await _facebookClient.VerifyWebhookAsync(request, response, cancellationToken).ConfigureAwait(false); return; } string stringifyBody; using (var sr = new StreamReader(request.Body)) { stringifyBody = sr.ReadToEnd(); } if (!_facebookClient.VerifySignature(request, stringifyBody)) { await FacebookHelper.WriteAsync(response, HttpStatusCode.Unauthorized, string.Empty, Encoding.UTF8, cancellationToken).ConfigureAwait(false); throw new Exception("WARNING: Webhook received message with invalid signature. Potential malicious behavior!"); } FacebookResponseEvent facebookEvent = null; facebookEvent = JsonConvert.DeserializeObject <FacebookResponseEvent>(stringifyBody); foreach (var entry in facebookEvent.Entry) { var payload = new List <FacebookMessage>(); payload = entry.Changes ?? entry.Messaging; foreach (var message in payload) { var activity = FacebookHelper.ProcessSingleMessage(message); using (var context = new TurnContext(this, activity)) { await RunPipelineAsync(context, bot.OnTurnAsync, cancellationToken).ConfigureAwait(false); } } // Handle standby messages (this bot is not the active receiver) if (entry.Standby != null) { payload = entry.Standby; foreach (var message in payload) { // Indicate that this message was received in standby mode rather than normal mode. message.Standby = true; var activity = FacebookHelper.ProcessSingleMessage(message); using (var context = new TurnContext(this, activity)) { await RunPipelineAsync(context, bot.OnTurnAsync, cancellationToken).ConfigureAwait(false); } } } } }