diff options
author | Vidhu Kant Sharma <vidhukant@protonmail.ch> | 2022-02-23 21:01:22 +0530 |
---|---|---|
committer | Vidhu Kant Sharma <vidhukant@protonmail.ch> | 2022-02-23 21:01:22 +0530 |
commit | a92af9a2dd6ac31db2024bdaab06df2da2d4face (patch) | |
tree | febaa053d04f42515ee399034ca1e88e9918ea59 /manga | |
parent | 5e01fb1297e25314184effe2c9f9fbbda0e512fb (diff) |
pushing first working endpoint: SearchManga
Diffstat (limited to 'manga')
-rw-r--r-- | manga/manga.go | 158 | ||||
-rw-r--r-- | manga/search.structs.go | 2 |
2 files changed, 159 insertions, 1 deletions
diff --git a/manga/manga.go b/manga/manga.go new file mode 100644 index 0000000..dd79db2 --- /dev/null +++ b/manga/manga.go @@ -0,0 +1,158 @@ +/* MAL2Go - MyAnimeList V2 API wrapper for Go + * Copyright (C) 2022 Vidhu Kant Sharma <vidhukant@protonmail.ch> + + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + + * You should have received a copy of the GNU General Public License + * along with this program. If not, see <https://www.gnu.org/licenses/>. */ + +package manga + +import ( + "encoding/json" + // "errors" + // "fmt" + "strconv" + e "github.com/MikunoNaka/MAL2Go/errhandlers" + u "github.com/MikunoNaka/MAL2Go/util" +) + +const BASE_URL string = "https://api.myanimelist.net/v2/manga" + +// MAL Might change this +const maxMangaLimit int = 100 + +// in MAL documentation this is named Get Manga List +func (c Client) SearchManga(searchString string, limit, offset int, fields []string) (MangaSearch, error) { + var searchResults MangaSearch + + // error handling for limit + limitErr := e.LimitErrHandler(limit, maxMangaLimit) + if limitErr != nil { + return searchResults, limitErr + } + + // handle all the errors for the fields + fields, err := e.FieldsErrHandler(fields) + if err != nil { + return searchResults, err + } + + // generate endpoint url with custom params + endpoint, _ := u.UrlGenerator( + BASE_URL, + []string{"q", "limit", "offset", "fields"}, + [][]string{{searchString}, {strconv.Itoa(limit)}, {strconv.Itoa(offset)}, fields}, + true, + ) + + // gets data from API and stores it in a struct + var mangaSearchData MangaSearchRaw + data := c.requestHandler(endpoint) + json.Unmarshal([]byte(data), &mangaSearchData) + + // Adding all the mangas to another list to get formatted results later + var mangas []Manga + for _, element := range mangaSearchData.Data { + mangas = append(mangas, element.Manga) + } + + // finally generate AnimeList + searchResults = MangaSearch { + Mangas: mangas, + Paging: mangaSearchData.Paging, + } + + return searchResults, nil +} + +// // Each anime has its own ID on MAL +// func (c Client) GetAnimeById(animeId int, fields []string) (Anime, error) { +// var anime Anime +// +// // handle all the errors for the fields +// fields, err := e.FieldsErrHandler(fields) +// if err != nil { +// return anime, err +// } +// +// endpoint, _ := u.UrlGenerator( +// BASE_URL + "/" + strconv.Itoa(animeId), +// []string{"fields"}, +// /* it seems to still return all fields from the API. +// * this might be an issue with MAL itself +// * TODO: look into this */ +// [][]string{fields}, +// true, +// ) +// +// data := c.requestHandler(endpoint) +// json.Unmarshal([]byte(data), &anime) +// +// return anime, nil +// } + +// // Ranking is a list of anime sorted by their rank +// func (c Client) GetAnimeRanking(rankingType string, limit, offset int, fields []string) (AnimeRanking, error) { +// var animeRanking AnimeRanking +// +// // error handling for limit +// limitErr := e.LimitErrHandler(limit, maxAnimeLimit) +// if limitErr != nil { +// return animeRanking, limitErr +// } +// +// // handle all the errors for the fields +// fields, err := e.FieldsErrHandler(fields) +// if err != nil { +// return animeRanking, err +// } +// +// // if ranking type is invalid +// if !e.IsValidRankingType(rankingType) { +// return animeRanking, errors.New(fmt.Sprintf("GetAnimeRanking: Invalid ranking type specified: \"%s\"", rankingType)) +// } +// +// endpoint, _ := u.UrlGenerator( +// BASE_URL + "/ranking", +// []string{"ranking_type", "limit", "offset", "fields"}, +// [][]string{{rankingType}, {strconv.Itoa(limit)}, {strconv.Itoa(offset)}, fields}, +// true, +// ) +// +// // gets data from API and stores it in a struct +// var rankingData RawRanking +// data := c.requestHandler(endpoint) +// json.Unmarshal([]byte(data), &rankingData) +// +// // Adding all the animes in ranking list to a slice +// var animeRankingTitles []AnimeRankingTitle +// for _, element := range rankingData.Data { +// animeRankingTitles = append( +// animeRankingTitles, +// AnimeRankingTitle { +// Anime: element.Anime, +// RankNum: element.Ranking.Rank, +// }, +// ) +// } +// +// // Finally, create the AnimeRanking object +// animeRanking = AnimeRanking { +// Titles: animeRankingTitles, +// Paging: ListPaging { +// NextPage: rankingData.Paging.NextPage, +// PrevPage: rankingData.Paging.PrevPage, +// }, +// } +// +// return animeRanking, nil +// } diff --git a/manga/search.structs.go b/manga/search.structs.go index af154a9..d2da279 100644 --- a/manga/search.structs.go +++ b/manga/search.structs.go @@ -26,7 +26,7 @@ type MangaSearchRaw struct { } // this is how mal2go returns data -type AnimeSearch struct { +type MangaSearch struct { Mangas []Manga Paging ListPaging } |