| 
									
										
										
										
											2016-03-28 03:37:21 +08:00
										 |  |  | /* | 
					
						
							|  |  |  |  * Minio Cloud Storage, (C) 2016 Minio, Inc. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * Licensed under the Apache License, Version 2.0 (the "License"); | 
					
						
							|  |  |  |  * you may not use this file except in compliance with the License. | 
					
						
							|  |  |  |  * You may obtain a copy of the License at | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  *     http://www.apache.org/licenses/LICENSE-2.0
 | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * Unless required by applicable law or agreed to in writing, software | 
					
						
							|  |  |  |  * distributed under the License is distributed on an "AS IS" BASIS, | 
					
						
							|  |  |  |  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | 
					
						
							|  |  |  |  * See the License for the specific language governing permissions and | 
					
						
							|  |  |  |  * limitations under the License. | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-08-19 07:23:42 +08:00
										 |  |  | package cmd | 
					
						
							| 
									
										
										
										
											2016-03-28 03:37:21 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | import ( | 
					
						
							|  |  |  | 	"fmt" | 
					
						
							|  |  |  | 	"net/http" | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	"github.com/elazarl/go-bindata-assetfs" | 
					
						
							|  |  |  | 	"github.com/gorilla/handlers" | 
					
						
							|  |  |  | 	router "github.com/gorilla/mux" | 
					
						
							|  |  |  | 	jsonrpc "github.com/gorilla/rpc/v2" | 
					
						
							|  |  |  | 	"github.com/gorilla/rpc/v2/json2" | 
					
						
							| 
									
										
										
										
											2017-01-24 10:07:22 +08:00
										 |  |  | 	"github.com/minio/minio/browser" | 
					
						
							| 
									
										
										
										
											2016-03-28 03:37:21 +08:00
										 |  |  | ) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // webAPI container for Web API.
 | 
					
						
							| 
									
										
										
										
											2016-04-13 03:45:15 +08:00
										 |  |  | type webAPIHandlers struct { | 
					
						
							| 
									
										
										
										
											2016-08-01 05:11:14 +08:00
										 |  |  | 	ObjectAPI func() ObjectLayer | 
					
						
							| 
									
										
										
										
											2016-03-28 03:37:21 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // indexHandler - Handler to serve index.html
 | 
					
						
							|  |  |  | type indexHandler struct { | 
					
						
							|  |  |  | 	handler http.Handler | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | func (h indexHandler) ServeHTTP(w http.ResponseWriter, r *http.Request) { | 
					
						
							| 
									
										
										
										
											2017-02-17 06:52:14 +08:00
										 |  |  | 	r.URL.Path = minioReservedBucketPath + "/" | 
					
						
							| 
									
										
										
										
											2016-03-28 03:37:21 +08:00
										 |  |  | 	h.handler.ServeHTTP(w, r) | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | const assetPrefix = "production" | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | func assetFS() *assetfs.AssetFS { | 
					
						
							|  |  |  | 	return &assetfs.AssetFS{ | 
					
						
							| 
									
										
										
										
											2017-02-23 09:27:26 +08:00
										 |  |  | 		Asset:     browser.Asset, | 
					
						
							|  |  |  | 		AssetDir:  browser.AssetDir, | 
					
						
							|  |  |  | 		AssetInfo: browser.AssetInfo, | 
					
						
							| 
									
										
										
										
											2016-03-28 03:37:21 +08:00
										 |  |  | 		Prefix:    assetPrefix, | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // specialAssets are files which are unique files not embedded inside index_bundle.js.
 | 
					
						
							|  |  |  | const specialAssets = "loader.css|logo.svg|firefox.png|safari.png|chrome.png|favicon.ico" | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // registerWebRouter - registers web router for serving minio browser.
 | 
					
						
							| 
									
										
										
										
											2016-10-14 08:34:10 +08:00
										 |  |  | func registerWebRouter(mux *router.Router) error { | 
					
						
							| 
									
										
										
										
											2016-10-06 03:48:07 +08:00
										 |  |  | 	// Initialize Web.
 | 
					
						
							|  |  |  | 	web := &webAPIHandlers{ | 
					
						
							|  |  |  | 		ObjectAPI: newObjectLayerFn, | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-03-28 03:37:21 +08:00
										 |  |  | 	// Initialize a new json2 codec.
 | 
					
						
							|  |  |  | 	codec := json2.NewCodec() | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-04-08 14:44:08 +08:00
										 |  |  | 	// Minio browser router.
 | 
					
						
							| 
									
										
										
										
											2017-02-17 06:52:14 +08:00
										 |  |  | 	webBrowserRouter := mux.NewRoute().PathPrefix(minioReservedBucketPath).Subrouter() | 
					
						
							| 
									
										
										
										
											2016-03-28 03:37:21 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	// Initialize json rpc handlers.
 | 
					
						
							|  |  |  | 	webRPC := jsonrpc.NewServer() | 
					
						
							|  |  |  | 	webRPC.RegisterCodec(codec, "application/json") | 
					
						
							|  |  |  | 	webRPC.RegisterCodec(codec, "application/json; charset=UTF-8") | 
					
						
							| 
									
										
										
										
											2016-10-14 08:34:10 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	// Register RPC handlers with server
 | 
					
						
							|  |  |  | 	if err := webRPC.RegisterService(web, "Web"); err != nil { | 
					
						
							|  |  |  | 		return err | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2016-03-28 03:37:21 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-04-08 14:44:08 +08:00
										 |  |  | 	// RPC handler at URI - /minio/webrpc
 | 
					
						
							|  |  |  | 	webBrowserRouter.Methods("POST").Path("/webrpc").Handler(webRPC) | 
					
						
							| 
									
										
										
										
											2016-03-31 21:57:29 +08:00
										 |  |  | 	webBrowserRouter.Methods("PUT").Path("/upload/{bucket}/{object:.+}").HandlerFunc(web.Upload) | 
					
						
							| 
									
										
										
										
											2016-04-13 03:45:15 +08:00
										 |  |  | 	webBrowserRouter.Methods("GET").Path("/download/{bucket}/{object:.+}").Queries("token", "{token:.*}").HandlerFunc(web.Download) | 
					
						
							| 
									
										
										
										
											2017-02-23 06:51:38 +08:00
										 |  |  | 	webBrowserRouter.Methods("POST").Path("/zip").Queries("token", "{token:.*}").HandlerFunc(web.DownloadZip) | 
					
						
							| 
									
										
										
										
											2016-03-28 03:37:21 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	// Add compression for assets.
 | 
					
						
							| 
									
										
										
										
											2017-02-17 06:52:14 +08:00
										 |  |  | 	compressedAssets := handlers.CompressHandler(http.StripPrefix(minioReservedBucketPath, http.FileServer(assetFS()))) | 
					
						
							| 
									
										
										
										
											2016-03-28 03:37:21 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	// Serve javascript files and favicon from assets.
 | 
					
						
							|  |  |  | 	webBrowserRouter.Path(fmt.Sprintf("/{assets:[^/]+.js|%s}", specialAssets)).Handler(compressedAssets) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// Serve index.html for rest of the requests.
 | 
					
						
							| 
									
										
										
										
											2017-02-17 06:52:14 +08:00
										 |  |  | 	webBrowserRouter.Path("/{index:.*}").Handler(indexHandler{http.StripPrefix(minioReservedBucketPath, http.FileServer(assetFS()))}) | 
					
						
							| 
									
										
										
										
											2016-10-14 08:34:10 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	return nil | 
					
						
							| 
									
										
										
										
											2016-03-28 03:37:21 +08:00
										 |  |  | } |