mirror of
https://github.com/MichaelMure/git-bug.git
synced 2024-12-13 20:13:15 +03:00
0cebe1e57e
fix #338
58 lines
1.1 KiB
Go
58 lines
1.1 KiB
Go
// Package github contains the Github bridge implementation
|
|
package github
|
|
|
|
import (
|
|
"context"
|
|
"time"
|
|
|
|
"github.com/shurcooL/githubv4"
|
|
"golang.org/x/oauth2"
|
|
|
|
"github.com/MichaelMure/git-bug/bridge/core"
|
|
"github.com/MichaelMure/git-bug/bridge/core/auth"
|
|
)
|
|
|
|
const (
|
|
target = "github"
|
|
|
|
metaKeyGithubId = "github-id"
|
|
metaKeyGithubUrl = "github-url"
|
|
metaKeyGithubLogin = "github-login"
|
|
|
|
confKeyOwner = "owner"
|
|
confKeyProject = "project"
|
|
confKeyDefaultLogin = "default-login"
|
|
|
|
githubV3Url = "https://api.github.com"
|
|
defaultTimeout = 60 * time.Second
|
|
)
|
|
|
|
var _ core.BridgeImpl = &Github{}
|
|
|
|
type Github struct{}
|
|
|
|
func (*Github) Target() string {
|
|
return target
|
|
}
|
|
|
|
func (g *Github) LoginMetaKey() string {
|
|
return metaKeyGithubLogin
|
|
}
|
|
|
|
func (*Github) NewImporter() core.Importer {
|
|
return &githubImporter{}
|
|
}
|
|
|
|
func (*Github) NewExporter() core.Exporter {
|
|
return &githubExporter{}
|
|
}
|
|
|
|
func buildClient(token *auth.Token) *githubv4.Client {
|
|
src := oauth2.StaticTokenSource(
|
|
&oauth2.Token{AccessToken: token.Value},
|
|
)
|
|
httpClient := oauth2.NewClient(context.TODO(), src)
|
|
|
|
return githubv4.NewClient(httpClient)
|
|
}
|