@@ -4,20 +4,19 @@ Copyright © 2024 NAME HERE <EMAIL ADDRESS>
4
4
package cmd
5
5
6
6
import (
7
- "encoding/json"
8
- "fmt"
9
7
"log"
10
8
"os"
11
- "path/filepath"
12
- "strings"
13
9
10
+ "github.com/mona-actions/gh-commit-remap/internal/commitremap"
14
11
"github.com/spf13/cobra"
15
12
)
16
13
17
- // Struct to represent a single entry in the commit map
18
- type CommitMapEntry struct {
19
- Old string
20
- New string
14
+ func init () {
15
+ rootCmd .Flags ().StringP ("mapping-file" , "c" , "" , "Path to the commit map file Example: /path/to/commit-map" )
16
+ rootCmd .MarkFlagRequired ("mapping-file" )
17
+
18
+ rootCmd .Flags ().StringP ("migration-archive" , "m" , "" , "Path to the migration archive Example: /path/to/migration-archive.tar.gz" )
19
+ rootCmd .MarkFlagRequired ("migration-archive" )
21
20
}
22
21
23
22
// rootCmd represents the base command when called without any subcommands
@@ -26,9 +25,20 @@ var rootCmd = &cobra.Command{
26
25
Short : "remaps commit hashes in a GitHub archive" ,
27
26
Long : `Is a CLI tool that can remap commits hashed
28
27
after performing a history re-write when performing a migration For exam` ,
29
- // Uncomment the following line if your bare application
30
- // has an action associated with it:
31
- Run : main ,
28
+ Run : func (cmd * cobra.Command , args []string ) {
29
+ mapPath , _ := cmd .Flags ().GetString ("mapping-file" )
30
+ commitMap , err := commitremap .ParseCommitMap (mapPath )
31
+ if err != nil {
32
+ log .Fatalf ("Error parsing commit map: %v" , err )
33
+ }
34
+
35
+ // config to define the types of files to process
36
+ types := []string {"pull_requests" , "issues" , "issue_events" }
37
+
38
+ archivePath , _ := cmd .Flags ().GetString ("migration-archive" )
39
+
40
+ commitremap .ProcessFiles (archivePath , types , commitMap )
41
+ },
32
42
}
33
43
34
44
// Execute adds all child commands to the root command and sets flags appropriately.
@@ -39,145 +49,3 @@ func Execute() {
39
49
os .Exit (1 )
40
50
}
41
51
}
42
-
43
- func init () {
44
- // Here you will define your flags and configuration settings.
45
- // Cobra supports persistent flags, which, if defined here,
46
- // will be global for your application.
47
-
48
- // rootCmd.PersistentFlags().StringVar(&cfgFile, "config", "", "config file (default is $HOME/.gh-commit-remap.yaml)")
49
-
50
- // Cobra also supports local flags, which will only run
51
- // when this action is called directly.
52
- rootCmd .Flags ().StringP ("mapping-file" , "c" , "" , "Path to the commit map file Example: /path/to/commit-map" )
53
- rootCmd .MarkFlagRequired ("mapping-file" )
54
-
55
- rootCmd .Flags ().StringP ("migration-archive" , "m" , "" , "Path to the migration archive Example: /path/to/migration-archive.tar.gz" )
56
- rootCmd .MarkFlagRequired ("migration-archive" )
57
- }
58
-
59
- func main (cmd * cobra.Command , args []string ) {
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" )
63
- commitMap , err := parseCommitMap (mapPath )
64
- if err != nil {
65
- log .Fatalf ("Error parsing commit map: %v" , err )
66
- }
67
-
68
- // config to define the types of files to process
69
- types := []string {"pull_requests" , "issues" }
70
-
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" )
74
-
75
- processFiles (archivePath , types , commitMap )
76
- }
77
-
78
- // Parses the file and returns a map of old commit hashes to new commit hashes
79
- func parseCommitMap (filePath string ) (* []CommitMapEntry , error ) {
80
- commitMap := []CommitMapEntry {}
81
-
82
- // Read the commit-map file
83
- content , err := os .ReadFile (filePath )
84
- if err != nil {
85
- return nil , err
86
- }
87
- // Split the file content into lines
88
- lines := strings .Split (string (content ), "\n " )
89
-
90
- // Iterate over the lines and parse the old and new commit hashes
91
- for _ , line := range lines {
92
- if strings .TrimSpace (line ) == "" {
93
- continue
94
- }
95
-
96
- fields := strings .Fields (line )
97
- if len (fields ) != 2 {
98
- return nil , fmt .Errorf ("invalid line: %s" , line )
99
- }
100
-
101
- commitMap = append (commitMap , CommitMapEntry {
102
- Old : fields [0 ],
103
- New : fields [1 ],
104
- })
105
- }
106
- return & commitMap , nil
107
- }
108
-
109
- func replaceSHA (data interface {}, oldSHA string , newSHA string ) {
110
- if data == nil {
111
- return
112
- }
113
-
114
- switch v := data .(type ) {
115
- case map [string ]interface {}:
116
- for key , value := range v {
117
- if str , ok := value .(string ); ok && str == oldSHA {
118
- v [key ] = newSHA
119
- } else {
120
- replaceSHA (value , oldSHA , newSHA )
121
- }
122
- }
123
- case []interface {}:
124
- for i , value := range v {
125
- if str , ok := value .(string ); ok && str == oldSHA {
126
- v [i ] = newSHA
127
- } else {
128
- replaceSHA (value , oldSHA , newSHA )
129
- }
130
- }
131
- default :
132
- // Unsupported type, do nothing
133
- }
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