2023-08-10 18:58:59 +01:00
|
|
|
// Copyright (c) Tailscale Inc & AUTHORS
|
|
|
|
// SPDX-License-Identifier: BSD-3-Clause
|
|
|
|
|
|
|
|
package web
|
|
|
|
|
|
|
|
import (
|
2023-11-14 23:00:46 +00:00
|
|
|
"io/fs"
|
2023-08-10 18:58:59 +01:00
|
|
|
"log"
|
|
|
|
"net/http"
|
|
|
|
"net/http/httputil"
|
|
|
|
"net/url"
|
|
|
|
"os"
|
|
|
|
"os/exec"
|
|
|
|
"path/filepath"
|
|
|
|
"strings"
|
2023-09-08 20:30:07 +01:00
|
|
|
|
2023-09-19 17:46:06 +01:00
|
|
|
prebuilt "github.com/tailscale/web-client-prebuilt"
|
2023-08-10 18:58:59 +01:00
|
|
|
)
|
|
|
|
|
2023-09-08 20:30:07 +01:00
|
|
|
func assetsHandler(devMode bool) (_ http.Handler, cleanup func()) {
|
|
|
|
if devMode {
|
|
|
|
// When in dev mode, proxy asset requests to the Vite dev server.
|
|
|
|
cleanup := startDevServer()
|
|
|
|
return devServerProxy(), cleanup
|
|
|
|
}
|
2023-11-14 23:00:46 +00:00
|
|
|
|
|
|
|
fsys := prebuilt.FS()
|
|
|
|
fileserver := http.FileServer(http.FS(fsys))
|
|
|
|
return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
|
|
|
|
_, err := fs.Stat(fsys, strings.TrimPrefix(r.URL.Path, "/"))
|
|
|
|
if os.IsNotExist(err) {
|
|
|
|
// rewrite request to just fetch /index.html and let
|
|
|
|
// the frontend router handle it.
|
|
|
|
r = r.Clone(r.Context())
|
|
|
|
r.URL.Path = "/"
|
|
|
|
}
|
|
|
|
fileserver.ServeHTTP(w, r)
|
|
|
|
}), nil
|
2023-09-08 20:30:07 +01:00
|
|
|
}
|
|
|
|
|
2023-08-10 18:58:59 +01:00
|
|
|
// startDevServer starts the JS dev server that does on-demand rebuilding
|
|
|
|
// and serving of web client JS and CSS resources.
|
2023-09-08 20:30:07 +01:00
|
|
|
func startDevServer() (cleanup func()) {
|
2023-08-10 18:58:59 +01:00
|
|
|
root := gitRootDir()
|
|
|
|
webClientPath := filepath.Join(root, "client", "web")
|
|
|
|
|
|
|
|
yarn := filepath.Join(root, "tool", "yarn")
|
|
|
|
node := filepath.Join(root, "tool", "node")
|
|
|
|
vite := filepath.Join(webClientPath, "node_modules", ".bin", "vite")
|
|
|
|
|
2023-11-04 00:19:20 +00:00
|
|
|
log.Printf("installing JavaScript deps using %s...", yarn)
|
2023-08-10 18:58:59 +01:00
|
|
|
out, err := exec.Command(yarn, "--non-interactive", "-s", "--cwd", webClientPath, "install").CombinedOutput()
|
|
|
|
if err != nil {
|
|
|
|
log.Fatalf("error running tailscale web's yarn install: %v, %s", err, out)
|
|
|
|
}
|
|
|
|
log.Printf("starting JavaScript dev server...")
|
|
|
|
cmd := exec.Command(node, vite)
|
|
|
|
cmd.Dir = webClientPath
|
|
|
|
cmd.Stdout = os.Stdout
|
|
|
|
cmd.Stderr = os.Stderr
|
|
|
|
if err := cmd.Start(); err != nil {
|
|
|
|
log.Fatalf("Starting JS dev server: %v", err)
|
|
|
|
}
|
|
|
|
log.Printf("JavaScript dev server running as pid %d", cmd.Process.Pid)
|
|
|
|
return func() {
|
|
|
|
cmd.Process.Signal(os.Interrupt)
|
|
|
|
err := cmd.Wait()
|
|
|
|
log.Printf("JavaScript dev server exited: %v", err)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-09-08 20:30:07 +01:00
|
|
|
// devServerProxy returns a reverse proxy to the vite dev server.
|
|
|
|
func devServerProxy() *httputil.ReverseProxy {
|
2023-08-10 18:58:59 +01:00
|
|
|
// We use Vite to develop on the web client.
|
|
|
|
// Vite starts up its own local server for development,
|
|
|
|
// which we proxy requests to from Server.ServeHTTP.
|
|
|
|
// Here we set up the proxy to Vite's server.
|
|
|
|
handleErr := func(w http.ResponseWriter, r *http.Request, err error) {
|
|
|
|
w.Header().Set("Content-Type", "text/plain")
|
|
|
|
w.WriteHeader(http.StatusBadGateway)
|
|
|
|
w.Write([]byte("The web client development server isn't running. " +
|
|
|
|
"Run `./tool/yarn --cwd client/web start` from " +
|
|
|
|
"the repo root to start the development server."))
|
|
|
|
w.Write([]byte("\n\nError: " + err.Error()))
|
|
|
|
}
|
|
|
|
viteTarget, _ := url.Parse("http://127.0.0.1:4000")
|
2023-09-08 20:30:07 +01:00
|
|
|
devProxy := httputil.NewSingleHostReverseProxy(viteTarget)
|
|
|
|
devProxy.ErrorHandler = handleErr
|
|
|
|
return devProxy
|
2023-08-10 18:58:59 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
func gitRootDir() string {
|
|
|
|
top, err := exec.Command("git", "rev-parse", "--show-toplevel").Output()
|
|
|
|
if err != nil {
|
|
|
|
log.Fatalf("failed to find git top level (not in corp git?): %v", err)
|
|
|
|
}
|
|
|
|
return strings.TrimSpace(string(top))
|
|
|
|
}
|