| 
									
										
										
										
											2016-08-29 21:18:00 +02:00
										 |  |  | // Copyright 2016 The go-ethereum Authors | 
					
						
							|  |  |  | // This file is part of the go-ethereum library. | 
					
						
							|  |  |  | // | 
					
						
							|  |  |  | // The go-ethereum library is free software: you can redistribute it and/or modify | 
					
						
							|  |  |  | // it under the terms of the GNU Lesser General Public License as published by | 
					
						
							|  |  |  | // the Free Software Foundation, either version 3 of the License, or | 
					
						
							|  |  |  | // (at your option) any later version. | 
					
						
							|  |  |  | // | 
					
						
							|  |  |  | // The go-ethereum library 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 Lesser General Public License for more details. | 
					
						
							|  |  |  | // | 
					
						
							|  |  |  | // You should have received a copy of the GNU Lesser General Public License | 
					
						
							|  |  |  | // along with the go-ethereum library. If not, see <http://www.gnu.org/licenses/>. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* | 
					
						
							|  |  |  | A simple http server interface to Swarm | 
					
						
							|  |  |  | */ | 
					
						
							|  |  |  | package http | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | import ( | 
					
						
							| 
									
										
										
										
											2018-06-20 14:06:27 +02:00
										 |  |  | 	"bufio" | 
					
						
							|  |  |  | 	"bytes" | 
					
						
							| 
									
										
										
										
											2017-04-06 23:22:22 +01:00
										 |  |  | 	"encoding/json" | 
					
						
							|  |  |  | 	"errors" | 
					
						
							| 
									
										
										
										
											2017-02-22 14:10:07 +02:00
										 |  |  | 	"fmt" | 
					
						
							| 
									
										
										
										
											2016-08-29 21:18:00 +02:00
										 |  |  | 	"io" | 
					
						
							| 
									
										
										
										
											2017-04-06 23:22:22 +01:00
										 |  |  | 	"io/ioutil" | 
					
						
							|  |  |  | 	"mime" | 
					
						
							|  |  |  | 	"mime/multipart" | 
					
						
							| 
									
										
										
										
											2016-08-29 21:18:00 +02:00
										 |  |  | 	"net/http" | 
					
						
							| 
									
										
										
										
											2017-04-06 23:22:22 +01:00
										 |  |  | 	"os" | 
					
						
							|  |  |  | 	"path" | 
					
						
							| 
									
										
										
										
											2018-06-20 14:06:27 +02:00
										 |  |  | 	"regexp" | 
					
						
							| 
									
										
										
										
											2017-04-06 23:22:22 +01:00
										 |  |  | 	"strconv" | 
					
						
							| 
									
										
										
										
											2017-01-05 11:57:41 +01:00
										 |  |  | 	"strings" | 
					
						
							| 
									
										
										
										
											2016-08-29 21:18:00 +02:00
										 |  |  | 	"time" | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	"github.com/ethereum/go-ethereum/common" | 
					
						
							| 
									
										
										
										
											2018-02-23 14:19:59 +01:00
										 |  |  | 	"github.com/ethereum/go-ethereum/metrics" | 
					
						
							| 
									
										
										
										
											2016-08-29 21:18:00 +02:00
										 |  |  | 	"github.com/ethereum/go-ethereum/swarm/api" | 
					
						
							| 
									
										
										
										
											2018-06-20 14:06:27 +02:00
										 |  |  | 	"github.com/ethereum/go-ethereum/swarm/log" | 
					
						
							| 
									
										
										
										
											2017-01-26 20:33:39 +01:00
										 |  |  | 	"github.com/ethereum/go-ethereum/swarm/storage" | 
					
						
							| 
									
										
										
										
											2018-06-20 14:06:27 +02:00
										 |  |  | 	"github.com/ethereum/go-ethereum/swarm/storage/mru" | 
					
						
							| 
									
										
										
										
											2018-07-13 17:40:28 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-01-05 11:57:41 +01:00
										 |  |  | 	"github.com/rs/cors" | 
					
						
							| 
									
										
										
										
											2016-08-29 21:18:00 +02:00
										 |  |  | ) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-06-20 14:06:27 +02:00
										 |  |  | type resourceResponse struct { | 
					
						
							|  |  |  | 	Manifest storage.Address `json:"manifest"` | 
					
						
							|  |  |  | 	Resource string          `json:"resource"` | 
					
						
							|  |  |  | 	Update   storage.Address `json:"update"` | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-02-23 14:19:59 +01:00
										 |  |  | var ( | 
					
						
							| 
									
										
										
										
											2018-06-20 14:06:27 +02:00
										 |  |  | 	postRawCount    = metrics.NewRegisteredCounter("api.http.post.raw.count", nil) | 
					
						
							|  |  |  | 	postRawFail     = metrics.NewRegisteredCounter("api.http.post.raw.fail", nil) | 
					
						
							|  |  |  | 	postFilesCount  = metrics.NewRegisteredCounter("api.http.post.files.count", nil) | 
					
						
							|  |  |  | 	postFilesFail   = metrics.NewRegisteredCounter("api.http.post.files.fail", nil) | 
					
						
							|  |  |  | 	deleteCount     = metrics.NewRegisteredCounter("api.http.delete.count", nil) | 
					
						
							|  |  |  | 	deleteFail      = metrics.NewRegisteredCounter("api.http.delete.fail", nil) | 
					
						
							|  |  |  | 	getCount        = metrics.NewRegisteredCounter("api.http.get.count", nil) | 
					
						
							|  |  |  | 	getFail         = metrics.NewRegisteredCounter("api.http.get.fail", nil) | 
					
						
							|  |  |  | 	getFileCount    = metrics.NewRegisteredCounter("api.http.get.file.count", nil) | 
					
						
							|  |  |  | 	getFileNotFound = metrics.NewRegisteredCounter("api.http.get.file.notfound", nil) | 
					
						
							|  |  |  | 	getFileFail     = metrics.NewRegisteredCounter("api.http.get.file.fail", nil) | 
					
						
							|  |  |  | 	getListCount    = metrics.NewRegisteredCounter("api.http.get.list.count", nil) | 
					
						
							|  |  |  | 	getListFail     = metrics.NewRegisteredCounter("api.http.get.list.fail", nil) | 
					
						
							| 
									
										
										
										
											2018-02-23 14:19:59 +01:00
										 |  |  | ) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-08-07 11:56:55 +02:00
										 |  |  | type methodHandler map[string]http.Handler | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | func (m methodHandler) ServeHTTP(rw http.ResponseWriter, r *http.Request) { | 
					
						
							|  |  |  | 	v, ok := m[r.Method] | 
					
						
							|  |  |  | 	if ok { | 
					
						
							|  |  |  | 		v.ServeHTTP(rw, r) | 
					
						
							|  |  |  | 		return | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	rw.WriteHeader(http.StatusMethodNotAllowed) | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-07-12 15:42:45 +02:00
										 |  |  | func NewServer(api *api.API, corsString string) *Server { | 
					
						
							| 
									
										
										
										
											2017-01-05 11:57:41 +01:00
										 |  |  | 	var allowedOrigins []string | 
					
						
							| 
									
										
										
										
											2018-07-12 15:42:45 +02:00
										 |  |  | 	for _, domain := range strings.Split(corsString, ",") { | 
					
						
							| 
									
										
										
										
											2017-01-05 11:57:41 +01:00
										 |  |  | 		allowedOrigins = append(allowedOrigins, strings.TrimSpace(domain)) | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	c := cors.New(cors.Options{ | 
					
						
							|  |  |  | 		AllowedOrigins: allowedOrigins, | 
					
						
							| 
									
										
										
										
											2018-07-12 15:42:45 +02:00
										 |  |  | 		AllowedMethods: []string{http.MethodPost, http.MethodGet, http.MethodDelete, http.MethodPatch, http.MethodPut}, | 
					
						
							| 
									
										
										
										
											2017-01-05 11:57:41 +01:00
										 |  |  | 		MaxAge:         600, | 
					
						
							| 
									
										
										
										
											2017-03-15 20:34:08 -07:00
										 |  |  | 		AllowedHeaders: []string{"*"}, | 
					
						
							| 
									
										
										
										
											2017-01-05 11:57:41 +01:00
										 |  |  | 	}) | 
					
						
							| 
									
										
										
										
											2017-04-04 23:20:07 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-07-12 15:42:45 +02:00
										 |  |  | 	server := &Server{api: api} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-08-07 11:56:55 +02:00
										 |  |  | 	defaultMiddlewares := []Adapter{ | 
					
						
							|  |  |  | 		RecoverPanic, | 
					
						
							|  |  |  | 		SetRequestID, | 
					
						
							|  |  |  | 		InitLoggingResponseWriter, | 
					
						
							|  |  |  | 		ParseURI, | 
					
						
							|  |  |  | 		InstrumentOpenTracing, | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2018-07-12 15:42:45 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-08-07 11:56:55 +02:00
										 |  |  | 	mux := http.NewServeMux() | 
					
						
							|  |  |  | 	mux.Handle("/bzz:/", methodHandler{ | 
					
						
							|  |  |  | 		"GET": Adapt( | 
					
						
							|  |  |  | 			http.HandlerFunc(server.HandleBzzGet), | 
					
						
							|  |  |  | 			defaultMiddlewares..., | 
					
						
							|  |  |  | 		), | 
					
						
							|  |  |  | 		"POST": Adapt( | 
					
						
							|  |  |  | 			http.HandlerFunc(server.HandlePostFiles), | 
					
						
							|  |  |  | 			defaultMiddlewares..., | 
					
						
							|  |  |  | 		), | 
					
						
							|  |  |  | 		"DELETE": Adapt( | 
					
						
							|  |  |  | 			http.HandlerFunc(server.HandleDelete), | 
					
						
							|  |  |  | 			defaultMiddlewares..., | 
					
						
							|  |  |  | 		), | 
					
						
							|  |  |  | 	}) | 
					
						
							|  |  |  | 	mux.Handle("/bzz-raw:/", methodHandler{ | 
					
						
							|  |  |  | 		"GET": Adapt( | 
					
						
							|  |  |  | 			http.HandlerFunc(server.HandleGet), | 
					
						
							|  |  |  | 			defaultMiddlewares..., | 
					
						
							|  |  |  | 		), | 
					
						
							|  |  |  | 		"POST": Adapt( | 
					
						
							|  |  |  | 			http.HandlerFunc(server.HandlePostRaw), | 
					
						
							|  |  |  | 			defaultMiddlewares..., | 
					
						
							|  |  |  | 		), | 
					
						
							|  |  |  | 	}) | 
					
						
							|  |  |  | 	mux.Handle("/bzz-immutable:/", methodHandler{ | 
					
						
							|  |  |  | 		"GET": Adapt( | 
					
						
							|  |  |  | 			http.HandlerFunc(server.HandleGet), | 
					
						
							|  |  |  | 			defaultMiddlewares..., | 
					
						
							|  |  |  | 		), | 
					
						
							|  |  |  | 	}) | 
					
						
							|  |  |  | 	mux.Handle("/bzz-hash:/", methodHandler{ | 
					
						
							|  |  |  | 		"GET": Adapt( | 
					
						
							|  |  |  | 			http.HandlerFunc(server.HandleGet), | 
					
						
							|  |  |  | 			defaultMiddlewares..., | 
					
						
							|  |  |  | 		), | 
					
						
							|  |  |  | 	}) | 
					
						
							|  |  |  | 	mux.Handle("/bzz-list:/", methodHandler{ | 
					
						
							|  |  |  | 		"GET": Adapt( | 
					
						
							|  |  |  | 			http.HandlerFunc(server.HandleGetList), | 
					
						
							|  |  |  | 			defaultMiddlewares..., | 
					
						
							|  |  |  | 		), | 
					
						
							|  |  |  | 	}) | 
					
						
							|  |  |  | 	mux.Handle("/bzz-resource:/", methodHandler{ | 
					
						
							|  |  |  | 		"GET": Adapt( | 
					
						
							|  |  |  | 			http.HandlerFunc(server.HandleGetResource), | 
					
						
							|  |  |  | 			defaultMiddlewares..., | 
					
						
							|  |  |  | 		), | 
					
						
							|  |  |  | 		"POST": Adapt( | 
					
						
							|  |  |  | 			http.HandlerFunc(server.HandlePostResource), | 
					
						
							|  |  |  | 			defaultMiddlewares..., | 
					
						
							|  |  |  | 		), | 
					
						
							|  |  |  | 	}) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	mux.Handle("/", methodHandler{ | 
					
						
							|  |  |  | 		"GET": Adapt( | 
					
						
							|  |  |  | 			http.HandlerFunc(server.HandleRootPaths), | 
					
						
							|  |  |  | 			SetRequestID, | 
					
						
							|  |  |  | 			InitLoggingResponseWriter, | 
					
						
							|  |  |  | 		), | 
					
						
							|  |  |  | 	}) | 
					
						
							| 
									
										
										
										
											2018-07-12 15:42:45 +02:00
										 |  |  | 	server.Handler = c.Handler(mux) | 
					
						
							| 
									
										
										
										
											2018-08-07 11:56:55 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-07-12 15:42:45 +02:00
										 |  |  | 	return server | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2018-07-11 15:46:20 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-07-12 15:42:45 +02:00
										 |  |  | func (s *Server) ListenAndServe(addr string) error { | 
					
						
							|  |  |  | 	return http.ListenAndServe(addr, s) | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2018-07-11 15:46:20 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-07-12 15:42:45 +02:00
										 |  |  | // browser API for registering bzz url scheme handlers: | 
					
						
							|  |  |  | // https://developer.mozilla.org/en/docs/Web-based_protocol_handlers | 
					
						
							|  |  |  | // electron (chromium) api for registering bzz url scheme handlers: | 
					
						
							|  |  |  | // https://github.com/atom/electron/blob/master/docs/api/protocol.md | 
					
						
							| 
									
										
										
										
											2017-04-04 23:20:07 +01:00
										 |  |  | type Server struct { | 
					
						
							| 
									
										
										
										
											2018-07-12 15:42:45 +02:00
										 |  |  | 	http.Handler | 
					
						
							| 
									
										
										
										
											2018-06-20 14:06:27 +02:00
										 |  |  | 	api *api.API | 
					
						
							| 
									
										
										
										
											2016-08-29 21:18:00 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-08-07 11:56:55 +02:00
										 |  |  | func (s *Server) HandleBzzGet(w http.ResponseWriter, r *http.Request) { | 
					
						
							|  |  |  | 	log.Debug("handleBzzGet", "ruid", GetRUID(r.Context())) | 
					
						
							|  |  |  | 	if r.Header.Get("Accept") == "application/x-tar" { | 
					
						
							|  |  |  | 		uri := GetURI(r.Context()) | 
					
						
							|  |  |  | 		reader, err := s.api.GetDirectoryTar(r.Context(), uri) | 
					
						
							|  |  |  | 		if err != nil { | 
					
						
							|  |  |  | 			RespondError(w, r, fmt.Sprintf("Had an error building the tarball: %v", err), http.StatusInternalServerError) | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		defer reader.Close() | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		w.Header().Set("Content-Type", "application/x-tar") | 
					
						
							|  |  |  | 		w.WriteHeader(http.StatusOK) | 
					
						
							|  |  |  | 		io.Copy(w, reader) | 
					
						
							|  |  |  | 		return | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	s.HandleGetFile(w, r) | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2017-04-06 23:22:22 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-08-07 11:56:55 +02:00
										 |  |  | func (s *Server) HandleRootPaths(w http.ResponseWriter, r *http.Request) { | 
					
						
							|  |  |  | 	switch r.RequestURI { | 
					
						
							|  |  |  | 	case "/": | 
					
						
							|  |  |  | 		RespondTemplate(w, r, "landing-page", "Swarm: Please request a valid ENS or swarm hash with the appropriate bzz scheme", 200) | 
					
						
							|  |  |  | 		return | 
					
						
							|  |  |  | 	case "/robots.txt": | 
					
						
							|  |  |  | 		w.Header().Set("Last-Modified", time.Now().Format(http.TimeFormat)) | 
					
						
							|  |  |  | 		fmt.Fprintf(w, "User-agent: *\nDisallow: /") | 
					
						
							|  |  |  | 	case "/favicon.ico": | 
					
						
							|  |  |  | 		w.WriteHeader(http.StatusOK) | 
					
						
							|  |  |  | 		w.Write(faviconBytes) | 
					
						
							|  |  |  | 	default: | 
					
						
							|  |  |  | 		RespondError(w, r, "Not Found", http.StatusNotFound) | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2017-04-06 23:22:22 +01:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2016-08-29 21:18:00 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-12-19 09:49:30 +01:00
										 |  |  | // HandlePostRaw handles a POST request to a raw bzz-raw:/ URI, stores the request | 
					
						
							| 
									
										
										
										
											2018-06-20 14:06:27 +02:00
										 |  |  | // body in swarm and returns the resulting storage address as a text/plain response | 
					
						
							| 
									
										
										
										
											2018-08-07 11:56:55 +02:00
										 |  |  | func (s *Server) HandlePostRaw(w http.ResponseWriter, r *http.Request) { | 
					
						
							|  |  |  | 	ruid := GetRUID(r.Context()) | 
					
						
							|  |  |  | 	log.Debug("handle.post.raw", "ruid", ruid) | 
					
						
							| 
									
										
										
										
											2018-06-20 14:06:27 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-02-23 14:19:59 +01:00
										 |  |  | 	postRawCount.Inc(1) | 
					
						
							| 
									
										
										
										
											2018-06-20 14:06:27 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	toEncrypt := false | 
					
						
							| 
									
										
										
										
											2018-08-07 11:56:55 +02:00
										 |  |  | 	uri := GetURI(r.Context()) | 
					
						
							|  |  |  | 	if uri.Addr == "encrypt" { | 
					
						
							| 
									
										
										
										
											2018-06-20 14:06:27 +02:00
										 |  |  | 		toEncrypt = true | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-08-07 11:56:55 +02:00
										 |  |  | 	if uri.Path != "" { | 
					
						
							| 
									
										
										
										
											2018-02-23 14:19:59 +01:00
										 |  |  | 		postRawFail.Inc(1) | 
					
						
							| 
									
										
										
										
											2018-08-07 11:56:55 +02:00
										 |  |  | 		RespondError(w, r, "raw POST request cannot contain a path", http.StatusBadRequest) | 
					
						
							| 
									
										
										
										
											2017-02-22 14:10:07 +02:00
										 |  |  | 		return | 
					
						
							| 
									
										
										
										
											2016-08-29 21:18:00 +02:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2017-04-06 23:22:22 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-08-07 11:56:55 +02:00
										 |  |  | 	if uri.Addr != "" && uri.Addr != "encrypt" { | 
					
						
							| 
									
										
										
										
											2018-02-23 14:19:59 +01:00
										 |  |  | 		postRawFail.Inc(1) | 
					
						
							| 
									
										
										
										
											2018-08-07 11:56:55 +02:00
										 |  |  | 		RespondError(w, r, "raw POST request addr can only be empty or \"encrypt\"", http.StatusBadRequest) | 
					
						
							| 
									
										
										
										
											2017-04-06 23:22:22 +01:00
										 |  |  | 		return | 
					
						
							| 
									
										
										
										
											2016-08-29 21:18:00 +02:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-06-20 14:06:27 +02:00
										 |  |  | 	if r.Header.Get("Content-Length") == "" { | 
					
						
							|  |  |  | 		postRawFail.Inc(1) | 
					
						
							| 
									
										
										
										
											2018-08-07 11:56:55 +02:00
										 |  |  | 		RespondError(w, r, "missing Content-Length header in request", http.StatusBadRequest) | 
					
						
							| 
									
										
										
										
											2018-06-20 14:06:27 +02:00
										 |  |  | 		return | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2018-07-12 15:42:45 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-08-07 11:56:55 +02:00
										 |  |  | 	addr, _, err := s.api.Store(r.Context(), r.Body, r.ContentLength, toEncrypt) | 
					
						
							| 
									
										
										
										
											2017-04-06 23:22:22 +01:00
										 |  |  | 	if err != nil { | 
					
						
							| 
									
										
										
										
											2018-02-23 14:19:59 +01:00
										 |  |  | 		postRawFail.Inc(1) | 
					
						
							| 
									
										
										
										
											2018-08-07 11:56:55 +02:00
										 |  |  | 		RespondError(w, r, err.Error(), http.StatusInternalServerError) | 
					
						
							| 
									
										
										
										
											2017-04-06 23:22:22 +01:00
										 |  |  | 		return | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2018-06-20 14:06:27 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-08-07 11:56:55 +02:00
										 |  |  | 	log.Debug("stored content", "ruid", ruid, "key", addr) | 
					
						
							| 
									
										
										
										
											2017-04-06 23:22:22 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	w.Header().Set("Content-Type", "text/plain") | 
					
						
							|  |  |  | 	w.WriteHeader(http.StatusOK) | 
					
						
							| 
									
										
										
										
											2018-06-20 14:06:27 +02:00
										 |  |  | 	fmt.Fprint(w, addr) | 
					
						
							| 
									
										
										
										
											2017-04-06 23:22:22 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-06-20 14:06:27 +02:00
										 |  |  | // HandlePostFiles handles a POST request to | 
					
						
							| 
									
										
										
										
											2017-04-06 23:22:22 +01:00
										 |  |  | // bzz:/<hash>/<path> which contains either a single file or multiple files | 
					
						
							|  |  |  | // (either a tar archive or multipart form), adds those files either to an | 
					
						
							|  |  |  | // existing manifest or to a new manifest under <path> and returns the | 
					
						
							|  |  |  | // resulting manifest hash as a text/plain response | 
					
						
							| 
									
										
										
										
											2018-08-07 11:56:55 +02:00
										 |  |  | func (s *Server) HandlePostFiles(w http.ResponseWriter, r *http.Request) { | 
					
						
							|  |  |  | 	ruid := GetRUID(r.Context()) | 
					
						
							|  |  |  | 	log.Debug("handle.post.files", "ruid", ruid) | 
					
						
							| 
									
										
										
										
											2018-02-23 14:19:59 +01:00
										 |  |  | 	postFilesCount.Inc(1) | 
					
						
							| 
									
										
										
										
											2018-07-13 17:40:28 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-04-06 23:22:22 +01:00
										 |  |  | 	contentType, params, err := mime.ParseMediaType(r.Header.Get("Content-Type")) | 
					
						
							|  |  |  | 	if err != nil { | 
					
						
							| 
									
										
										
										
											2018-02-23 14:19:59 +01:00
										 |  |  | 		postFilesFail.Inc(1) | 
					
						
							| 
									
										
										
										
											2018-08-07 11:56:55 +02:00
										 |  |  | 		RespondError(w, r, err.Error(), http.StatusBadRequest) | 
					
						
							| 
									
										
										
										
											2017-04-06 23:22:22 +01:00
										 |  |  | 		return | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2016-08-29 21:18:00 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-06-20 14:06:27 +02:00
										 |  |  | 	toEncrypt := false | 
					
						
							| 
									
										
										
										
											2018-08-07 11:56:55 +02:00
										 |  |  | 	uri := GetURI(r.Context()) | 
					
						
							|  |  |  | 	if uri.Addr == "encrypt" { | 
					
						
							| 
									
										
										
										
											2018-06-20 14:06:27 +02:00
										 |  |  | 		toEncrypt = true | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	var addr storage.Address | 
					
						
							| 
									
										
										
										
											2018-08-07 11:56:55 +02:00
										 |  |  | 	if uri.Addr != "" && uri.Addr != "encrypt" { | 
					
						
							|  |  |  | 		addr, err = s.api.Resolve(r.Context(), uri) | 
					
						
							| 
									
										
										
										
											2017-04-06 23:22:22 +01:00
										 |  |  | 		if err != nil { | 
					
						
							| 
									
										
										
										
											2018-02-23 14:19:59 +01:00
										 |  |  | 			postFilesFail.Inc(1) | 
					
						
							| 
									
										
										
										
											2018-08-07 11:56:55 +02:00
										 |  |  | 			RespondError(w, r, fmt.Sprintf("cannot resolve %s: %s", uri.Addr, err), http.StatusInternalServerError) | 
					
						
							| 
									
										
										
										
											2016-11-10 21:14:17 +01:00
										 |  |  | 			return | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2018-08-07 11:56:55 +02:00
										 |  |  | 		log.Debug("resolved key", "ruid", ruid, "key", addr) | 
					
						
							| 
									
										
										
										
											2017-04-06 23:22:22 +01:00
										 |  |  | 	} else { | 
					
						
							| 
									
										
										
										
											2018-07-11 15:46:20 +02:00
										 |  |  | 		addr, err = s.api.NewManifest(r.Context(), toEncrypt) | 
					
						
							| 
									
										
										
										
											2017-04-06 23:22:22 +01:00
										 |  |  | 		if err != nil { | 
					
						
							| 
									
										
										
										
											2018-02-23 14:19:59 +01:00
										 |  |  | 			postFilesFail.Inc(1) | 
					
						
							| 
									
										
										
										
											2018-08-07 11:56:55 +02:00
										 |  |  | 			RespondError(w, r, err.Error(), http.StatusInternalServerError) | 
					
						
							| 
									
										
										
										
											2016-08-29 21:18:00 +02:00
										 |  |  | 			return | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2018-08-07 11:56:55 +02:00
										 |  |  | 		log.Debug("new manifest", "ruid", ruid, "key", addr) | 
					
						
							| 
									
										
										
										
											2017-04-06 23:22:22 +01:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-08-07 11:56:55 +02:00
										 |  |  | 	newAddr, err := s.api.UpdateManifest(r.Context(), addr, func(mw *api.ManifestWriter) error { | 
					
						
							| 
									
										
										
										
											2017-04-06 23:22:22 +01:00
										 |  |  | 		switch contentType { | 
					
						
							|  |  |  | 		case "application/x-tar": | 
					
						
							| 
									
										
										
										
											2018-07-12 15:42:45 +02:00
										 |  |  | 			_, err := s.handleTarUpload(r, mw) | 
					
						
							|  |  |  | 			if err != nil { | 
					
						
							| 
									
										
										
										
											2018-08-07 11:56:55 +02:00
										 |  |  | 				RespondError(w, r, fmt.Sprintf("error uploading tarball: %v", err), http.StatusInternalServerError) | 
					
						
							| 
									
										
										
										
											2018-07-12 15:42:45 +02:00
										 |  |  | 				return err | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 			return nil | 
					
						
							| 
									
										
										
										
											2017-04-06 23:22:22 +01:00
										 |  |  | 		case "multipart/form-data": | 
					
						
							| 
									
										
										
										
											2018-07-12 15:42:45 +02:00
										 |  |  | 			return s.handleMultipartUpload(r, params["boundary"], mw) | 
					
						
							| 
									
										
										
										
											2017-04-06 23:22:22 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		default: | 
					
						
							| 
									
										
										
										
											2018-07-12 15:42:45 +02:00
										 |  |  | 			return s.handleDirectUpload(r, mw) | 
					
						
							| 
									
										
										
										
											2017-04-06 23:22:22 +01:00
										 |  |  | 		} | 
					
						
							|  |  |  | 	}) | 
					
						
							|  |  |  | 	if err != nil { | 
					
						
							| 
									
										
										
										
											2018-02-23 14:19:59 +01:00
										 |  |  | 		postFilesFail.Inc(1) | 
					
						
							| 
									
										
										
										
											2018-08-07 11:56:55 +02:00
										 |  |  | 		RespondError(w, r, fmt.Sprintf("cannot create manifest: %s", err), http.StatusInternalServerError) | 
					
						
							| 
									
										
										
										
											2017-04-06 23:22:22 +01:00
										 |  |  | 		return | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-08-07 11:56:55 +02:00
										 |  |  | 	log.Debug("stored content", "ruid", ruid, "key", newAddr) | 
					
						
							| 
									
										
										
										
											2018-06-20 14:06:27 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-04-06 23:22:22 +01:00
										 |  |  | 	w.Header().Set("Content-Type", "text/plain") | 
					
						
							|  |  |  | 	w.WriteHeader(http.StatusOK) | 
					
						
							| 
									
										
										
										
											2018-06-20 14:06:27 +02:00
										 |  |  | 	fmt.Fprint(w, newAddr) | 
					
						
							| 
									
										
										
										
											2017-04-06 23:22:22 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-08-07 11:56:55 +02:00
										 |  |  | func (s *Server) handleTarUpload(r *http.Request, mw *api.ManifestWriter) (storage.Address, error) { | 
					
						
							|  |  |  | 	log.Debug("handle.tar.upload", "ruid", GetRUID(r.Context())) | 
					
						
							| 
									
										
										
										
											2017-04-06 23:22:22 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-08-07 11:56:55 +02:00
										 |  |  | 	key, err := s.api.UploadTar(r.Context(), r.Body, GetURI(r.Context()).Path, mw) | 
					
						
							| 
									
										
										
										
											2018-07-12 15:42:45 +02:00
										 |  |  | 	if err != nil { | 
					
						
							|  |  |  | 		return nil, err | 
					
						
							| 
									
										
										
										
											2017-04-06 23:22:22 +01:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2018-07-12 15:42:45 +02:00
										 |  |  | 	return key, nil | 
					
						
							| 
									
										
										
										
											2017-04-06 23:22:22 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-08-07 11:56:55 +02:00
										 |  |  | func (s *Server) handleMultipartUpload(r *http.Request, boundary string, mw *api.ManifestWriter) error { | 
					
						
							|  |  |  | 	ruid := GetRUID(r.Context()) | 
					
						
							|  |  |  | 	log.Debug("handle.multipart.upload", "ruid", ruid) | 
					
						
							|  |  |  | 	mr := multipart.NewReader(r.Body, boundary) | 
					
						
							| 
									
										
										
										
											2017-04-06 23:22:22 +01:00
										 |  |  | 	for { | 
					
						
							|  |  |  | 		part, err := mr.NextPart() | 
					
						
							|  |  |  | 		if err == io.EOF { | 
					
						
							|  |  |  | 			return nil | 
					
						
							|  |  |  | 		} else if err != nil { | 
					
						
							|  |  |  | 			return fmt.Errorf("error reading multipart form: %s", err) | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		var size int64 | 
					
						
							|  |  |  | 		var reader io.Reader = part | 
					
						
							|  |  |  | 		if contentLength := part.Header.Get("Content-Length"); contentLength != "" { | 
					
						
							|  |  |  | 			size, err = strconv.ParseInt(contentLength, 10, 64) | 
					
						
							|  |  |  | 			if err != nil { | 
					
						
							|  |  |  | 				return fmt.Errorf("error parsing multipart content length: %s", err) | 
					
						
							| 
									
										
										
										
											2016-08-29 21:18:00 +02:00
										 |  |  | 			} | 
					
						
							| 
									
										
										
										
											2017-04-06 23:22:22 +01:00
										 |  |  | 			reader = part | 
					
						
							| 
									
										
										
										
											2016-08-29 21:18:00 +02:00
										 |  |  | 		} else { | 
					
						
							| 
									
										
										
										
											2017-04-06 23:22:22 +01:00
										 |  |  | 			// copy the part to a tmp file to get its size | 
					
						
							|  |  |  | 			tmp, err := ioutil.TempFile("", "swarm-multipart") | 
					
						
							|  |  |  | 			if err != nil { | 
					
						
							|  |  |  | 				return err | 
					
						
							| 
									
										
										
										
											2016-08-29 21:18:00 +02:00
										 |  |  | 			} | 
					
						
							| 
									
										
										
										
											2017-04-06 23:22:22 +01:00
										 |  |  | 			defer os.Remove(tmp.Name()) | 
					
						
							|  |  |  | 			defer tmp.Close() | 
					
						
							|  |  |  | 			size, err = io.Copy(tmp, part) | 
					
						
							|  |  |  | 			if err != nil { | 
					
						
							|  |  |  | 				return fmt.Errorf("error copying multipart content: %s", err) | 
					
						
							|  |  |  | 			} | 
					
						
							| 
									
										
										
										
											2017-08-08 20:34:35 +03:00
										 |  |  | 			if _, err := tmp.Seek(0, io.SeekStart); err != nil { | 
					
						
							| 
									
										
										
										
											2017-04-06 23:22:22 +01:00
										 |  |  | 				return fmt.Errorf("error copying multipart content: %s", err) | 
					
						
							| 
									
										
										
										
											2016-08-29 21:18:00 +02:00
										 |  |  | 			} | 
					
						
							| 
									
										
										
										
											2017-04-06 23:22:22 +01:00
										 |  |  | 			reader = tmp | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		// add the entry under the path from the request | 
					
						
							|  |  |  | 		name := part.FileName() | 
					
						
							|  |  |  | 		if name == "" { | 
					
						
							|  |  |  | 			name = part.FormName() | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2018-08-07 11:56:55 +02:00
										 |  |  | 		uri := GetURI(r.Context()) | 
					
						
							|  |  |  | 		path := path.Join(uri.Path, name) | 
					
						
							| 
									
										
										
										
											2017-04-06 23:22:22 +01:00
										 |  |  | 		entry := &api.ManifestEntry{ | 
					
						
							|  |  |  | 			Path:        path, | 
					
						
							|  |  |  | 			ContentType: part.Header.Get("Content-Type"), | 
					
						
							|  |  |  | 			Size:        size, | 
					
						
							|  |  |  | 			ModTime:     time.Now(), | 
					
						
							| 
									
										
										
										
											2016-08-29 21:18:00 +02:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2018-08-07 11:56:55 +02:00
										 |  |  | 		log.Debug("adding path to new manifest", "ruid", ruid, "bytes", entry.Size, "path", entry.Path) | 
					
						
							|  |  |  | 		contentKey, err := mw.AddEntry(r.Context(), reader, entry) | 
					
						
							| 
									
										
										
										
											2017-04-06 23:22:22 +01:00
										 |  |  | 		if err != nil { | 
					
						
							|  |  |  | 			return fmt.Errorf("error adding manifest entry from multipart form: %s", err) | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2018-08-07 11:56:55 +02:00
										 |  |  | 		log.Debug("stored content", "ruid", ruid, "key", contentKey) | 
					
						
							| 
									
										
										
										
											2017-04-06 23:22:22 +01:00
										 |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-08-07 11:56:55 +02:00
										 |  |  | func (s *Server) handleDirectUpload(r *http.Request, mw *api.ManifestWriter) error { | 
					
						
							|  |  |  | 	ruid := GetRUID(r.Context()) | 
					
						
							|  |  |  | 	log.Debug("handle.direct.upload", "ruid", ruid) | 
					
						
							|  |  |  | 	key, err := mw.AddEntry(r.Context(), r.Body, &api.ManifestEntry{ | 
					
						
							|  |  |  | 		Path:        GetURI(r.Context()).Path, | 
					
						
							|  |  |  | 		ContentType: r.Header.Get("Content-Type"), | 
					
						
							| 
									
										
										
										
											2017-04-06 23:22:22 +01:00
										 |  |  | 		Mode:        0644, | 
					
						
							| 
									
										
										
										
											2018-08-07 11:56:55 +02:00
										 |  |  | 		Size:        r.ContentLength, | 
					
						
							| 
									
										
										
										
											2017-04-06 23:22:22 +01:00
										 |  |  | 		ModTime:     time.Now(), | 
					
						
							|  |  |  | 	}) | 
					
						
							|  |  |  | 	if err != nil { | 
					
						
							|  |  |  | 		return err | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2018-08-07 11:56:55 +02:00
										 |  |  | 	log.Debug("stored content", "ruid", ruid, "key", key) | 
					
						
							| 
									
										
										
										
											2017-04-06 23:22:22 +01:00
										 |  |  | 	return nil | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // HandleDelete handles a DELETE request to bzz:/<manifest>/<path>, removes | 
					
						
							|  |  |  | // <path> from <manifest> and returns the resulting manifest hash as a | 
					
						
							|  |  |  | // text/plain response | 
					
						
							| 
									
										
										
										
											2018-08-07 11:56:55 +02:00
										 |  |  | func (s *Server) HandleDelete(w http.ResponseWriter, r *http.Request) { | 
					
						
							|  |  |  | 	ruid := GetRUID(r.Context()) | 
					
						
							|  |  |  | 	uri := GetURI(r.Context()) | 
					
						
							|  |  |  | 	log.Debug("handle.delete", "ruid", ruid) | 
					
						
							| 
									
										
										
										
											2018-02-23 14:19:59 +01:00
										 |  |  | 	deleteCount.Inc(1) | 
					
						
							| 
									
										
										
										
											2018-08-07 11:56:55 +02:00
										 |  |  | 	newKey, err := s.api.Delete(r.Context(), uri.Addr, uri.Path) | 
					
						
							| 
									
										
										
										
											2017-04-06 23:22:22 +01:00
										 |  |  | 	if err != nil { | 
					
						
							| 
									
										
										
										
											2018-02-23 14:19:59 +01:00
										 |  |  | 		deleteFail.Inc(1) | 
					
						
							| 
									
										
										
										
											2018-08-07 11:56:55 +02:00
										 |  |  | 		RespondError(w, r, fmt.Sprintf("could not delete from manifest: %v", err), http.StatusInternalServerError) | 
					
						
							| 
									
										
										
										
											2017-04-06 23:22:22 +01:00
										 |  |  | 		return | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	w.Header().Set("Content-Type", "text/plain") | 
					
						
							|  |  |  | 	w.WriteHeader(http.StatusOK) | 
					
						
							|  |  |  | 	fmt.Fprint(w, newKey) | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-06-20 14:06:27 +02:00
										 |  |  | // Parses a resource update post url to corresponding action | 
					
						
							|  |  |  | // possible combinations: | 
					
						
							|  |  |  | // /			add multihash update to existing hash | 
					
						
							|  |  |  | // /raw 		add raw update to existing hash | 
					
						
							|  |  |  | // /#			create new resource with first update as mulitihash | 
					
						
							|  |  |  | // /raw/#		create new resource with first update raw | 
					
						
							|  |  |  | func resourcePostMode(path string) (isRaw bool, frequency uint64, err error) { | 
					
						
							|  |  |  | 	re, err := regexp.Compile("^(raw)?/?([0-9]+)?$") | 
					
						
							|  |  |  | 	if err != nil { | 
					
						
							|  |  |  | 		return isRaw, frequency, err | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	m := re.FindAllStringSubmatch(path, 2) | 
					
						
							|  |  |  | 	var freqstr = "0" | 
					
						
							|  |  |  | 	if len(m) > 0 { | 
					
						
							|  |  |  | 		if m[0][1] != "" { | 
					
						
							|  |  |  | 			isRaw = true | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		if m[0][2] != "" { | 
					
						
							|  |  |  | 			freqstr = m[0][2] | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} else if len(path) > 0 { | 
					
						
							|  |  |  | 		return isRaw, frequency, fmt.Errorf("invalid path") | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	frequency, err = strconv.ParseUint(freqstr, 10, 64) | 
					
						
							|  |  |  | 	return isRaw, frequency, err | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // Handles creation of new mutable resources and adding updates to existing mutable resources | 
					
						
							|  |  |  | // There are two types of updates available, "raw" and "multihash." | 
					
						
							|  |  |  | // If the latter is used, a subsequent bzz:// GET call to the manifest of the resource will return | 
					
						
							|  |  |  | // the page that the multihash is pointing to, as if it held a normal swarm content manifest | 
					
						
							|  |  |  | // | 
					
						
							| 
									
										
										
										
											2018-07-21 21:49:36 +02:00
										 |  |  | // The POST request admits a JSON structure as defined in the mru package: `mru.updateRequestJSON` | 
					
						
							|  |  |  | // The requests can be to a) create a resource, b) update a resource or c) both a+b: create a resource and set the initial content | 
					
						
							| 
									
										
										
										
											2018-08-07 11:56:55 +02:00
										 |  |  | func (s *Server) HandlePostResource(w http.ResponseWriter, r *http.Request) { | 
					
						
							|  |  |  | 	ruid := GetRUID(r.Context()) | 
					
						
							|  |  |  | 	log.Debug("handle.post.resource", "ruid", ruid) | 
					
						
							| 
									
										
										
										
											2018-06-20 14:06:27 +02:00
										 |  |  | 	var err error | 
					
						
							| 
									
										
										
										
											2018-07-21 21:49:36 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	// Creation and update must send mru.updateRequestJSON JSON structure | 
					
						
							|  |  |  | 	body, err := ioutil.ReadAll(r.Body) | 
					
						
							| 
									
										
										
										
											2018-06-20 14:06:27 +02:00
										 |  |  | 	if err != nil { | 
					
						
							| 
									
										
										
										
											2018-08-07 11:56:55 +02:00
										 |  |  | 		RespondError(w, r, err.Error(), http.StatusInternalServerError) | 
					
						
							| 
									
										
										
										
											2018-07-21 21:49:36 +02:00
										 |  |  | 		return | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	var updateRequest mru.Request | 
					
						
							|  |  |  | 	if err := updateRequest.UnmarshalJSON(body); err != nil { // decodes request JSON | 
					
						
							| 
									
										
										
										
											2018-08-07 11:56:55 +02:00
										 |  |  | 		RespondError(w, r, err.Error(), http.StatusBadRequest) //TODO: send different status response depending on error | 
					
						
							| 
									
										
										
										
											2018-06-20 14:06:27 +02:00
										 |  |  | 		return | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-07-21 21:49:36 +02:00
										 |  |  | 	if updateRequest.IsUpdate() { | 
					
						
							|  |  |  | 		// Verify that the signature is intact and that the signer is authorized | 
					
						
							|  |  |  | 		// to update this resource | 
					
						
							|  |  |  | 		// Check this early, to avoid creating a resource and then not being able to set its first update. | 
					
						
							|  |  |  | 		if err = updateRequest.Verify(); err != nil { | 
					
						
							| 
									
										
										
										
											2018-08-07 11:56:55 +02:00
										 |  |  | 			RespondError(w, r, err.Error(), http.StatusForbidden) | 
					
						
							| 
									
										
										
										
											2018-07-21 21:49:36 +02:00
										 |  |  | 			return | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2018-06-20 14:06:27 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-07-21 21:49:36 +02:00
										 |  |  | 	if updateRequest.IsNew() { | 
					
						
							|  |  |  | 		err = s.api.ResourceCreate(r.Context(), &updateRequest) | 
					
						
							| 
									
										
										
										
											2018-06-20 14:06:27 +02:00
										 |  |  | 		if err != nil { | 
					
						
							|  |  |  | 			code, err2 := s.translateResourceError(w, r, "resource creation fail", err) | 
					
						
							| 
									
										
										
										
											2018-08-07 11:56:55 +02:00
										 |  |  | 			RespondError(w, r, err2.Error(), code) | 
					
						
							| 
									
										
										
										
											2018-06-20 14:06:27 +02:00
										 |  |  | 			return | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2018-07-21 21:49:36 +02:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if updateRequest.IsUpdate() { | 
					
						
							|  |  |  | 		_, err = s.api.ResourceUpdate(r.Context(), &updateRequest.SignedResourceUpdate) | 
					
						
							|  |  |  | 		if err != nil { | 
					
						
							| 
									
										
										
										
											2018-08-07 11:56:55 +02:00
										 |  |  | 			RespondError(w, r, err.Error(), http.StatusInternalServerError) | 
					
						
							| 
									
										
										
										
											2018-07-21 21:49:36 +02:00
										 |  |  | 			return | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// at this point both possible operations (create, update or both) were successful | 
					
						
							|  |  |  | 	// so in case it was a new resource, then create a manifest and send it over. | 
					
						
							| 
									
										
										
										
											2018-06-20 14:06:27 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-07-21 21:49:36 +02:00
										 |  |  | 	if updateRequest.IsNew() { | 
					
						
							| 
									
										
										
										
											2018-06-20 14:06:27 +02:00
										 |  |  | 		// we create a manifest so we can retrieve the resource with bzz:// later | 
					
						
							|  |  |  | 		// this manifest has a special "resource type" manifest, and its hash is the key of the mutable resource | 
					
						
							| 
									
										
										
										
											2018-07-21 21:49:36 +02:00
										 |  |  | 		// metadata chunk (rootAddr) | 
					
						
							|  |  |  | 		m, err := s.api.NewResourceManifest(r.Context(), updateRequest.RootAddr().Hex()) | 
					
						
							| 
									
										
										
										
											2018-06-20 14:06:27 +02:00
										 |  |  | 		if err != nil { | 
					
						
							| 
									
										
										
										
											2018-08-07 11:56:55 +02:00
										 |  |  | 			RespondError(w, r, fmt.Sprintf("failed to create resource manifest: %v", err), http.StatusInternalServerError) | 
					
						
							| 
									
										
										
										
											2018-06-20 14:06:27 +02:00
										 |  |  | 			return | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		// the key to the manifest will be passed back to the client | 
					
						
							|  |  |  | 		// the client can access the root chunk key directly through its Hash member | 
					
						
							|  |  |  | 		// the manifest key should be set as content in the resolver of the ENS name | 
					
						
							|  |  |  | 		// \TODO update manifest key automatically in ENS | 
					
						
							| 
									
										
										
										
											2018-07-21 21:49:36 +02:00
										 |  |  | 		outdata, err := json.Marshal(m) | 
					
						
							| 
									
										
										
										
											2018-06-20 14:06:27 +02:00
										 |  |  | 		if err != nil { | 
					
						
							| 
									
										
										
										
											2018-08-07 11:56:55 +02:00
										 |  |  | 			RespondError(w, r, fmt.Sprintf("failed to create json response: %s", err), http.StatusInternalServerError) | 
					
						
							| 
									
										
										
										
											2018-06-20 14:06:27 +02:00
										 |  |  | 			return | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		fmt.Fprint(w, string(outdata)) | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2018-07-21 21:49:36 +02:00
										 |  |  | 	w.Header().Add("Content-type", "application/json") | 
					
						
							| 
									
										
										
										
											2018-06-20 14:06:27 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // Retrieve mutable resource updates: | 
					
						
							|  |  |  | // bzz-resource://<id> - get latest update | 
					
						
							|  |  |  | // bzz-resource://<id>/<n> - get latest update on period n | 
					
						
							|  |  |  | // bzz-resource://<id>/<n>/<m> - get update version m of period n | 
					
						
							| 
									
										
										
										
											2018-07-21 21:49:36 +02:00
										 |  |  | // bzz-resource://<id>/meta - get metadata and next version information | 
					
						
							| 
									
										
										
										
											2018-06-20 14:06:27 +02:00
										 |  |  | // <id> = ens name or hash | 
					
						
							|  |  |  | // TODO: Enable pass maxPeriod parameter | 
					
						
							| 
									
										
										
										
											2018-08-07 11:56:55 +02:00
										 |  |  | func (s *Server) HandleGetResource(w http.ResponseWriter, r *http.Request) { | 
					
						
							|  |  |  | 	ruid := GetRUID(r.Context()) | 
					
						
							|  |  |  | 	uri := GetURI(r.Context()) | 
					
						
							|  |  |  | 	log.Debug("handle.get.resource", "ruid", ruid) | 
					
						
							| 
									
										
										
										
											2018-06-20 14:06:27 +02:00
										 |  |  | 	var err error | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// resolve the content key. | 
					
						
							| 
									
										
										
										
											2018-08-07 11:56:55 +02:00
										 |  |  | 	manifestAddr := uri.Address() | 
					
						
							| 
									
										
										
										
											2018-06-20 14:06:27 +02:00
										 |  |  | 	if manifestAddr == nil { | 
					
						
							| 
									
										
										
										
											2018-08-07 11:56:55 +02:00
										 |  |  | 		manifestAddr, err = s.api.Resolve(r.Context(), uri) | 
					
						
							| 
									
										
										
										
											2018-06-20 14:06:27 +02:00
										 |  |  | 		if err != nil { | 
					
						
							|  |  |  | 			getFail.Inc(1) | 
					
						
							| 
									
										
										
										
											2018-08-07 11:56:55 +02:00
										 |  |  | 			RespondError(w, r, fmt.Sprintf("cannot resolve %s: %s", uri.Addr, err), http.StatusNotFound) | 
					
						
							| 
									
										
										
										
											2018-06-20 14:06:27 +02:00
										 |  |  | 			return | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} else { | 
					
						
							|  |  |  | 		w.Header().Set("Cache-Control", "max-age=2147483648") | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-07-21 21:49:36 +02:00
										 |  |  | 	// get the root chunk rootAddr from the manifest | 
					
						
							|  |  |  | 	rootAddr, err := s.api.ResolveResourceManifest(r.Context(), manifestAddr) | 
					
						
							| 
									
										
										
										
											2018-06-20 14:06:27 +02:00
										 |  |  | 	if err != nil { | 
					
						
							|  |  |  | 		getFail.Inc(1) | 
					
						
							| 
									
										
										
										
											2018-08-07 11:56:55 +02:00
										 |  |  | 		RespondError(w, r, fmt.Sprintf("error resolving resource root chunk for %s: %s", uri.Addr, err), http.StatusNotFound) | 
					
						
							| 
									
										
										
										
											2018-06-20 14:06:27 +02:00
										 |  |  | 		return | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-08-07 11:56:55 +02:00
										 |  |  | 	log.Debug("handle.get.resource: resolved", "ruid", ruid, "manifestkey", manifestAddr, "rootchunk addr", rootAddr) | 
					
						
							| 
									
										
										
										
											2018-06-20 14:06:27 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-07-21 21:49:36 +02:00
										 |  |  | 	// determine if the query specifies period and version or it is a metadata query | 
					
						
							| 
									
										
										
										
											2018-06-20 14:06:27 +02:00
										 |  |  | 	var params []string | 
					
						
							| 
									
										
										
										
											2018-08-07 11:56:55 +02:00
										 |  |  | 	if len(uri.Path) > 0 { | 
					
						
							|  |  |  | 		if uri.Path == "meta" { | 
					
						
							| 
									
										
										
										
											2018-07-21 21:49:36 +02:00
										 |  |  | 			unsignedUpdateRequest, err := s.api.ResourceNewRequest(r.Context(), rootAddr) | 
					
						
							|  |  |  | 			if err != nil { | 
					
						
							|  |  |  | 				getFail.Inc(1) | 
					
						
							| 
									
										
										
										
											2018-08-07 11:56:55 +02:00
										 |  |  | 				RespondError(w, r, fmt.Sprintf("cannot retrieve resource metadata for rootAddr=%s: %s", rootAddr.Hex(), err), http.StatusNotFound) | 
					
						
							| 
									
										
										
										
											2018-07-21 21:49:36 +02:00
										 |  |  | 				return | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 			rawResponse, err := unsignedUpdateRequest.MarshalJSON() | 
					
						
							|  |  |  | 			if err != nil { | 
					
						
							| 
									
										
										
										
											2018-08-07 11:56:55 +02:00
										 |  |  | 				RespondError(w, r, fmt.Sprintf("cannot encode unsigned UpdateRequest: %v", err), http.StatusInternalServerError) | 
					
						
							| 
									
										
										
										
											2018-07-21 21:49:36 +02:00
										 |  |  | 				return | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 			w.Header().Add("Content-type", "application/json") | 
					
						
							|  |  |  | 			w.WriteHeader(http.StatusOK) | 
					
						
							|  |  |  | 			fmt.Fprint(w, string(rawResponse)) | 
					
						
							|  |  |  | 			return | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-08-07 11:56:55 +02:00
										 |  |  | 		params = strings.Split(uri.Path, "/") | 
					
						
							| 
									
										
										
										
											2018-07-21 21:49:36 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-06-20 14:06:27 +02:00
										 |  |  | 	} | 
					
						
							|  |  |  | 	var name string | 
					
						
							|  |  |  | 	var data []byte | 
					
						
							|  |  |  | 	now := time.Now() | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	switch len(params) { | 
					
						
							|  |  |  | 	case 0: // latest only | 
					
						
							| 
									
										
										
										
											2018-07-21 21:49:36 +02:00
										 |  |  | 		name, data, err = s.api.ResourceLookup(r.Context(), mru.LookupLatest(rootAddr)) | 
					
						
							| 
									
										
										
										
											2018-06-20 14:06:27 +02:00
										 |  |  | 	case 2: // specific period and version | 
					
						
							| 
									
										
										
										
											2018-07-21 21:49:36 +02:00
										 |  |  | 		var version uint64 | 
					
						
							|  |  |  | 		var period uint64 | 
					
						
							| 
									
										
										
										
											2018-06-20 14:06:27 +02:00
										 |  |  | 		version, err = strconv.ParseUint(params[1], 10, 32) | 
					
						
							|  |  |  | 		if err != nil { | 
					
						
							|  |  |  | 			break | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		period, err = strconv.ParseUint(params[0], 10, 32) | 
					
						
							|  |  |  | 		if err != nil { | 
					
						
							|  |  |  | 			break | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2018-07-21 21:49:36 +02:00
										 |  |  | 		name, data, err = s.api.ResourceLookup(r.Context(), mru.LookupVersion(rootAddr, uint32(period), uint32(version))) | 
					
						
							| 
									
										
										
										
											2018-06-20 14:06:27 +02:00
										 |  |  | 	case 1: // last version of specific period | 
					
						
							| 
									
										
										
										
											2018-07-21 21:49:36 +02:00
										 |  |  | 		var period uint64 | 
					
						
							| 
									
										
										
										
											2018-06-20 14:06:27 +02:00
										 |  |  | 		period, err = strconv.ParseUint(params[0], 10, 32) | 
					
						
							|  |  |  | 		if err != nil { | 
					
						
							|  |  |  | 			break | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2018-07-21 21:49:36 +02:00
										 |  |  | 		name, data, err = s.api.ResourceLookup(r.Context(), mru.LookupLatestVersionInPeriod(rootAddr, uint32(period))) | 
					
						
							| 
									
										
										
										
											2018-06-20 14:06:27 +02:00
										 |  |  | 	default: // bogus | 
					
						
							|  |  |  | 		err = mru.NewError(storage.ErrInvalidValue, "invalid mutable resource request") | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// any error from the switch statement will end up here | 
					
						
							|  |  |  | 	if err != nil { | 
					
						
							|  |  |  | 		code, err2 := s.translateResourceError(w, r, "mutable resource lookup fail", err) | 
					
						
							| 
									
										
										
										
											2018-08-07 11:56:55 +02:00
										 |  |  | 		RespondError(w, r, err2.Error(), code) | 
					
						
							| 
									
										
										
										
											2018-06-20 14:06:27 +02:00
										 |  |  | 		return | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// All ok, serve the retrieved update | 
					
						
							| 
									
										
										
										
											2018-08-07 11:56:55 +02:00
										 |  |  | 	log.Debug("Found update", "name", name, "ruid", ruid) | 
					
						
							| 
									
										
										
										
											2018-06-20 14:06:27 +02:00
										 |  |  | 	w.Header().Set("Content-Type", "application/octet-stream") | 
					
						
							| 
									
										
										
										
											2018-08-07 11:56:55 +02:00
										 |  |  | 	http.ServeContent(w, r, "", now, bytes.NewReader(data)) | 
					
						
							| 
									
										
										
										
											2018-06-20 14:06:27 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-08-07 11:56:55 +02:00
										 |  |  | func (s *Server) translateResourceError(w http.ResponseWriter, r *http.Request, supErr string, err error) (int, error) { | 
					
						
							| 
									
										
										
										
											2018-06-20 14:06:27 +02:00
										 |  |  | 	code := 0 | 
					
						
							|  |  |  | 	defaultErr := fmt.Errorf("%s: %v", supErr, err) | 
					
						
							|  |  |  | 	rsrcErr, ok := err.(*mru.Error) | 
					
						
							|  |  |  | 	if !ok && rsrcErr != nil { | 
					
						
							|  |  |  | 		code = rsrcErr.Code() | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	switch code { | 
					
						
							|  |  |  | 	case storage.ErrInvalidValue: | 
					
						
							|  |  |  | 		return http.StatusBadRequest, defaultErr | 
					
						
							|  |  |  | 	case storage.ErrNotFound, storage.ErrNotSynced, storage.ErrNothingToReturn, storage.ErrInit: | 
					
						
							|  |  |  | 		return http.StatusNotFound, defaultErr | 
					
						
							|  |  |  | 	case storage.ErrUnauthorized, storage.ErrInvalidSignature: | 
					
						
							|  |  |  | 		return http.StatusUnauthorized, defaultErr | 
					
						
							|  |  |  | 	case storage.ErrDataOverflow: | 
					
						
							|  |  |  | 		return http.StatusRequestEntityTooLarge, defaultErr | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return http.StatusInternalServerError, defaultErr | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-12-21 13:47:10 +01:00
										 |  |  | // HandleGet handles a GET request to | 
					
						
							|  |  |  | // - bzz-raw://<key> and responds with the raw content stored at the | 
					
						
							|  |  |  | //   given storage key | 
					
						
							|  |  |  | // - bzz-hash://<key> and responds with the hash of the content stored | 
					
						
							|  |  |  | //   at the given storage key as a text/plain response | 
					
						
							| 
									
										
										
										
											2018-08-07 11:56:55 +02:00
										 |  |  | func (s *Server) HandleGet(w http.ResponseWriter, r *http.Request) { | 
					
						
							|  |  |  | 	ruid := GetRUID(r.Context()) | 
					
						
							|  |  |  | 	uri := GetURI(r.Context()) | 
					
						
							|  |  |  | 	log.Debug("handle.get", "ruid", ruid, "uri", uri) | 
					
						
							| 
									
										
										
										
											2018-02-23 14:19:59 +01:00
										 |  |  | 	getCount.Inc(1) | 
					
						
							| 
									
										
										
										
											2018-07-13 17:40:28 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-06-20 14:06:27 +02:00
										 |  |  | 	var err error | 
					
						
							| 
									
										
										
										
											2018-08-07 11:56:55 +02:00
										 |  |  | 	addr := uri.Address() | 
					
						
							| 
									
										
										
										
											2018-06-20 14:06:27 +02:00
										 |  |  | 	if addr == nil { | 
					
						
							| 
									
										
										
										
											2018-08-07 11:56:55 +02:00
										 |  |  | 		addr, err = s.api.Resolve(r.Context(), uri) | 
					
						
							| 
									
										
										
										
											2018-06-20 14:06:27 +02:00
										 |  |  | 		if err != nil { | 
					
						
							|  |  |  | 			getFail.Inc(1) | 
					
						
							| 
									
										
										
										
											2018-08-07 11:56:55 +02:00
										 |  |  | 			RespondError(w, r, fmt.Sprintf("cannot resolve %s: %s", uri.Addr, err), http.StatusNotFound) | 
					
						
							| 
									
										
										
										
											2018-06-20 14:06:27 +02:00
										 |  |  | 			return | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} else { | 
					
						
							|  |  |  | 		w.Header().Set("Cache-Control", "max-age=2147483648, immutable") // url was of type bzz://<hex key>/path, so we are sure it is immutable. | 
					
						
							| 
									
										
										
										
											2017-04-06 23:22:22 +01:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-08-07 11:56:55 +02:00
										 |  |  | 	log.Debug("handle.get: resolved", "ruid", ruid, "key", addr) | 
					
						
							| 
									
										
										
										
											2018-06-20 14:06:27 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-04-06 23:22:22 +01:00
										 |  |  | 	// if path is set, interpret <key> as a manifest and return the | 
					
						
							|  |  |  | 	// raw entry at the given path | 
					
						
							| 
									
										
										
										
											2018-08-07 11:56:55 +02:00
										 |  |  | 	if uri.Path != "" { | 
					
						
							| 
									
										
										
										
											2018-07-11 15:46:20 +02:00
										 |  |  | 		walker, err := s.api.NewManifestWalker(r.Context(), addr, nil) | 
					
						
							| 
									
										
										
										
											2017-04-06 23:22:22 +01:00
										 |  |  | 		if err != nil { | 
					
						
							| 
									
										
										
										
											2018-02-23 14:19:59 +01:00
										 |  |  | 			getFail.Inc(1) | 
					
						
							| 
									
										
										
										
											2018-08-07 11:56:55 +02:00
										 |  |  | 			RespondError(w, r, fmt.Sprintf("%s is not a manifest", addr), http.StatusBadRequest) | 
					
						
							| 
									
										
										
										
											2017-01-26 20:33:39 +01:00
										 |  |  | 			return | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2017-04-06 23:22:22 +01:00
										 |  |  | 		var entry *api.ManifestEntry | 
					
						
							|  |  |  | 		walker.Walk(func(e *api.ManifestEntry) error { | 
					
						
							|  |  |  | 			// if the entry matches the path, set entry and stop | 
					
						
							|  |  |  | 			// the walk | 
					
						
							| 
									
										
										
										
											2018-08-07 11:56:55 +02:00
										 |  |  | 			if e.Path == uri.Path { | 
					
						
							| 
									
										
										
										
											2017-04-06 23:22:22 +01:00
										 |  |  | 				entry = e | 
					
						
							|  |  |  | 				// return an error to cancel the walk | 
					
						
							|  |  |  | 				return errors.New("found") | 
					
						
							| 
									
										
										
										
											2016-08-29 21:18:00 +02:00
										 |  |  | 			} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-04-06 23:22:22 +01:00
										 |  |  | 			// ignore non-manifest files | 
					
						
							|  |  |  | 			if e.ContentType != api.ManifestType { | 
					
						
							|  |  |  | 				return nil | 
					
						
							| 
									
										
										
										
											2016-12-22 00:35:05 +01:00
										 |  |  | 			} | 
					
						
							| 
									
										
										
										
											2016-08-29 21:18:00 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-04-06 23:22:22 +01:00
										 |  |  | 			// if the manifest's path is a prefix of the | 
					
						
							|  |  |  | 			// requested path, recurse into it by returning | 
					
						
							|  |  |  | 			// nil and continuing the walk | 
					
						
							| 
									
										
										
										
											2018-08-07 11:56:55 +02:00
										 |  |  | 			if strings.HasPrefix(uri.Path, e.Path) { | 
					
						
							| 
									
										
										
										
											2017-04-06 23:22:22 +01:00
										 |  |  | 				return nil | 
					
						
							| 
									
										
										
										
											2016-08-29 21:18:00 +02:00
										 |  |  | 			} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-06-20 14:06:27 +02:00
										 |  |  | 			return api.ErrSkipManifest | 
					
						
							| 
									
										
										
										
											2017-04-06 23:22:22 +01:00
										 |  |  | 		}) | 
					
						
							|  |  |  | 		if entry == nil { | 
					
						
							| 
									
										
										
										
											2018-02-23 14:19:59 +01:00
										 |  |  | 			getFail.Inc(1) | 
					
						
							| 
									
										
										
										
											2018-08-07 11:56:55 +02:00
										 |  |  | 			RespondError(w, r, fmt.Sprintf("manifest entry could not be loaded"), http.StatusNotFound) | 
					
						
							| 
									
										
										
										
											2018-06-20 14:06:27 +02:00
										 |  |  | 			return | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		addr = storage.Address(common.Hex2Bytes(entry.Hash)) | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	etag := common.Bytes2Hex(addr) | 
					
						
							|  |  |  | 	noneMatchEtag := r.Header.Get("If-None-Match") | 
					
						
							|  |  |  | 	w.Header().Set("ETag", fmt.Sprintf("%q", etag)) // set etag to manifest key or raw entry key. | 
					
						
							|  |  |  | 	if noneMatchEtag != "" { | 
					
						
							|  |  |  | 		if bytes.Equal(storage.Address(common.Hex2Bytes(noneMatchEtag)), addr) { | 
					
						
							| 
									
										
										
										
											2018-08-07 11:56:55 +02:00
										 |  |  | 			w.WriteHeader(http.StatusNotModified) | 
					
						
							| 
									
										
										
										
											2017-04-06 23:22:22 +01:00
										 |  |  | 			return | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2016-08-29 21:18:00 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-04-06 23:22:22 +01:00
										 |  |  | 	// check the root chunk exists by retrieving the file's size | 
					
						
							| 
									
										
										
										
											2018-08-07 11:56:55 +02:00
										 |  |  | 	reader, isEncrypted := s.api.Retrieve(r.Context(), addr) | 
					
						
							|  |  |  | 	if _, err := reader.Size(r.Context(), nil); err != nil { | 
					
						
							| 
									
										
										
										
											2018-02-23 14:19:59 +01:00
										 |  |  | 		getFail.Inc(1) | 
					
						
							| 
									
										
										
										
											2018-08-07 11:56:55 +02:00
										 |  |  | 		RespondError(w, r, fmt.Sprintf("root chunk not found %s: %s", addr, err), http.StatusNotFound) | 
					
						
							| 
									
										
										
										
											2017-04-06 23:22:22 +01:00
										 |  |  | 		return | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-06-20 14:06:27 +02:00
										 |  |  | 	w.Header().Set("X-Decrypted", fmt.Sprintf("%v", isEncrypted)) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-12-21 13:47:10 +01:00
										 |  |  | 	switch { | 
					
						
							| 
									
										
										
										
											2018-08-07 11:56:55 +02:00
										 |  |  | 	case uri.Raw(): | 
					
						
							| 
									
										
										
										
											2017-12-21 13:47:10 +01:00
										 |  |  | 		// allow the request to overwrite the content type using a query | 
					
						
							|  |  |  | 		// parameter | 
					
						
							|  |  |  | 		contentType := "application/octet-stream" | 
					
						
							|  |  |  | 		if typ := r.URL.Query().Get("content_type"); typ != "" { | 
					
						
							|  |  |  | 			contentType = typ | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		w.Header().Set("Content-Type", contentType) | 
					
						
							| 
									
										
										
										
											2018-08-07 11:56:55 +02:00
										 |  |  | 		http.ServeContent(w, r, "", time.Now(), reader) | 
					
						
							|  |  |  | 	case uri.Hash(): | 
					
						
							| 
									
										
										
										
											2017-12-21 13:47:10 +01:00
										 |  |  | 		w.Header().Set("Content-Type", "text/plain") | 
					
						
							|  |  |  | 		w.WriteHeader(http.StatusOK) | 
					
						
							| 
									
										
										
										
											2018-06-20 14:06:27 +02:00
										 |  |  | 		fmt.Fprint(w, addr) | 
					
						
							| 
									
										
										
										
											2017-12-21 13:47:10 +01:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2017-04-06 23:22:22 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-12-19 09:49:30 +01:00
										 |  |  | // HandleGetList handles a GET request to bzz-list:/<manifest>/<path> and returns | 
					
						
							|  |  |  | // a list of all files contained in <manifest> under <path> grouped into | 
					
						
							|  |  |  | // common prefixes using "/" as a delimiter | 
					
						
							| 
									
										
										
										
											2018-08-07 11:56:55 +02:00
										 |  |  | func (s *Server) HandleGetList(w http.ResponseWriter, r *http.Request) { | 
					
						
							|  |  |  | 	ruid := GetRUID(r.Context()) | 
					
						
							|  |  |  | 	uri := GetURI(r.Context()) | 
					
						
							|  |  |  | 	log.Debug("handle.get.list", "ruid", ruid, "uri", uri) | 
					
						
							| 
									
										
										
										
											2018-02-23 14:19:59 +01:00
										 |  |  | 	getListCount.Inc(1) | 
					
						
							| 
									
										
										
										
											2018-07-13 17:40:28 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-04-06 23:22:22 +01:00
										 |  |  | 	// ensure the root path has a trailing slash so that relative URLs work | 
					
						
							| 
									
										
										
										
											2018-08-07 11:56:55 +02:00
										 |  |  | 	if uri.Path == "" && !strings.HasSuffix(r.URL.Path, "/") { | 
					
						
							|  |  |  | 		http.Redirect(w, r, r.URL.Path+"/", http.StatusMovedPermanently) | 
					
						
							| 
									
										
										
										
											2017-04-06 23:22:22 +01:00
										 |  |  | 		return | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-08-07 11:56:55 +02:00
										 |  |  | 	addr, err := s.api.Resolve(r.Context(), uri) | 
					
						
							| 
									
										
										
										
											2017-04-06 23:22:22 +01:00
										 |  |  | 	if err != nil { | 
					
						
							| 
									
										
										
										
											2018-02-23 14:19:59 +01:00
										 |  |  | 		getListFail.Inc(1) | 
					
						
							| 
									
										
										
										
											2018-08-07 11:56:55 +02:00
										 |  |  | 		RespondError(w, r, fmt.Sprintf("cannot resolve %s: %s", uri.Addr, err), http.StatusNotFound) | 
					
						
							| 
									
										
										
										
											2017-04-06 23:22:22 +01:00
										 |  |  | 		return | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2018-08-07 11:56:55 +02:00
										 |  |  | 	log.Debug("handle.get.list: resolved", "ruid", ruid, "key", addr) | 
					
						
							| 
									
										
										
										
											2017-04-06 23:22:22 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-08-07 11:56:55 +02:00
										 |  |  | 	list, err := s.api.GetManifestList(r.Context(), addr, uri.Path) | 
					
						
							| 
									
										
										
										
											2017-04-06 23:22:22 +01:00
										 |  |  | 	if err != nil { | 
					
						
							| 
									
										
										
										
											2018-02-23 14:19:59 +01:00
										 |  |  | 		getListFail.Inc(1) | 
					
						
							| 
									
										
										
										
											2018-08-07 11:56:55 +02:00
										 |  |  | 		RespondError(w, r, err.Error(), http.StatusInternalServerError) | 
					
						
							| 
									
										
										
										
											2017-04-06 23:22:22 +01:00
										 |  |  | 		return | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-10-06 08:45:54 -05:00
										 |  |  | 	// if the client wants HTML (e.g. a browser) then render the list as a | 
					
						
							|  |  |  | 	// HTML index with relative URLs | 
					
						
							|  |  |  | 	if strings.Contains(r.Header.Get("Accept"), "text/html") { | 
					
						
							|  |  |  | 		w.Header().Set("Content-Type", "text/html") | 
					
						
							| 
									
										
										
										
											2018-08-07 11:56:55 +02:00
										 |  |  | 		err := TemplatesMap["bzz-list"].Execute(w, &htmlListData{ | 
					
						
							| 
									
										
										
										
											2017-12-19 09:49:30 +01:00
										 |  |  | 			URI: &api.URI{ | 
					
						
							|  |  |  | 				Scheme: "bzz", | 
					
						
							| 
									
										
										
										
											2018-08-07 11:56:55 +02:00
										 |  |  | 				Addr:   uri.Addr, | 
					
						
							|  |  |  | 				Path:   uri.Path, | 
					
						
							| 
									
										
										
										
											2017-12-19 09:49:30 +01:00
										 |  |  | 			}, | 
					
						
							| 
									
										
										
										
											2017-10-06 08:45:54 -05:00
										 |  |  | 			List: &list, | 
					
						
							|  |  |  | 		}) | 
					
						
							|  |  |  | 		if err != nil { | 
					
						
							| 
									
										
										
										
											2018-02-23 14:19:59 +01:00
										 |  |  | 			getListFail.Inc(1) | 
					
						
							| 
									
										
										
										
											2018-06-20 14:06:27 +02:00
										 |  |  | 			log.Error(fmt.Sprintf("error rendering list HTML: %s", err)) | 
					
						
							| 
									
										
										
										
											2017-10-06 08:45:54 -05:00
										 |  |  | 		} | 
					
						
							|  |  |  | 		return | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	w.Header().Set("Content-Type", "application/json") | 
					
						
							|  |  |  | 	json.NewEncoder(w).Encode(&list) | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-04-06 23:22:22 +01:00
										 |  |  | // HandleGetFile handles a GET request to bzz://<manifest>/<path> and responds | 
					
						
							|  |  |  | // with the content of the file at <path> from the given <manifest> | 
					
						
							| 
									
										
										
										
											2018-08-07 11:56:55 +02:00
										 |  |  | func (s *Server) HandleGetFile(w http.ResponseWriter, r *http.Request) { | 
					
						
							|  |  |  | 	ruid := GetRUID(r.Context()) | 
					
						
							|  |  |  | 	uri := GetURI(r.Context()) | 
					
						
							|  |  |  | 	log.Debug("handle.get.file", "ruid", ruid) | 
					
						
							| 
									
										
										
										
											2018-02-23 14:19:59 +01:00
										 |  |  | 	getFileCount.Inc(1) | 
					
						
							| 
									
										
										
										
											2018-07-13 17:40:28 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-07-25 10:51:26 +01:00
										 |  |  | 	// ensure the root path has a trailing slash so that relative URLs work | 
					
						
							| 
									
										
										
										
											2018-08-07 11:56:55 +02:00
										 |  |  | 	if uri.Path == "" && !strings.HasSuffix(r.URL.Path, "/") { | 
					
						
							|  |  |  | 		http.Redirect(w, r, r.URL.Path+"/", http.StatusMovedPermanently) | 
					
						
							| 
									
										
										
										
											2017-07-25 10:51:26 +01:00
										 |  |  | 		return | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2018-06-20 14:06:27 +02:00
										 |  |  | 	var err error | 
					
						
							| 
									
										
										
										
											2018-08-07 11:56:55 +02:00
										 |  |  | 	manifestAddr := uri.Address() | 
					
						
							| 
									
										
										
										
											2017-07-25 10:51:26 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-06-20 14:06:27 +02:00
										 |  |  | 	if manifestAddr == nil { | 
					
						
							| 
									
										
										
										
											2018-08-07 11:56:55 +02:00
										 |  |  | 		manifestAddr, err = s.api.Resolve(r.Context(), uri) | 
					
						
							| 
									
										
										
										
											2018-06-20 14:06:27 +02:00
										 |  |  | 		if err != nil { | 
					
						
							|  |  |  | 			getFileFail.Inc(1) | 
					
						
							| 
									
										
										
										
											2018-08-07 11:56:55 +02:00
										 |  |  | 			RespondError(w, r, fmt.Sprintf("cannot resolve %s: %s", uri.Addr, err), http.StatusNotFound) | 
					
						
							| 
									
										
										
										
											2018-06-20 14:06:27 +02:00
										 |  |  | 			return | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} else { | 
					
						
							|  |  |  | 		w.Header().Set("Cache-Control", "max-age=2147483648, immutable") // url was of type bzz://<hex key>/path, so we are sure it is immutable. | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-08-07 11:56:55 +02:00
										 |  |  | 	log.Debug("handle.get.file: resolved", "ruid", ruid, "key", manifestAddr) | 
					
						
							|  |  |  | 	reader, contentType, status, contentKey, err := s.api.Get(r.Context(), manifestAddr, uri.Path) | 
					
						
							| 
									
										
										
										
											2018-06-20 14:06:27 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	etag := common.Bytes2Hex(contentKey) | 
					
						
							|  |  |  | 	noneMatchEtag := r.Header.Get("If-None-Match") | 
					
						
							|  |  |  | 	w.Header().Set("ETag", fmt.Sprintf("%q", etag)) // set etag to actual content key. | 
					
						
							|  |  |  | 	if noneMatchEtag != "" { | 
					
						
							|  |  |  | 		if bytes.Equal(storage.Address(common.Hex2Bytes(noneMatchEtag)), contentKey) { | 
					
						
							| 
									
										
										
										
											2018-08-07 11:56:55 +02:00
										 |  |  | 			w.WriteHeader(http.StatusNotModified) | 
					
						
							| 
									
										
										
										
											2018-06-20 14:06:27 +02:00
										 |  |  | 			return | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2017-04-06 23:22:22 +01:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if err != nil { | 
					
						
							| 
									
										
										
										
											2017-09-08 13:29:09 -05:00
										 |  |  | 		switch status { | 
					
						
							|  |  |  | 		case http.StatusNotFound: | 
					
						
							| 
									
										
										
										
											2018-02-23 14:19:59 +01:00
										 |  |  | 			getFileNotFound.Inc(1) | 
					
						
							| 
									
										
										
										
											2018-08-07 11:56:55 +02:00
										 |  |  | 			RespondError(w, r, err.Error(), http.StatusNotFound) | 
					
						
							| 
									
										
										
										
											2017-09-08 13:29:09 -05:00
										 |  |  | 		default: | 
					
						
							| 
									
										
										
										
											2018-02-23 14:19:59 +01:00
										 |  |  | 			getFileFail.Inc(1) | 
					
						
							| 
									
										
										
										
											2018-08-07 11:56:55 +02:00
										 |  |  | 			RespondError(w, r, err.Error(), http.StatusInternalServerError) | 
					
						
							| 
									
										
										
										
											2017-09-08 13:29:09 -05:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2017-04-06 23:22:22 +01:00
										 |  |  | 		return | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-10-06 08:45:54 -05:00
										 |  |  | 	//the request results in ambiguous files | 
					
						
							|  |  |  | 	//e.g. /read with readme.md and readinglist.txt available in manifest | 
					
						
							|  |  |  | 	if status == http.StatusMultipleChoices { | 
					
						
							| 
									
										
										
										
											2018-08-07 11:56:55 +02:00
										 |  |  | 		list, err := s.api.GetManifestList(r.Context(), manifestAddr, uri.Path) | 
					
						
							| 
									
										
										
										
											2017-10-06 08:45:54 -05:00
										 |  |  | 		if err != nil { | 
					
						
							| 
									
										
										
										
											2018-02-23 14:19:59 +01:00
										 |  |  | 			getFileFail.Inc(1) | 
					
						
							| 
									
										
										
										
											2018-08-07 11:56:55 +02:00
										 |  |  | 			RespondError(w, r, err.Error(), http.StatusInternalServerError) | 
					
						
							| 
									
										
										
										
											2017-10-06 08:45:54 -05:00
										 |  |  | 			return | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-08-07 11:56:55 +02:00
										 |  |  | 		log.Debug(fmt.Sprintf("Multiple choices! --> %v", list), "ruid", ruid) | 
					
						
							| 
									
										
										
										
											2017-10-06 08:45:54 -05:00
										 |  |  | 		//show a nice page links to available entries | 
					
						
							| 
									
										
										
										
											2018-02-27 14:32:38 +01:00
										 |  |  | 		ShowMultipleChoices(w, r, list) | 
					
						
							| 
									
										
										
										
											2017-10-06 08:45:54 -05:00
										 |  |  | 		return | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-04-06 23:22:22 +01:00
										 |  |  | 	// check the root chunk exists by retrieving the file's size | 
					
						
							| 
									
										
										
										
											2018-08-07 11:56:55 +02:00
										 |  |  | 	if _, err := reader.Size(r.Context(), nil); err != nil { | 
					
						
							| 
									
										
										
										
											2018-02-23 14:19:59 +01:00
										 |  |  | 		getFileNotFound.Inc(1) | 
					
						
							| 
									
										
										
										
											2018-08-07 11:56:55 +02:00
										 |  |  | 		RespondError(w, r, fmt.Sprintf("file not found %s: %s", uri, err), http.StatusNotFound) | 
					
						
							| 
									
										
										
										
											2018-07-13 17:40:28 +02:00
										 |  |  | 		return | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-04-06 23:22:22 +01:00
										 |  |  | 	w.Header().Set("Content-Type", contentType) | 
					
						
							| 
									
										
										
										
											2018-08-07 11:56:55 +02:00
										 |  |  | 	http.ServeContent(w, r, "", time.Now(), newBufferedReadSeeker(reader, getFileBufferSize)) | 
					
						
							| 
									
										
										
										
											2018-06-20 14:06:27 +02:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2017-04-06 23:22:22 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-06-20 14:06:27 +02:00
										 |  |  | // The size of buffer used for bufio.Reader on LazyChunkReader passed to | 
					
						
							|  |  |  | // http.ServeContent in HandleGetFile. | 
					
						
							|  |  |  | // Warning: This value influences the number of chunk requests and chunker join goroutines | 
					
						
							|  |  |  | // per file request. | 
					
						
							|  |  |  | // Recommended value is 4 times the io.Copy default buffer value which is 32kB. | 
					
						
							|  |  |  | const getFileBufferSize = 4 * 32 * 1024 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // bufferedReadSeeker wraps bufio.Reader to expose Seek method | 
					
						
							|  |  |  | // from the provied io.ReadSeeker in newBufferedReadSeeker. | 
					
						
							|  |  |  | type bufferedReadSeeker struct { | 
					
						
							|  |  |  | 	r io.Reader | 
					
						
							|  |  |  | 	s io.Seeker | 
					
						
							| 
									
										
										
										
											2017-04-06 23:22:22 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-06-20 14:06:27 +02:00
										 |  |  | // newBufferedReadSeeker creates a new instance of bufferedReadSeeker, | 
					
						
							|  |  |  | // out of io.ReadSeeker. Argument `size` is the size of the read buffer. | 
					
						
							|  |  |  | func newBufferedReadSeeker(readSeeker io.ReadSeeker, size int) bufferedReadSeeker { | 
					
						
							|  |  |  | 	return bufferedReadSeeker{ | 
					
						
							|  |  |  | 		r: bufio.NewReaderSize(readSeeker, size), | 
					
						
							|  |  |  | 		s: readSeeker, | 
					
						
							| 
									
										
										
										
											2018-02-23 14:19:59 +01:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2018-06-20 14:06:27 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | func (b bufferedReadSeeker) Read(p []byte) (n int, err error) { | 
					
						
							|  |  |  | 	return b.r.Read(p) | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | func (b bufferedReadSeeker) Seek(offset int64, whence int) (int64, error) { | 
					
						
							|  |  |  | 	return b.s.Seek(offset, whence) | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | type loggingResponseWriter struct { | 
					
						
							|  |  |  | 	http.ResponseWriter | 
					
						
							|  |  |  | 	statusCode int | 
					
						
							| 
									
										
										
										
											2017-04-06 23:22:22 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-06-20 14:06:27 +02:00
										 |  |  | func newLoggingResponseWriter(w http.ResponseWriter) *loggingResponseWriter { | 
					
						
							|  |  |  | 	return &loggingResponseWriter{w, http.StatusOK} | 
					
						
							| 
									
										
										
										
											2017-09-08 13:29:09 -05:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-06-20 14:06:27 +02:00
										 |  |  | func (lrw *loggingResponseWriter) WriteHeader(code int) { | 
					
						
							|  |  |  | 	lrw.statusCode = code | 
					
						
							|  |  |  | 	lrw.ResponseWriter.WriteHeader(code) | 
					
						
							| 
									
										
										
										
											2016-08-29 21:18:00 +02:00
										 |  |  | } |