From 6994bd7acc344aaf6e473b45de5eed11b1849d6e Mon Sep 17 00:00:00 2001 From: Matt Baer Date: Wed, 18 Feb 2015 19:11:24 -0500 Subject: [PATCH] Allow anonymous opt-in or full opt-in Users touch ~/.somewhere for anonymous opt-in Users touch ~/.here for full opt-in (shows name and general location in data) --- where/where.go | 45 +++++++++++++++++++++++++++++++++++++++++---- 1 file changed, 41 insertions(+), 4 deletions(-) diff --git a/where/where.go b/where/where.go index 42d37ca..a4f9554 100644 --- a/where/where.go +++ b/where/where.go @@ -63,6 +63,8 @@ type user struct { CurrentTime string `json:"current_time"` Latitude float64 `json:"lat"` Longitude float64 `json:"lng"` + Public bool + Anonymous bool } type publicUser struct { @@ -112,7 +114,18 @@ func who() []user { users := make([]user, len(ips)) i := 0 for ip, name := range ips { - users[i] = user{Name: name, IP: ip} + users[i] = user{Name: name, IP: ip, Public: true, Anonymous: false} + + // Get user permissions, marking if they're not opted-in with a + // `.here` file in their $HOME dir. + if _, err := os.Stat("/home/" + name + "/.here"); os.IsNotExist(err) { + users[i].Public = false + } + if _, err := os.Stat("/home/" + name + "/.somewhere"); err == nil { + users[i].Public = true + users[i].Anonymous = true + } + i++ } @@ -164,8 +177,10 @@ func getGeo(u *user) { country := dat["country_name"].(string) u.CurrentTime = getTimeInZone(dat["time_zone"].(string)) - u.Region = region - u.Country = country + if u.Public { + u.Region = region + u.Country = country + } } } @@ -177,6 +192,10 @@ func computeHmac256(message string) string { } func getFuzzyCoords(u *user, apiKey string) { + if !u.Public { + return + } + fmt.Printf("Fetching %s fuzzy coordinates...\n", u.Name) loc := prettyLocation(u.Region, u.Country) @@ -201,7 +220,25 @@ func cacheUserLocations(users *[]user) { // Update user data for i := range *users { u := (*users)[i] - (*res)[computeHmac256(u.Name)] = publicUser{Name: u.Name, Region: u.Region, Country: u.Country, Latitude: u.Latitude, Longitude: u.Longitude} + + // Don't save users who are private + if !u.Public { + continue + } + + // Hide user's name if they want to remain anonymous + var displayName string + if !u.Anonymous { + displayName = u.Name + } + + (*res)[computeHmac256(u.Name)] = publicUser{Name: displayName, Region: u.Region, Country: u.Country, Latitude: u.Latitude, Longitude: u.Longitude} + + // Now that we have the info we need, remove it from the page's user list + if u.Anonymous { + (*users)[i].Region = "" + (*users)[i].Country = "" + } } // Write user data