forked from google/googet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
googet_rmrepo.go
96 lines (83 loc) · 2.44 KB
/
googet_rmrepo.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
92
93
94
95
96
/*
Copyright 2016 Google Inc. All Rights Reserved.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
package main
import (
"context"
"flag"
"fmt"
"os"
"path/filepath"
"strings"
"github.com/google/googet/v2/oswrap"
"github.com/google/logger"
"github.com/google/subcommands"
)
type rmRepoCmd struct{}
func (*rmRepoCmd) Name() string { return "rmrepo" }
func (*rmRepoCmd) Synopsis() string { return "remove repository" }
func (*rmRepoCmd) Usage() string {
return fmt.Sprintf(`%s rmrepo <name>:
Removes the named repository from GooGet's repository list.
`, filepath.Base(os.Args[0]))
}
func (cmd *rmRepoCmd) SetFlags(f *flag.FlagSet) {}
func (cmd *rmRepoCmd) Execute(_ context.Context, f *flag.FlagSet, _ ...interface{}) subcommands.ExitStatus {
var name string
switch f.NArg() {
case 0:
fmt.Fprintln(os.Stderr, "Not enough arguments")
f.Usage()
return subcommands.ExitUsageError
case 1:
name = f.Arg(0)
default:
fmt.Fprintln(os.Stderr, "Excessive arguments")
f.Usage()
return subcommands.ExitUsageError
}
rfs, err := repos(filepath.Join(rootDir, repoDir))
if err != nil {
logger.Fatal(err)
}
var foundRepo repoFile
for _, rf := range rfs {
for _, re := range rf.repoEntries {
if strings.EqualFold(re.Name, name) {
foundRepo = rf
break
}
}
}
if foundRepo.fileName == "" {
fmt.Fprintf(os.Stderr, "Repo %q not found, nothing to remove.\n", name)
return subcommands.ExitUsageError
}
var res []repoEntry
for _, re := range foundRepo.repoEntries {
if strings.EqualFold(re.Name, name) {
res = append(res, re)
}
}
if len(res) > 0 {
if err := writeRepoFile(repoFile{foundRepo.fileName, res}); err != nil {
logger.Fatal(err)
}
fmt.Printf("Removed repo %q from repo file %s.\n", name, foundRepo.fileName)
return subcommands.ExitSuccess
}
if err := oswrap.Remove(foundRepo.fileName); err != nil {
logger.Fatal(err)
}
fmt.Printf("Removed repo %q and repo file %s.\n", name, foundRepo.fileName)
return subcommands.ExitSuccess
}