blob: 1e85eb9a1b747217470d11d1569068670502e8d4 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
|
// 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)
}
|