2021-10-02 22:27:43 +00:00
|
|
|
# woodpecker-go
|
2019-04-06 19:32:14 +00:00
|
|
|
|
|
|
|
```Go
|
|
|
|
import (
|
2023-12-08 07:15:08 +00:00
|
|
|
"go.woodpecker-ci.org/woodpecker/v2/woodpecker-go/woodpecker"
|
2022-06-17 10:03:34 +00:00
|
|
|
"golang.org/x/oauth2"
|
2019-04-06 19:32:14 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
const (
|
2024-01-27 20:15:10 +00:00
|
|
|
token = "dummyToken"
|
2022-06-17 10:03:34 +00:00
|
|
|
host = "http://woodpecker.company.tld"
|
2019-04-06 19:32:14 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
func main() {
|
2022-06-17 10:03:34 +00:00
|
|
|
// create an http client with oauth authentication.
|
|
|
|
config := new(oauth2.Config)
|
|
|
|
authenticator := config.Client(
|
|
|
|
oauth2.NoContext,
|
|
|
|
&oauth2.Token{
|
|
|
|
AccessToken: token,
|
|
|
|
},
|
|
|
|
)
|
2019-04-06 19:32:14 +00:00
|
|
|
|
2022-06-17 10:03:34 +00:00
|
|
|
// create the woodpecker client with authenticator
|
|
|
|
client := woodpecker.NewClient(host, authenticator)
|
2019-04-06 19:32:14 +00:00
|
|
|
|
2022-06-17 10:03:34 +00:00
|
|
|
// gets the current user
|
|
|
|
user, err := client.Self()
|
|
|
|
fmt.Println(user, err)
|
2019-04-06 19:32:14 +00:00
|
|
|
|
2022-06-17 10:03:34 +00:00
|
|
|
// gets the named repository information
|
2023-08-01 15:16:45 +00:00
|
|
|
repo, err := client.RepoLookup("woodpecker-ci/woodpecker")
|
2022-06-17 10:03:34 +00:00
|
|
|
fmt.Println(repo, err)
|
2019-04-06 19:32:14 +00:00
|
|
|
}
|
|
|
|
```
|