GO SDK of the GreenHost API. forked from github.com/digitalocean/godo
Go to file
bryanl de59235b17 updating documentation for godo 2015-06-01 13:34:27 -04:00
util Add example for WaitForActive() 2015-04-30 16:16:16 -04:00
.travis.yml hooking up travis 2015-01-22 17:08:17 -05:00
CONTRIBUTING.md Add docs for contributing, versioning and docs. 2015-03-12 12:18:48 -04:00
LICENSE.txt initial commit 2014-09-03 10:20:10 -04:00
README.md Update to oauth2 example. 2015-05-22 21:01:35 -04:00
account.go Standardize on returning objects, not the json roots. 2015-06-01 10:47:19 -04:00
account_test.go Standardize on returning objects, not the json roots. 2015-06-01 10:47:19 -04:00
action.go Remove testing Implements 2015-03-21 15:42:48 -04:00
action_test.go Remove testing Implements 2015-03-21 15:42:48 -04:00
doc.go initial commit 2014-09-03 10:20:10 -04:00
domains.go Standardize on returning objects, not the json roots. 2015-06-01 10:47:19 -04:00
domains_test.go Standardize on returning objects, not the json roots. 2015-06-01 10:47:19 -04:00
droplet_actions.go updating documentation for godo 2015-06-01 13:34:27 -04:00
droplet_actions_test.go Add missing droplet actions. 2015-04-21 13:16:35 -07:00
droplets.go updating documentation for godo 2015-06-01 13:34:27 -04:00
droplets_test.go Standardize on returning objects, not the json roots. 2015-06-01 10:47:19 -04:00
godo.go Don't drop existing query keys 2015-05-29 15:10:21 -07:00
godo_test.go updating documentation for godo 2015-06-01 13:34:27 -04:00
image_actions.go Remove testing Implements 2015-03-21 15:42:48 -04:00
image_actions_test.go Merge pull request #33 from digitalocean/remove-implements-check 2015-03-23 07:37:21 -04:00
images.go updating documentation for godo 2015-06-01 13:34:27 -04:00
images_test.go Add missing APIs to Images service. 2015-04-22 17:55:01 -07:00
keys.go updating documentation for godo 2015-06-01 13:34:27 -04:00
keys_test.go Add support for key updates: 2015-04-21 10:39:54 -07:00
links.go updating documentation for godo 2015-06-01 13:34:27 -04:00
links_test.go Fix a few issues identified by go vet 2014-12-16 14:24:50 -08:00
regions.go Remove testing Implements 2015-03-21 15:42:48 -04:00
regions_test.go Remove testing Implements 2015-03-21 15:42:48 -04:00
sizes.go Added transfer to size 2015-05-03 21:11:41 +09:00
sizes_test.go Added transfer to size 2015-05-03 21:11:41 +09:00
strings.go convert writer to buffer 2015-03-22 14:13:56 -04:00
timestamp.go initial commit 2014-09-03 10:20:10 -04:00
timestamp_test.go initial commit 2014-09-03 10:20:10 -04:00

README.md

Build Status

Godo

Godo is a Go client library for accessing the DigitalOcean V2 API.

You can view the client API docs here: http://godoc.org/github.com/digitalocean/godo

You can view Digital Ocean API docs here: https://developers.digitalocean.com/documentation/v2/

Usage

import "github.com/digitalocean/godo"

Create a new DigitalOcean client, then use the exposed services to access different parts of the DigitalOcean API.

Authentication

Currently, Personal Access Token (PAT) is the only method of authenticating with the API. You can manage your tokens at the Digital Ocean Control Panel Applications Page.

You can then use your token to create a new client:

import "golang.org/x/oauth2"

pat := "mytoken"
type TokenSource struct {
    AccessToken string
}

func (t *TokenSource) Token() (*oauth2.Token, error) {
    token := &oauth2.Token{
        AccessToken: t.AccessToken,
    }
    return token, nil
}

tokenSource := &TokenSource{
    AccessToken: pat,
}
oauthClient := oauth2.NewClient(oauth2.NoContext, tokenSource)
client := godo.NewClient(oauthClient)

Examples

To create a new Droplet:

dropletName := "super-cool-droplet"

createRequest := &godo.DropletCreateRequest{
    Name:   dropletName,
    Region: "nyc3",
    Size:   "512mb",
    Image: godo.DropletCreateImage{
        Slug: "ubuntu-14-04-x64",
    },
}

newDroplet, _, err := client.Droplets.Create(createRequest)

if err != nil {
    fmt.Printf("Something bad happened: %s\n\n", err)
    return err
}

Pagination

If a list of items is paginated by the API, you must request pages individually. For example, to fetch all Droplets:

func DropletList(client *godo.Client) ([]godo.Droplet, error) {
    // create a list to hold our droplets
    list := []godo.Droplet{}

    // create options. initially, these will be blank
    opt := &godo.ListOptions{}
    for {
        droplets, resp, err := client.Droplets.List(opt)
        if err != nil {
            return nil, err
        }

        // append the current page's droplets to our list
        for _, d := range droplets {
            list = append(list, d)
        }

        // if we are at the last page, break out the for loop
        if resp.Links == nil || resp.Links.IsLastPage() {
            break
        }

        page, err := resp.Links.CurrentPage()
        if err != nil {
            return nil, err
        }

        // set the page we want for the next request
        opt.Page = page + 1
    }

    return list, nil
}

Versioning

Each version of the client is tagged and the version is updated accordingly.

Since Go does not have a built-in versioning, a package management tool is recommended - a good one that works with git tags is gopkg.in.

To see the list of past versions, run git tag.

Documentation

For a comprehensive list of examples, check out the API documentation.

For details on all the functionality in this library, see the GoDoc documentation.

Contributing

We love pull requests! Please see the contribution guidelines.