Skip to content

grycap/cdmi-client-go

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

cdmi-client-go

Go Report Card go.dev reference GitHub

A basic Go library to perform the core container and object operations defined in the Cloud Data Management Interface (CDMI) specification.

Installation

go get github.com/grycap/cdmi-client-go

Example

package main

import (
    "io"
    "net/url"
    "os"

    "github.com/grycap/cdmi-client-go"
)

func main() {
    // CDMI Server endpoint
    endpoint, _ := url.Parse("https://my-cdmi-server.example")
    // Bearer auth token (if not required set an empty string)
    token := "my-token"
    // Verify SSL certificates
    verify := true

    // Create a new CDMI client
    client := cdmi.New(endpoint, token, verify)

    // Create a container (directory)
    err := client.CreateContainer("newcontainerName/anotherContainer", true)
    if err != nil {
        // Example: ignore error 400 (folder already exists)
        if err != cdmi.ErrBadRequest {
            // Manage error
        }
    }

    // Upload a file
    file, _ := os.Open("/path/to/file")
    defer file.Close()
    err = client.CreateObject("containerName/objectName", file, true)
    if err != nil {
        // Manage error
    }

    // Download a file
    newFile, _ := os.Create("/path/to/new/file")
    defer newFile.Close()
    content, err := client.GetObject("containerName/objectName")
    if err != nil {
        // Manage error
    }
    defer content.Close()
    io.Copy(newFile, content)
}

All available methods can be found at pkg.go.dev reference.