2015-07-07 00:54:22 +00:00
|
|
|
// Copyright 2015 The go-ethereum Authors
|
2015-07-22 16:48:40 +00:00
|
|
|
// This file is part of the go-ethereum library.
|
2015-07-07 00:54:22 +00:00
|
|
|
//
|
2015-07-23 16:35:11 +00:00
|
|
|
// The go-ethereum library is free software: you can redistribute it and/or modify
|
2015-07-07 00:54:22 +00:00
|
|
|
// 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.
|
|
|
|
//
|
2015-07-22 16:48:40 +00:00
|
|
|
// The go-ethereum library is distributed in the hope that it will be useful,
|
2015-07-07 00:54:22 +00:00
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
2015-07-22 16:48:40 +00:00
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
2015-07-07 00:54:22 +00:00
|
|
|
// GNU Lesser General Public License for more details.
|
|
|
|
//
|
|
|
|
// You should have received a copy of the GNU Lesser General Public License
|
2015-07-22 16:48:40 +00:00
|
|
|
// along with the go-ethereum library. If not, see <http://www.gnu.org/licenses/>.
|
2015-07-07 00:54:22 +00:00
|
|
|
|
2015-03-31 15:02:35 +00:00
|
|
|
package docserver
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
"io/ioutil"
|
|
|
|
"net/http"
|
2015-06-23 14:48:33 +00:00
|
|
|
"path/filepath"
|
2015-03-31 15:02:35 +00:00
|
|
|
|
|
|
|
"github.com/ethereum/go-ethereum/common"
|
|
|
|
"github.com/ethereum/go-ethereum/crypto"
|
|
|
|
)
|
|
|
|
|
|
|
|
type DocServer struct {
|
|
|
|
*http.Transport
|
|
|
|
DocRoot string
|
2015-06-23 14:48:33 +00:00
|
|
|
schemes []string
|
2015-03-31 15:02:35 +00:00
|
|
|
}
|
|
|
|
|
2015-06-23 14:48:33 +00:00
|
|
|
func New(docRoot string) (self *DocServer) {
|
2015-03-31 15:02:35 +00:00
|
|
|
self = &DocServer{
|
|
|
|
Transport: &http.Transport{},
|
|
|
|
DocRoot: docRoot,
|
2015-06-23 14:48:33 +00:00
|
|
|
schemes: []string{"file"},
|
2015-03-31 15:02:35 +00:00
|
|
|
}
|
2015-06-23 14:48:33 +00:00
|
|
|
self.RegisterProtocol("file", http.NewFileTransport(http.Dir(self.DocRoot)))
|
2015-03-31 15:02:35 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
// Clients should be reused instead of created as needed. Clients are safe for concurrent use by multiple goroutines.
|
|
|
|
|
|
|
|
// A Client is higher-level than a RoundTripper (such as Transport) and additionally handles HTTP details such as cookies and redirects.
|
|
|
|
|
|
|
|
func (self *DocServer) Client() *http.Client {
|
|
|
|
return &http.Client{
|
|
|
|
Transport: self,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-06-23 14:48:33 +00:00
|
|
|
func (self *DocServer) RegisterScheme(scheme string, rt http.RoundTripper) {
|
|
|
|
self.schemes = append(self.schemes, scheme)
|
|
|
|
self.RegisterProtocol(scheme, rt)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (self *DocServer) HasScheme(scheme string) bool {
|
|
|
|
for _, s := range self.schemes {
|
|
|
|
if s == scheme {
|
|
|
|
return true
|
|
|
|
}
|
2015-03-31 15:02:35 +00:00
|
|
|
}
|
2015-06-23 14:48:33 +00:00
|
|
|
return false
|
2015-03-31 15:02:35 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (self *DocServer) GetAuthContent(uri string, hash common.Hash) (content []byte, err error) {
|
2015-06-23 14:48:33 +00:00
|
|
|
// retrieve content
|
2015-07-05 18:19:42 +00:00
|
|
|
content, err = self.Get(uri, "")
|
2015-06-23 14:48:33 +00:00
|
|
|
if err != nil {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
// check hash to authenticate content
|
2015-07-05 18:19:42 +00:00
|
|
|
chash := crypto.Sha3Hash(content)
|
2015-06-23 14:48:33 +00:00
|
|
|
if chash != hash {
|
|
|
|
content = nil
|
2015-07-05 18:19:42 +00:00
|
|
|
err = fmt.Errorf("content hash mismatch %x != %x (exp)", hash[:], chash[:])
|
2015-06-23 14:48:33 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
// Get(uri, path) downloads the document at uri, if path is non-empty it
|
|
|
|
// is interpreted as a filepath to which the contents are saved
|
|
|
|
func (self *DocServer) Get(uri, path string) (content []byte, err error) {
|
2015-03-31 15:02:35 +00:00
|
|
|
// retrieve content
|
|
|
|
resp, err := self.Client().Get(uri)
|
2015-06-23 14:48:33 +00:00
|
|
|
|
2015-04-06 06:01:36 +00:00
|
|
|
defer func() {
|
|
|
|
if resp != nil {
|
|
|
|
resp.Body.Close()
|
|
|
|
}
|
|
|
|
}()
|
2015-03-31 15:02:35 +00:00
|
|
|
if err != nil {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
content, err = ioutil.ReadAll(resp.Body)
|
|
|
|
if err != nil {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2015-06-23 14:48:33 +00:00
|
|
|
if path != "" {
|
|
|
|
var abspath string
|
|
|
|
abspath, err = filepath.Abs(path)
|
|
|
|
ioutil.WriteFile(abspath, content, 0700)
|
2015-03-31 15:02:35 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return
|
|
|
|
|
|
|
|
}
|