mirror of
https://github.com/mgerb/mywebsite
synced 2026-01-09 01:12:52 +00:00
223 lines
5.0 KiB
Go
223 lines
5.0 KiB
Go
package api
|
|
|
|
import (
|
|
"encoding/json"
|
|
"fmt"
|
|
"log"
|
|
"net/http"
|
|
"strconv"
|
|
"time"
|
|
|
|
"github.com/julienschmidt/httprouter"
|
|
"github.com/mgerb/mywebsite/server/model/daily_sensor"
|
|
"github.com/mgerb/mywebsite/server/model/raw_sensor"
|
|
)
|
|
|
|
// handle http request from sensors
|
|
func HandleSensorRequest(w http.ResponseWriter, r *http.Request, ps httprouter.Params) {
|
|
|
|
//store data from sensor in raw_sensor collection
|
|
//**********************************************************************************
|
|
key := r.URL.Query().Get("key")
|
|
w.Header().Set("Content-Type", "application/json")
|
|
|
|
var message string
|
|
|
|
if key == Api.Key {
|
|
|
|
//get request parameters - convert temp to float64
|
|
temperature, _ := strconv.ParseFloat(r.URL.Query().Get("temperature"), 64)
|
|
if temperature < -50 {
|
|
fmt.Fprint(w, "{ message: \"Bad temperature reading\"}")
|
|
return
|
|
}
|
|
|
|
location := r.URL.Query().Get("location")
|
|
t := time.Now()
|
|
|
|
store := raw_sensor.Data{"", temperature, location, t}
|
|
|
|
err := store.StoreData()
|
|
|
|
if err != nil {
|
|
message = "Failed to insert into database"
|
|
} else {
|
|
message = "Data inserted into database"
|
|
}
|
|
|
|
//compare current readings with dialy_sensor readings
|
|
//update daily_sensor readings if out of bounds
|
|
//**********************************************************************************
|
|
|
|
storedData, err := daily_sensor.GetDailySensorInfo(location)
|
|
|
|
if err != nil {
|
|
log.Println(err)
|
|
}
|
|
|
|
//store data if nothing exists for the day
|
|
if storedData.Location == "" {
|
|
|
|
storedData.ID = ""
|
|
storedData.Location = location
|
|
storedData.MaxTemp = temperature
|
|
storedData.MinTemp = temperature
|
|
storedData.Day = t.Day()
|
|
storedData.Month = int(t.Month())
|
|
storedData.MonthName = t.Month().String()
|
|
storedData.Year = t.Year()
|
|
storedData.Updated = t
|
|
|
|
err := storedData.StoreData()
|
|
|
|
if err != nil {
|
|
log.Println(err)
|
|
}
|
|
|
|
} else {
|
|
|
|
performUpdate := false
|
|
|
|
//check if values exceed max or min
|
|
if temperature > storedData.MaxTemp {
|
|
storedData.MaxTemp = temperature
|
|
performUpdate = true
|
|
}
|
|
if temperature < storedData.MinTemp {
|
|
storedData.MinTemp = temperature
|
|
performUpdate = true
|
|
}
|
|
|
|
//store or update information if values have been changed
|
|
if performUpdate == true {
|
|
|
|
err := storedData.UpdateData()
|
|
|
|
if err != nil {
|
|
log.Println(err)
|
|
}
|
|
|
|
}
|
|
}
|
|
} else {
|
|
message = "Incorrect api key"
|
|
}
|
|
|
|
//send response back
|
|
fmt.Fprint(w, "{ message : \""+message+"\"}")
|
|
}
|
|
|
|
func HandleAllSensors(w http.ResponseWriter, r *http.Request, ps httprouter.Params) {
|
|
|
|
w.Header().Set("Content-Type", "application/json")
|
|
|
|
s, err := raw_sensor.GetAllSensors()
|
|
|
|
var response string
|
|
|
|
if err != nil {
|
|
log.Println(err)
|
|
response = "{message : \"Error loading data from database\""
|
|
} else {
|
|
js, err := json.MarshalIndent(s, "", " ")
|
|
|
|
if err != nil {
|
|
log.Println(err)
|
|
response = "{message : \"Error loading data from database\""
|
|
} else {
|
|
response = string(js)
|
|
}
|
|
}
|
|
|
|
fmt.Fprint(w, response)
|
|
}
|
|
|
|
func HandleSensorByLocation(w http.ResponseWriter, r *http.Request, ps httprouter.Params) {
|
|
|
|
location := ps.ByName("location")
|
|
|
|
w.Header().Set("Content-Type", "application/json")
|
|
|
|
s, err := daily_sensor.GetAllSensorInfo(location)
|
|
|
|
response := createResponse(s, err)
|
|
|
|
fmt.Fprint(w, response)
|
|
}
|
|
|
|
func HandleSensorByLocationYear(w http.ResponseWriter, r *http.Request, ps httprouter.Params) {
|
|
|
|
location := ps.ByName("location")
|
|
year, _ := strconv.Atoi(ps.ByName("year"))
|
|
|
|
w.Header().Set("Content-Type", "application/json")
|
|
|
|
s, err := daily_sensor.GetAllSensorInfoByYear(location, year)
|
|
|
|
response := createResponse(s, err)
|
|
|
|
fmt.Fprint(w, response)
|
|
}
|
|
|
|
func HandleSensorByLocationMonth(w http.ResponseWriter, r *http.Request, ps httprouter.Params) {
|
|
|
|
location := ps.ByName("location")
|
|
year, _ := strconv.Atoi(ps.ByName("year"))
|
|
monthname := ps.ByName("monthname")
|
|
|
|
w.Header().Set("Content-Type", "application/json")
|
|
|
|
s, err := daily_sensor.GetAllSensorInfoByMonth(location, year, monthname)
|
|
|
|
response := createResponse(s, err)
|
|
|
|
fmt.Fprint(w, response)
|
|
}
|
|
|
|
func HandleUniqueDates(w http.ResponseWriter, r *http.Request, ps httprouter.Params) {
|
|
|
|
location := ps.ByName("location")
|
|
|
|
w.Header().Set("Content-Type", "application/json")
|
|
|
|
s, err := daily_sensor.GetUniqueSensorDates(location)
|
|
|
|
var response string
|
|
|
|
if err != nil {
|
|
log.Println(err)
|
|
response = "{message : \"Error loading data from database\""
|
|
} else {
|
|
js, err := json.MarshalIndent(s, "", " ")
|
|
|
|
if err != nil {
|
|
log.Println(err)
|
|
response = "{message : \"Error loading data from database\""
|
|
} else {
|
|
response = string(js)
|
|
}
|
|
}
|
|
|
|
fmt.Fprint(w, response)
|
|
}
|
|
|
|
func createResponse(s []daily_sensor.Data, err error) string {
|
|
var response string
|
|
|
|
if err != nil {
|
|
log.Println(err)
|
|
response = "{message : \"Error loading data from database\""
|
|
} else {
|
|
js, err := json.MarshalIndent(s, "", " ")
|
|
|
|
if err != nil {
|
|
log.Println(err)
|
|
response = "{message : \"Error loading data from database\""
|
|
} else {
|
|
response = string(js)
|
|
}
|
|
}
|
|
|
|
return response
|
|
}
|