aboutsummaryrefslogtreecommitdiff
path: root/cmd/status.go
diff options
context:
space:
mode:
authorVidhu Kant Sharma <vidhukant@protonmail.ch>2022-06-15 00:39:23 +0530
committerVidhu Kant Sharma <vidhukant@protonmail.ch>2022-06-15 00:39:23 +0530
commit5eb7a3cd41826fccdc432d049dd85a31b4b56073 (patch)
treec41cda8e9b4648991b85d44405397212612b2bc7 /cmd/status.go
parent028632de277704fe4576e732d4997daa70f25f60 (diff)
added status command to directly set status for an anime
Diffstat (limited to 'cmd/status.go')
-rw-r--r--cmd/status.go64
1 files changed, 64 insertions, 0 deletions
diff --git a/cmd/status.go b/cmd/status.go
new file mode 100644
index 0000000..d1b45c2
--- /dev/null
+++ b/cmd/status.go
@@ -0,0 +1,64 @@
+/*
+Copyright © 2022 NAME HERE <EMAIL ADDRESS>
+
+*/
+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 statusCmd = &cobra.Command{
+ Use: "status",
+ Short: "Set an anime/manga's status",
+ Long: `
+-- help/description to be added later
+`,
+ Run: func(cmd *cobra.Command, args []string) {
+ searchInput := strings.Join(args, " ")
+
+ statusInput, err := cmd.Flags().GetString("status")
+ if err != nil {
+ fmt.Println("Error while reading status flag.", err.Error())
+ }
+
+ mangaMode, err := cmd.Flags().GetBool("manga")
+ if err != nil {
+ fmt.Println("Error while reading manga flag.", err.Error())
+ }
+
+ if mangaMode {
+ // setMangaStatus(statusInput, searchInput)
+ fmt.Println("Manga mode coming soon")
+ } else {
+ setAnimeStatus(statusInput, searchInput)
+ }
+
+ },
+}
+
+func setAnimeStatus(statusInput, searchInput string) {
+ if searchInput == "" {
+ searchInput = ui.TextInput("Search Anime To Update", "Search can't be blank.")
+ }
+
+ anime := ui.AnimeSearch("Select Anime:", searchInput)
+
+ if statusInput == "" {
+ ui.StatusMenu(anime)
+ } else {
+ mal.SetStatus(anime.Id, statusInput)
+ fmt.Printf("Successfully set \"%s\" to \"%s\"", anime.Title, statusInput)
+ }
+}
+
+func init() {
+ rootCmd.AddCommand(statusCmd)
+ statusCmd.Flags().StringP("status", "s", "", "status to be set")
+}