1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77
|
// Copyright 2014 The Go Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package main
import (
"fmt"
"log"
"net/http"
"os"
"strconv"
"strings"
books "google.golang.org/api/books/v1"
"google.golang.org/api/googleapi"
)
func init() {
registerDemo("books", books.BooksScope, booksMain)
}
// booksMain is an example that demonstrates calling the Books API.
//
// Example usage:
// go build -o go-api-demo *.go
// go-api-demo -clientid="my-clientid" -secret="my-secret" books
func booksMain(client *http.Client, argv []string) {
if len(argv) != 0 {
fmt.Fprintln(os.Stderr, "Usage: books")
return
}
svc, err := books.New(client)
if err != nil {
log.Fatalf("Unable to create Books service: %v", err)
}
bs, err := svc.Mylibrary.Bookshelves.List().Do()
if err != nil {
log.Fatalf("Unable to retrieve mylibrary bookshelves: %v", err)
}
if len(bs.Items) == 0 {
log.Fatal("You have no bookshelves to explore.")
}
for _, b := range bs.Items {
// Note that sometimes VolumeCount is not populated, so it may erroneously say '0'.
log.Printf("You have %v books on bookshelf %q:", b.VolumeCount, b.Title)
// List the volumes on this shelf.
vol, err := svc.Mylibrary.Bookshelves.Volumes.List(strconv.FormatInt(b.Id, 10)).Do()
if err != nil {
log.Fatalf("Unable to retrieve mylibrary bookshelf volumes: %v", err)
}
for _, v := range vol.Items {
var info struct {
Text bool `json:"text"`
Image bool `json:"image"`
}
// Parse the additional fields, but ignore errors, as the information is not critical.
googleapi.ConvertVariant(v.VolumeInfo.ReadingModes.(map[string]interface{}), &info)
var s []string
if info.Text {
s = append(s, "text")
}
if info.Image {
s = append(s, "image")
}
extra := fmt.Sprintf("; formats: %v", s)
if v.VolumeInfo.ImageLinks != nil {
extra += fmt.Sprintf("; thumbnail: %v", v.VolumeInfo.ImageLinks.Thumbnail)
}
log.Printf(" %q by %v%v", v.VolumeInfo.Title, strings.Join(v.VolumeInfo.Authors, ", "), extra)
}
}
}
|