A golang API to communicate with the Azure Storage. For while, only for manager blobs and containers (create, destroy and so on).
go get github.com/loldesign/azure
package main
import(
"fmt"
"github.com/loldesign/azure"
)
func main() {
blob := azure.New("accountName", "secret")
res, err := blob.CreateContainer("mycontainer")
if err != nil {
fmt.Println(err)
}
fmt.Printf("status -> %s", res.Status)
}
package main
import(
"fmt"
"github.com/loldesign/azure"
)
func main() {
blob := azure.New("accountName", "secret")
file, err := os.Open("path/of/myfile.txt")
if err != nil {
fmt.Println(err)
}
res, err := blob.FileUpload("mycontainer", "file_name.txt", file)
if err != nil {
fmt.Println(err)
}
fmt.Printf("status -> %s", res.Status)
}
package main
import(
"fmt"
"github.com/loldesign/azure"
)
func main() {
blob := azure.New("accountName", "secret")
blobs, err := blob.ListBlobs("mycontainer")
if err != nil {
fmt.Println(err)
}
for _, file := range blobs.Itens {
fmt.Printf("blob -> %+v", file)
}
}
package main
import(
"fmt"
"github.com/loldesign/azure"
)
func main() {
blob := azure.New("accountName", "secret")
res, err := blob.FileDownload("mycontainer", "some/filename.png")
if err != nil {
fmt.Println(err)
}
contents, ok := ioutil.ReadAll(res.Body)
if ok != nil {
fmt.Println(ok)
}
ok = ioutil.WriteFile("filename.png"), contents, 0644) // don't do that with large files!
if ok != nil {
fmt.Println("done!")
}
}
package main
import(
"fmt"
"github.com/loldesign/azure"
)
func main() {
blob := azure.New("accountName", "secret")
ok, err := blob.DeleteBlob("mycontainer", "my_file.png")
if err != nil {
fmt.Println(err)
}
fmt.Printf("deleted? -> %t", ok)
}
package main
import(
"fmt"
"github.com/loldesign/azure"
)
func main() {
blob := azure.New("accountName", "secret")
res, err := blob.DeleteContainer("mycontainer")
if err != nil {
fmt.Println(err)
}
fmt.Printf("status -> %s", res.Status)
}
- Fork it
- Create your feature branch (
git checkout -b my-new-feature
) - Commit your changes (
git commit -am "Added some feature"
) - Push to the branch (
git push origin my-new-feature
) - Create new Pull Request