aboutsummaryrefslogtreecommitdiff
path: root/main.go
blob: 54cc49724ab7afe529ab4b05c6766db5b167968a (plain) (blame)
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
package main

import (
	"fmt"
	"io/ioutil"
	"log"
	"net"
	"net/http"
	"os"
	"time"
)

func parseArgs() string {
	// Check for at least one arg, bail if none
	if len(os.Args) < 2 {
		log.Fatalln("You must provide exactly one GitHub username.")
	}

	// We have one arg possible comma separated
	if len(os.Args) == 2 {
		return os.Args[1]
	} else {
		log.Fatalln("You have provided too many arguments")
	}
	return ""
}

func fetchKeys(username string) string {
	log.Printf("Fetching keys for user %s", username)

	url := fmt.Sprintf("https://github.com/%s.keys", username)
	resp, err := http.Get(url)
	if err != nil {
		log.Fatal(err)
	}

	defer resp.Body.Close()

	if resp.StatusCode == http.StatusOK {
		bodyBytes, err := ioutil.ReadAll(resp.Body)
		if err != nil {
			log.Fatal(err)
		}
		bodyString := string(bodyBytes)
		return bodyString
	}
	return ""
}

// Need to fix this to not be an infinite loop
func checkResolvers() {
	i := 1
	for i < 3 {
		_, err := net.LookupIP("github.com")
		if err != nil {
			log.Println("No DNS yet, trying again in 5s")
			time.Sleep(5 * time.Second)
			i += 1
		} else {
			break
		}
	}
	if i == 3 {
		log.Fatalln("Could not reliably lookup host github.com")
	}
	return
}

func main() {
	username := parseArgs()
	checkResolvers()
	keys := fetchKeys(username)
	fmt.Print(keys)
	return
}