8
8
"fmt"
9
9
"log"
10
10
"os"
11
+ "path/filepath"
11
12
"strings"
12
13
13
14
"github.com/spf13/cobra"
@@ -56,45 +57,22 @@ func init() {
56
57
}
57
58
58
59
func main (cmd * cobra.Command , args []string ) {
59
- // Adjust the file path as necessary
60
- mapPath := "test/TestRepo.git/filter-repo/commit-map"
60
+ // leaving this for now to quickly test the code
61
+ //mapPath := "test/TestRepo.git/filter-repo/commit-map"
62
+ mapPath , _ := cmd .Flags ().GetString ("mapping-file" )
61
63
commitMap , err := parseCommitMap (mapPath )
62
64
if err != nil {
63
65
log .Fatalf ("Error parsing commit map: %v" , err )
64
66
}
65
67
66
- // Adjust the file path as necessary
67
- prPath := "test/3723ff5e-4b7e-11ef-9bf5-2aca377420b3/pull_requests_000001.json"
68
+ // config to define the types of files to process
69
+ types := [] string { "pull_requests" , "issues" }
68
70
69
- // Read the JSON file containing the pull request metadata
70
- prData , err := os .ReadFile (prPath )
71
- if err != nil {
72
- log .Fatalf ("Error reading pull request data: %v" , err )
73
- }
74
-
75
- var prDataMap interface {}
76
- err = json .Unmarshal (prData , & prDataMap )
77
- if err != nil {
78
- log .Fatalf ("Error unmarshaling pull request data: %v" , err )
79
- }
80
-
81
- // Iterate over the commit map and replace the old commit hashes with the new commit hashes
82
- for _ , commit := range * commitMap {
83
- replaceSHA (prDataMap , commit .Old , commit .New )
84
- }
85
-
86
- // Marshal the updated pull request metadata to JSON and pretty print it
87
-
88
- updatedPrData , err := json .MarshalIndent (prDataMap , "" , " " )
89
- if err != nil {
90
- log .Fatalf ("Error marshaling updated pull request data: %v" , err )
91
- }
71
+ // leaving this for now to quickly test the code
72
+ //archivePath := "test/3723ff5e-4b7e-11ef-9bf5-2aca377420b3"
73
+ archivePath , _ := cmd .Flags ().GetString ("migration-archive" )
92
74
93
- // Overwrite the original file with the updated data
94
- err = os .WriteFile (prPath , updatedPrData , 0644 )
95
- if err != nil {
96
- log .Fatalf ("Error writing updated pull request data: %v" , err )
97
- }
75
+ processFiles (archivePath , types , commitMap )
98
76
}
99
77
100
78
// Parses the file and returns a map of old commit hashes to new commit hashes
@@ -128,7 +106,7 @@ func parseCommitMap(filePath string) (*[]CommitMapEntry, error) {
128
106
return & commitMap , nil
129
107
}
130
108
131
- func replaceSHA (data interface {}, oldSHA , newSHA string ) {
109
+ func replaceSHA (data interface {}, oldSHA string , newSHA string ) {
132
110
if data == nil {
133
111
return
134
112
}
@@ -154,3 +132,52 @@ func replaceSHA(data interface{}, oldSHA, newSHA string) {
154
132
// Unsupported type, do nothing
155
133
}
156
134
}
135
+
136
+ func updateMetadataFile (filePath string , commitMap * []CommitMapEntry ) {
137
+ // Read the JSON file
138
+ data , err := os .ReadFile (filePath )
139
+ if err != nil {
140
+ log .Fatalf ("Error reading data: %v" , err )
141
+ }
142
+
143
+ var dataMap interface {}
144
+ err = json .Unmarshal (data , & dataMap )
145
+ if err != nil {
146
+ log .Fatalf ("Error unmarshaling data: %v" , err )
147
+ }
148
+
149
+ // Iterate over the commit map and replace the old commit hashes with the new ones
150
+ for _ , commit := range * commitMap {
151
+ replaceSHA (dataMap , commit .Old , commit .New )
152
+ }
153
+
154
+ // Marshal the updated data to JSON and pretty print it
155
+ updatedData , err := json .MarshalIndent (dataMap , "" , " " )
156
+ if err != nil {
157
+ log .Fatalf ("Error marshaling updated data: %v" , err )
158
+ }
159
+
160
+ // Overwrite the original file with the updated data
161
+ err = os .WriteFile (filePath , updatedData , 0644 )
162
+ if err != nil {
163
+ log .Fatalf ("Error writing updated data: %v" , err )
164
+ }
165
+ }
166
+
167
+ func processFiles (archiveLocation string , prefixes []string , commitMap * []CommitMapEntry ) {
168
+
169
+ for _ , prefix := range prefixes {
170
+ // Get a list of all files that match the pattern
171
+ files , err := filepath .Glob (filepath .Join (archiveLocation , prefix + "_*.json" ))
172
+ if err != nil {
173
+ log .Fatalf ("Error getting files: %v" , err )
174
+ }
175
+
176
+ // Process each file
177
+ for _ , file := range files {
178
+ log .Println ("Processing file:" , file )
179
+
180
+ updateMetadataFile (file , commitMap )
181
+ }
182
+ }
183
+ }
0 commit comments