-
Notifications
You must be signed in to change notification settings - Fork 23
/
delete.go
91 lines (81 loc) · 2.45 KB
/
delete.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
package cmd
import (
"fmt"
"os"
"sync"
"github.com/0chain/gosdk/zboxcore/sdk"
"github.com/spf13/cobra"
)
// deleteCmd represents delete command
var deleteCmd = &cobra.Command{
Use: "delete",
Short: "delete file from blobbers",
Long: `delete file from blobbers`,
Args: cobra.MinimumNArgs(0),
Run: func(cmd *cobra.Command, args []string) {
fflags := cmd.Flags() // fflags is a *flag.FlagSet
if fflags.Changed("allocation") == false { // check if the flag "path" is set
PrintError("Error: allocation flag is missing") // If not, we'll let the user know
os.Exit(1) // and return
}
if fflags.Changed("remotepath") == false {
PrintError("Error: remotepath flag is missing")
os.Exit(1)
}
commit, _ := cmd.Flags().GetBool("commit")
allocationID := cmd.Flag("allocation").Value.String()
allocationObj, err := sdk.GetAllocation(allocationID)
if err != nil {
PrintError("Error fetching the allocation", err)
os.Exit(1)
}
remotepath := cmd.Flag("remotepath").Value.String()
statsMap, err := allocationObj.GetFileStats(remotepath)
if err != nil {
PrintError("Error in getting information about the object." + err.Error())
os.Exit(1)
}
isFile := false
for _, v := range statsMap {
if v != nil {
isFile = true
break
}
}
var fileMeta *sdk.ConsolidatedFileMeta
if isFile && commit {
fileMeta, err = allocationObj.GetFileMeta(remotepath)
if err != nil {
PrintError("Failed to fetch metadata for the given file", err.Error())
os.Exit(1)
}
}
err = allocationObj.DeleteFile(remotepath)
if err != nil {
PrintError("Delete failed.", err.Error())
os.Exit(1)
}
fmt.Println(remotepath + " deleted")
if commit {
fmt.Println("Commiting changes to blockchain ...")
if isFile {
wg := &sync.WaitGroup{}
statusBar := &StatusBar{wg: wg}
wg.Add(1)
commitMetaTxn(remotepath, "Delete", "", "", allocationObj, fileMeta, statusBar)
wg.Wait()
} else {
commitFolderTxn("Delete", remotepath, "", allocationObj)
}
}
return
},
}
func init() {
rootCmd.AddCommand(deleteCmd)
deleteCmd.PersistentFlags().String("allocation", "", "Allocation ID")
deleteCmd.PersistentFlags().String("remotepath", "", "Remote path of the object to delete")
deleteCmd.Flags().Bool("commit", false, "pass this option to commit the metadata transaction")
deleteCmd.MarkFlagRequired("allocation")
deleteCmd.MarkFlagRequired("remotepath")
}