123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159 |
- // Copyright 2014 Google Inc. All Rights Reserved.
- //
- // Licensed under the Apache License, Version 2.0 (the "License");
- // you may not use this file except in compliance with the License.
- // You may obtain a copy of the License at
- //
- // http://www.apache.org/licenses/LICENSE-2.0
- //
- // Unless required by applicable law or agreed to in writing, software
- // distributed under the License is distributed on an "AS IS" BASIS,
- // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- // See the License for the specific language governing permissions and
- // limitations under the License.
- package storage_test
- import (
- "io/ioutil"
- "log"
- "golang.org/x/net/context"
- "golang.org/x/oauth2/google"
- "google.golang.org/cloud"
- "google.golang.org/cloud/storage"
- )
- func Example_auth() {
- // Initialize an authorized context with Google Developers Console
- // JSON key. Read the google package examples to learn more about
- // different authorization flows you can use.
- // http://godoc.org/golang.org/x/oauth2/google
- jsonKey, err := ioutil.ReadFile("/path/to/json/keyfile.json")
- if err != nil {
- log.Fatal(err)
- }
- conf, err := google.JWTConfigFromJSON(
- jsonKey,
- storage.ScopeFullControl,
- )
- if err != nil {
- log.Fatal(err)
- }
- ctx := context.Background()
- client, err := storage.NewClient(ctx, cloud.WithTokenSource(conf.TokenSource(ctx)))
- if err != nil {
- log.Fatal(err)
- }
- // Use the client (see other examples)
- doSomething(client)
- // After using the client, free any resources (e.g. network connections).
- client.Close()
- }
- func ExampleListObjects() {
- ctx := context.Background()
- var client *storage.Client // See Example (Auth)
- var query *storage.Query
- for {
- // If you are using this package on App Engine Managed VMs runtime,
- // you can init a bucket client with your app's default bucket name.
- // See http://godoc.org/google.golang.org/appengine/file#DefaultBucketName.
- objects, err := client.Bucket("bucketname").List(ctx, query)
- if err != nil {
- log.Fatal(err)
- }
- for _, obj := range objects.Results {
- log.Printf("object name: %s, size: %v", obj.Name, obj.Size)
- }
- // If there are more results, objects.Next will be non-nil.
- if objects.Next == nil {
- break
- }
- query = objects.Next
- }
- log.Println("paginated through all object items in the bucket you specified.")
- }
- func ExampleNewReader() {
- ctx := context.Background()
- var client *storage.Client // See Example (Auth)
- rc, err := client.Bucket("bucketname").Object("filename1").NewReader(ctx)
- if err != nil {
- log.Fatal(err)
- }
- slurp, err := ioutil.ReadAll(rc)
- rc.Close()
- if err != nil {
- log.Fatal(err)
- }
- log.Println("file contents:", slurp)
- }
- func ExampleNewWriter() {
- ctx := context.Background()
- var client *storage.Client // See Example (Auth)
- wc := client.Bucket("bucketname").Object("filename1").NewWriter(ctx)
- wc.ContentType = "text/plain"
- wc.ACL = []storage.ACLRule{{storage.AllUsers, storage.RoleReader}}
- if _, err := wc.Write([]byte("hello world")); err != nil {
- log.Fatal(err)
- }
- if err := wc.Close(); err != nil {
- log.Fatal(err)
- }
- log.Println("updated object:", wc.Attrs())
- }
- func ExampleCopyObject() {
- ctx := context.Background()
- var client *storage.Client // See Example (Auth)
- o, err := client.CopyObject(ctx, "bucketname", "file1", "another-bucketname", "file2", nil)
- if err != nil {
- log.Fatal(err)
- }
- log.Println("copied file:", o)
- }
- func ExampleDeleteObject() {
- ctx := context.Background()
- var client *storage.Client // See Example (Auth)
- // To delete multiple objects in a bucket, first List then Delete them.
- // If you are using this package on App Engine Managed VMs runtime,
- // you can init a bucket client with your app's default bucket name.
- // See http://godoc.org/google.golang.org/appengine/file#DefaultBucketName.
- bucket := client.Bucket("bucketname")
- var query *storage.Query // Set up query as desired.
- for {
- objects, err := bucket.List(ctx, query)
- if err != nil {
- log.Fatal(err)
- }
- for _, obj := range objects.Results {
- log.Printf("deleting object name: %q, size: %v", obj.Name, obj.Size)
- if err := bucket.Object(obj.Name).Delete(ctx); err != nil {
- log.Fatalf("unable to delete %q: %v", obj.Name, err)
- }
- }
- // If there are more results, objects.Next will be non-nil.
- if objects.Next == nil {
- break
- }
- query = objects.Next
- }
- log.Println("deleted all object items in the bucket specified.")
- }
- func doSomething(c *storage.Client) {}
|