woodpecker/woodpecker-go
Lauris BH 1ac2c42652
Add global and organization secrets (#1027)
* Implement database changes and store methods for global and organization secrets

* Add tests for new store methods
* Add organization secret API and UI
* Add global secrets API and UI

* Add suggestions

* Update warning style

* Apply suggestions from code review

Co-authored-by: Anbraten <anton@ju60.de>

* Fix lint warning

Co-authored-by: Anbraten <anton@ju60.de>
2022-08-14 13:48:53 +02:00
..
woodpecker Add global and organization secrets (#1027) 2022-08-14 13:48:53 +02:00
LICENSE Rename drone-go (#390) 2021-10-03 00:27:43 +02:00
README.md Use editorconfig-checker (#982) 2022-06-17 12:03:34 +02:00

woodpecker-go

import (
  "github.com/woodpecker-ci/woodpecker/woodpecker-go/woodpecker"
  "golang.org/x/oauth2"
)

const (
  token = "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9"
  host  = "http://woodpecker.company.tld"
)

func main() {
  // create an http client with oauth authentication.
  config := new(oauth2.Config)
  authenticator := config.Client(
    oauth2.NoContext,
    &oauth2.Token{
      AccessToken: token,
    },
  )

  // create the woodpecker client with authenticator
  client := woodpecker.NewClient(host, authenticator)

  // gets the current user
  user, err := client.Self()
  fmt.Println(user, err)

  // gets the named repository information
  repo, err := client.Repo("woodpecker-ci", "woodpecker")
  fmt.Println(repo, err)
}