mirror of
https://github.com/thebaer/tildes.git
synced 2018-07-20 07:15:21 +00:00
68 lines
2.0 KiB
HTML
68 lines
2.0 KiB
HTML
{{define "where"}}
|
|
<html>
|
|
<head>
|
|
|
|
<title>$ where</title>
|
|
|
|
<link type="text/css" rel="stylesheet" href="tilde.css" />
|
|
<style type="text/css">
|
|
div.user {
|
|
margin: 0;
|
|
width: 50em;
|
|
}
|
|
div.user h2 {
|
|
margin: 0;
|
|
padding: 4px 0;
|
|
}
|
|
div.user h2 a {
|
|
padding-top: 4px;
|
|
padding-bottom: 4px;
|
|
}
|
|
span.time {
|
|
margin-top: 10px;
|
|
float: right;
|
|
color: #999;
|
|
}
|
|
iframe {
|
|
width: 100%;
|
|
height: 50em;
|
|
}
|
|
p.emph {
|
|
font-size: 1.2em;
|
|
}
|
|
</style>
|
|
|
|
</head>
|
|
<body id="hello" class="user-list">
|
|
|
|
<h1>$ where</h1> <span class="updated"><a href="/~bear/">↑ up</a></span>
|
|
|
|
<p>Last Updated: <time datetime="{{.Updated}}">{{.UpdatedForHumans}}</time></p>
|
|
|
|
<h3>Users online now</h3>
|
|
{{range .Users}}
|
|
<div class="user">
|
|
<h2><a href="/~{{.Name}}/">~{{.Name}}</a></h2> <span class="location">{{Location .Region .Country}} </span> <span class="time">{{.CurrentTime}}</span>
|
|
</div>
|
|
{{end}}
|
|
|
|
<h3>To add yourself</h3>
|
|
<p>
|
|
<strong>Anonymously</strong>: create a `.somewhere` file in your home dir with <code>touch ~/.somewhere</code>
|
|
</p>
|
|
<p>
|
|
<strong>Publicly</strong>: create a `.here` file in your home dir with <code>touch ~/.here</code>
|
|
</p>
|
|
|
|
<h3>Map - <a href="/~bear/map.html">full screen</a> - <a href="/~bear/where.json">data</a></h3>
|
|
<iframe src="/~bear/map.html"></iframe>
|
|
|
|
<h3>How does it work?</h3>
|
|
<p>Every 15 minutes this program runs `who --ips` and then looks up IP geo info on opted-in, logged in users. It hits Google's geocode API with the "[Region], [Country]" data it found to get general coordinates, and generates <a href="where.json">this data</a>, stripping out usernames for anonymous users. When viewing the map, an AJAJ request is made to get the data and the points are added to the map.</p>
|
|
<p style="margin-bottom: 4em;">You can see for yourself in the <a href="https://github.com/thebaer/tildes/blob/master/where/where.go">GitHub project</a>, where contributions are welcome!</p>
|
|
|
|
|
|
</body>
|
|
</html>
|
|
{{end}}
|