-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.go
250 lines (213 loc) · 6.53 KB
/
main.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
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
package main
import (
"encoding/json"
"flag"
"fmt"
"io/ioutil"
"net/http"
"sort"
"strings"
"gopkg.in/yaml.v2"
)
//APIs
const (
findAuthorKeyPI = "https://openlibrary.org/works/%s.json" //APi na najdenie kluca autora
findAuthorNameAPI = "https://openlibrary.org/authors/%s.json" //API na najdenie mena autora
findAuthorBooksInfoAPI = "https://openlibrary.org/search.json?author_key=%s&fields=author_name,title,first_publish_year,isbn,edition_count" //API na najdenie informacii o knihach autora
)
// struktura pre ziskanie kluca autora
type AuthorKey struct {
Authors []struct {
Author struct {
Key string `json:"key"`
} `json:"author"`
} `json:"authors"`
}
// struktura pre ziskanie mena autora
type AuthorName struct {
Name string `json:"name"`
}
// struktura pre ziskanie informacii o knihach autora
type BookInfo struct {
Title string `json:"title"`
FirstPublishYear int `json:"first_publish_year"`
Isbn []string `json:"isbn"`
EditionCount int `json:"edition_count"`
}
// moja struktura na vypis informacii
type MyOutput struct {
Docs []struct {
Author struct {
AuthorName string `json:"author_name"`
} `json:"author"`
Books []struct {
Title string `json:"title"`
FirstPublishYear int `json:"first_publish_year"`
Isbn []string `json:"isbn"`
EditionCount int `json:"edition_count"`
} `json:"books"`
}
}
func main() {
//nacitanie parametrov
bookKey := flag.String("key", "", "Book key") // napr OL27448W OL18146933W OL27370133W
sortOrder := flag.String("sort", "", "Sort order (asc or desc)")
flag.Parse()
//kontrola ci je zadany parameter -key
if *bookKey == "" {
fmt.Println("Error: Specify book key with -key.")
return
}
//kontrola ci je zadany parameter -sort
if *sortOrder != "" && *sortOrder != "asc" && *sortOrder != "desc" {
fmt.Println("Error: You need to specify a valid sort order -sort (asc or desc).")
return
}
//ziskanie kluca autora
authorKey, errorKey := getAuthorKey(*bookKey)
if errorKey != nil {
fmt.Println("Error getting author name", errorKey)
return
}
var authorNames []string
authorMap := make(map[string]string)
for _, author := range authorKey.Authors {
authorKey := strings.TrimPrefix(author.Author.Key, "/authors/")
name, errorKey := getAuthorName(authorKey)
if errorKey != nil {
fmt.Println("Error getting author name:", errorKey)
continue
}
authorNames = append(authorNames, name)
authorMap[authorKey] = name
}
//zoradenie mien autorov podla abecedy asc alebo desc
if *sortOrder == "asc" {
sort.SliceStable(authorNames, func(i, j int) bool {
return authorNames[i] < authorNames[j]
})
} else if *sortOrder == "desc" {
sort.SliceStable(authorNames, func(i, j int) bool {
return authorNames[i] > authorNames[j]
})
}
myOutput := MyOutput{}
for _, name := range authorNames {
authorKey := getKeyFromMap(authorMap, name)
doc := struct {
Author struct {
AuthorName string `json:"author_name"`
} `json:"author"`
Books []struct {
Title string `json:"title"`
FirstPublishYear int `json:"first_publish_year"`
Isbn []string `json:"isbn"`
EditionCount int `json:"edition_count"`
} `json:"books"`
}{}
doc.Author.AuthorName = name
bookInfo, errorBookInfo := getBookInfo(authorKey, *sortOrder)
if errorBookInfo != nil {
fmt.Println("Error getting book info for author", name, ":", errorBookInfo)
continue
}
for _, book := range bookInfo {
if len(book.Isbn) == 0 {
book.Isbn = []string{"ISBN not found"}
}
doc.Books = append(doc.Books, struct {
Title string `json:"title"`
FirstPublishYear int `json:"first_publish_year"`
Isbn []string `json:"isbn"`
EditionCount int `json:"edition_count"`
}{
Title: book.Title,
FirstPublishYear: book.FirstPublishYear,
Isbn: book.Isbn,
EditionCount: book.EditionCount,
})
}
myOutput.Docs = append(myOutput.Docs, doc)
}
yamlData, err := yaml.Marshal(myOutput)
if err != nil {
fmt.Println("Error marshaling MyStruct to YAML:", err)
return
}
fmt.Println(string(yamlData))
}
//funcia na ziskanie kluca autora
func getAuthorKey(bookKey string) (AuthorKey, error) {
responseKey, errorKey := http.Get(fmt.Sprintf(findAuthorKeyPI, bookKey))
if errorKey != nil {
return AuthorKey{}, errorKey
}
defer responseKey.Body.Close()
bodyKey, errorKey := ioutil.ReadAll(responseKey.Body) //nacitanie dat z response_key
if errorKey != nil {
return AuthorKey{}, errorKey
}
var authorKey AuthorKey
errorKey = json.Unmarshal(bodyKey, &authorKey)
if errorKey != nil {
return AuthorKey{}, errorKey
}
return authorKey, nil
}
//funcia na ziskanie mena autora
func getAuthorName(authorKey string) (string, error) {
responseAuthorName, errorAuthorName := http.Get(fmt.Sprintf(findAuthorNameAPI, authorKey))
if errorAuthorName != nil {
return "", errorAuthorName
}
defer responseAuthorName.Body.Close()
bodyAuthorName, errorAuthorName := ioutil.ReadAll(responseAuthorName.Body)
if errorAuthorName != nil {
return "", errorAuthorName
}
var authorName AuthorName
errorAuthorName = json.Unmarshal(bodyAuthorName, &authorName)
if errorAuthorName != nil {
return "", errorAuthorName
}
return authorName.Name, nil
}
//funcia na ziskanie informacii o knihach autora
func getBookInfo(authorKey string, sortOrder string) ([]BookInfo, error) {
responseBookInfo, errorBookInfo := http.Get(fmt.Sprintf(findAuthorBooksInfoAPI, authorKey))
if errorBookInfo != nil {
return nil, errorBookInfo
}
defer responseBookInfo.Body.Close()
bodyBookInfo, errorBookInfo := ioutil.ReadAll(responseBookInfo.Body)
if errorBookInfo != nil {
return nil, errorBookInfo
}
var BookInfo struct {
Docs []BookInfo `json:"docs"`
}
errorBookInfo = json.Unmarshal(bodyBookInfo, &BookInfo)
if errorBookInfo != nil {
return nil, errorBookInfo
}
//zoradenie knih podla roku prveho vydania asc alebo desc
if sortOrder == "asc" {
sort.Slice(BookInfo.Docs, func(i, j int) bool {
return BookInfo.Docs[i].FirstPublishYear < BookInfo.Docs[j].FirstPublishYear
})
} else if sortOrder == "desc" {
sort.Slice(BookInfo .Docs, func(i, j int) bool {
return BookInfo.Docs[i].FirstPublishYear > BookInfo.Docs[j].FirstPublishYear
})
}
return BookInfo.Docs, nil
}
//funcia na ziskanie kluca z mapy
func getKeyFromMap(Map map[string]string, name string) string {
for key, value := range Map {
if value == name {
return key
}
}
return ""
}