2017-04-14 08:29:00 +00:00
|
|
|
// Copyright 2017 The go-ethereum Authors
|
2017-02-13 02:33:05 +00:00
|
|
|
// This file is part of go-ethereum.
|
|
|
|
//
|
|
|
|
// go-ethereum is free software: you can redistribute it and/or modify
|
|
|
|
// it under the terms of the GNU General Public License as published by
|
|
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
|
|
// (at your option) any later version.
|
|
|
|
//
|
|
|
|
// go-ethereum 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 General Public License for more details.
|
|
|
|
//
|
|
|
|
// You should have received a copy of the GNU General Public License
|
|
|
|
// along with go-ethereum. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
|
|
|
// Command MANIFEST update
|
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
2017-02-22 12:10:07 +00:00
|
|
|
"fmt"
|
2018-08-10 14:12:55 +00:00
|
|
|
"os"
|
2017-02-13 02:33:05 +00:00
|
|
|
"strings"
|
2017-02-22 12:10:07 +00:00
|
|
|
|
2017-03-02 13:06:16 +00:00
|
|
|
"github.com/ethereum/go-ethereum/cmd/utils"
|
2017-04-06 22:22:22 +00:00
|
|
|
"github.com/ethereum/go-ethereum/swarm/api"
|
2017-04-04 22:20:07 +00:00
|
|
|
swarm "github.com/ethereum/go-ethereum/swarm/api/client"
|
2017-02-22 12:10:07 +00:00
|
|
|
"gopkg.in/urfave/cli.v1"
|
2017-02-13 02:33:05 +00:00
|
|
|
)
|
|
|
|
|
2018-08-10 14:12:55 +00:00
|
|
|
// manifestAdd adds a new entry to the manifest at the given path.
|
|
|
|
// New entry hash, the last argument, must be the hash of a manifest
|
|
|
|
// with only one entry, which meta-data will be added to the original manifest.
|
|
|
|
// On success, this function will print new (updated) manifest's hash.
|
|
|
|
func manifestAdd(ctx *cli.Context) {
|
2017-02-13 02:33:05 +00:00
|
|
|
args := ctx.Args()
|
2018-08-10 14:12:55 +00:00
|
|
|
if len(args) != 3 {
|
|
|
|
utils.Fatalf("Need exactly three arguments <MHASH> <path> <HASH>")
|
2017-02-13 02:33:05 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
var (
|
2017-02-22 12:10:07 +00:00
|
|
|
mhash = args[0]
|
|
|
|
path = args[1]
|
|
|
|
hash = args[2]
|
2017-02-13 02:33:05 +00:00
|
|
|
)
|
|
|
|
|
2018-08-10 14:12:55 +00:00
|
|
|
bzzapi := strings.TrimRight(ctx.GlobalString(SwarmApiFlag.Name), "/")
|
|
|
|
client := swarm.NewClient(bzzapi)
|
|
|
|
|
|
|
|
m, _, err := client.DownloadManifest(hash)
|
|
|
|
if err != nil {
|
|
|
|
utils.Fatalf("Error downloading manifest to add: %v", err)
|
|
|
|
}
|
|
|
|
l := len(m.Entries)
|
|
|
|
if l == 0 {
|
|
|
|
utils.Fatalf("No entries in manifest %s", hash)
|
|
|
|
} else if l > 1 {
|
|
|
|
utils.Fatalf("Too many entries in manifest %s", hash)
|
2017-02-13 02:33:05 +00:00
|
|
|
}
|
|
|
|
|
2018-08-10 14:12:55 +00:00
|
|
|
newManifest := addEntryToManifest(client, mhash, path, m.Entries[0])
|
2017-02-13 02:33:05 +00:00
|
|
|
fmt.Println(newManifest)
|
|
|
|
}
|
|
|
|
|
2018-08-10 14:12:55 +00:00
|
|
|
// manifestUpdate replaces an existing entry of the manifest at the given path.
|
|
|
|
// New entry hash, the last argument, must be the hash of a manifest
|
|
|
|
// with only one entry, which meta-data will be added to the original manifest.
|
|
|
|
// On success, this function will print hash of the updated manifest.
|
|
|
|
func manifestUpdate(ctx *cli.Context) {
|
2017-02-13 02:33:05 +00:00
|
|
|
args := ctx.Args()
|
2018-08-10 14:12:55 +00:00
|
|
|
if len(args) != 3 {
|
|
|
|
utils.Fatalf("Need exactly three arguments <MHASH> <path> <HASH>")
|
2017-02-13 02:33:05 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
var (
|
2017-02-22 12:10:07 +00:00
|
|
|
mhash = args[0]
|
|
|
|
path = args[1]
|
|
|
|
hash = args[2]
|
2017-02-13 02:33:05 +00:00
|
|
|
)
|
|
|
|
|
2018-08-10 14:12:55 +00:00
|
|
|
bzzapi := strings.TrimRight(ctx.GlobalString(SwarmApiFlag.Name), "/")
|
|
|
|
client := swarm.NewClient(bzzapi)
|
2017-02-13 02:33:05 +00:00
|
|
|
|
2018-08-10 14:12:55 +00:00
|
|
|
m, _, err := client.DownloadManifest(hash)
|
|
|
|
if err != nil {
|
|
|
|
utils.Fatalf("Error downloading manifest to update: %v", err)
|
|
|
|
}
|
|
|
|
l := len(m.Entries)
|
|
|
|
if l == 0 {
|
|
|
|
utils.Fatalf("No entries in manifest %s", hash)
|
|
|
|
} else if l > 1 {
|
|
|
|
utils.Fatalf("Too many entries in manifest %s", hash)
|
2017-02-13 02:33:05 +00:00
|
|
|
}
|
2018-08-10 14:12:55 +00:00
|
|
|
|
|
|
|
newManifest, _, defaultEntryUpdated := updateEntryInManifest(client, mhash, path, m.Entries[0], true)
|
|
|
|
if defaultEntryUpdated {
|
|
|
|
// Print informational message to stderr
|
|
|
|
// allowing the user to get the new manifest hash from stdout
|
|
|
|
// without the need to parse the complete output.
|
|
|
|
fmt.Fprintln(os.Stderr, "Manifest default entry is updated, too")
|
|
|
|
}
|
|
|
|
fmt.Println(newManifest)
|
2017-02-13 02:33:05 +00:00
|
|
|
}
|
|
|
|
|
2018-08-10 14:12:55 +00:00
|
|
|
// manifestRemove removes an existing entry of the manifest at the given path.
|
|
|
|
// On success, this function will print hash of the manifest which does not
|
|
|
|
// contain the path.
|
|
|
|
func manifestRemove(ctx *cli.Context) {
|
2017-02-13 02:33:05 +00:00
|
|
|
args := ctx.Args()
|
2018-08-10 14:12:55 +00:00
|
|
|
if len(args) != 2 {
|
|
|
|
utils.Fatalf("Need exactly two arguments <MHASH> <path>")
|
2017-02-13 02:33:05 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
var (
|
2017-02-22 12:10:07 +00:00
|
|
|
mhash = args[0]
|
|
|
|
path = args[1]
|
2017-02-13 02:33:05 +00:00
|
|
|
)
|
|
|
|
|
2018-08-10 14:12:55 +00:00
|
|
|
bzzapi := strings.TrimRight(ctx.GlobalString(SwarmApiFlag.Name), "/")
|
|
|
|
client := swarm.NewClient(bzzapi)
|
2017-02-13 02:33:05 +00:00
|
|
|
|
2018-08-10 14:12:55 +00:00
|
|
|
newManifest := removeEntryFromManifest(client, mhash, path)
|
|
|
|
fmt.Println(newManifest)
|
2017-02-13 02:33:05 +00:00
|
|
|
}
|
|
|
|
|
2018-08-10 14:12:55 +00:00
|
|
|
func addEntryToManifest(client *swarm.Client, mhash, path string, entry api.ManifestEntry) string {
|
|
|
|
var longestPathEntry = api.ManifestEntry{}
|
2017-02-13 02:33:05 +00:00
|
|
|
|
2018-06-20 12:06:27 +00:00
|
|
|
mroot, isEncrypted, err := client.DownloadManifest(mhash)
|
2017-02-13 02:33:05 +00:00
|
|
|
if err != nil {
|
2017-03-02 13:06:16 +00:00
|
|
|
utils.Fatalf("Manifest download failed: %v", err)
|
2017-02-13 02:33:05 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// See if we path is in this Manifest or do we have to dig deeper
|
2018-08-10 14:12:55 +00:00
|
|
|
for _, e := range mroot.Entries {
|
|
|
|
if path == e.Path {
|
2017-03-02 13:06:16 +00:00
|
|
|
utils.Fatalf("Path %s already present, not adding anything", path)
|
2017-02-22 12:10:07 +00:00
|
|
|
} else {
|
2018-08-10 14:12:55 +00:00
|
|
|
if e.ContentType == api.ManifestType {
|
|
|
|
prfxlen := strings.HasPrefix(path, e.Path)
|
2017-02-13 02:33:05 +00:00
|
|
|
if prfxlen && len(path) > len(longestPathEntry.Path) {
|
2018-08-10 14:12:55 +00:00
|
|
|
longestPathEntry = e
|
2017-02-13 02:33:05 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if longestPathEntry.Path != "" {
|
|
|
|
// Load the child Manifest add the entry there
|
|
|
|
newPath := path[len(longestPathEntry.Path):]
|
2018-08-10 14:12:55 +00:00
|
|
|
newHash := addEntryToManifest(client, longestPathEntry.Hash, newPath, entry)
|
2017-02-13 02:33:05 +00:00
|
|
|
|
|
|
|
// Replace the hash for parent Manifests
|
2017-04-06 22:22:22 +00:00
|
|
|
newMRoot := &api.Manifest{}
|
2018-08-10 14:12:55 +00:00
|
|
|
for _, e := range mroot.Entries {
|
|
|
|
if longestPathEntry.Path == e.Path {
|
|
|
|
e.Hash = newHash
|
2017-02-13 02:33:05 +00:00
|
|
|
}
|
2018-08-10 14:12:55 +00:00
|
|
|
newMRoot.Entries = append(newMRoot.Entries, e)
|
2017-02-13 02:33:05 +00:00
|
|
|
}
|
|
|
|
mroot = newMRoot
|
|
|
|
} else {
|
|
|
|
// Add the entry in the leaf Manifest
|
2018-08-10 14:12:55 +00:00
|
|
|
entry.Path = path
|
|
|
|
mroot.Entries = append(mroot.Entries, entry)
|
2017-02-13 02:33:05 +00:00
|
|
|
}
|
|
|
|
|
2018-06-20 12:06:27 +00:00
|
|
|
newManifestHash, err := client.UploadManifest(mroot, isEncrypted)
|
2017-02-13 02:33:05 +00:00
|
|
|
if err != nil {
|
2017-03-02 13:06:16 +00:00
|
|
|
utils.Fatalf("Manifest upload failed: %v", err)
|
2017-02-13 02:33:05 +00:00
|
|
|
}
|
|
|
|
return newManifestHash
|
|
|
|
}
|
|
|
|
|
2018-08-10 14:12:55 +00:00
|
|
|
// updateEntryInManifest updates an existing entry o path with a new one in the manifest with provided mhash
|
|
|
|
// finding the path recursively through all nested manifests. Argument isRoot is used for default
|
|
|
|
// entry update detection. If the updated entry has the same hash as the default entry, then the
|
|
|
|
// default entry in root manifest will be updated too.
|
|
|
|
// Returned values are the new manifest hash, hash of the entry that was replaced by the new entry and
|
|
|
|
// a a bool that is true if default entry is updated.
|
|
|
|
func updateEntryInManifest(client *swarm.Client, mhash, path string, entry api.ManifestEntry, isRoot bool) (newManifestHash, oldHash string, defaultEntryUpdated bool) {
|
2017-02-13 02:33:05 +00:00
|
|
|
var (
|
2017-04-06 22:22:22 +00:00
|
|
|
newEntry = api.ManifestEntry{}
|
|
|
|
longestPathEntry = api.ManifestEntry{}
|
2017-02-13 02:33:05 +00:00
|
|
|
)
|
|
|
|
|
2018-06-20 12:06:27 +00:00
|
|
|
mroot, isEncrypted, err := client.DownloadManifest(mhash)
|
2017-02-13 02:33:05 +00:00
|
|
|
if err != nil {
|
2017-03-02 13:06:16 +00:00
|
|
|
utils.Fatalf("Manifest download failed: %v", err)
|
2017-02-13 02:33:05 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// See if we path is in this Manifest or do we have to dig deeper
|
2018-08-10 14:12:55 +00:00
|
|
|
for _, e := range mroot.Entries {
|
|
|
|
if path == e.Path {
|
|
|
|
newEntry = e
|
|
|
|
// keep the reference of the hash of the entry that should be replaced
|
|
|
|
// for default entry detection
|
|
|
|
oldHash = e.Hash
|
2017-02-22 12:10:07 +00:00
|
|
|
} else {
|
2018-08-10 14:12:55 +00:00
|
|
|
if e.ContentType == api.ManifestType {
|
|
|
|
prfxlen := strings.HasPrefix(path, e.Path)
|
2017-02-13 02:33:05 +00:00
|
|
|
if prfxlen && len(path) > len(longestPathEntry.Path) {
|
2018-08-10 14:12:55 +00:00
|
|
|
longestPathEntry = e
|
2017-02-13 02:33:05 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if longestPathEntry.Path == "" && newEntry.Path == "" {
|
2017-03-02 13:06:16 +00:00
|
|
|
utils.Fatalf("Path %s not present in the Manifest, not setting anything", path)
|
2017-02-13 02:33:05 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if longestPathEntry.Path != "" {
|
|
|
|
// Load the child Manifest add the entry there
|
|
|
|
newPath := path[len(longestPathEntry.Path):]
|
2018-08-10 14:12:55 +00:00
|
|
|
var newHash string
|
|
|
|
newHash, oldHash, _ = updateEntryInManifest(client, longestPathEntry.Hash, newPath, entry, false)
|
2017-02-13 02:33:05 +00:00
|
|
|
|
|
|
|
// Replace the hash for parent Manifests
|
2017-04-06 22:22:22 +00:00
|
|
|
newMRoot := &api.Manifest{}
|
2018-08-10 14:12:55 +00:00
|
|
|
for _, e := range mroot.Entries {
|
|
|
|
if longestPathEntry.Path == e.Path {
|
|
|
|
e.Hash = newHash
|
2017-02-13 02:33:05 +00:00
|
|
|
}
|
2018-08-10 14:12:55 +00:00
|
|
|
newMRoot.Entries = append(newMRoot.Entries, e)
|
2017-02-13 02:33:05 +00:00
|
|
|
|
|
|
|
}
|
|
|
|
mroot = newMRoot
|
|
|
|
}
|
|
|
|
|
2018-08-10 14:12:55 +00:00
|
|
|
// update the manifest if the new entry is found and
|
|
|
|
// check if default entry should be updated
|
|
|
|
if newEntry.Path != "" || isRoot {
|
2017-02-13 02:33:05 +00:00
|
|
|
// Replace the hash for leaf Manifest
|
2017-04-06 22:22:22 +00:00
|
|
|
newMRoot := &api.Manifest{}
|
2018-08-10 14:12:55 +00:00
|
|
|
for _, e := range mroot.Entries {
|
|
|
|
if newEntry.Path == e.Path {
|
|
|
|
entry.Path = e.Path
|
2017-02-13 02:33:05 +00:00
|
|
|
newMRoot.Entries = append(newMRoot.Entries, entry)
|
2018-08-10 14:12:55 +00:00
|
|
|
} else if isRoot && e.Path == "" && e.Hash == oldHash {
|
|
|
|
entry.Path = e.Path
|
|
|
|
newMRoot.Entries = append(newMRoot.Entries, entry)
|
|
|
|
defaultEntryUpdated = true
|
|
|
|
} else {
|
|
|
|
newMRoot.Entries = append(newMRoot.Entries, e)
|
2017-02-13 02:33:05 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
mroot = newMRoot
|
|
|
|
}
|
|
|
|
|
2018-08-10 14:12:55 +00:00
|
|
|
newManifestHash, err = client.UploadManifest(mroot, isEncrypted)
|
2017-02-13 02:33:05 +00:00
|
|
|
if err != nil {
|
2017-03-02 13:06:16 +00:00
|
|
|
utils.Fatalf("Manifest upload failed: %v", err)
|
2017-02-13 02:33:05 +00:00
|
|
|
}
|
2018-08-10 14:12:55 +00:00
|
|
|
return newManifestHash, oldHash, defaultEntryUpdated
|
2017-02-13 02:33:05 +00:00
|
|
|
}
|
|
|
|
|
2018-08-10 14:12:55 +00:00
|
|
|
func removeEntryFromManifest(client *swarm.Client, mhash, path string) string {
|
2017-02-13 02:33:05 +00:00
|
|
|
var (
|
2017-04-06 22:22:22 +00:00
|
|
|
entryToRemove = api.ManifestEntry{}
|
|
|
|
longestPathEntry = api.ManifestEntry{}
|
2017-02-13 02:33:05 +00:00
|
|
|
)
|
|
|
|
|
2018-06-20 12:06:27 +00:00
|
|
|
mroot, isEncrypted, err := client.DownloadManifest(mhash)
|
2017-02-13 02:33:05 +00:00
|
|
|
if err != nil {
|
2017-03-02 13:06:16 +00:00
|
|
|
utils.Fatalf("Manifest download failed: %v", err)
|
2017-02-13 02:33:05 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// See if we path is in this Manifest or do we have to dig deeper
|
|
|
|
for _, entry := range mroot.Entries {
|
|
|
|
if path == entry.Path {
|
|
|
|
entryToRemove = entry
|
2017-02-22 12:10:07 +00:00
|
|
|
} else {
|
2018-08-10 14:12:55 +00:00
|
|
|
if entry.ContentType == api.ManifestType {
|
2017-02-13 02:33:05 +00:00
|
|
|
prfxlen := strings.HasPrefix(path, entry.Path)
|
|
|
|
if prfxlen && len(path) > len(longestPathEntry.Path) {
|
|
|
|
longestPathEntry = entry
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if longestPathEntry.Path == "" && entryToRemove.Path == "" {
|
2017-03-02 13:06:16 +00:00
|
|
|
utils.Fatalf("Path %s not present in the Manifest, not removing anything", path)
|
2017-02-13 02:33:05 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if longestPathEntry.Path != "" {
|
|
|
|
// Load the child Manifest remove the entry there
|
|
|
|
newPath := path[len(longestPathEntry.Path):]
|
2018-08-10 14:12:55 +00:00
|
|
|
newHash := removeEntryFromManifest(client, longestPathEntry.Hash, newPath)
|
2017-02-13 02:33:05 +00:00
|
|
|
|
|
|
|
// Replace the hash for parent Manifests
|
2017-04-06 22:22:22 +00:00
|
|
|
newMRoot := &api.Manifest{}
|
2017-02-13 02:33:05 +00:00
|
|
|
for _, entry := range mroot.Entries {
|
|
|
|
if longestPathEntry.Path == entry.Path {
|
|
|
|
entry.Hash = newHash
|
|
|
|
}
|
|
|
|
newMRoot.Entries = append(newMRoot.Entries, entry)
|
|
|
|
}
|
|
|
|
mroot = newMRoot
|
|
|
|
}
|
|
|
|
|
|
|
|
if entryToRemove.Path != "" {
|
|
|
|
// remove the entry in this Manifest
|
2017-04-06 22:22:22 +00:00
|
|
|
newMRoot := &api.Manifest{}
|
2017-02-13 02:33:05 +00:00
|
|
|
for _, entry := range mroot.Entries {
|
|
|
|
if entryToRemove.Path != entry.Path {
|
|
|
|
newMRoot.Entries = append(newMRoot.Entries, entry)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
mroot = newMRoot
|
|
|
|
}
|
|
|
|
|
2018-06-20 12:06:27 +00:00
|
|
|
newManifestHash, err := client.UploadManifest(mroot, isEncrypted)
|
2017-02-13 02:33:05 +00:00
|
|
|
if err != nil {
|
2017-03-02 13:06:16 +00:00
|
|
|
utils.Fatalf("Manifest upload failed: %v", err)
|
2017-02-13 02:33:05 +00:00
|
|
|
}
|
|
|
|
return newManifestHash
|
|
|
|
}
|