2022-09-18 19:28:19 +03:00
|
|
|
package page
|
|
|
|
|
2022-10-09 17:54:24 +03:00
|
|
|
import (
|
|
|
|
"github.com/Redume/EveryNasa/functions"
|
|
|
|
"net/http"
|
|
|
|
"strings"
|
|
|
|
)
|
2022-09-18 19:28:19 +03:00
|
|
|
|
|
|
|
func AboutHandler(w http.ResponseWriter, r *http.Request) {
|
2022-10-09 17:54:24 +03:00
|
|
|
con := functions.Connected()
|
|
|
|
if con == false {
|
|
|
|
http.ServeFile(w, r, "web/src/errors/504.html")
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
userAgent := r.UserAgent()
|
|
|
|
if strings.Contains(userAgent, "Mobile") {
|
|
|
|
http.ServeFile(w, r, "web/src/errors/mobile.html")
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
if r.URL.Path != "/about" {
|
|
|
|
http.ServeFile(w, r, "web/src/errors/404.html")
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2022-09-18 19:28:19 +03:00
|
|
|
http.ServeFile(w, r, "web/src/about.html")
|
|
|
|
}
|