-
Notifications
You must be signed in to change notification settings - Fork 35
Expand file tree
/
Copy pathgeoMap.go
More file actions
143 lines (118 loc) · 3.91 KB
/
Copy pathgeoMap.go
File metadata and controls
143 lines (118 loc) · 3.91 KB
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
package main
import (
"cmp"
"net/http"
"github.com/samber/lo"
)
const defaultGeoMapPath = "/map"
func (a *goBlog) blogsOnMap(blog string, bc *configBlog) []string {
if bc.Map != nil && bc.Map.AllBlogs {
return lo.Keys(a.cfg.Blogs)
}
return []string{blog}
}
func (a *goBlog) serveGeoMap(w http.ResponseWriter, r *http.Request) {
blog, bc := a.getBlog(r)
mapPath := bc.getRelativePath(cmp.Or(bc.Map.Path, defaultGeoMapPath))
canonical := a.getFullAddress(mapPath)
allPostsWithLocationRequestConfig := &postsRequestConfig{
blogs: a.blogsOnMap(blog, bc),
anyParams: []string{a.cfg.Micropub.LocationParam, gpxParameter},
fetchWithoutParams: true,
excludeParameter: showRouteParam,
excludeParameterValue: "false", // Don't show hidden route tracks
}
allPostsWithLocationRequestConfig.status, allPostsWithLocationRequestConfig.visibility = a.getDefaultPostStates(r)
allPostsWithLocation, err := a.db.countPosts(allPostsWithLocationRequestConfig)
if err != nil {
a.error("Failed to count posts with location", "err", err)
a.serveError(w, r, "", http.StatusInternalServerError)
return
}
if allPostsWithLocation == 0 {
a.render(w, r, a.renderGeoMap, &renderData{
Canonical: canonical,
Data: &geoMapRenderData{
noLocations: true,
},
})
return
}
a.render(w, r, a.renderGeoMap, &renderData{
Canonical: canonical,
Data: &geoMapRenderData{
locations: "url:" + canonical + geoMapLocationsSubpath,
tracks: "url:" + canonical + geoMapTracksSubpath,
attribution: a.getMapAttribution(),
minZoom: a.getMinZoom(),
maxZoom: a.getMaxZoom(),
},
})
}
const geoMapTracksSubpath = "/tracks.json"
func (a *goBlog) serveGeoMapTracks(w http.ResponseWriter, r *http.Request) {
blog, bc := a.getBlog(r)
allPostsWithTracksRequestConfig := &postsRequestConfig{
blogs: a.blogsOnMap(blog, bc),
anyParams: []string{gpxParameter},
fetchParams: []string{gpxParameter},
excludeParameter: showRouteParam,
excludeParameterValue: "false", // Don't show hidden route tracks
}
allPostsWithTracksRequestConfig.status, allPostsWithTracksRequestConfig.visibility = a.getDefaultPostStates(r)
allPostsWithTracks, err := a.getPosts(allPostsWithTracksRequestConfig)
if err != nil {
a.error("Failed to get posts with tracks", "err", err)
a.serveError(w, r, "", http.StatusInternalServerError)
return
}
type templateTrack struct {
Paths [][]trackPoint
Points []trackPoint
Post string
}
var tracks []templateTrack
for _, p := range allPostsWithTracks {
if t, err := a.getTrack(p); err == nil && t != nil {
tracks = append(tracks, templateTrack{
Paths: t.Paths,
Points: t.Points,
Post: p.Path,
})
}
}
a.respondWithMinifiedJSON(w, &tracks)
}
const geoMapLocationsSubpath = "/locations.json"
func (a *goBlog) serveGeoMapLocations(w http.ResponseWriter, r *http.Request) {
blog, bc := a.getBlog(r)
allPostsWithLocationRequestConfig := &postsRequestConfig{
blogs: a.blogsOnMap(blog, bc),
anyParams: []string{a.cfg.Micropub.LocationParam},
fetchParams: []string{a.cfg.Micropub.LocationParam},
}
allPostsWithLocationRequestConfig.status, allPostsWithLocationRequestConfig.visibility = a.getDefaultPostStates(r)
allPostsWithLocations, err := a.getPosts(allPostsWithLocationRequestConfig)
if err != nil {
a.error("Failed to get posts with locations", "err", err)
a.serveError(w, r, "", http.StatusInternalServerError)
return
}
type templateLocation struct {
Point trackPoint
Post string
}
trunc := func(num float64) float64 {
return float64(int64(num*100000)) / 100000
}
var locations []templateLocation
for _, p := range allPostsWithLocations {
for _, g := range a.geoURIs(p) {
locations = append(locations, templateLocation{
Point: trackPoint{trunc(g.Latitude), trunc(g.Longitude)},
Post: p.Path,
})
}
}
a.respondWithMinifiedJSON(w, &locations)
}