sophuwu.site > manhttpd
updated some werid buggies
sophuwu sophie@skisiel.com
Tue, 30 Jul 2024 17:03:09 +0000
commit

8cf8814fd592443b107cd7d29c9c22918fa9ca68

parent

7ef7df02ee6e8e27f569e83ab8169ada30888831

3 files changed, 38 insertions(+), 23 deletions(-)

jump to
M dark_theme.cssdark_theme.css

@@ -1,5 +1,4 @@

*{ - font-family: Ubuntu!important; color: #c7c7c7; } table.head, table.foot {
M index.htmlindex.html

@@ -3,12 +3,12 @@ <html lang="en">

<head> <meta charset="utf-8"> <title>{{ title }}@{{ hostname }}</title> - <link rel="stylesheet" type="text/css" href="/style.css"> + <link rel="stylesheet" type="text/css" href="style.css"> </head> <body> <div class="flexy"> <h3 style="margin: 2px;">Man Pages:</h3> - <FORM method="post" action="/"> + <FORM method="post"> <INPUT TYPE="text" name="q" autocomplete="off"> <INPUT TYPE="submit" VALUE="Search"> </FORM>

@@ -17,4 +17,4 @@ <div class="content">

{{ content }} </div> </body> -</html>+</html>
M main.gomain.go

@@ -9,6 +9,7 @@ "os"

"os/exec" "regexp" "strings" + "path/filepath" ) //go:embed index.html

@@ -45,14 +46,16 @@ CFG.Addr = "8082"

} } -func main() { - GetCFG() - http.HandleFunc("/style.css", func(w http.ResponseWriter, r *http.Request) { +func CssHandle(w http.ResponseWriter, r *http.Request) { w.Header().Set("Content-Type", "text/css; charset=utf-8") w.Header().Set("Content-Length", fmt.Sprint(len(css))) w.WriteHeader(http.StatusOK) w.Write(css) - }) +} + +func main() { + GetCFG() + http.HandleFunc("/style.css", CssHandle) http.HandleFunc("/favicon.ico", func(w http.ResponseWriter, r *http.Request) { w.Header().Set("Content-Type", "image/x-icon") w.Header().Set("Content-Length", fmt.Sprint(len(favicon)))

@@ -60,7 +63,7 @@ w.WriteHeader(http.StatusOK)

w.Write(favicon) }) http.HandleFunc("/", indexHandler) - http.ListenAndServe("0.0.0.0:"+CFG.Addr, nil) + http.ListenAndServe("127.0.0.1:"+CFG.Addr, nil) } func WriteHtml(w http.ResponseWriter, r *http.Request, title, html string) {

@@ -102,7 +105,7 @@ }

html := LinkRemover(string(b), "") html = HTMLManName.ReplaceAllStringFunc(html, func(s string) string { m := HTMLManName.FindStringSubmatch(s) - return fmt.Sprintf(`<a href="/%s.%s">%s(%s)</a>`, m[1], m[2], m[1], m[2]) + return fmt.Sprintf(`<a href="?%s.%s">%s(%s)</a>`, m[1], m[2], m[1], m[2]) }) return html }

@@ -126,17 +129,23 @@

func searchHandler(w http.ResponseWriter, r *http.Request) { _ = r.ParseForm() q := r.Form.Get("q") - if q == "" || ManDotName.MatchString(q) { - http.Redirect(w, r, "/"+q, http.StatusFound) + if q==""{ + http.Redirect(w, r, r.URL.Path, http.StatusFound) + } + if func()bool{ + m:=NewManPage(q) + return m.Where()==nil + }() { + http.Redirect(w, r, "?"+q, http.StatusFound) return } - var args = RxWords("-l "+q, -1) + var args = RxWords("-lw "+q, -1) for i := range args { args[i] = strings.TrimSpace(args[i]) args[i] = strings.TrimPrefix(args[i], `"`) args[i] = strings.TrimSuffix(args[i], `"`) } - cmd := exec.Command("apropos", args...) + cmd := exec.Command("whatis", args...) b, e := cmd.Output() if len(b) < 1 || e != nil { WriteHtml(w, r, "Search", fmt.Sprintf("<p>404: no resualts matching %s</p>", q))

@@ -145,24 +154,31 @@ }

var output string for _, line := range RxWhatIs(string(b), -1) { // strings.Split(string(b), "\n") { if len(line) == 4 { - output += fmt.Sprintf(`<p><a href="/%s.%s">%s (%s)</a> - %s</p>%c`, line[1], line[2], line[1], line[2], line[3], 10) + output += fmt.Sprintf(`<p><a href="?%s.%s">%s (%s)</a> - %s</p>%c`, line[1], line[2], line[1], line[2], line[3], 10) } } WriteHtml(w, r, "Search", output) } func indexHandler(w http.ResponseWriter, r *http.Request) { + path:=filepath.Base(r.URL.Path) + path=strings.TrimSuffix(path,"/") + if path=="style.css" { + CssHandle(w,r) + return + } - if r.URL.Path != "/" { - // http.Redirect(w, r, "/", http.StatusFound) - man := NewManPage(r.URL.Path[1:]) - WriteHtml(w, r, man.Name, man.Html()) + if r.Method == "POST" { + searchHandler(w, r) return } - if r.Method == "POST" { - searchHandler(w, r) + + r.ParseForm() + name:=r.URL.RawQuery + if name!="" { + man := NewManPage(name) + WriteHtml(w, r, man.Name, man.Html()) return } WriteHtml(w, r, "Index", "") return - -}+}