mirror of
https://github.com/crunchy-labs/crunchy-cli.git
synced 2026-01-21 04:02:00 -06:00
76 lines
1.8 KiB
Go
76 lines
1.8 KiB
Go
package cmd
|
|
|
|
import (
|
|
"fmt"
|
|
"github.com/ByteDream/crunchyroll-go"
|
|
"github.com/spf13/cobra"
|
|
"io/ioutil"
|
|
"os"
|
|
"os/user"
|
|
"path/filepath"
|
|
"runtime"
|
|
)
|
|
|
|
var (
|
|
loginSessionIDFlag bool
|
|
|
|
loginPersistentFlag bool
|
|
)
|
|
|
|
var loginCmd = &cobra.Command{
|
|
Use: "login",
|
|
Short: "Login to crunchyroll",
|
|
Args: cobra.RangeArgs(1, 2),
|
|
|
|
Run: func(cmd *cobra.Command, args []string) {
|
|
if loginSessionIDFlag {
|
|
loginSessionID(args[0])
|
|
} else {
|
|
loginCredentials(args[0], args[1])
|
|
}
|
|
},
|
|
}
|
|
|
|
func init() {
|
|
loginCmd.Flags().BoolVar(&loginSessionIDFlag, "session-id", false, "Use a session id to login instead of username and password")
|
|
|
|
loginCmd.Flags().BoolVar(&loginPersistentFlag, "persistent", false, "If the given credential should be stored persistent")
|
|
|
|
rootCmd.AddCommand(loginCmd)
|
|
}
|
|
|
|
func loginCredentials(user, password string) error {
|
|
out.Debug("Logging in via credentials")
|
|
if _, err := crunchyroll.LoginWithCredentials(user, password, systemLocale(), client); err != nil {
|
|
out.Err(err.Error())
|
|
os.Exit(1)
|
|
}
|
|
|
|
return ioutil.WriteFile(loginStorePath(), []byte(fmt.Sprintf("%s\n%s", user, password)), 0600)
|
|
}
|
|
|
|
func loginSessionID(sessionID string) error {
|
|
out.Debug("Logging in via session id")
|
|
if _, err := crunchyroll.LoginWithSessionID(sessionID, systemLocale(), client); err != nil {
|
|
out.Err(err.Error())
|
|
os.Exit(1)
|
|
}
|
|
|
|
return ioutil.WriteFile(loginStorePath(), []byte(sessionID), 0600)
|
|
}
|
|
|
|
func loginStorePath() string {
|
|
path := filepath.Join(os.TempDir(), ".crunchy")
|
|
if loginPersistentFlag {
|
|
if runtime.GOOS != "windows" {
|
|
usr, _ := user.Current()
|
|
path = filepath.Join(usr.HomeDir, ".config/crunchy")
|
|
}
|
|
|
|
out.Info("The login information will be stored permanently UNENCRYPTED on your drive (%s)", path)
|
|
} else if runtime.GOOS != "windows" {
|
|
out.Info("Due to security reasons, you have to login again on the next reboot")
|
|
}
|
|
|
|
return path
|
|
}
|