Skip to content

Commit d260e69

Browse files
authored
Merge pull request #2 from amenocal/main
extrapolate functions and add function for types of files
2 parents 5ae88c7 + 5a3b97e commit d260e69

File tree

1 file changed

+60
-33
lines changed

1 file changed

+60
-33
lines changed

cmd/root.go

+60-33
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ import (
88
"fmt"
99
"log"
1010
"os"
11+
"path/filepath"
1112
"strings"
1213

1314
"github.com/spf13/cobra"
@@ -56,45 +57,22 @@ func init() {
5657
}
5758

5859
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")
6163
commitMap, err := parseCommitMap(mapPath)
6264
if err != nil {
6365
log.Fatalf("Error parsing commit map: %v", err)
6466
}
6567

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"}
6870

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")
9274

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)
9876
}
9977

10078
// 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) {
128106
return &commitMap, nil
129107
}
130108

131-
func replaceSHA(data interface{}, oldSHA, newSHA string) {
109+
func replaceSHA(data interface{}, oldSHA string, newSHA string) {
132110
if data == nil {
133111
return
134112
}
@@ -154,3 +132,52 @@ func replaceSHA(data interface{}, oldSHA, newSHA string) {
154132
// Unsupported type, do nothing
155133
}
156134
}
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

Comments
 (0)