forked from sourcegraph/src-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcodeowners_delete.go
More file actions
86 lines (72 loc) · 1.96 KB
/
codeowners_delete.go
File metadata and controls
86 lines (72 loc) · 1.96 KB
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
package main
import (
"context"
"flag"
"fmt"
"strings"
"github.com/sourcegraph/sourcegraph/lib/errors"
"github.com/sourcegraph/src-cli/internal/api"
"github.com/sourcegraph/src-cli/internal/cmderrors"
)
func init() {
usage := `
Examples:
Delete a codeowners file for the repository "github.com/sourcegraph/sourcegraph":
$ src codeowners delete -repo='github.com/sourcegraph/sourcegraph'
`
flagSet := flag.NewFlagSet("delete", flag.ExitOnError)
usageFunc := func() {
fmt.Fprintf(flag.CommandLine.Output(), "Usage of 'src codeowners %s':\n", flagSet.Name())
flagSet.PrintDefaults()
fmt.Println(usage)
}
var (
repoFlag = flagSet.String("repo", "", "The repository to delete the data for")
apiFlags = api.NewFlags(flagSet)
)
handler := func(args []string) error {
if err := flagSet.Parse(args); err != nil {
return err
}
if *repoFlag == "" {
return errors.New("provide a repo name using -repo")
}
client := cfg.apiClient(apiFlags, flagSet.Output())
query := `mutation DeleteCodeownersFile(
$repoName: String!,
) {
deleteCodeownersFiles(repositories: [{
repoName: $repoName,
}]) {
alwaysNil
}
}
`
var result struct {
DeleteCodeownersFile CodeownersIngestedFile
}
if ok, err := client.NewRequest(query, map[string]interface{}{
"repoName": *repoFlag,
}).Do(context.Background(), &result); err != nil || !ok {
var gqlErr api.GraphQlErrors
if errors.As(err, &gqlErr) {
for _, e := range gqlErr {
if strings.Contains(e.Error(), "repo not found:") {
return cmderrors.ExitCode(2, errors.Newf("repository %q not found", *repoFlag))
}
if strings.Contains(e.Error(), "codeowners file not found:") {
return cmderrors.ExitCode(2, errors.Newf("no data found for repository %q", *repoFlag))
}
}
}
return err
}
return nil
}
// Register the command.
codeownersCommands = append(codeownersCommands, &command{
flagSet: flagSet,
handler: handler,
usageFunc: usageFunc,
})
}