56 lines
1.1 KiB
Go
56 lines
1.1 KiB
Go
package task
|
|
|
|
import (
|
|
"github.com/google/go-github/github"
|
|
"github.com/localhots/steward/db"
|
|
"github.com/localhots/steward/job"
|
|
)
|
|
|
|
type (
|
|
SyncContribTask struct {
|
|
Owner string
|
|
Repo string
|
|
Token string
|
|
job.Task
|
|
}
|
|
)
|
|
|
|
func SyncContrib(t SyncContribTask) {
|
|
contribs := fetchContrib(newGithubClient(t.Token), t.Owner, t.Repo)
|
|
for _, c := range contribs {
|
|
db.ImportRepo(c)
|
|
}
|
|
}
|
|
|
|
func fetchContrib(client *github.Client, owner, repo string) (res []*db.Contrib) {
|
|
contribs, resp, err := client.Repositories.ListContributorsStats(owner, repo)
|
|
// c.saveResponseMeta(resp)
|
|
if err != nil {
|
|
if err.Error() == "EOF" {
|
|
// Empty repository, not an actual error
|
|
return
|
|
}
|
|
panic(err)
|
|
}
|
|
|
|
for _, c := range contribs {
|
|
for _, week := range c.Weeks {
|
|
if *week.Commits == 0 {
|
|
continue
|
|
}
|
|
|
|
res = append(res, &db.Contrib{
|
|
Week: week.Week.Time.Unix(),
|
|
Author: *c.Author.Login,
|
|
Owner: owner,
|
|
Repo: repo,
|
|
Commits: *week.Commits,
|
|
Additions: *week.Additions,
|
|
Deletions: *week.Deletions,
|
|
})
|
|
}
|
|
}
|
|
|
|
return
|
|
}
|