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
|
/*
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")
}
|