// Copyright (c) 2015-2021 MinIO, Inc. // // This file is part of MinIO Object Storage stack // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU Affero General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU Affero General Public License for more details. // // You should have received a copy of the GNU Affero General Public License // along with this program. If not, see . package cmd import ( "fmt" "io/fs" "net/http" "github.com/gorilla/handlers" "github.com/gorilla/mux" "github.com/minio/minio/browser" "github.com/minio/minio/internal/logger" jsonrpc "github.com/minio/rpc" "github.com/minio/rpc/json2" ) // webAPI container for Web API. type webAPIHandlers struct { ObjectAPI func() ObjectLayer CacheAPI func() CacheObjectLayer } // indexHandler - Handler to serve index.html type indexHandler struct { handler http.Handler } func (h indexHandler) ServeHTTP(w http.ResponseWriter, r *http.Request) { r.URL.Path = minioReservedBucketPath + SlashSeparator h.handler.ServeHTTP(w, r) } const assetPrefix = "release" // specialAssets are files which are unique files not embedded inside index_bundle.js. const specialAssets = "index_bundle.*.js|loader.css|logo.svg|firefox.png|safari.png|chrome.png|favicon-16x16.png|favicon-32x32.png|favicon-96x96.png" // registerWebRouter - registers web router for serving minio browser. func registerWebRouter(router *mux.Router) error { // Initialize Web. web := &webAPIHandlers{ ObjectAPI: newObjectLayerFn, CacheAPI: newCachedObjectLayerFn, } // Initialize a new json2 codec. codec := json2.NewCodec() // MinIO browser router. webBrowserRouter := router.PathPrefix(minioReservedBucketPath).HeadersRegexp("User-Agent", ".*Mozilla.*").Subrouter() // Initialize json rpc handlers. webRPC := jsonrpc.NewServer() webRPC.RegisterCodec(codec, "application/json") webRPC.RegisterCodec(codec, "application/json; charset=UTF-8") webRPC.RegisterAfterFunc(func(ri *jsonrpc.RequestInfo) { if ri != nil { claims, _, _ := webRequestAuthenticate(ri.Request) bucketName, objectName := extractBucketObject(ri.Args) ri.Request = mux.SetURLVars(ri.Request, map[string]string{ "bucket": bucketName, "object": objectName, }) if globalTrace.NumSubscribers() > 0 { globalTrace.Publish(WebTrace(ri)) } ctx := newContext(ri.Request, ri.ResponseWriter, ri.Method) logger.AuditLog(ctx, ri.ResponseWriter, ri.Request, claims.Map()) } }) // Register RPC handlers with server if err := webRPC.RegisterService(web, "web"); err != nil { return err } // RPC handler at URI - /minio/webrpc webBrowserRouter.Methods(http.MethodPost).Path("/webrpc").Handler(webRPC) webBrowserRouter.Methods(http.MethodPut).Path("/upload/{bucket}/{object:.+}").HandlerFunc(httpTraceHdrs(web.Upload)) // These methods use short-expiry tokens in the URLs. These tokens may unintentionally // be logged, so a new one must be generated for each request. webBrowserRouter.Methods(http.MethodGet).Path("/download/{bucket}/{object:.+}").Queries("token", "{token:.*}").HandlerFunc(httpTraceHdrs(web.Download)) webBrowserRouter.Methods(http.MethodPost).Path("/zip").Queries("token", "{token:.*}").HandlerFunc(httpTraceHdrs(web.DownloadZip)) // Create compressed assets handler assetFS, err := fs.Sub(browser.GetStaticAssets(), assetPrefix) if err != nil { panic(err) } compressAssets := handlers.CompressHandler(http.StripPrefix(minioReservedBucketPath, http.FileServer(http.FS(assetFS)))) // Serve javascript files and favicon from assets. webBrowserRouter.Path(fmt.Sprintf("/{assets:%s}", specialAssets)).Handler(compressAssets) // Serve index.html from assets for rest of the requests. webBrowserRouter.Path("/{index:.*}").Handler(indexHandler{compressAssets}) return nil }