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"
|
2019-12-08 23:15:06 +03:00
|
|
|
"github.com/MichaelMure/git-bug/bridge/core/auth"
|
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
|
|
|
)
|
|
|
|
|
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
|
|
|
|
2020-02-23 16:05:03 +03:00
|
|
|
// default client
|
2019-12-08 23:15:06 +03:00
|
|
|
client *githubv4.Client
|
|
|
|
|
2019-05-10 03:05:00 +03:00
|
|
|
// iterator
|
|
|
|
iterator *iterator
|
|
|
|
|
2019-08-13 20:51:14 +03:00
|
|
|
// send only channel
|
|
|
|
out chan<- core.ImportResult
|
2018-10-06 12:55:16 +03:00
|
|
|
}
|
|
|
|
|
2020-02-15 17:39:49 +03:00
|
|
|
func (gi *githubImporter) Init(_ context.Context, repo *cache.RepoCache, conf core.Configuration) error {
|
2019-05-03 01:02:50 +03:00
|
|
|
gi.conf = conf
|
2019-12-08 23:15:06 +03:00
|
|
|
|
2020-02-23 16:05:03 +03:00
|
|
|
creds, err := auth.List(repo,
|
|
|
|
auth.WithTarget(target),
|
|
|
|
auth.WithKind(auth.KindToken),
|
|
|
|
auth.WithMeta(auth.MetaKeyLogin, conf[confKeyDefaultLogin]),
|
|
|
|
)
|
2019-12-08 23:15:06 +03:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
if len(creds) == 0 {
|
|
|
|
return ErrMissingIdentityToken
|
|
|
|
}
|
|
|
|
|
|
|
|
gi.client = buildClient(creds[0].(*auth.Token))
|
|
|
|
|
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-08-13 20:51:14 +03:00
|
|
|
func (gi *githubImporter) ImportAll(ctx context.Context, repo *cache.RepoCache, since time.Time) (<-chan core.ImportResult, error) {
|
2020-02-15 04:55:19 +03:00
|
|
|
gi.iterator = NewIterator(ctx, gi.client, 10, gi.conf[confKeyOwner], gi.conf[confKeyProject], since)
|
2019-08-13 20:51:14 +03:00
|
|
|
out := make(chan core.ImportResult)
|
|
|
|
gi.out = out
|
|
|
|
|
|
|
|
go func() {
|
|
|
|
defer close(gi.out)
|
|
|
|
|
|
|
|
// Loop over all matching issues
|
|
|
|
for gi.iterator.NextIssue() {
|
|
|
|
issue := gi.iterator.IssueValue()
|
|
|
|
// create issue
|
|
|
|
b, err := gi.ensureIssue(repo, issue)
|
|
|
|
if err != nil {
|
|
|
|
err := fmt.Errorf("issue creation: %v", err)
|
|
|
|
out <- core.NewImportError(err, "")
|
|
|
|
return
|
|
|
|
}
|
2018-10-02 00:34:45 +03:00
|
|
|
|
2019-08-13 20:51:14 +03:00
|
|
|
// loop over timeline items
|
|
|
|
for gi.iterator.NextTimelineItem() {
|
|
|
|
item := gi.iterator.TimelineItemValue()
|
2019-11-18 03:31:43 +03:00
|
|
|
err := gi.ensureTimelineItem(repo, b, item)
|
|
|
|
if err != nil {
|
|
|
|
err = fmt.Errorf("timeline item creation: %v", err)
|
2019-08-13 20:51:14 +03:00
|
|
|
out <- core.NewImportError(err, "")
|
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
2019-04-27 02:15:02 +03:00
|
|
|
|
2019-11-18 03:31:43 +03:00
|
|
|
if !b.NeedCommit() {
|
|
|
|
out <- core.NewImportNothing(b.Id(), "no imported operation")
|
2019-11-19 21:51:43 +03:00
|
|
|
} else if err := b.Commit(); err != nil {
|
2019-11-18 03:31:43 +03:00
|
|
|
// commit bug state
|
2019-08-13 20:51:14 +03:00
|
|
|
err = fmt.Errorf("bug commit: %v", err)
|
|
|
|
out <- core.NewImportError(err, "")
|
|
|
|
return
|
2018-10-02 00:34:45 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-12-09 03:03:37 +03:00
|
|
|
if err := gi.iterator.Error(); err != nil {
|
2019-08-13 20:51:14 +03:00
|
|
|
gi.out <- core.NewImportError(err, "")
|
2019-04-27 02:15:02 +03:00
|
|
|
}
|
2019-08-13 20:51:14 +03:00
|
|
|
}()
|
2018-10-02 00:34:45 +03:00
|
|
|
|
2019-08-13 20:51:14 +03:00
|
|
|
return out, 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
|
2019-11-10 19:48:13 +03:00
|
|
|
b, err := repo.ResolveBugCreateMetadata(metaKeyGithubUrl, issue.Url.String())
|
2019-05-03 01:02:50 +03:00
|
|
|
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-11-10 19:48:13 +03:00
|
|
|
core.MetaKeyOrigin: target,
|
|
|
|
metaKeyGithubId: parseId(issue.Id),
|
|
|
|
metaKeyGithubUrl: issue.Url.String(),
|
2019-05-03 01:02:50 +03:00
|
|
|
})
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2019-05-17 17:33:16 +03:00
|
|
|
|
|
|
|
// importing a new bug
|
2019-08-13 20:51:14 +03:00
|
|
|
gi.out <- core.NewImportBug(b.Id())
|
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(),
|
2020-02-17 15:17:44 +03:00
|
|
|
issue.Title, // TODO: this is the *current* title, not the original one
|
2019-05-05 18:48:49 +03:00
|
|
|
cleanText,
|
2019-05-03 01:02:50 +03:00
|
|
|
nil,
|
|
|
|
map[string]string{
|
2019-11-10 19:48:13 +03:00
|
|
|
core.MetaKeyOrigin: target,
|
|
|
|
metaKeyGithubId: parseId(issue.Id),
|
|
|
|
metaKeyGithubUrl: issue.Url.String(),
|
2019-05-03 01:02:50 +03:00
|
|
|
},
|
|
|
|
)
|
|
|
|
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2019-05-21 01:16:38 +03:00
|
|
|
// importing a new bug
|
2019-08-13 20:51:14 +03:00
|
|
|
gi.out <- core.NewImportBug(b.Id())
|
2019-05-03 01:02:50 +03:00
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
|
|
|
// other edits will be added as CommentEdit operations
|
2019-11-10 19:48:13 +03:00
|
|
|
target, err := b.ResolveOperationWithMetadata(metaKeyGithubId, parseId(issue.Id))
|
2020-01-04 15:10:53 +03:00
|
|
|
if err == cache.ErrNoMatchingOp {
|
|
|
|
// original comment is missing somehow, issuing a warning
|
|
|
|
gi.out <- core.NewImportWarning(fmt.Errorf("comment ID %s to edit is missing", parseId(issue.Id)), b.Id())
|
|
|
|
continue
|
|
|
|
}
|
2019-05-03 01:02:50 +03:00
|
|
|
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 {
|
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
|
2019-08-13 20:51:14 +03:00
|
|
|
var commentEdits []userContentEdit
|
2019-05-10 03:05:00 +03:00
|
|
|
for gi.iterator.NextCommentEdit() {
|
|
|
|
commentEdits = append(commentEdits, gi.iterator.CommentEditValue())
|
|
|
|
}
|
|
|
|
|
2019-08-13 20:51:14 +03:00
|
|
|
// ensureTimelineComment send import events over out chanel
|
2019-05-10 03:05:00 +03:00
|
|
|
err := gi.ensureTimelineComment(repo, b, item.IssueComment, commentEdits)
|
|
|
|
if err != nil {
|
|
|
|
return fmt.Errorf("timeline comment creation: %v", err)
|
|
|
|
}
|
2019-11-18 03:31:43 +03:00
|
|
|
return nil
|
2018-09-25 20:10:38 +03:00
|
|
|
|
|
|
|
case "LabeledEvent":
|
2018-10-02 14:16:07 +03:00
|
|
|
id := parseId(item.LabeledEvent.Id)
|
2019-11-10 19:48:13 +03:00
|
|
|
_, err := b.ResolveOperationWithMetadata(metaKeyGithubId, id)
|
2019-08-13 20:51:14 +03:00
|
|
|
if err == nil {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
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-08-13 20:51:14 +03:00
|
|
|
op, 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,
|
2019-11-10 19:48:13 +03:00
|
|
|
map[string]string{metaKeyGithubId: id},
|
2018-09-25 20:10:38 +03:00
|
|
|
)
|
2019-08-13 20:51:14 +03:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2019-05-04 14:19:56 +03:00
|
|
|
|
2019-08-13 20:51:14 +03:00
|
|
|
gi.out <- core.NewImportLabelChange(op.Id())
|
|
|
|
return nil
|
2018-09-25 20:10:38 +03:00
|
|
|
|
|
|
|
case "UnlabeledEvent":
|
2018-10-02 14:16:07 +03:00
|
|
|
id := parseId(item.UnlabeledEvent.Id)
|
2019-11-10 19:48:13 +03:00
|
|
|
_, err := b.ResolveOperationWithMetadata(metaKeyGithubId, id)
|
2019-08-13 20:51:14 +03:00
|
|
|
if err == nil {
|
|
|
|
return nil
|
|
|
|
}
|
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-08-13 20:51:14 +03:00
|
|
|
op, 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),
|
|
|
|
},
|
2019-11-10 19:48:13 +03:00
|
|
|
map[string]string{metaKeyGithubId: id},
|
2018-09-25 20:10:38 +03:00
|
|
|
)
|
2019-08-13 20:51:14 +03:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
gi.out <- core.NewImportLabelChange(op.Id())
|
|
|
|
return nil
|
2018-09-25 20:10:38 +03:00
|
|
|
|
|
|
|
case "ClosedEvent":
|
2018-10-02 14:16:07 +03:00
|
|
|
id := parseId(item.ClosedEvent.Id)
|
2019-11-10 19:48:13 +03:00
|
|
|
_, err := b.ResolveOperationWithMetadata(metaKeyGithubId, id)
|
2018-10-02 14:16:07 +03:00
|
|
|
if err != cache.ErrNoMatchingOp {
|
|
|
|
return err
|
|
|
|
}
|
2019-08-13 20:51:14 +03:00
|
|
|
if err == nil {
|
|
|
|
return nil
|
|
|
|
}
|
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-08-13 20:51:14 +03:00
|
|
|
op, err := b.CloseRaw(
|
2019-01-19 18:01:06 +03:00
|
|
|
author,
|
2018-09-25 20:10:38 +03:00
|
|
|
item.ClosedEvent.CreatedAt.Unix(),
|
2019-11-10 19:48:13 +03:00
|
|
|
map[string]string{metaKeyGithubId: id},
|
2018-09-25 20:10:38 +03:00
|
|
|
)
|
2019-08-13 20:51:14 +03:00
|
|
|
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
gi.out <- core.NewImportStatusChange(op.Id())
|
|
|
|
return nil
|
2018-09-25 20:10:38 +03:00
|
|
|
|
|
|
|
case "ReopenedEvent":
|
2018-10-02 14:16:07 +03:00
|
|
|
id := parseId(item.ReopenedEvent.Id)
|
2019-11-10 19:48:13 +03:00
|
|
|
_, err := b.ResolveOperationWithMetadata(metaKeyGithubId, id)
|
2018-10-02 14:16:07 +03:00
|
|
|
if err != cache.ErrNoMatchingOp {
|
|
|
|
return err
|
|
|
|
}
|
2019-08-13 20:51:14 +03:00
|
|
|
if err == nil {
|
|
|
|
return nil
|
|
|
|
}
|
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-08-13 20:51:14 +03:00
|
|
|
op, err := b.OpenRaw(
|
2019-01-19 18:01:06 +03:00
|
|
|
author,
|
2018-09-25 20:10:38 +03:00
|
|
|
item.ReopenedEvent.CreatedAt.Unix(),
|
2019-11-10 19:48:13 +03:00
|
|
|
map[string]string{metaKeyGithubId: id},
|
2018-09-25 20:10:38 +03:00
|
|
|
)
|
2019-08-13 20:51:14 +03:00
|
|
|
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
gi.out <- core.NewImportStatusChange(op.Id())
|
|
|
|
return nil
|
2018-09-25 20:10:38 +03:00
|
|
|
|
|
|
|
case "RenamedTitleEvent":
|
2018-10-02 14:16:07 +03:00
|
|
|
id := parseId(item.RenamedTitleEvent.Id)
|
2019-11-10 19:48:13 +03:00
|
|
|
_, err := b.ResolveOperationWithMetadata(metaKeyGithubId, id)
|
2018-10-02 14:16:07 +03:00
|
|
|
if err != cache.ErrNoMatchingOp {
|
|
|
|
return err
|
|
|
|
}
|
2019-08-13 20:51:14 +03:00
|
|
|
if err == nil {
|
|
|
|
return nil
|
|
|
|
}
|
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-08-13 20:51:14 +03:00
|
|
|
op, 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),
|
2019-11-10 19:48:13 +03:00
|
|
|
map[string]string{metaKeyGithubId: id},
|
2018-09-25 20:10:38 +03:00
|
|
|
)
|
2019-08-13 20:51:14 +03:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
gi.out <- core.NewImportTitleEdition(op.Id())
|
|
|
|
return nil
|
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-11-10 19:48:13 +03:00
|
|
|
targetOpID, err := b.ResolveOperationWithMetadata(metaKeyGithubId, parseId(item.Id))
|
2019-11-18 03:31:43 +03:00
|
|
|
if err != nil && err != cache.ErrNoMatchingOp {
|
2019-05-03 01:02:50 +03:00
|
|
|
// 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 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-13 20:51:14 +03:00
|
|
|
op, 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{
|
2019-11-10 19:48:13 +03:00
|
|
|
metaKeyGithubId: parseId(item.Id),
|
|
|
|
metaKeyGithubUrl: parseId(item.Url.String()),
|
2019-05-03 01:02:50 +03:00
|
|
|
},
|
|
|
|
)
|
2019-08-13 20:51:14 +03:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
gi.out <- core.NewImportComment(op.Id())
|
2019-11-18 03:31:43 +03:00
|
|
|
return nil
|
2019-05-03 01:02:50 +03:00
|
|
|
}
|
2019-08-13 20:51:14 +03:00
|
|
|
|
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{
|
2019-11-10 19:48:13 +03:00
|
|
|
metaKeyGithubId: parseId(item.Id),
|
|
|
|
metaKeyGithubUrl: item.Url.String(),
|
2019-05-03 01:02:50 +03:00
|
|
|
},
|
|
|
|
)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2019-11-19 22:12:07 +03:00
|
|
|
gi.out <- core.NewImportComment(op.Id())
|
2019-05-03 01:02:50 +03:00
|
|
|
|
2020-02-23 16:05:03 +03:00
|
|
|
// set target for the next 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-11-10 19:48:13 +03:00
|
|
|
_, err := b.ResolveOperationWithMetadata(metaKeyGithubId, parseId(edit.Id))
|
2018-10-02 00:34:45 +03:00
|
|
|
if err == nil {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
if err != cache.ErrNoMatchingOp {
|
|
|
|
// real error
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
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-11-18 03:31:43 +03:00
|
|
|
return nil
|
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-08-13 20:51:14 +03:00
|
|
|
op, 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{
|
2019-11-10 19:48:13 +03:00
|
|
|
metaKeyGithubId: parseId(edit.Id),
|
2018-10-02 00:34:45 +03:00
|
|
|
},
|
|
|
|
)
|
2019-05-03 01:02:50 +03:00
|
|
|
|
2018-10-02 00:34:45 +03:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2019-08-13 20:51:14 +03:00
|
|
|
|
|
|
|
gi.out <- core.NewImportCommentEdition(op.Id())
|
2019-11-18 03:31:43 +03:00
|
|
|
return nil
|
2018-10-02 00:34:45 +03:00
|
|
|
}
|
|
|
|
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
|
2019-11-10 19:48:13 +03:00
|
|
|
i, err := repo.ResolveIdentityImmutableMetadata(metaKeyGithubLogin, string(actor.Login))
|
2019-01-19 18:01:06 +03:00
|
|
|
if err == nil {
|
|
|
|
return i, nil
|
|
|
|
}
|
2019-12-08 23:15:06 +03:00
|
|
|
if entity.IsErrMultipleMatch(err) {
|
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
|
|
|
|
|
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
|
|
|
|
2020-02-09 00:04:25 +03:00
|
|
|
// Name is not necessarily set, fallback to login as a name is required in the identity
|
|
|
|
if name == "" {
|
|
|
|
name = string(actor.Login)
|
|
|
|
}
|
|
|
|
|
2019-08-13 20:51:14 +03:00
|
|
|
i, err = repo.NewIdentityRaw(
|
2019-01-19 18:01:06 +03:00
|
|
|
name,
|
|
|
|
email,
|
2020-02-25 23:35:57 +03:00
|
|
|
string(actor.Login),
|
2019-01-19 18:01:06 +03:00
|
|
|
string(actor.AvatarUrl),
|
|
|
|
map[string]string{
|
2019-11-10 19:48:13 +03:00
|
|
|
metaKeyGithubLogin: string(actor.Login),
|
2019-01-19 18:01:06 +03:00
|
|
|
},
|
|
|
|
)
|
2019-08-13 20:51:14 +03:00
|
|
|
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
gi.out <- core.NewImportIdentity(i.Id())
|
|
|
|
return i, nil
|
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
|
2019-11-10 19:48:13 +03:00
|
|
|
i, err := repo.ResolveIdentityImmutableMetadata(metaKeyGithubLogin, "ghost")
|
2019-01-19 18:01:06 +03:00
|
|
|
if err == nil {
|
|
|
|
return i, nil
|
|
|
|
}
|
2019-12-08 23:15:06 +03:00
|
|
|
if entity.IsErrMultipleMatch(err) {
|
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-08-13 20:51:14 +03:00
|
|
|
ctx, cancel := context.WithTimeout(gi.iterator.ctx, defaultTimeout)
|
2019-06-22 20:46:42 +03:00
|
|
|
defer cancel()
|
|
|
|
|
2019-12-08 23:15:06 +03:00
|
|
|
err = gi.client.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
|
|
|
"",
|
2020-02-25 23:35:57 +03:00
|
|
|
string(q.User.Login),
|
2019-01-17 05:09:08 +03:00
|
|
|
string(q.User.AvatarUrl),
|
2019-01-19 18:01:06 +03:00
|
|
|
map[string]string{
|
2019-11-10 19:48:13 +03:00
|
|
|
metaKeyGithubLogin: string(q.User.Login),
|
2019-01-19 18:01:06 +03:00
|
|
|
},
|
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)
|
|
|
|
}
|