api.go 4.52 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
// 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/>.

package api

import (
20
	"errors"
21 22
	"fmt"
	"io"
23
	"net/http"
24 25 26 27 28
	"regexp"
	"strings"
	"sync"

	"github.com/ethereum/go-ethereum/common"
29
	"github.com/ethereum/go-ethereum/log"
30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73
	"github.com/ethereum/go-ethereum/swarm/storage"
)

var (
	hashMatcher      = regexp.MustCompile("^[0-9A-Fa-f]{64}")
	slashes          = regexp.MustCompile("/+")
	domainAndVersion = regexp.MustCompile("[@:;,]+")
)

type Resolver interface {
	Resolve(string) (common.Hash, error)
}

/*
Api implements webserver/file system related content storage and retrieval
on top of the dpa
it is the public interface of the dpa which is included in the ethereum stack
*/
type Api struct {
	dpa *storage.DPA
	dns Resolver
}

//the api constructor initialises
func NewApi(dpa *storage.DPA, dns Resolver) (self *Api) {
	self = &Api{
		dpa: dpa,
		dns: dns,
	}
	return
}

// DPA reader API
func (self *Api) Retrieve(key storage.Key) storage.LazySectionReader {
	return self.dpa.Retrieve(key)
}

func (self *Api) Store(data io.Reader, size int64, wg *sync.WaitGroup) (key storage.Key, err error) {
	return self.dpa.Store(data, size, wg, nil)
}

type ErrResolve error

// DNS Resolver
74 75 76 77 78
func (self *Api) Resolve(uri *URI) (storage.Key, error) {
	log.Trace(fmt.Sprintf("Resolving : %v", uri.Addr))
	if hashMatcher.MatchString(uri.Addr) {
		log.Trace(fmt.Sprintf("addr is a hash: %q", uri.Addr))
		return storage.Key(common.Hex2Bytes(uri.Addr)), nil
79
	}
80 81
	if uri.Immutable() {
		return nil, errors.New("refusing to resolve immutable address")
82
	}
83 84
	if self.dns == nil {
		return nil, fmt.Errorf("unable to resolve addr %q, resolver not configured", uri.Addr)
85
	}
86 87 88 89
	hash, err := self.dns.Resolve(uri.Addr)
	if err != nil {
		log.Warn(fmt.Sprintf("DNS error resolving addr %q: %s", uri.Addr, err))
		return nil, ErrResolve(err)
90
	}
91 92
	log.Trace(fmt.Sprintf("addr lookup: %v -> %v", uri.Addr, hash))
	return hash[:], nil
93 94 95
}

// Put provides singleton manifest creation on top of dpa store
96
func (self *Api) Put(content, contentType string) (storage.Key, error) {
97 98 99 100
	r := strings.NewReader(content)
	wg := &sync.WaitGroup{}
	key, err := self.dpa.Store(r, int64(len(content)), wg, nil)
	if err != nil {
101
		return nil, err
102 103 104 105 106
	}
	manifest := fmt.Sprintf(`{"entries":[{"hash":"%v","contentType":"%s"}]}`, key, contentType)
	r = strings.NewReader(manifest)
	key, err = self.dpa.Store(r, int64(len(manifest)), wg, nil)
	if err != nil {
107
		return nil, err
108 109
	}
	wg.Wait()
110
	return key, nil
111 112 113 114 115
}

// Get uses iterative manifest retrieval and prefix matching
// to resolve path to content using dpa retrieve
// it returns a section reader, mimeType, status and an error
116 117
func (self *Api) Get(key storage.Key, path string) (reader storage.LazySectionReader, mimeType string, status int, err error) {
	trie, err := loadManifest(self.dpa, key, nil)
118
	if err != nil {
119
		log.Warn(fmt.Sprintf("loadManifestTrie error: %v", err))
120 121 122
		return
	}

123
	log.Trace(fmt.Sprintf("getEntry(%s)", path))
124

125
	entry, _ := trie.getEntry(path)
126

127 128 129 130
	if entry != nil {
		key = common.Hex2Bytes(entry.Hash)
		status = entry.Status
		mimeType = entry.ContentType
131
		log.Trace(fmt.Sprintf("content lookup key: '%v' (%v)", key, mimeType))
132 133
		reader = self.dpa.Retrieve(key)
	} else {
134
		status = http.StatusNotFound
135
		err = fmt.Errorf("manifest entry for '%s' not found", path)
136
		log.Warn(fmt.Sprintf("%v", err))
137 138 139 140
	}
	return
}

141
func (self *Api) Modify(key storage.Key, path, contentHash, contentType string) (storage.Key, error) {
142
	quitC := make(chan bool)
143
	trie, err := loadManifest(self.dpa, key, quitC)
144
	if err != nil {
145
		return nil, err
146 147
	}
	if contentHash != "" {
148
		entry := newManifestTrieEntry(&ManifestEntry{
149 150
			Path:        path,
			ContentType: contentType,
151 152
		}, nil)
		entry.Hash = contentHash
153 154 155 156 157
		trie.addEntry(entry, quitC)
	} else {
		trie.deleteEntry(path, quitC)
	}

158 159
	if err := trie.recalcAndStore(); err != nil {
		return nil, err
160
	}
161
	return trie.hash, nil
162
}