-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsearch.go
79 lines (71 loc) · 1.92 KB
/
search.go
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
package jumpserver
import "net/http"
type SearchPage struct {
Query string
Field string
Results SearchResults
}
func (j *JumpServer) handleSearch(w http.ResponseWriter, r *http.Request) {
if r.Method != "GET" {
http.Error(w, "Method not allowed", http.StatusMethodNotAllowed)
return
}
query := r.URL.Query().Get("q")
field := r.URL.Query().Get("field")
var results SearchResults
if query != "" {
// Handle field-specific searches
switch field {
case "hostname":
results = j.searchByField(query, field, func(h *Hostname) bool {
return h.HostSearch(query)
})
case "address":
results = j.searchByField(query, field, func(h *Hostname) bool {
return h.AddrSearch(query)
})
case "registrant":
results = j.searchByField(query, field, func(h *Hostname) bool {
return h.Registrant.RegistrarSearch(query)
})
case "description":
results = j.searchByField(query, field, func(h *Hostname) bool {
return h.Registrant.TextSearch(query)
})
case "tags":
results = j.searchByField(query, field, func(h *Hostname) bool {
return h.Registrant.HasTag(query)
})
default:
// Default to full search across all fields
results = j.Search(query)
}
}
page := &SearchPage{
Query: query,
Field: field,
Results: results,
}
err := templates.ExecuteTemplate(w, "search.html", page)
if err != nil {
http.Error(w, err.Error(), http.StatusInternalServerError)
return
}
}
// Helper function to search by specific field
func (j *JumpServer) searchByField(query string, field string, matcher func(*Hostname) bool) SearchResults {
var results SearchResults
for _, host := range j.Hostnames {
if matcher(host) {
results = append(results, &SearchResult{
Hostname: host,
Host: field == "hostname",
Addr: field == "address",
Registrar: field == "registrant",
Text: field == "description",
Tag: field == "tags",
})
}
}
return results
}