added API key check and removed duplicate lines

This commit is contained in:
Thomas Bennett 2016-05-05 15:00:13 -07:00
parent 6d4ae9303c
commit a48929d939
2 changed files with 8 additions and 19 deletions

View File

@ -257,8 +257,7 @@ func metadataRequest(baseurl, title, datatype, id string) string {
func sendRequest(url string) string { func sendRequest(url string) string {
request, err := http.NewRequest("GET", url, nil) request, err := http.NewRequest("GET", url, nil)
checkErr(err) checkErr(err)
apikey := os.Getenv("HALO_API_KEY") request.Header.Set("Ocp-Apim-Subscription-Key", getAPIKey())
request.Header.Set("Ocp-Apim-Subscription-Key", apikey)
response, err := http.DefaultClient.Do(request) response, err := http.DefaultClient.Do(request)
checkErr(err) checkErr(err)
@ -269,20 +268,10 @@ func sendRequest(url string) string {
return string(contents) return string(contents)
} }
// Sample values for testing func getAPIKey() string {
var sampleGamertag string = "motta13" apikey := os.Getenv("HALO_API_KEY")
var sampleMode string = "warzone" if len(apikey) != 32 {
var sampleMatchID string = "c35a35f8-f450-4836-a4c2-65100a7acb79" fmt.Println("Invalid API Key")
var sampleSeasonID string = "b46c2095-4ca6-4f4b-a565-4702d7cfe586" //February 2016 Season }
var samplePlaylistID string = "2323b76a-db98-4e03-aa37-e171cfbdd1a4" //SWAT gametype 2016 Season return apikey
var samplePlayers string = "motta13,smoke721"
func main() {
// Uncomment any of the below for sample output.
//fmt.Println(matches_for_player(baseurl, title, SampleGamertag, "warzone", 0, 0))
//fmt.Println(events_for_match(baseurl, title, sampleMatchID))
//fmt.Println(player_leaderboard(baseurl, title, sampleSeasonID, samplePlaylistID, 0))
//fmt.Println(service_record_arena(baseurl, title, samplePlayers, sampleSeasonID))
//fmt.Println(vehicles(baseurl, title))
//fmt.Println(spartan_image(baseurl, title, gamertag, 0, ""))
} }

View File

@ -3,7 +3,7 @@ package main
import ( import (
"fmt" "fmt"
"github.com/dmmcquay/go-halo5-api/halo" "github.com/tbenz9/go-halo5-api/halo"
) )
var baseurl string = "https://www.haloapi.com" var baseurl string = "https://www.haloapi.com"