-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtemperaturereceiver.cs
More file actions
34 lines (30 loc) · 1.2 KB
/
temperaturereceiver.cs
File metadata and controls
34 lines (30 loc) · 1.2 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
using System;
using System.IO;
using System.Threading.Tasks;
using Microsoft.AspNetCore.Mvc;
using Microsoft.Azure.WebJobs;
using Microsoft.Azure.WebJobs.Extensions.Http;
using Microsoft.AspNetCore.Http;
using Microsoft.Extensions.Logging;
using Newtonsoft.Json;
namespace MxChip.Function
{
public static class temperaturereceiver
{
[FunctionName("temperaturereceiver")]
public static async Task<IActionResult> Run(
[HttpTrigger(AuthorizationLevel.Anonymous, "get", "post", Route = null)] HttpRequest req,
ILogger log)
{
log.LogInformation("temperature receiver function.");
string requestBody = await new StreamReader(req.Body).ReadToEndAsync();
dynamic data = JsonConvert.DeserializeObject(requestBody);
var temperature = data?.temperature;
var tempdecimal = decimal.Parse(temperature.ToString());
var fareinheit = ((tempdecimal *9)/5) + 32;
log.LogInformation($"Temperature is {temperature}");
log.LogInformation($"Temperature in fareinheit is {fareinheit}");
return (ActionResult)new OkObjectResult($"{fareinheit}");
}
}
}