aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--cmd/chapters.go68
-rw-r--r--cmd/episodes.go2
-rw-r--r--cmd/status.go2
-rw-r--r--mal/episodes.go14
-rw-r--r--ui/episodes.go3
5 files changed, 81 insertions, 8 deletions
diff --git a/cmd/chapters.go b/cmd/chapters.go
new file mode 100644
index 0000000..c28bb8f
--- /dev/null
+++ b/cmd/chapters.go
@@ -0,0 +1,68 @@
+/*
+macli - Unofficial CLI-Based MyAnimeList Client
+Copyright © 2022 Vidhu Kant Sharma <vidhukant@vidhukant.xyz>
+
+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 <http://www.gnu.org/licenses/>.
+*/
+
+package cmd
+
+import (
+ "fmt"
+ "strings"
+ "github.com/MikunoNaka/macli/ui"
+ "github.com/MikunoNaka/macli/mal"
+
+ "github.com/spf13/cobra"
+)
+
+// statusCmd represents the status command
+var chaptersCmd = &cobra.Command{
+ Use: "chapters",
+ Short: "Set the number of chapters read",
+ Long: "Set the number of chapters read" +
+ "\n" +
+ "Example Usage:\n" +
+ " - \x1b[33m`macli chapters <anime-name>`\x1b[0m For interactive prompt (anime-name can be omitted)\n" +
+ " - \x1b[33m`macli chapters -s 4 <anime-name>`\x1b[0m to set the chapters to 4\n" +
+ " - \x1b[33m`macli chapters -s +1 <anime-name>`\x1b[0m to increment the chapters by 1\n" +
+ " - \x1b[33m`macli chapters -s -2 <anime-name>`\x1b[0m to decrement the chapters by 2\n",
+ Run: func(cmd *cobra.Command, args []string) {
+ searchInput := strings.Join(args, " ")
+ if searchInput == "" {
+ searchInput = ui.TextInput("Search Manga To Set Chapters For: ", "Search can't be blank.")
+ }
+
+ chInput, err := cmd.Flags().GetString("set-value")
+ if err != nil {
+ fmt.Println("Error while reading --set-value flag.", err.Error())
+ }
+
+ manga := ui.MangaSearch("Select Manga:", searchInput)
+ mangaData := mal.GetMangaData(manga.Id, []string{"my_list_status"})
+ prevChRead := mangaData.MyListStatus.ChaptersRead
+
+ if chInput == "" {
+ ui.ChapterInput(manga)
+ } else {
+ resp := mal.SetChapters(manga.Id, prevChRead, chInput)
+ fmt.Println(ui.CreateChapterUpdateConfirmationMessage(manga.Title, prevChRead, resp.ChaptersRead))
+ }
+ },
+}
+
+func init() {
+ rootCmd.AddCommand(chaptersCmd)
+ chaptersCmd.Flags().StringP("set-value", "s", "", "Number of chapters")
+}
diff --git a/cmd/episodes.go b/cmd/episodes.go
index eac501a..203e6e3 100644
--- a/cmd/episodes.go
+++ b/cmd/episodes.go
@@ -66,5 +66,5 @@ var episodesCmd = &cobra.Command{
func init() {
rootCmd.AddCommand(episodesCmd)
- episodesCmd.Flags().StringP("set-value", "s", "", "status to be set")
+ episodesCmd.Flags().StringP("set-value", "s", "", "Number of episodes")
}
diff --git a/cmd/status.go b/cmd/status.go
index dcf177c..94e8d1d 100644
--- a/cmd/status.go
+++ b/cmd/status.go
@@ -90,5 +90,5 @@ func setMangaStatus(statusInput, searchInput string) {
func init() {
rootCmd.AddCommand(statusCmd)
- statusCmd.Flags().StringP("status", "s", "", "status to be set")
+ statusCmd.Flags().StringP("set-value", "s", "", "status to be set")
}
diff --git a/mal/episodes.go b/mal/episodes.go
index c0ac116..06bb7a0 100644
--- a/mal/episodes.go
+++ b/mal/episodes.go
@@ -50,18 +50,20 @@ func SetEpisodes(animeId, prevValue int, ep string) a.UpdateResponse {
return res
}
-
func SetChapters(mangaId, prevValue int, ch string) m.UpdateResponse {
- chValue, err := strconv.Atoi(ch)
+ chInt, err := strconv.Atoi(ch)
if err != nil {
fmt.Println("Error while parsing chapter input", err)
os.Exit(1)
}
- sign := ch[0:1]
- if sign == "+" || sign == "-" {
- fmt.Printf("Cannot increment/decrement read chapters by %d\n. Currently that doesn't wokr", chValue)
- os.Exit(2)
+ var chValue int
+ switch ch[0:1] {
+ case "+", "-":
+ // works both for increment and decrement
+ chValue = prevValue + chInt
+ default:
+ chValue = chInt
}
res, err := userMangaClient.SetChaptersRead(mangaId, chValue)
diff --git a/ui/episodes.go b/ui/episodes.go
index 2ea0197..edf05a4 100644
--- a/ui/episodes.go
+++ b/ui/episodes.go
@@ -34,6 +34,9 @@ func CreateEpisodeUpdateConfirmationMessage(title string, prevEpNum, epNum int)
return fmt.Sprintf("Set Episodes Watched for \x1b[35m%s\x1b[0m from \x1b[1;33m%d\x1b[0m to \x1b[1;36m%d\x1b[0m.", title, prevEpNum, epNum)
}
+func CreateChapterUpdateConfirmationMessage(title string, prevChNum, chNum int) string {
+ return fmt.Sprintf("Set Chapters Read for \x1b[35m%s\x1b[0m from \x1b[1;33m%d\x1b[0m to \x1b[1;36m%d\x1b[0m.", title, prevChNum, chNum)
+}
func EpisodeInput(anime a.Anime) {
// fetch number of total episodes, number of watched episodes from the API