@@ -275,9 +275,43 @@ func (s *WorkService) GetCommitCount() fiber.Handler {
275
275
return err
276
276
}
277
277
278
+ totalCount := work .CommitAmount
279
+ // Zero either implies bad data or no commits, double check to be safe
280
+ if totalCount == 0 {
281
+ var branchOpts github.ListOptions
282
+ branches , err := s .appClient .ListBranches (c .Context (), work .OrgName , work .RepoName , & branchOpts )
283
+ if err != nil {
284
+ return errs .GithubAPIError (err )
285
+ }
286
+ var allCommits []* github.RepositoryCommit
287
+
288
+ for _ , branch := range branches {
289
+ var opts github.CommitsListOptions
290
+ // Assumes a single contirbutor, KHO-144
291
+ opts .Author = work .Contributors [0 ].GithubUsername
292
+ opts .SHA = * branch .Name
293
+ commits , err := s .appClient .ListCommits (c .Context (), work .OrgName , work .RepoName , & opts )
294
+ if err != nil {
295
+ return errs .GithubAPIError (err )
296
+ }
297
+ allCommits = append (allCommits , commits ... )
298
+ }
299
+ totalCount = len (allCommits )
300
+
301
+ // If there were commits, update the student work
302
+ if totalCount != 0 {
303
+ work .StudentWork .CommitAmount = totalCount
304
+ _ , err := s .store .UpdateStudentWork (c .Context (), work .StudentWork )
305
+ if err != nil {
306
+ return errs .InternalServerError ()
307
+ }
308
+ }
309
+ }
310
+
311
+
278
312
return c .Status (http .StatusOK ).JSON (fiber.Map {
279
313
"work_id" : work .ID ,
280
- "commit_count" : work . CommitAmount ,
314
+ "commit_count" : totalCount ,
281
315
})
282
316
}
283
317
}
@@ -289,15 +323,29 @@ func (s *WorkService) GetCommitsPerDay() fiber.Handler {
289
323
return err
290
324
}
291
325
292
- var opts github.CommitsListOptions
293
- opts .Author = work .Contributors [0 ].GithubUsername
294
- commits , err := s .appClient .ListCommits (c .Context (), work .OrgName , work .RepoName , & opts )
295
- if err != nil {
296
- return errs .GithubAPIError (err )
297
- }
326
+
327
+ var branchOpts github.ListOptions
328
+ branches , err := s .appClient .ListBranches (c .Context (), work .OrgName , work .RepoName , & branchOpts )
329
+ if err != nil {
330
+ return errs .GithubAPIError (err )
331
+ }
332
+ var allCommits []* github.RepositoryCommit
333
+
334
+ for _ , branch := range branches {
335
+ var opts github.CommitsListOptions
336
+ // Assumes a single contirbutor, KHO-144
337
+ opts .Author = work .Contributors [0 ].GithubUsername
338
+ opts .SHA = * branch .Name
339
+ commits , err := s .appClient .ListCommits (c .Context (), work .OrgName , work .RepoName , & opts )
340
+ if err != nil {
341
+ return errs .GithubAPIError (err )
342
+ }
343
+ allCommits = append (allCommits , commits ... )
344
+ }
345
+
298
346
299
347
commitDatesMap := make (map [time.Time ]int )
300
- for _ , commit := range commits {
348
+ for _ , commit := range allCommits {
301
349
commitDate := commit .GetCommit ().GetCommitter ().Date
302
350
if commitDate != nil {
303
351
// Standardize times to midday UTC
@@ -319,9 +367,47 @@ func (s *WorkService) GetFirstCommitDate() fiber.Handler {
319
367
return err
320
368
}
321
369
370
+ fcd := work .FirstCommitDate
371
+
372
+ if fcd == nil {
373
+ var branchOpts github.ListOptions
374
+ branches , err := s .appClient .ListBranches (c .Context (), work .OrgName , work .RepoName , & branchOpts )
375
+ if err != nil {
376
+ return errs .GithubAPIError (err )
377
+ }
378
+ fmt .Println (branches )
379
+ var allCommits []* github.RepositoryCommit
380
+
381
+ for _ , branch := range branches {
382
+ var opts github.CommitsListOptions
383
+ // Assumes a single contirbutor, KHO-144
384
+ opts .Author = work .Contributors [0 ].GithubUsername
385
+ opts .SHA = * branch .Name
386
+ commits , err := s .appClient .ListCommits (c .Context (), work .OrgName , work .RepoName , & opts )
387
+ if err != nil {
388
+ return errs .GithubAPIError (err )
389
+ }
390
+ allCommits = append (allCommits , commits ... )
391
+ }
392
+
393
+
394
+
395
+ if len (allCommits ) > 0 {
396
+ fcd = allCommits [len (allCommits )- 1 ].GetCommit ().GetCommitter ().Date
397
+
398
+ work .StudentWork .FirstCommitDate = fcd
399
+ _ , err := s .store .UpdateStudentWork (c .Context (), work .StudentWork )
400
+ if err != nil {
401
+ return errs .InternalServerError ()
402
+ }
403
+
404
+ }
405
+
406
+ }
407
+
322
408
return c .Status (http .StatusOK ).JSON (fiber.Map {
323
409
"work_id" : work .ID ,
324
- "first_commit_at" : work . FirstCommitDate ,
410
+ "first_commit_at" : fcd ,
325
411
})
326
412
}
327
413
}
0 commit comments