-
Notifications
You must be signed in to change notification settings - Fork 37
/
repos.go
172 lines (146 loc) · 4.15 KB
/
repos.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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
// Copyright © 2017 Intel Corporation
//
// 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 cmd
import (
"fmt"
"strings"
"github.com/clearlinux/mixer-tools/builder"
"github.com/spf13/cobra"
)
// Top level repo command ('mixer repo')
var repoCmd = &cobra.Command{
Use: "repo",
Short: "Add, list, or remove RPM repositories for use by mixer",
}
var addRepoCmd = &cobra.Command{
Use: "add <name> <url>",
Short: "Add repo <name> at <url>",
Long: `Add the repo at <url> as a repo from which to pull RPMs for building bundles`,
Args: cobra.ExactArgs(2),
Run: runAddRepo,
}
var removeRepoCmd = &cobra.Command{
Use: "remove <name>",
Short: "Removes repo <name> from the DNF conf used by mixer",
Long: `Remove the repo named <name> from the configured DNF conf used by mixer`,
Args: cobra.ExactArgs(1),
Run: runRemoveRepo,
}
var listReposCmd = &cobra.Command{
Use: "list",
Short: "List all configured RPM Repositories",
Long: `List all RPM repositories configured in the DNF configuration file used by mixer`,
Run: runListRepos,
}
var initRepoCmd = &cobra.Command{
Use: "init",
Short: "Initialize the DNF conf with default repo enabled",
Long: `Initialize the DNF configuration file with the default 'Clear' repo enabled`,
Run: runInitRepo,
}
var setURLRepoCmd = &cobra.Command{
Use: "set-url <name> <url>",
Short: "Sets the URL for repo <name> to <url>",
Long: `Sets the URL, for repo <name> to <url>. If <name> does not exist the repo will be added to the configuration.`,
Args: cobra.ExactArgs(2),
Run: runSetURLRepo,
}
var setExcludesRepoCmd = &cobra.Command{
Use: "exclude <repo> <pkg> [<pkg>...]",
Short: "Exclude packages from a specified repo",
Long: `Exclude packages from a specified repo. These packages will be ignored
during build bundles, which allows the user to explicitly select which packages
to use when building bundles by excluding the unwanted ones. Globbing is
supported.`,
Args: cobra.MinimumNArgs(2),
Run: runExcludesRepo,
}
var repoCmds = []*cobra.Command{
addRepoCmd,
removeRepoCmd,
listReposCmd,
initRepoCmd,
setURLRepoCmd,
setExcludesRepoCmd,
}
func init() {
for _, cmd := range repoCmds {
repoCmd.AddCommand(cmd)
}
RootCmd.AddCommand(repoCmd)
}
func runExcludesRepo(cmd *cobra.Command, args []string) {
b, err := builder.NewFromConfig(configFile)
if err != nil {
fail(err)
}
err = b.SetExcludesRepo(args[0], strings.Join(args[1:], " "))
if err != nil {
fail(err)
}
fmt.Printf("Excluded packages from repo %s:\n%s\n", args[0], strings.Join(args[1:], "\n"))
}
func runAddRepo(cmd *cobra.Command, args []string) {
b, err := builder.NewFromConfig(configFile)
if err != nil {
fail(err)
}
err = b.AddRepo(args[0], args[1])
if err != nil {
fail(err)
}
fmt.Printf("Added %s repo at %s url.\n", args[0], args[1])
}
func runRemoveRepo(cmd *cobra.Command, args []string) {
b, err := builder.NewFromConfig(configFile)
if err != nil {
fail(err)
}
err = b.RemoveRepo(args[0])
if err != nil {
fail(err)
}
fmt.Printf("Removed %s repo.\n", args[0])
}
func runListRepos(cmd *cobra.Command, args []string) {
b, err := builder.NewFromConfig(configFile)
if err != nil {
fail(err)
}
err = b.ListRepos()
if err != nil {
fail(err)
}
}
func runInitRepo(cmd *cobra.Command, args []string) {
b, err := builder.NewFromConfig(configFile)
if err != nil {
fail(err)
}
err = b.NewDNFConfIfNeeded()
if err != nil {
fail(err)
}
}
func runSetURLRepo(cmd *cobra.Command, args []string) {
b, err := builder.NewFromConfig(configFile)
if err != nil {
fail(err)
}
err = b.SetURLRepo(args[0], args[1])
if err != nil {
fail(err)
}
fmt.Printf("Set %s baseurl to %s.\n", args[0], args[1])
}