This repository was archived by the owner on Feb 5, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbook.go
125 lines (106 loc) · 2.94 KB
/
book.go
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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
package main
import (
"net/http"
"encoding/json"
"io/ioutil"
"strings"
"strconv"
)
type Book struct {
ID int `gorm:"type:int; primary_key;"`
Title string `gorm:"type:varchar(128)"`
ISBN string `gorm:"column:isbn; type:varchar(128)"`
State string `gorm:"type:varchar(128)"`
Author string `gorm:"type:varchar(100)"`
Publisher string `gorm:"type:varchar(100)"`
ReleaseDate string `gorm:"type:varchar(100)"`
ISBN10 string `gorm:"column:isbn10; type:varchar(100)"`
Price string `gorm:"type:varchar(100)"`
Page string `gorm:"type:varchar(100)"`
Belong string `gorm:"type:varchar(4)"`
}
type googleBook struct {
VolumeInfo volumeInfo `json:"volumeInfo"`
}
type volumeInfo struct {
Title string `json:"title"`
Authors []string `json:"authors"`
PublishedDate string `json:"publishedDate"`
IndustryIdentifiers []industryIdentifier `json:"industryIdentifiers"`
PageCount int `json:"pageCount"`
}
type googleBookResponse struct {
Items []googleBook `json:"items"`
}
type industryIdentifier struct {
Type string `json:"type"`
Identifier string `json:"identifier"`
}
type booksError struct {
Message string
}
func (Book) TableName() string {
return "t_books"
}
func (e booksError) Error() string {
return e.Message
}
func registerBook(isbn string) (*Book, error) {
if exists := findBook(isbn); exists != nil {
return exists, nil
}
content, err := getBook(isbn)
if err != nil {
message := "something wrong(Google Books API??): " + err.Error()
return nil, booksError{Message: message}
}
response := &googleBookResponse{}
json.Unmarshal(content, response)
if len(response.Items) == 0 || len(response.Items[0].VolumeInfo.Title) == 0 {
return nil, booksError{Message: "book not found"}
}
book := toBook(&response.Items[0].VolumeInfo)
db.Create(book)
return book, nil
}
func getBook(isbn string) ([]byte, error) {
url := "https://www.googleapis.com/books/v1/volumes?q=isbn:" + isbn
request, _ := http.NewRequest("GET", url, nil)
client := http.Client{}
response, err := client.Do(request)
if err != nil {
return nil, err
}
defer response.Body.Close()
content, _ := ioutil.ReadAll(response.Body)
return content, nil
}
func toBook(volume *volumeInfo) *Book {
var isbn, isbn10 string
for _, identifier := range volume.IndustryIdentifiers {
switch identifier.Type {
case "ISBN_10":
isbn10 = identifier.Identifier
case "ISBN_13":
isbn = identifier.Identifier
}
}
authors := strings.Join(volume.Authors, "/")
return &Book{
Title: volume.Title,
ISBN: isbn,
State: "部室",
Author: authors,
ReleaseDate: volume.PublishedDate,
ISBN10: isbn10,
Page: strconv.Itoa(volume.PageCount),
}
}
func findBook(isbn13 string) *Book {
out := &Book{}
db.Find(out, &Book{ISBN: isbn13})
if out.ID == 0 {
return nil
}
return out
}