Skip to content
Snippets Groups Projects
main.go 8.79 KiB
Newer Older
Benjamin skinstad's avatar
Benjamin skinstad committed
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 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449
package main

import (
	"encoding/json"
	"fmt"
	"io"
	"io/ioutil"
	"log"
	"math"
	"runtime"
	"strconv"
	"strings"
	"time"

	//	"io/ioutil"
	"net/http"
)

type arraySpeciesJSON struct {
	ArryJson []speciesJSON2 `json:"results"`
}

type specisYearJson struct {

	Key float64  `json:"key"`
}


type countryJSON struct {
	Code 				string `json:"code"`
	Countryname 		string `json:"countryname"`
	CountryFlag 		string `json:"countryflag"`
	Species 			[]speciesJSON2 `json:"species"`
	SpeciesKey 			[]specisYearJson `json:"speciesKey"`

}

type speciesJSON2 struct {
	Key					float64 `json:"key"`
	Kingdom				string `json:"kingdom"`
	Phylum				string `json:"phylum"`
	Order				string `json:"order"`
	Family				string `json:"family"`
	Genus				string `json:"genus"`
	ScientificName		string `json:"scientificName"`
	CanonicalName		string `json:"canonicalName"`
	Year				float64 `json:"year"`
}

type speciesJSON struct {
	Key					float64 `json:"key"`
	Kingdom				string `json:"kingdom"`
	Phylum				string `json:"phylum"`
	Order				string `json:"order"`
	Family				string `json:"family"`
	Genus				string `json:"genus"`
	ScientificName		string `json:"scientificName"`
	CanonicalName		string `json:"canonicalName"`
	Year				string `json:"year"`
}

type diagJSON struct {
	Gbif 				int `json:"gbif"`
	Rescountries		int `json:"rescountries"`
	Version 			string `json:"version"`
	Uptime 				float64 `json:"uptime"`

}

var(
	StartTime = time.Time{}
	countryFilter 	= "/conservation/v1/country/"
	specisFilter 	= "/conservation/v1/species/"
	diagFilter 		= "/conservation/v1/diag/"
)


func main() {


	/*fiks limit
	finn ut om vi trenger å lage en json //ja, desverre
	lag riktig json for country/specis/diag
	inkluder år i species
	finn ut hvordan man finner diag informationen //ping something
	inkluder specis i country
	remove dupes


	//optional
	add error code handinling
	add custom 404
	add rate limiting
	startTime := time.Now()

	*/
	// add switch here

	StartTime = time.Now()

	http.HandleFunc("/", undefined)

	http.HandleFunc(countryFilter, country)
	http.HandleFunc(specisFilter, species)
	http.HandleFunc(diagFilter, diag)


	http.ListenAndServe(":8080", nil)


}

func undefined(w http.ResponseWriter, r *http.Request){


	io.WriteString(w, "please use /country,/species,/diag  ")
}


func country(w http.ResponseWriter, r *http.Request){

	//io.WriteString(w, "\ncountry\n\n")

	fmt.Fprint(w, "\nCountry\n\n")
	var input = r.URL.String()


	filtered := strings.Replace(input,countryFilter, "", -1)
	countryCode := string(filtered[0:2])

	filterNumber := strings.Replace(filtered,"?limit=", "", -1)
	filterNumber = filterNumber[:]

//	limit := filterNumber // TODO add number check here

	tempLimit := 10

	resp, err := http.Get("https://restcountries.eu/rest/v2/alpha/"+countryCode)
	if err != nil {
		print("error\n")
		log.Fatalln(err)

	}

	respSpecis, err := http.Get("http://api.gbif.org/v1/occurrence/search?country="+countryCode+"&"+"limit="+strconv.Itoa(tempLimit))
		if err != nil {
			print("error\n")
			log.Fatalln(err)

		}

//	defer respSpecis.Body.Close()
//	bodySpecis, err := ioutil.ReadAll(respSpecis.Body)

//	if err != nil {
//		print("error\n")
//		log.Fatalln(err)

//	}


//	var infoSpecis map[string]interface{}
//	json.Unmarshal([]byte(bodySpecis),&infoSpecis)



	//	numberResponce := infoSpecis["limit"]

	//	var intNumberResponce int = int(numberResponce.(float64))



//		var countryJsonArray []speciesJSON

	/*	var objmap map[string]*json.RawMessage
		//err = json.Unmarshal(bodySpecis, &objmap)


		var s interface{}

		err = json.Unmarshal(*objmap["results"], &s)

*/

		//err = json.Unmarshal(s[1], &test)


	//	str := fmt.Sprintf("%v", s)

	//	var test map[string]interface{}



	//	io.WriteString(w,string(str))

	//	str := fmt.Sprintf("%v", respSpecis.Body)

	//	println(str)
	var spectest arraySpeciesJSON


		err = json.NewDecoder(respSpecis.Body).Decode(&spectest)

		if err != nil {
			print("error\n")
			log.Fatalln(err)

		}

	var countryJsonArray []speciesJSON2
	var yearJsonArray []specisYearJson


	for i:=0; i<tempLimit ;i++  {

			key            := spectest.ArryJson[i].Key
			kingdom        := spectest.ArryJson[i].Kingdom
			phylum         := spectest.ArryJson[i].Phylum
			order          := spectest.ArryJson[i].Order
			family         :=  spectest.ArryJson[i].Family
			genus          := spectest.ArryJson[i].Genus
			scientificName := spectest.ArryJson[i].ScientificName
			canonicalName  := spectest.ArryJson[i].CanonicalName
			year           := spectest.ArryJson[i].Year



			tempJson := speciesJSON2{float64(key),kingdom, phylum,order,family,
				genus,scientificName,canonicalName,year}

			tempYearJson := specisYearJson{key}

			countryJsonArray =append(countryJsonArray,tempJson)
			yearJsonArray =append(yearJsonArray,tempYearJson)


	}



	for index, element := range countryJsonArray{
		fmt.Println(index, "=>", element)
	}

	if err != nil {
		print("error\n")
		log.Fatalln(err)

	}

	defer resp.Body.Close()
	body, err := ioutil.ReadAll(resp.Body)

	if err != nil {
		print("error\n")
		log.Fatalln(err)

	}

	var info map[string]interface{}
	json.Unmarshal([]byte(body),&info)

	//initalises temp variables and set their default values incase something goes wrong
	//todo make this work properly
/*	tempCode 		 := "error, unable to locate code"
	tempCountryname  := "error, unable to locate countryname"
	tempCountryFlag  := "error, unable to locate countryflag"
	tempSpecies 	 := "error, unable to locate specis"
	tempSpeciesKey 	 := "error, unable to locate specis key"
*/


	tempCode 		:= info["alpha2Code"]
	tempCountryname := info["name"]
	tempCountryFlag := info["flag"]
	//tempSpecies 	:= "work in progress " //todo
	//tempSpeciesKey 	:=  "work in progress " //todo


	//this is so i can collapse this test //todo fix species and key test
	{
		if tempCode == nil {
			tempCode = "NA"
		}
		if tempCountryname == nil {
			tempCountryname = "NA"
		}
		if tempCountryFlag == nil {
			tempCountryFlag = "NA"
		}

	}


	createdJson := countryJSON{tempCode.(string),tempCountryname.(string),tempCountryFlag.(string),
		countryJsonArray,yearJsonArray}



	e,err := json.Marshal(createdJson)


//	fmt.Fprint(w,(json.MarshalIndent(string(e), "", "    ")))

	io.WriteString(w,string(e))

}

