mirror of
https://github.com/Sude-/lgogdownloader.git
synced 2025-02-02 05:52:31 +01:00
Merge https://github.com/grepwood/lgogdownloader into master
This commit is contained in:
commit
f6d020b807
@ -246,6 +246,7 @@ int Downloader::login()
|
||||
{
|
||||
std::string email;
|
||||
std::string password;
|
||||
bool headless = false;
|
||||
|
||||
if (!Globals::globalConfig.sEmail.empty() && !Globals::globalConfig.sPassword.empty())
|
||||
{
|
||||
@ -255,9 +256,16 @@ int Downloader::login()
|
||||
else
|
||||
{
|
||||
if (!isatty(STDIN_FILENO)) {
|
||||
/* Attempt to read this stuff from elsewhere */
|
||||
bool cookie_gone = !(boost::filesystem::exists(Globals::globalConfig.curlConf.sCookiePath));
|
||||
bool tokens_gone = !(boost::filesystem::exists(Globals::globalConfig.sConfigDirectory + "/galaxy_tokens.json"));
|
||||
std::cout << Globals::globalConfig.curlConf.sCookiePath << std::endl;
|
||||
std::cout << (Globals::globalConfig.sConfigDirectory + "/galaxy_tokens.json") << std::endl;
|
||||
if(cookie_gone || tokens_gone) {
|
||||
std::cerr << "Unable to read email and password" << std::endl;
|
||||
return 0;
|
||||
}
|
||||
} else headless = true;
|
||||
} else {
|
||||
std::cerr << "Email: ";
|
||||
std::getline(std::cin,email);
|
||||
|
||||
@ -271,8 +279,9 @@ int Downloader::login()
|
||||
tcsetattr(STDIN_FILENO, TCSANOW, &termios_old); // Restore old terminal attributes
|
||||
std::cerr << std::endl;
|
||||
}
|
||||
}
|
||||
|
||||
if (email.empty() || password.empty())
|
||||
if ((email.empty() || password.empty()) && !headless)
|
||||
{
|
||||
std::cerr << "Email and/or password empty" << std::endl;
|
||||
return 0;
|
||||
|
Loading…
x
Reference in New Issue
Block a user