// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved. // See LICENSE.txt for license information. package web import ( "bytes" "fmt" "html" "net/http" "os" "path" "path/filepath" "strings" "github.com/klauspost/compress/gzhttp" "github.com/mattermost/mattermost/server/public/model" "github.com/mattermost/mattermost/server/public/shared/mlog" "github.com/mattermost/mattermost/server/v8/channels/utils" "github.com/mattermost/mattermost/server/v8/channels/utils/fileutils" "github.com/mattermost/mattermost/server/v8/platform/shared/templates" ) var robotsTxt = []byte("User-agent: *\nDisallow: /\n") func (w *Web) InitStatic() { if *w.srv.Config().ServiceSettings.WebserverMode != "disabled" { if err := utils.UpdateAssetsSubpathFromConfig(w.srv.Config()); err != nil { mlog.Error("Failed to update assets subpath from config", mlog.Err(err)) } staticDir, _ := fileutils.FindDir(model.ClientDir) mlog.Debug("Using client directory", mlog.String("clientDir", staticDir)) subpath, _ := utils.GetSubpathFromConfig(w.srv.Config()) staticHandler := staticFilesHandler(http.StripPrefix(path.Join(subpath, "static"), http.FileServer(http.Dir(staticDir)))) pluginHandler := staticFilesHandler(http.StripPrefix(path.Join(subpath, "static", "plugins"), http.FileServer(http.Dir(*w.srv.Config().PluginSettings.ClientDirectory)))) if *w.srv.Config().ServiceSettings.WebserverMode == "gzip" { staticHandler = gzhttp.GzipHandler(staticHandler) pluginHandler = gzhttp.GzipHandler(pluginHandler) } w.MainRouter.PathPrefix("/static/plugins/").Handler(pluginHandler) w.MainRouter.PathPrefix("/static/").Handler(staticHandler) w.MainRouter.Handle("/robots.txt", http.HandlerFunc(robotsHandler)) w.MainRouter.Handle("/unsupported_browser.js", http.HandlerFunc(unsupportedBrowserScriptHandler)) w.MainRouter.Handle("/{anything:.*}", w.NewStaticHandler(root)).Methods(http.MethodGet, http.MethodHead) // When a subpath is defined, it's necessary to handle redirects without a // trailing slash. We don't want to use StrictSlash on the w.MainRouter and affect // all routes, just /subpath -> /subpath/. w.MainRouter.HandleFunc("", http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) { r.URL.Path += "/" http.Redirect(w, r, r.URL.String(), http.StatusFound) })) } } func root(c *Context, w http.ResponseWriter, r *http.Request) { if !CheckClientCompatibility(r.UserAgent()) { w.Header().Set("Cache-Control", "no-store") data := renderUnsupportedBrowser(c.AppContext, r) err := c.App.Srv().TemplatesContainer().Render(w, "unsupported_browser", data) if err != nil { c.Logger.Error("Failed to render template", mlog.Err(err)) http.Error(w, err.Error(), http.StatusInternalServerError) return } return } if IsAPICall(c.App, r) { Handle404(c.App, w, r) return } w.Header().Set("Cache-Control", "no-cache, max-age=31556926, public") staticDir, _ := fileutils.FindDir(model.ClientDir) contents, err := os.ReadFile(filepath.Join(staticDir, "root.html")) if err != nil { c.Logger.Warn("Failed to read content from file", mlog.String("file_path", filepath.Join(staticDir, "root.html")), mlog.Err(err)) http.Error(w, err.Error(), http.StatusInternalServerError) return } titleTemplate := "