Skip to content

Instantly share code, notes, and snippets.

@icebeam7
Last active April 12, 2018 14:54
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save icebeam7/74acb4eeadd14e8efce39bf144554c5f to your computer and use it in GitHub Desktop.
Save icebeam7/74acb4eeadd14e8efce39bf144554c5f to your computer and use it in GitHub Desktop.
Sentimental Tweets: ServicioTextAnalytics.cs
using System;
using System.Collections.Generic;
using System.Text;
using System.Threading.Tasks;
using Newtonsoft.Json;
using SentimentalTweets.Modelos;
using SentimentalTweets.Helpers;
using System.Net.Http;
using System.Net.Http.Headers;
using Newtonsoft.Json.Linq;
namespace SentimentalTweets.Servicios
{
public static class ServicioTextAnalytics
{
static HttpClient Cliente = new HttpClient();
public static async Task<TweetAnalytics> AnalizarTweet(Tweet tweet)
{
try
{
var docs = PrepararDocumentos(tweet);
var tweetAnalytics = new TweetAnalytics()
{
Mensaje = tweet.Mensaje
};
var jsonSentimiento = await RealizarPeticionHttp(docs, "sentiment");
var sentimiento = JObject.Parse(jsonSentimiento);
tweetAnalytics.Sentimiento = double.Parse((string)sentimiento["documents"][0]["score"]);
var jsonIdioma = await RealizarPeticionHttp(docs, "languages");
var idioma = JObject.Parse(jsonIdioma);
tweetAnalytics.Idioma = (string)idioma["documents"][0]["detectedLanguages"][0]["name"];
var jsonPalabrasClave = await RealizarPeticionHttp(docs, "keyPhrases");
var palabrasClave = JObject.Parse(jsonPalabrasClave);
tweetAnalytics.PalabrasClave = (palabrasClave["documents"].HasValues)
? string.Join(",", palabrasClave["documents"][0]["keyPhrases"])
: "N/A";
return tweetAnalytics;
}
catch (Exception ex)
{
return null;
}
}
private static async Task<string> RealizarPeticionHttp(string body, string servicio)
{
Cliente.BaseAddress = new Uri(Constantes.TextAnalyticsEndpoint);
Cliente.DefaultRequestHeaders.Add("Ocp-Apim-Subscription-Key", Constantes.TextAnalyticsApiKey);
byte[] bytes = Encoding.UTF8.GetBytes(body);
using (var content = new ByteArrayContent(bytes))
{
content.Headers.ContentType = new MediaTypeHeaderValue("application/json");
var response = await Cliente.PostAsync(servicio, content);
return await response.Content.ReadAsStringAsync();
}
}
private static string PrepararDocumentos(Tweet tweet)
{
Document doc = new Document()
{
Id = "1",
Language = tweet.Idioma,
Text = tweet.Mensaje
};
var docs = new List<Document>() { doc };
var wrapper = new { documents = docs };
return JsonConvert.SerializeObject(wrapper);
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment