2018-09-24 20:22:32 +03:00
|
|
|
package github
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
"fmt"
|
2019-04-27 02:15:02 +03:00
|
|
|
"time"
|
2018-09-24 20:22:32 +03:00
|
|
|
|
2019-05-24 22:32:13 +03:00
|
|
|
"github.com/shurcooL/githubv4"
|
|
|
|
|
2018-09-24 20:22:32 +03:00
|
|
|
"github.com/MichaelMure/git-bug/bridge/core"
|
2018-09-25 20:10:38 +03:00
|
|
|
"github.com/MichaelMure/git-bug/bug"
|
2018-09-24 20:22:32 +03:00
|
|
|
"github.com/MichaelMure/git-bug/cache"
|
2019-08-12 17:12:14 +03:00
|
|
|
"github.com/MichaelMure/git-bug/entity"
|
2019-05-05 18:48:49 +03:00
|
|
|
"github.com/MichaelMure/git-bug/util/text"
|
2018-09-24 20:22:32 +03:00
|
|
|
)
|
|
|
|
|
2019-04-27 02:15:02 +03:00
|
|
|
const (
|
2019-06-22 00:25:23 +03:00
|
|
|
keyOrigin = "origin"
|
2019-04-27 02:15:02 +03:00
|
|
|
keyGithubId = "github-id"
|
|
|
|
keyGithubUrl = "github-url"
|
|
|
|
keyGithubLogin = "github-login"
|
|
|
|
)
|
2018-09-25 20:10:38 +03:00
|
|
|
|
|
|
|
// githubImporter implement the Importer interface
|
2018-10-06 12:55:16 +03:00
|
|
|
type githubImporter struct {
|
2019-05-04 18:38:03 +03:00
|
|
|
conf core.Configuration
|
2019-05-10 03:05:00 +03:00
|
|
|
|
|
|
|
// iterator
|
|
|
|
iterator *iterator
|
|
|
|
|
|
|
|
// number of imported issues
|
|
|
|
importedIssues int
|
|
|
|
|
|
|
|
// number of imported identities
|
|
|
|
importedIdentities int
|
2018-10-06 12:55:16 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
func (gi *githubImporter) Init(conf core.Configuration) error {
|
2019-05-03 01:02:50 +03:00
|
|
|
gi.conf = conf
|
2018-09-24 20:22:32 +03:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2019-05-21 01:16:38 +03:00
|
|
|
// ImportAll iterate over all the configured repository issues and ensure the creation of the
|
|
|
|
// missing issues / timeline items / edits / label events ...
|
2019-05-03 01:02:50 +03:00
|
|
|
func (gi *githubImporter) ImportAll(repo *cache.RepoCache, since time.Time) error {
|
2019-05-24 22:32:13 +03:00
|
|
|
gi.iterator = NewIterator(gi.conf[keyOwner], gi.conf[keyProject], gi.conf[keyToken], since)
|
2019-05-03 01:02:50 +03:00
|
|
|
|
|
|
|
// Loop over all matching issues
|
2019-05-10 03:05:00 +03:00
|
|
|
for gi.iterator.NextIssue() {
|
|
|
|
issue := gi.iterator.IssueValue()
|
2019-05-17 17:33:16 +03:00
|
|
|
fmt.Printf("importing issue: %v\n", issue.Title)
|
2018-10-02 00:34:45 +03:00
|
|
|
|
2019-05-03 01:02:50 +03:00
|
|
|
// create issue
|
2019-05-10 13:02:44 +03:00
|
|
|
b, err := gi.ensureIssue(repo, issue)
|
2019-05-03 01:02:50 +03:00
|
|
|
if err != nil {
|
|
|
|
return fmt.Errorf("issue creation: %v", err)
|
2019-04-27 02:15:02 +03:00
|
|
|
}
|
|
|
|
|
2019-05-03 01:02:50 +03:00
|
|
|
// loop over timeline items
|
2019-05-21 01:16:38 +03:00
|
|
|
for gi.iterator.NextTimelineItem() {
|
|
|
|
if err := gi.ensureTimelineItem(repo, b, gi.iterator.TimelineItemValue()); err != nil {
|
|
|
|
return fmt.Errorf("timeline item creation: %v", err)
|
2018-10-02 00:34:45 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-04-27 02:15:02 +03:00
|
|
|
// commit bug state
|
2019-05-03 01:02:50 +03:00
|
|
|
if err := b.CommitAsNeeded(); err != nil {
|
|
|
|
return fmt.Errorf("bug commit: %v", err)
|
2019-04-27 02:15:02 +03:00
|
|
|
}
|
2018-10-02 00:34:45 +03:00
|
|
|
}
|
|
|
|
|
2019-05-10 03:05:00 +03:00
|
|
|
if err := gi.iterator.Error(); err != nil {
|
2019-04-27 02:15:02 +03:00
|
|
|
fmt.Printf("import error: %v\n", err)
|
2019-05-03 01:02:50 +03:00
|
|
|
return err
|
2018-10-05 18:53:06 +03:00
|
|
|
}
|
|
|
|
|
2019-05-21 01:16:38 +03:00
|
|
|
fmt.Printf("Successfully imported %d issues and %d identities from Github\n", gi.importedIssues, gi.importedIdentities)
|
2019-04-27 02:15:02 +03:00
|
|
|
return nil
|
2018-09-25 20:10:38 +03:00
|
|
|
}
|
|
|
|
|
2019-05-10 13:02:44 +03:00
|
|
|
func (gi *githubImporter) ensureIssue(repo *cache.RepoCache, issue issueTimeline) (*cache.BugCache, error) {
|
2019-05-03 01:02:50 +03:00
|
|
|
// ensure issue author
|
|
|
|
author, err := gi.ensurePerson(repo, issue.Author)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
// resolve bug
|
|
|
|
b, err := repo.ResolveBugCreateMetadata(keyGithubUrl, issue.Url.String())
|
|
|
|
if err != nil && err != bug.ErrBugNotExist {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
2019-05-10 13:02:44 +03:00
|
|
|
// get issue edits
|
2019-08-07 20:14:12 +03:00
|
|
|
var issueEdits []userContentEdit
|
2019-05-10 13:02:44 +03:00
|
|
|
for gi.iterator.NextIssueEdit() {
|
|
|
|
issueEdits = append(issueEdits, gi.iterator.IssueEditValue())
|
|
|
|
}
|
|
|
|
|
2019-05-03 01:02:50 +03:00
|
|
|
// if issueEdits is empty
|
|
|
|
if len(issueEdits) == 0 {
|
|
|
|
if err == bug.ErrBugNotExist {
|
2019-05-05 18:48:49 +03:00
|
|
|
cleanText, err := text.Cleanup(string(issue.Body))
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
2019-05-03 01:02:50 +03:00
|
|
|
// create bug
|
2019-06-16 22:04:36 +03:00
|
|
|
b, _, err = repo.NewBugRaw(
|
2019-05-03 01:02:50 +03:00
|
|
|
author,
|
|
|
|
issue.CreatedAt.Unix(),
|
|
|
|
issue.Title,
|
2019-05-05 18:48:49 +03:00
|
|
|
cleanText,
|
2019-05-03 01:02:50 +03:00
|
|
|
nil,
|
|
|
|
map[string]string{
|
2019-06-22 00:25:23 +03:00
|
|
|
keyOrigin: target,
|
2019-05-03 01:02:50 +03:00
|
|
|
keyGithubId: parseId(issue.Id),
|
|
|
|
keyGithubUrl: issue.Url.String(),
|
|
|
|
})
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2019-05-17 17:33:16 +03:00
|
|
|
|
|
|
|
// importing a new bug
|
|
|
|
gi.importedIssues++
|
2019-05-03 01:02:50 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
} else {
|
|
|
|
// create bug from given issueEdits
|
|
|
|
for i, edit := range issueEdits {
|
|
|
|
if i == 0 && b != nil {
|
2019-05-04 23:26:54 +03:00
|
|
|
// The first edit in the github result is the issue creation itself, we already have that
|
2019-05-03 01:02:50 +03:00
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
2019-05-05 18:48:49 +03:00
|
|
|
cleanText, err := text.Cleanup(string(*edit.Diff))
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
2019-05-03 01:02:50 +03:00
|
|
|
// if the bug doesn't exist
|
|
|
|
if b == nil {
|
|
|
|
// we create the bug as soon as we have a legit first edition
|
2019-06-16 22:04:36 +03:00
|
|
|
b, _, err = repo.NewBugRaw(
|
2019-05-03 01:02:50 +03:00
|
|
|
author,
|
|
|
|
issue.CreatedAt.Unix(),
|
|
|
|
issue.Title,
|
2019-05-05 18:48:49 +03:00
|
|
|
cleanText,
|
2019-05-03 01:02:50 +03:00
|
|
|
nil,
|
|
|
|
map[string]string{
|
2019-06-22 00:25:23 +03:00
|
|
|
keyOrigin: target,
|
2019-05-03 01:02:50 +03:00
|
|
|
keyGithubId: parseId(issue.Id),
|
|
|
|
keyGithubUrl: issue.Url.String(),
|
|
|
|
},
|
|
|
|
)
|
|
|
|
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
2019-05-21 01:16:38 +03:00
|
|
|
// importing a new bug
|
|
|
|
gi.importedIssues++
|
|
|
|
|
2019-05-03 01:02:50 +03:00
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
|
|
|
// other edits will be added as CommentEdit operations
|
|
|
|
target, err := b.ResolveOperationWithMetadata(keyGithubUrl, issue.Url.String())
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
err = gi.ensureCommentEdit(repo, b, target, edit)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return b, nil
|
2019-04-27 02:15:02 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
func (gi *githubImporter) ensureTimelineItem(repo *cache.RepoCache, b *cache.BugCache, item timelineItem) error {
|
2019-05-03 01:02:50 +03:00
|
|
|
fmt.Printf("import event item: %s\n", item.Typename)
|
2018-10-02 14:02:16 +03:00
|
|
|
|
2018-09-25 20:10:38 +03:00
|
|
|
switch item.Typename {
|
|
|
|
case "IssueComment":
|
2019-05-10 03:05:00 +03:00
|
|
|
// collect all comment edits
|
|
|
|
commentEdits := []userContentEdit{}
|
|
|
|
for gi.iterator.NextCommentEdit() {
|
|
|
|
commentEdits = append(commentEdits, gi.iterator.CommentEditValue())
|
|
|
|
}
|
|
|
|
|
|
|
|
err := gi.ensureTimelineComment(repo, b, item.IssueComment, commentEdits)
|
|
|
|
if err != nil {
|
|
|
|
return fmt.Errorf("timeline comment creation: %v", err)
|
|
|
|
}
|
2018-09-25 20:10:38 +03:00
|
|
|
|
|
|
|
case "LabeledEvent":
|
2018-10-02 14:16:07 +03:00
|
|
|
id := parseId(item.LabeledEvent.Id)
|
2019-02-24 14:58:04 +03:00
|
|
|
_, err := b.ResolveOperationWithMetadata(keyGithubId, id)
|
2018-10-02 14:16:07 +03:00
|
|
|
if err != cache.ErrNoMatchingOp {
|
|
|
|
return err
|
|
|
|
}
|
2019-02-24 14:58:04 +03:00
|
|
|
author, err := gi.ensurePerson(repo, item.LabeledEvent.Actor)
|
2019-01-19 18:01:06 +03:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2019-05-04 14:19:56 +03:00
|
|
|
_, err = b.ForceChangeLabelsRaw(
|
2019-01-19 18:01:06 +03:00
|
|
|
author,
|
2018-09-25 20:10:38 +03:00
|
|
|
item.LabeledEvent.CreatedAt.Unix(),
|
|
|
|
[]string{
|
|
|
|
string(item.LabeledEvent.Label.Name),
|
|
|
|
},
|
|
|
|
nil,
|
2018-10-02 14:16:07 +03:00
|
|
|
map[string]string{keyGithubId: id},
|
2018-09-25 20:10:38 +03:00
|
|
|
)
|
2019-05-04 14:19:56 +03:00
|
|
|
|
2018-09-25 20:10:38 +03:00
|
|
|
return err
|
|
|
|
|
|
|
|
case "UnlabeledEvent":
|
2018-10-02 14:16:07 +03:00
|
|
|
id := parseId(item.UnlabeledEvent.Id)
|
2019-02-24 14:58:04 +03:00
|
|
|
_, err := b.ResolveOperationWithMetadata(keyGithubId, id)
|
2018-10-02 14:16:07 +03:00
|
|
|
if err != cache.ErrNoMatchingOp {
|
|
|
|
return err
|
|
|
|
}
|
2019-02-24 14:58:04 +03:00
|
|
|
author, err := gi.ensurePerson(repo, item.UnlabeledEvent.Actor)
|
2019-01-19 18:01:06 +03:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2019-05-03 01:02:50 +03:00
|
|
|
|
2019-05-04 14:19:56 +03:00
|
|
|
_, err = b.ForceChangeLabelsRaw(
|
2019-01-19 18:01:06 +03:00
|
|
|
author,
|
2018-09-25 20:10:38 +03:00
|
|
|
item.UnlabeledEvent.CreatedAt.Unix(),
|
|
|
|
nil,
|
|
|
|
[]string{
|
|
|
|
string(item.UnlabeledEvent.Label.Name),
|
|
|
|
},
|
2018-10-02 14:16:07 +03:00
|
|
|
map[string]string{keyGithubId: id},
|
2018-09-25 20:10:38 +03:00
|
|
|
)
|
|
|
|
return err
|
|
|
|
|
|
|
|
case "ClosedEvent":
|
2018-10-02 14:16:07 +03:00
|
|
|
id := parseId(item.ClosedEvent.Id)
|
2019-02-24 14:58:04 +03:00
|
|
|
_, err := b.ResolveOperationWithMetadata(keyGithubId, id)
|
2018-10-02 14:16:07 +03:00
|
|
|
if err != cache.ErrNoMatchingOp {
|
|
|
|
return err
|
|
|
|
}
|
2019-02-24 14:58:04 +03:00
|
|
|
author, err := gi.ensurePerson(repo, item.ClosedEvent.Actor)
|
2019-01-19 18:01:06 +03:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2019-02-24 14:58:04 +03:00
|
|
|
_, err = b.CloseRaw(
|
2019-01-19 18:01:06 +03:00
|
|
|
author,
|
2018-09-25 20:10:38 +03:00
|
|
|
item.ClosedEvent.CreatedAt.Unix(),
|
2018-10-02 14:16:07 +03:00
|
|
|
map[string]string{keyGithubId: id},
|
2018-09-25 20:10:38 +03:00
|
|
|
)
|
2019-02-24 14:58:04 +03:00
|
|
|
return err
|
2018-09-25 20:10:38 +03:00
|
|
|
|
|
|
|
case "ReopenedEvent":
|
2018-10-02 14:16:07 +03:00
|
|
|
id := parseId(item.ReopenedEvent.Id)
|
2019-02-24 14:58:04 +03:00
|
|
|
_, err := b.ResolveOperationWithMetadata(keyGithubId, id)
|
2018-10-02 14:16:07 +03:00
|
|
|
if err != cache.ErrNoMatchingOp {
|
|
|
|
return err
|
|
|
|
}
|
2019-02-24 14:58:04 +03:00
|
|
|
author, err := gi.ensurePerson(repo, item.ReopenedEvent.Actor)
|
2019-01-19 18:01:06 +03:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2019-02-24 14:58:04 +03:00
|
|
|
_, err = b.OpenRaw(
|
2019-01-19 18:01:06 +03:00
|
|
|
author,
|
2018-09-25 20:10:38 +03:00
|
|
|
item.ReopenedEvent.CreatedAt.Unix(),
|
2018-10-02 14:16:07 +03:00
|
|
|
map[string]string{keyGithubId: id},
|
2018-09-25 20:10:38 +03:00
|
|
|
)
|
2019-02-24 14:58:04 +03:00
|
|
|
return err
|
2018-09-25 20:10:38 +03:00
|
|
|
|
|
|
|
case "RenamedTitleEvent":
|
2018-10-02 14:16:07 +03:00
|
|
|
id := parseId(item.RenamedTitleEvent.Id)
|
2019-02-24 14:58:04 +03:00
|
|
|
_, err := b.ResolveOperationWithMetadata(keyGithubId, id)
|
2018-10-02 14:16:07 +03:00
|
|
|
if err != cache.ErrNoMatchingOp {
|
|
|
|
return err
|
|
|
|
}
|
2019-02-24 14:58:04 +03:00
|
|
|
author, err := gi.ensurePerson(repo, item.RenamedTitleEvent.Actor)
|
2019-01-19 18:01:06 +03:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2019-02-24 14:58:04 +03:00
|
|
|
_, err = b.SetTitleRaw(
|
2019-01-19 18:01:06 +03:00
|
|
|
author,
|
2018-09-25 20:10:38 +03:00
|
|
|
item.RenamedTitleEvent.CreatedAt.Unix(),
|
|
|
|
string(item.RenamedTitleEvent.CurrentTitle),
|
2018-10-02 14:16:07 +03:00
|
|
|
map[string]string{keyGithubId: id},
|
2018-09-25 20:10:38 +03:00
|
|
|
)
|
2019-02-24 14:58:04 +03:00
|
|
|
return err
|
2018-09-25 20:10:38 +03:00
|
|
|
|
|
|
|
default:
|
2019-04-27 02:15:02 +03:00
|
|
|
fmt.Printf("ignore event: %v\n", item.Typename)
|
2018-09-25 20:10:38 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2019-05-03 01:02:50 +03:00
|
|
|
func (gi *githubImporter) ensureTimelineComment(repo *cache.RepoCache, b *cache.BugCache, item issueComment, edits []userContentEdit) error {
|
|
|
|
// ensure person
|
|
|
|
author, err := gi.ensurePerson(repo, item.Author)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2019-08-07 20:14:12 +03:00
|
|
|
targetOpID, err := b.ResolveOperationWithMetadata(keyGithubId, parseId(item.Id))
|
2019-05-03 01:02:50 +03:00
|
|
|
if err != nil && err != cache.ErrNoMatchingOp {
|
|
|
|
// real error
|
|
|
|
return err
|
|
|
|
}
|
2019-08-07 20:14:12 +03:00
|
|
|
|
2019-05-03 01:02:50 +03:00
|
|
|
// if no edits are given we create the comment
|
|
|
|
if len(edits) == 0 {
|
|
|
|
// if comment doesn't exist
|
|
|
|
if err == cache.ErrNoMatchingOp {
|
2019-05-05 18:48:49 +03:00
|
|
|
cleanText, err := text.Cleanup(string(item.Body))
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2019-05-03 01:02:50 +03:00
|
|
|
|
|
|
|
// add comment operation
|
2019-08-07 20:14:12 +03:00
|
|
|
_, err = b.AddCommentRaw(
|
2019-05-03 01:02:50 +03:00
|
|
|
author,
|
|
|
|
item.CreatedAt.Unix(),
|
2019-05-05 18:48:49 +03:00
|
|
|
cleanText,
|
2019-05-03 01:02:50 +03:00
|
|
|
nil,
|
|
|
|
map[string]string{
|
|
|
|
keyGithubId: parseId(item.Id),
|
|
|
|
keyGithubUrl: parseId(item.Url.String()),
|
|
|
|
},
|
|
|
|
)
|
2019-08-07 20:14:12 +03:00
|
|
|
return err
|
2019-05-03 01:02:50 +03:00
|
|
|
}
|
|
|
|
} else {
|
2019-05-05 15:08:48 +03:00
|
|
|
for i, edit := range edits {
|
2019-08-07 20:14:12 +03:00
|
|
|
if i == 0 && targetOpID != "" {
|
2019-05-04 23:26:54 +03:00
|
|
|
// The first edit in the github result is the comment creation itself, we already have that
|
2019-05-03 01:02:50 +03:00
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
|
|
|
// ensure editor identity
|
|
|
|
editor, err := gi.ensurePerson(repo, edit.Editor)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
// create comment when target is empty
|
2019-08-07 20:14:12 +03:00
|
|
|
if targetOpID == "" {
|
2019-05-05 18:48:49 +03:00
|
|
|
cleanText, err := text.Cleanup(string(*edit.Diff))
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2019-05-03 01:02:50 +03:00
|
|
|
op, err := b.AddCommentRaw(
|
|
|
|
editor,
|
|
|
|
edit.CreatedAt.Unix(),
|
2019-05-05 18:48:49 +03:00
|
|
|
cleanText,
|
2019-05-03 01:02:50 +03:00
|
|
|
nil,
|
|
|
|
map[string]string{
|
|
|
|
keyGithubId: parseId(item.Id),
|
|
|
|
keyGithubUrl: item.Url.String(),
|
|
|
|
},
|
|
|
|
)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2019-08-07 20:14:12 +03:00
|
|
|
// set target for the nexr edit now that the comment is created
|
2019-08-12 17:12:14 +03:00
|
|
|
targetOpID = op.Id()
|
2019-05-03 01:02:50 +03:00
|
|
|
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
2019-08-07 20:14:12 +03:00
|
|
|
err = gi.ensureCommentEdit(repo, b, targetOpID, edit)
|
2019-05-03 01:02:50 +03:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2019-08-12 17:12:14 +03:00
|
|
|
func (gi *githubImporter) ensureCommentEdit(repo *cache.RepoCache, b *cache.BugCache, target entity.Id, edit userContentEdit) error {
|
2019-02-24 14:58:04 +03:00
|
|
|
_, err := b.ResolveOperationWithMetadata(keyGithubId, parseId(edit.Id))
|
2018-10-02 00:34:45 +03:00
|
|
|
if err == nil {
|
|
|
|
// already imported
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
if err != cache.ErrNoMatchingOp {
|
|
|
|
// real error
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2018-10-05 18:53:06 +03:00
|
|
|
fmt.Println("import edition")
|
2018-10-02 00:34:45 +03:00
|
|
|
|
2019-02-24 15:06:03 +03:00
|
|
|
editor, err := gi.ensurePerson(repo, edit.Editor)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
2019-01-19 18:01:06 +03:00
|
|
|
}
|
|
|
|
|
2018-10-02 00:34:45 +03:00
|
|
|
switch {
|
|
|
|
case edit.DeletedAt != nil:
|
|
|
|
// comment deletion, not supported yet
|
2019-05-04 18:38:03 +03:00
|
|
|
fmt.Println("comment deletion is not supported yet")
|
2018-10-02 00:34:45 +03:00
|
|
|
|
|
|
|
case edit.DeletedAt == nil:
|
2019-05-03 01:02:50 +03:00
|
|
|
|
2019-05-05 18:48:49 +03:00
|
|
|
cleanText, err := text.Cleanup(string(*edit.Diff))
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2018-10-02 00:34:45 +03:00
|
|
|
// comment edition
|
2019-05-05 18:48:49 +03:00
|
|
|
_, err = b.EditCommentRaw(
|
2019-01-19 18:01:06 +03:00
|
|
|
editor,
|
2018-10-02 00:34:45 +03:00
|
|
|
edit.CreatedAt.Unix(),
|
2018-10-02 14:02:16 +03:00
|
|
|
target,
|
2019-05-05 18:48:49 +03:00
|
|
|
cleanText,
|
2018-10-02 00:34:45 +03:00
|
|
|
map[string]string{
|
|
|
|
keyGithubId: parseId(edit.Id),
|
|
|
|
},
|
|
|
|
)
|
2019-05-03 01:02:50 +03:00
|
|
|
|
2018-10-02 00:34:45 +03:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2019-02-24 14:58:04 +03:00
|
|
|
// ensurePerson create a bug.Person from the Github data
|
|
|
|
func (gi *githubImporter) ensurePerson(repo *cache.RepoCache, actor *actor) (*cache.IdentityCache, error) {
|
2019-01-19 18:01:06 +03:00
|
|
|
// When a user has been deleted, Github return a null actor, while displaying a profile named "ghost"
|
|
|
|
// in it's UI. So we need a special case to get it.
|
2018-10-06 12:55:16 +03:00
|
|
|
if actor == nil {
|
2019-01-19 18:01:06 +03:00
|
|
|
return gi.getGhost(repo)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Look first in the cache
|
|
|
|
i, err := repo.ResolveIdentityImmutableMetadata(keyGithubLogin, string(actor.Login))
|
|
|
|
if err == nil {
|
|
|
|
return i, nil
|
|
|
|
}
|
2019-08-12 17:12:14 +03:00
|
|
|
if _, ok := err.(entity.ErrMultipleMatch); ok {
|
2019-01-19 18:01:06 +03:00
|
|
|
return nil, err
|
2018-10-06 12:55:16 +03:00
|
|
|
}
|
2019-01-19 18:01:06 +03:00
|
|
|
|
2019-05-10 03:05:00 +03:00
|
|
|
// importing a new identity
|
|
|
|
gi.importedIdentities++
|
|
|
|
|
2018-10-07 19:27:23 +03:00
|
|
|
var name string
|
|
|
|
var email string
|
|
|
|
|
|
|
|
switch actor.Typename {
|
|
|
|
case "User":
|
|
|
|
if actor.User.Name != nil {
|
|
|
|
name = string(*(actor.User.Name))
|
|
|
|
}
|
|
|
|
email = string(actor.User.Email)
|
|
|
|
case "Organization":
|
|
|
|
if actor.Organization.Name != nil {
|
|
|
|
name = string(*(actor.Organization.Name))
|
|
|
|
}
|
|
|
|
if actor.Organization.Email != nil {
|
|
|
|
email = string(*(actor.Organization.Email))
|
|
|
|
}
|
|
|
|
case "Bot":
|
|
|
|
}
|
2018-10-06 12:55:16 +03:00
|
|
|
|
2019-01-19 18:01:06 +03:00
|
|
|
return repo.NewIdentityRaw(
|
|
|
|
name,
|
|
|
|
email,
|
|
|
|
string(actor.Login),
|
|
|
|
string(actor.AvatarUrl),
|
|
|
|
map[string]string{
|
|
|
|
keyGithubLogin: string(actor.Login),
|
|
|
|
},
|
|
|
|
)
|
2018-09-25 20:10:38 +03:00
|
|
|
}
|
|
|
|
|
2019-02-17 18:12:06 +03:00
|
|
|
func (gi *githubImporter) getGhost(repo *cache.RepoCache) (*cache.IdentityCache, error) {
|
2019-01-19 18:01:06 +03:00
|
|
|
// Look first in the cache
|
|
|
|
i, err := repo.ResolveIdentityImmutableMetadata(keyGithubLogin, "ghost")
|
|
|
|
if err == nil {
|
|
|
|
return i, nil
|
|
|
|
}
|
2019-08-12 17:12:14 +03:00
|
|
|
if _, ok := err.(entity.ErrMultipleMatch); ok {
|
2019-01-19 18:01:06 +03:00
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
2019-07-06 12:46:59 +03:00
|
|
|
var q ghostQuery
|
2018-10-06 12:55:16 +03:00
|
|
|
|
|
|
|
variables := map[string]interface{}{
|
|
|
|
"login": githubv4.String("ghost"),
|
|
|
|
}
|
|
|
|
|
2019-05-04 18:38:03 +03:00
|
|
|
gc := buildClient(gi.conf[keyToken])
|
|
|
|
|
2019-06-22 20:46:42 +03:00
|
|
|
parentCtx := context.Background()
|
|
|
|
ctx, cancel := context.WithTimeout(parentCtx, defaultTimeout)
|
|
|
|
defer cancel()
|
|
|
|
|
|
|
|
err = gc.Query(ctx, &q, variables)
|
2018-10-06 12:55:16 +03:00
|
|
|
if err != nil {
|
2019-01-19 18:01:06 +03:00
|
|
|
return nil, err
|
2018-10-06 12:55:16 +03:00
|
|
|
}
|
|
|
|
|
2018-10-07 19:27:23 +03:00
|
|
|
var name string
|
|
|
|
if q.User.Name != nil {
|
|
|
|
name = string(*q.User.Name)
|
|
|
|
}
|
|
|
|
|
2019-01-19 18:01:06 +03:00
|
|
|
return repo.NewIdentityRaw(
|
2019-01-17 05:09:08 +03:00
|
|
|
name,
|
2019-07-06 12:46:59 +03:00
|
|
|
"",
|
2019-01-17 05:09:08 +03:00
|
|
|
string(q.User.Login),
|
|
|
|
string(q.User.AvatarUrl),
|
2019-01-19 18:01:06 +03:00
|
|
|
map[string]string{
|
|
|
|
keyGithubLogin: string(q.User.Login),
|
|
|
|
},
|
2019-01-17 05:09:08 +03:00
|
|
|
)
|
2018-10-06 12:55:16 +03:00
|
|
|
}
|
|
|
|
|
2018-09-25 20:10:38 +03:00
|
|
|
// parseId convert the unusable githubv4.ID (an interface{}) into a string
|
|
|
|
func parseId(id githubv4.ID) string {
|
|
|
|
return fmt.Sprintf("%v", id)
|
|
|
|
}
|