-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.go
52 lines (41 loc) · 1.11 KB
/
main.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
package main
import (
"html/template"
"log"
"net/http"
"github.com/MhmoudGit/text-search-engine/engine"
)
type Data struct {
Search string
Results []engine.Document
Len int
}
func main() {
docs, idx := engine.Initialize()
mux := http.NewServeMux()
// Create a file server to serve static files
fs := http.FileServer(http.Dir("static"))
mux.Handle("GET /static/", http.StripPrefix("/static/", fs))
// Parse the HTML template
tmpl := template.Must(template.ParseFiles("static/templates/index.html"))
// Handlers
mux.HandleFunc("GET /", func(w http.ResponseWriter, r *http.Request) {
http.ServeFile(w, r, "static/index.html")
})
mux.HandleFunc("POST /search", func(w http.ResponseWriter, r *http.Request) {
search := r.FormValue("search")
searchResults := engine.Search(search, idx, docs)
var data = Data{
Search: search,
Results: searchResults,
Len: len(searchResults),
}
err := tmpl.Execute(w, data)
if err != nil {
http.Error(w, err.Error(), http.StatusInternalServerError)
return
}
})
log.Println("Listening on port 8000")
http.ListenAndServe("localhost:8000", mux)
}