-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcli.go
More file actions
297 lines (281 loc) · 7.76 KB
/
cli.go
File metadata and controls
297 lines (281 loc) · 7.76 KB
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
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
package main
import (
"context"
"errors"
"fmt"
"os"
"os/signal"
"strings"
"syscall"
"github.com/urfave/cli/v3"
)
const (
ServiceAnilist = "anilist"
ServiceMyAnimeList = "myanimelist"
ServiceAll = "all"
)
// syncFlags are the common flags shared between sync and watch commands.
var syncFlags = []cli.Flag{
&cli.BoolFlag{
Name: "force",
Aliases: []string{"f"},
Usage: "force sync all entries",
},
&cli.BoolFlag{
Name: "dry-run",
Aliases: []string{"d"},
Usage: "dry run without updating target service",
},
&cli.BoolFlag{
Name: "manga",
Usage: "sync manga instead of anime",
},
&cli.BoolFlag{
Name: "all",
Usage: "sync all anime and manga",
},
&cli.BoolFlag{
Name: "verbose",
Usage: "enable verbose logging",
},
&cli.BoolFlag{
Name: "reverse-direction",
Usage: "sync from MyAnimeList to AniList (default is AniList to MyAnimeList)",
},
&cli.BoolFlag{
Name: "offline-db",
Usage: "enable offline database for anime ID mapping (ignored for --manga) (default: true)",
Value: true,
},
&cli.BoolFlag{
Name: "offline-db-force-refresh",
Usage: "force re-download offline database",
},
&cli.BoolFlag{
Name: "arm-api",
Usage: "enable ARM API for anime ID mapping (ignored for --manga, fallback after offline DB) (default: false)",
},
&cli.StringFlag{
Name: "arm-api-url",
Usage: "ARM API base URL",
},
&cli.BoolFlag{
Name: "jikan-api",
Usage: "enable Jikan API for manga ID mapping (default: false)",
},
&cli.BoolFlag{
Name: "favorites",
Usage: "sync favorites between services (requires Jikan API for MAL favorites)",
},
}
// getSyncFlagsFromCmd extracts sync flags, updates package-level globals,
// and returns verbose and reverse values explicitly.
func getSyncFlagsFromCmd(cmd *cli.Command) (verboseOut bool, reverseOut bool) {
forceVal := cmd.Bool("force")
dryVal := cmd.Bool("dry-run")
mangaVal := cmd.Bool("manga")
allVal := cmd.Bool("all")
verboseVal := cmd.Bool("verbose")
reverseVal := cmd.Bool("reverse-direction")
forceSync = &forceVal
dryRun = &dryVal
mangaSync = &mangaVal
allSync = &allVal
verbose = &verboseVal
return verboseVal, reverseVal
}
// applySyncFlagsToConfig applies CLI sync flag overrides to config.
func applySyncFlagsToConfig(cmd *cli.Command, cfg *Config) {
if cmd.IsSet("offline-db") {
cfg.OfflineDatabase.Enabled = cmd.Bool("offline-db")
}
if cmd.IsSet("offline-db-force-refresh") && cmd.Bool("offline-db-force-refresh") {
cfg.OfflineDatabase.ForceRefresh = true
}
if cmd.IsSet("arm-api") {
cfg.ARMAPI.Enabled = cmd.Bool("arm-api")
}
if cmd.IsSet("arm-api-url") {
if v := cmd.String("arm-api-url"); v != "" {
cfg.ARMAPI.BaseURL = v
}
}
if cmd.IsSet("jikan-api") {
cfg.JikanAPI.Enabled = cmd.Bool("jikan-api")
}
if cmd.IsSet("favorites") {
cfg.Favorites.Enabled = cmd.Bool("favorites")
// Favorites sync requires Jikan API to read MAL favorites
if cfg.Favorites.Enabled {
cfg.JikanAPI.Enabled = true
}
}
}
// NewCLI creates the root CLI command.
func NewCLI() *cli.Command {
// Define flags for backward compatibility with old CLI behavior
configFlag := &cli.StringFlag{
Name: "config",
Aliases: []string{"c"},
Usage: "path to config file (optional, uses env vars if not specified)",
}
forceSyncFlag := &cli.BoolFlag{
Name: "force",
Aliases: []string{"f"},
Usage: "force sync all entries",
Local: true,
}
dryRunFlag := &cli.BoolFlag{
Name: "dry-run",
Aliases: []string{"d"},
Usage: "dry run without updating target service",
Local: true,
}
mangaSyncFlag := &cli.BoolFlag{
Name: "manga",
Usage: "sync manga instead of anime",
Local: true,
}
allSyncFlag := &cli.BoolFlag{
Name: "all",
Usage: "sync all anime and manga",
Local: true,
}
verboseFlag := &cli.BoolFlag{
Name: "verbose",
Usage: "enable verbose logging",
Local: true,
}
reverseDirectionFlag := &cli.BoolFlag{
Name: "reverse-direction",
Usage: "sync from MyAnimeList to AniList (default is AniList to MyAnimeList)",
Local: true,
}
offlineDbFlag := &cli.BoolFlag{
Name: "offline-db",
Usage: "enable offline database for anime ID mapping (ignored for --manga) (default: true)",
Value: true,
Local: true,
}
offlineDbForceRefreshFlag := &cli.BoolFlag{
Name: "offline-db-force-refresh",
Usage: "force re-download offline database",
Local: true,
}
armAPIFlag := &cli.BoolFlag{
Name: "arm-api",
Usage: "enable ARM API for anime ID mapping (ignored for --manga, fallback after offline DB) (default: false)",
Local: true,
}
armAPIURLFlag := &cli.StringFlag{
Name: "arm-api-url",
Usage: "ARM API base URL",
Local: true,
}
jikanAPIFlag := &cli.BoolFlag{
Name: "jikan-api",
Usage: "enable Jikan API for manga ID mapping (default: false)",
Local: true,
}
favoritesFlag := &cli.BoolFlag{
Name: "favorites",
Usage: "sync favorites between services (requires Jikan API for MAL favorites)",
Local: true,
}
return &cli.Command{
Name: "anilist-mal-sync",
Usage: "Synchronize anime and manga lists between AniList and MyAnimeList",
Version: version,
Description: "Sync your anime/manga lists between AniList and MyAnimeList.",
Flags: []cli.Flag{
configFlag,
forceSyncFlag,
dryRunFlag,
mangaSyncFlag,
allSyncFlag,
verboseFlag,
reverseDirectionFlag,
offlineDbFlag,
offlineDbForceRefreshFlag,
armAPIFlag,
armAPIURLFlag,
jikanAPIFlag,
favoritesFlag,
},
Commands: []*cli.Command{
newLoginCommand(),
newLogoutCommand(),
newStatusCommand(),
newSyncCommand(),
newWatchCommand(),
newUnmappedCommand(),
},
// Default action when no command specified - runs sync for backward compatibility
Action: func(ctx context.Context, cmd *cli.Command) error {
// If there are positional arguments (unknown command), show help
if cmd.Args().Present() {
return fmt.Errorf("unknown command: %s", cmd.Args().First())
}
return runSync(ctx, cmd)
},
}
}
// RunCLI executes the CLI application.
func RunCLI() error {
ctx, cancel := signal.NotifyContext(context.Background(), syscall.SIGINT, syscall.SIGTERM)
defer cancel()
cmd := NewCLI()
// Run and show help only for CLI usage errors
err := cmd.Run(ctx, os.Args)
if err != nil {
// Show help only for CLI usage errors (unknown command, invalid flags)
// Don't show help for runtime errors (network, API, etc.)
if IsCLIUsageError(err) {
fmt.Fprintf(os.Stderr, "\nError: %v\n\n", err)
//nolint:gosec // G104: best effort help display
cli.ShowAppHelp(cmd) //nolint:errcheck // best effort help display
} else if !IsConfigNotFoundError(err) && !IsCancellationError(err) {
// For other errors, just print the error message
fmt.Fprintf(os.Stderr, "\nError: %v\n\n", err)
}
return errors.New("command failed")
}
return nil
}
// IsCancellationError checks if error is due to context cancellation (e.g., Ctrl+C).
func IsCancellationError(err error) bool {
if err == nil {
return false
}
return errors.Is(err, context.Canceled)
}
// IsCLIUsageError checks if error is related to incorrect CLI usage.
func IsCLIUsageError(err error) bool {
if err == nil {
return false
}
// Check for unknown command error (from Action at line 80)
// CLI usage errors typically start with "unknown command:" or flag errors
// Runtime errors typically contain "run app:", "error syncing", "error getting", etc.
errMsg := err.Error()
if strings.HasPrefix(errMsg, "unknown command:") {
return true
}
// If error contains runtime error indicators, it's not a CLI usage error
runtimeIndicators := []string{
"run app:",
"error syncing",
"error getting",
"error loading",
"error creating",
"context deadline exceeded",
"connection refused",
"no such host",
}
for _, indicator := range runtimeIndicators {
if strings.Contains(errMsg, indicator) {
return false
}
}
return false
}