forked from open-policy-agent/opa
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrefactor.go
178 lines (142 loc) · 4.45 KB
/
refactor.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
173
174
175
176
177
178
// Copyright 2021 The OPA Authors. All rights reserved.
// Use of this source code is governed by an Apache2
// license that can be found in the LICENSE file.
package cmd
import (
"errors"
"fmt"
"io"
"os"
"strings"
"github.com/spf13/cobra"
"github.com/open-policy-agent/opa/ast"
"github.com/open-policy-agent/opa/format"
fileurl "github.com/open-policy-agent/opa/internal/file/url"
"github.com/open-policy-agent/opa/loader"
"github.com/open-policy-agent/opa/refactor"
)
type moveCommandParams struct {
mapping repeatedStringFlag
ignore []string
overwrite bool
}
func init() {
var moveCommandParams moveCommandParams
var refactorCommand = &cobra.Command{
Use: "refactor",
Short: "Refactor Rego file(s)",
Hidden: true,
}
var moveCommand = &cobra.Command{
Use: "move [file-path [...]]",
Short: "Rename packages and their references in Rego file(s)",
Long: `Rename packages and their references in Rego file(s).
The 'move' command takes one or more Rego source file(s) and rewrites package paths and other references in them as per
the mapping defined by the '-p' option. At least one mapping should be provided and should be of the form:
<from>:<to>
The 'move' command formats the Rego modules after renaming packages, etc. and prints the formatted modules to stdout by default.
If the '-w' option is supplied, the 'move' command will overwrite the source file instead.
Example:
--------
"policy.rego" contains the below policy:
_ _ _ _ _ _ _ _ _ _ _ _ _
| package lib.foo |
| |
| default allow = false |
| _ _ _ _ _ _ _ _ _ _ _ _ |
$ opa refactor move -p data.lib.foo:data.baz.bar policy.rego
The 'move' command outputs the below policy to stdout with the package name rewritten as per the mapping:
_ _ _ _ _ _ _ _ _ _ _ _ _
| package baz.bar |
| |
| default allow = false |
| _ _ _ _ _ _ _ _ _ _ _ _ |
`,
PreRunE: func(_ *cobra.Command, args []string) error {
return validateMoveArgs(args)
},
Run: func(cmd *cobra.Command, args []string) {
if err := doMove(moveCommandParams, args, os.Stdout); err != nil {
fmt.Fprintln(os.Stderr, "error:", err)
os.Exit(1)
}
},
}
moveCommand.Flags().VarP(&moveCommandParams.mapping, "path", "p", "set the mapping that defines how references should be rewritten (ie. <from>:<to>). This flag can be repeated.")
moveCommand.Flags().BoolVarP(&moveCommandParams.overwrite, "write", "w", false, "overwrite the original source file")
addIgnoreFlag(moveCommand.Flags(), &moveCommandParams.ignore)
refactorCommand.AddCommand(moveCommand)
RootCommand.AddCommand(refactorCommand)
}
func doMove(params moveCommandParams, args []string, out io.Writer) error {
if len(params.mapping.v) == 0 {
return errors.New("specify at least one mapping of the form <from>:<to>")
}
srcDstMap, err := parseSrcDstMap(params.mapping.v)
if err != nil {
return err
}
modules := map[string]*ast.Module{}
f := loaderFilter{
Ignore: params.ignore,
}
result, err := loader.NewFileLoader().Filtered(args, f.Apply)
if err != nil {
return err
}
for _, m := range result.Modules {
modules[m.Name] = m.Parsed
}
mq := refactor.MoveQuery{
Modules: modules,
SrcDstMapping: srcDstMap,
}.WithValidation(true)
movedModules, err := refactor.New().Move(mq)
if err != nil {
return err
}
for filename, mod := range movedModules.Result {
filename, err = fileurl.Clean(filename)
if err != nil {
return err
}
formatted, err := format.Ast(mod)
if err != nil {
return newError("failed to parse Rego source file: %v", err)
}
if params.overwrite {
info, err := os.Stat(filename)
if err != nil {
return err
}
outfile, err := os.OpenFile(filename, os.O_WRONLY|os.O_TRUNC, info.Mode())
if err != nil {
return newError("failed to open file for writing: %v", err)
}
defer outfile.Close()
out = outfile
}
_, err = out.Write(formatted)
if err != nil {
return newError("failed writing formatted contents: %v", err)
}
}
return nil
}
func parseSrcDstMap(data []string) (map[string]string, error) {
result := map[string]string{}
for _, d := range data {
parts := strings.Split(d, ":")
if len(parts) != 2 {
return nil, errors.New("expected mapping of the form <from>:<to>")
}
result[parts[0]] = parts[1]
}
return result, nil
}
func validateMoveArgs(args []string) error {
if len(args) == 0 {
return errors.New("specify at least one path containing policy files")
}
return nil
}