6 Star 31 Fork 5

dane.4 / go-gitee

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
贡献代码
同步代码
取消
提示: 由于 Git 不支持空文件夾,创建文件夹后会生成空的 .keep 文件
Loading...
README

go-gitee

go-gitee is a Go client library for accessing the [Gitee API v5][].

go-gitee requires Go version 1.7 or greater.

Usage

The go-gitee library does not directly handle authentication. Instead, when creating a new client, pass an http.Client that can handle authentication for you. The easiest and recommended way to do this is using the oauth2 library, but you can always use any other library that provides an http.Client. If you have an OAuth2 access token (for example, a personal API token), you can use it with the oauth2 library using:

import "golang.org/x/oauth2"
import "github.com/weilaihui/go-gitee/gitee"


ctx := context.Background()
conf := &oauth2.Config{
    ClientID:     "{ClientID}",
    ClientSecret: "{ClientSecret}",
    Scopes:       "{Scopes}",
    Endpoint: oauth2.Endpoint{
        AuthURL:  "https://gitee.com/oauth/auth",
        TokenURL: "https://gitee.com/oauth/token",
    },
}
token,err := conf.PasswordCredentialsToken(ctx,"{username}","{password}")

tp := gitee.OAuthTransport{
	Token: token,
}

client := gitee.NewClient(tp.Client())

user, _, err := client.Users.Get(ctx, "")
if err != nil {
	fmt.Printf("\nerror: %v\n", err)
	return
}

fmt.Printf("\n%v\n", gitee.Stringify(user))
fmt.Printf("\n%v\n", *user.Login)

The services of a client divide the API into logical chunks and correspond to the structure of the Gitee API documentation at https://gitee.com/api/v5/swagger.

Accepted Status

Some endpoints may return a 202 Accepted status code, meaning that the information required is not yet ready and was scheduled to be gathered on the GitHub side. Methods known to behave like this are documented specifying this behavior.

To detect this condition of error, you can check if its type is *gitee.AcceptedError:

stats, _, err := client.Repositories.ListContributorsStats(ctx, org, repo)
if _, ok := err.(*gitee.AcceptedError); ok {
	log.Println("scheduled on Gitee side")
}

Creating and Updating Resources

All structs for Gitee resources use pointer values for all non-repeated fields. This allows distinguishing between unset fields and those set to a zero-value. Helper functions have been provided to easily create these pointers for string, bool, and int values. For example:

// create a new private repository named "foo"
repo := &gitee.Repository{
	Name:    gitee.String("foo"),
	Private: gitee.Bool(true),
}
client.Repositories.Create(ctx, "", repo)

Users who have worked with protocol buffers should find this pattern familiar.

Pagination

All requests for resource collections (repos, pull requests, issues, etc.) support pagination. Pagination options are described in the gitee.ListOptions struct and passed to the list methods directly or as an embedded type of a more specific list options struct (for example gitee.PullRequestListOptions). Pages information is available via the gitee.Response struct.

client := gitee.NewClient(nil)

opt := &gitee.RepositoryListByOrgOptions{
	ListOptions: gitee.ListOptions{PerPage: 10},
}
// get all pages of results
var allRepos []*gitee.Repository
for {
	repos, resp, err := client.Repositories.ListByOrg(ctx, "gitee", opt)
	if err != nil {
		return err
	}
	allRepos = append(allRepos, repos...)
	if resp.NextPage == 0 {
		break
	}
	opt.Page = resp.NextPage
}

For complete usage of go-gitee, see the full package docs.

Integration Tests

You can run integration tests from the test directory. See the integration tests README.

Roadmap

This library is being initially developed by go-github, so API methods will likely be implemented like go-github. You can track the status of implementation in go-github. Eventually, I would like to cover the entire Gitee API, so contributions are of course always welcome. The calling pattern is pretty well established, so adding new methods is relatively straightforward.

License

This library is distributed under the BSD-style license found in the LICENSE file.

空文件

简介

Go library for accessing the Gitee API 展开 收起
Go
取消

发行版

暂无发行版

贡献者

全部

近期动态

加载更多
不能加载更多了
Go
1
https://gitee.com/simon/go-gitee.git
git@gitee.com:simon/go-gitee.git
simon
go-gitee
go-gitee
master

搜索帮助