func species(w http.ResponseWriter, r *http.Request){
	io.WriteString(w, "\nspecies\n\n")

	var input = r.URL.Path[:]
	filtred := strings.Replace(input,specisFilter, "", -1)

	resp,err := http.Get("http://api.gbif.org/v1/species/"+filtred)

	if err != nil {
		print("error\n")
		log.Fatalln(err)

	}

	defer resp.Body.Close()
	body, err := ioutil.ReadAll(resp.Body)

	if err != nil {
		print("error\n")
		log.Fatalln(err)
	}


	var info map[string]interface{}
	json.Unmarshal([]byte(body),&info)




	tempKey				:=info["key"]
	tempNameKey 		:=info["nameKey"]
	tempKingdom			:=info["kingdom"]
	tempPhylum			:=info["phylum"]
	tempOrder			:=info["order"]
	tempFamily			:=info["family"]
	tempGenus			:=info["genus"]
	tempScientificName	:=info["scientificName"]
	tempCanonicalName	:=info["canonicalName"]


	//this is so i can collapse this test //todo fix year test
	{
		if tempKey == nil  {
			tempKey = "NA"
		}
		if tempKingdom == nil  {
			tempKingdom = "NA"
		}
		if tempPhylum == nil  {
			tempPhylum = "NA"
		}
		if tempFamily == nil  {
			tempFamily = "NA"
		}
		if tempGenus == nil  {
			tempGenus = "NA"
		}
		if tempScientificName == nil  {
			tempScientificName = "NA"
		}

		if tempCanonicalName == nil  {
			tempCanonicalName = "NA"
		}



	}

	var namekeyInt int = int(tempNameKey.(float64))

	respYear,err := http.Get("http://api.gbif.org/v1/species/"+strconv.Itoa(namekeyInt)+"/name")

	if err != nil {
		print("error\n")
		log.Fatalln(err)

	}

	defer respYear.Body.Close()
	bodyYear, err := ioutil.ReadAll(respYear.Body)

	if err != nil {
		print("error\n")
		log.Fatalln(err)
	}

	var infoYear map[string]interface{}
	json.Unmarshal([]byte(bodyYear),&infoYear)

	tempYear :=infoYear["year"]
	fmt.Println(tempYear)

	//todo add year check


	createdJson := speciesJSON{tempKey.(float64),tempKingdom.(string), tempPhylum.(string), tempOrder.(string),tempFamily.(string),
		tempGenus.(string),tempScientificName.(string),tempCanonicalName.(string), tempYear.(string)}


	e,err := json.Marshal(createdJson)


	io.WriteString(w,string(e))
}



func diag(w http.ResponseWriter, r *http.Request){

	gbifCode := 0
	rescountriesCode := 0
	version := runtime.Version()
	serverRuntime := time.Since(StartTime).Seconds() //todo fix
	serverRuntime = math.Round(serverRuntime*100)/100

	respGbif,err := http.Get("http://api.gbif.org/")
	if err != nil{
		println(err.Error())
	}else{
		gbifCode = respGbif.StatusCode
	}

	respRestcountries,err := http.Get("http://restcountries.eu/")
	if err != nil{
		println(err.Error())
	}else{
		rescountriesCode = respRestcountries.StatusCode

	}

	createdJson := diagJSON{gbifCode,rescountriesCode,version,serverRuntime}


	e,err := json.Marshal(createdJson)


	io.WriteString(w,string(e))


}