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
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
|
package github
import (
"bytes"
"encoding/json"
"fmt"
"io"
"net/http"
"os"
"path/filepath"
"strings"
)
// Client handles GitHub API operations
type Client struct {
token string
org string
}
// NewClient creates a new GitHub API client
func NewClient(token, org string) Client {
// If no token provided, try other sources
if token == "" {
fmt.Println(" No token in config, trying environment variable...")
// Try environment variable
token = os.Getenv("GITHUB_TOKEN")
// If still no token, try reading from file
if token == "" {
fmt.Println(" No GITHUB_TOKEN env var, trying ~/.gitsyncer_github_token file...")
home, err := os.UserHomeDir()
if err == nil {
tokenFile := filepath.Join(home, ".gitsyncer_github_token")
data, err := os.ReadFile(tokenFile)
if err == nil {
token = strings.TrimSpace(string(data))
fmt.Printf(" Loaded token from file (length: %d)\n", len(token))
// Check for common issues
if strings.Contains(token, "\n") || strings.Contains(token, "\r") {
fmt.Println(" Warning: Token contains newline characters")
}
if strings.HasPrefix(token, " ") || strings.HasSuffix(token, " ") {
fmt.Println(" Warning: Token has leading/trailing spaces")
}
} else {
fmt.Printf(" Could not read token file: %v\n", err)
}
}
} else {
fmt.Printf(" Loaded token from env var (length: %d)\n", len(token))
}
} else {
fmt.Printf(" Using token from config (length: %d)\n", len(token))
}
return Client{
token: token,
org: org,
}
}
// CreateRepoRequest represents the request to create a repository
type CreateRepoRequest struct {
Name string `json:"name"`
Description string `json:"description"`
Private bool `json:"private"`
AutoInit bool `json:"auto_init"`
}
// CreateRepoResponse represents the response from creating a repository
type CreateRepoResponse struct {
ID int64 `json:"id"`
Name string `json:"name"`
FullName string `json:"full_name"`
Private bool `json:"private"`
SSHURL string `json:"ssh_url"`
CloneURL string `json:"clone_url"`
}
// ErrorResponse represents an error response from GitHub API
type ErrorResponse struct {
Message string `json:"message"`
Errors []struct {
Resource string `json:"resource"`
Field string `json:"field"`
Code string `json:"code"`
} `json:"errors,omitempty"`
}
// RepoExists checks if a repository exists
func (c *Client) RepoExists(repoName string) (bool, error) {
if c.token == "" {
return false, fmt.Errorf("GitHub token required")
}
url := fmt.Sprintf("https://api.github.com/repos/%s/%s", c.org, repoName)
fmt.Printf(" Checking URL: %s\n", url)
fmt.Printf(" Token present: %v (length: %d)\n", c.token != "", len(c.token))
req, err := http.NewRequest("GET", url, nil)
if err != nil {
return false, err
}
req.Header.Set("Authorization", "Bearer "+c.token)
req.Header.Set("Accept", "application/vnd.github.v3+json")
resp, err := http.DefaultClient.Do(req)
if err != nil {
return false, err
}
defer resp.Body.Close()
if resp.StatusCode == 200 {
return true, nil
} else if resp.StatusCode == 404 {
return false, nil
} else if resp.StatusCode == 401 {
// Read the response body for 401 errors
body, _ := io.ReadAll(resp.Body)
fmt.Printf(" 401 Unauthorized - Response: %s\n", string(body))
fmt.Printf(" Authorization header: %s\n", req.Header.Get("Authorization"))
return false, fmt.Errorf("authentication failed (401): %s", string(body))
}
return false, fmt.Errorf("unexpected status code: %d", resp.StatusCode)
}
// CreateRepo creates a new repository
func (c *Client) CreateRepo(repoName, description string, private bool) error {
if c.token == "" {
return fmt.Errorf("GitHub token required to create repository")
}
fmt.Printf(" Checking if GitHub repo %s/%s exists...\n", c.org, repoName)
// First check if it already exists
exists, err := c.RepoExists(repoName)
if err != nil {
return fmt.Errorf("failed to check if repo exists: %w", err)
}
if exists {
fmt.Printf(" GitHub repo already exists, skipping creation\n")
// Repo already exists, nothing to do
return nil
}
url := fmt.Sprintf("https://api.github.com/user/repos")
reqBody := CreateRepoRequest{
Name: repoName,
Description: description,
Private: private,
AutoInit: false, // Don't auto-init, we'll push content
}
jsonBody, err := json.Marshal(reqBody)
if err != nil {
return err
}
req, err := http.NewRequest("POST", url, bytes.NewBuffer(jsonBody))
if err != nil {
return err
}
req.Header.Set("Authorization", "Bearer "+c.token)
req.Header.Set("Accept", "application/vnd.github.v3+json")
req.Header.Set("Content-Type", "application/json")
resp, err := http.DefaultClient.Do(req)
if err != nil {
return err
}
defer resp.Body.Close()
if resp.StatusCode == 201 {
var createResp CreateRepoResponse
if err := json.NewDecoder(resp.Body).Decode(&createResp); err != nil {
return fmt.Errorf("failed to parse response: %w", err)
}
fmt.Printf("Created GitHub repository: %s\n", createResp.FullName)
return nil
}
// Handle error response
var errResp ErrorResponse
if err := json.NewDecoder(resp.Body).Decode(&errResp); err != nil {
return fmt.Errorf("unexpected status code: %d", resp.StatusCode)
}
if errResp.Message != "" {
return fmt.Errorf("GitHub API error: %s", errResp.Message)
}
return fmt.Errorf("failed to create repository: status %d", resp.StatusCode)
}
// HasToken returns whether a token is configured
func (c *Client) HasToken() bool {
return c.token != ""
}
// GetRepo fetches a single repository by name
// Returns the repository, a boolean indicating existence, and an error
func (c *Client) GetRepo(repoName string) (Repository, bool, error) {
var repo Repository
if c.token == "" {
return repo, false, fmt.Errorf("GitHub token required")
}
url := fmt.Sprintf("https://api.github.com/repos/%s/%s", c.org, repoName)
req, err := http.NewRequest("GET", url, nil)
if err != nil {
return repo, false, err
}
req.Header.Set("Authorization", "Bearer "+c.token)
req.Header.Set("Accept", "application/vnd.github.v3+json")
resp, err := http.DefaultClient.Do(req)
if err != nil {
return repo, false, err
}
defer resp.Body.Close()
if resp.StatusCode == 404 {
return repo, false, nil
}
if resp.StatusCode != 200 {
body, _ := io.ReadAll(resp.Body)
return repo, false, fmt.Errorf("failed to get repo: status %d: %s", resp.StatusCode, string(body))
}
if err := json.NewDecoder(resp.Body).Decode(&repo); err != nil {
return repo, false, fmt.Errorf("failed to decode repo: %w", err)
}
return repo, true, nil
}
// UpdateRepoDescription updates the repository description
func (c *Client) UpdateRepoDescription(repoName, description string) error {
if c.token == "" {
return fmt.Errorf("GitHub token required to update repository")
}
url := fmt.Sprintf("https://api.github.com/repos/%s/%s", c.org, repoName)
payload := map[string]interface{}{
"description": description,
}
body, err := json.Marshal(payload)
if err != nil {
return err
}
req, err := http.NewRequest("PATCH", url, bytes.NewBuffer(body))
if err != nil {
return err
}
req.Header.Set("Authorization", "Bearer "+c.token)
req.Header.Set("Accept", "application/vnd.github.v3+json")
req.Header.Set("Content-Type", "application/json")
resp, err := http.DefaultClient.Do(req)
if err != nil {
return err
}
defer resp.Body.Close()
if resp.StatusCode != 200 {
b, _ := io.ReadAll(resp.Body)
return fmt.Errorf("failed to update GitHub description: %s - %s", resp.Status, string(b))
}
return nil
}
// Repository represents a GitHub repository
type Repository struct {
Name string `json:"name"`
Description string `json:"description"`
Private bool `json:"private"`
Fork bool `json:"fork"`
Archived bool `json:"archived"`
Disabled bool `json:"disabled"`
Size int `json:"size"`
}
// ListPublicRepos lists all public repositories for the user/org
func (c *Client) ListPublicRepos() ([]Repository, error) {
if c.token == "" {
return nil, fmt.Errorf("GitHub token required to list repositories")
}
var allRepos []Repository
page := 1
perPage := 100
for {
url := fmt.Sprintf("https://api.github.com/users/%s/repos?page=%d&per_page=%d&type=owner", c.org, page, perPage)
fmt.Printf(" Fetching page %d...\n", page)
req, err := http.NewRequest("GET", url, nil)
if err != nil {
return nil, err
}
req.Header.Set("Authorization", "Bearer "+c.token)
req.Header.Set("Accept", "application/vnd.github.v3+json")
resp, err := http.DefaultClient.Do(req)
if err != nil {
return nil, err
}
defer resp.Body.Close()
if resp.StatusCode != 200 {
body, _ := io.ReadAll(resp.Body)
return nil, fmt.Errorf("failed to list repos: status %d: %s", resp.StatusCode, string(body))
}
var repos []Repository
if err := json.NewDecoder(resp.Body).Decode(&repos); err != nil {
return nil, fmt.Errorf("failed to decode response: %w", err)
}
// Filter for public, non-fork, non-archived
for _, repo := range repos {
if !repo.Private && !repo.Fork && !repo.Archived && !repo.Disabled {
allRepos = append(allRepos, repo)
}
}
// Check if there are more pages
if len(repos) < perPage {
break
}
page++
}
return allRepos, nil
}
// GetRepoNames extracts repository names from a list of repos
func GetRepoNames(repos []Repository) []string {
names := make([]string, len(repos))
for i, repo := range repos {
names[i] = repo.Name
}
return names
}
// DeleteRepo deletes a repository from GitHub
func (c *Client) DeleteRepo(repoName string) error {
if c.token == "" {
return fmt.Errorf("GitHub token required to delete repository")
}
// First check if the repo exists
exists, err := c.RepoExists(repoName)
if err != nil {
return fmt.Errorf("failed to check if repo exists: %w", err)
}
if !exists {
// Repo doesn't exist, nothing to delete
return fmt.Errorf("repository %s/%s does not exist", c.org, repoName)
}
url := fmt.Sprintf("https://api.github.com/repos/%s/%s", c.org, repoName)
req, err := http.NewRequest("DELETE", url, nil)
if err != nil {
return err
}
req.Header.Set("Authorization", "Bearer "+c.token)
req.Header.Set("Accept", "application/vnd.github.v3+json")
resp, err := http.DefaultClient.Do(req)
if err != nil {
return err
}
defer resp.Body.Close()
if resp.StatusCode == 204 {
// Successfully deleted
return nil
} else if resp.StatusCode == 404 {
// Already gone, consider it a success
return nil
} else if resp.StatusCode == 403 {
body, _ := io.ReadAll(resp.Body)
return fmt.Errorf("permission denied (403): %s", string(body))
} else if resp.StatusCode == 401 {
body, _ := io.ReadAll(resp.Body)
return fmt.Errorf("authentication failed (401): %s", string(body))
}
body, _ := io.ReadAll(resp.Body)
return fmt.Errorf("failed to delete repository: status %d: %s", resp.StatusCode, string(body))
}
|