aboutsummaryrefslogtreecommitdiff
blob: 9173f7295fec301c0db1438ba9d069256c0ebb50 (plain)
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
using System.Collections.Generic;
using System.Web.Http;
using AirPollutionWebApi.Models;
using AirPollutionWebApi.Singletons;

namespace AirPollutionWebApi.Controllers
{
    public class ReadingsController : ApiController
    {
		public ReadingsController() { }

		public IEnumerable<Reading> GetAllReadings()
		{
            var readings = SqlOperator.GetAllReadings();
            return readings;
		}

		public IHttpActionResult GetReading(int id)
		{
            var reading = SqlOperator.GetReadingById(id);

			if (reading != null) return Ok(reading);
			else return NotFound();
		}

        [Route("/api/Readings/latest")]
        public IHttpActionResult GetLatestReading()
        {
            var readings = SqlOperator.GetAllReadings();
            Reading latestReading = null;

            foreach(var reading in readings)
            {
                if (latestReading == null) latestReading = reading;
                if (reading.TimeStamp > latestReading.TimeStamp)
                    latestReading = reading;
            }

			if (latestReading != null) return Ok(latestReading);
			else return NotFound();
        }

		public IHttpActionResult PutReading(int id, Reading reading)
		{
			if (reading != null)
			{
				SqlOperator.PutReading(id, reading);
				return Ok();
			}
			else return BadRequest();
		}

		public IHttpActionResult PostReading(Reading reading)
		{
			if (reading != null)
			{
                SqlOperator.PostReading(reading);
				return Ok();
			}
			else return BadRequest();
		}

		public IHttpActionResult DeleteReading(int id)
		{
            Reading reading = SqlOperator.GetReadingById(id);
			if (reading == null)
			{
				return NotFound();
			}

			SqlOperator.DeleteReading(id);

			return Ok(reading);
		}
    }
}