blob: 2b5f4b5e554c2cc443ec67e488b07d2276cbf0bb (
plain) (
blame)
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
|
#include <fstream>
#include <iostream>
#include <unistd.h>
#include <glob.h>
#include <remote_api.h>
#include <utils.h>
namespace newsbeuter {
const std::string remote_api::read_password(const std::string& file) {
glob_t exp;
std::ifstream ifs;
std::string pass = "";
int res = glob(file.c_str(), GLOB_ERR, nullptr, &exp);
if (! res && exp.gl_pathc == 1 && exp.gl_pathv) {
ifs.open(exp.gl_pathv[0]);
}
globfree(&exp);
if (ifs.is_open()) {
std::getline(ifs, pass);
}
return pass;
}
const std::string remote_api::eval_password(const std::string& cmd) {
std::string pass = utils::get_command_output(cmd);
std::string::size_type pos = pass.find_first_of("\n\r");
if (pos != std::string::npos) {
pass.resize(pos);
}
return pass;
}
credentials remote_api::get_credentials(const std::string& scope, const std::string& name) {
std::string user = cfg->get_configvalue(scope+"-login");
std::string pass = cfg->get_configvalue(scope+"-password");
std::string pass_file = cfg->get_configvalue(scope+"-passwordfile");
std::string pass_eval = cfg->get_configvalue(scope+"-passwordeval");
bool flushed = false;
if (user.empty()) {
std::cout << std::endl;
std::cout.flush();
flushed = true;
printf("Username for %s: ", name.c_str());
std::cin >> user;
if (user.empty()) {
return { "", "" };
}
}
if (pass.empty()) {
if (!pass_file.empty()) {
pass = read_password(pass_file);
} else if (!pass_eval.empty()) {
pass = eval_password(pass_eval);
} else {
if (!flushed) {
std::cout << std::endl;
std::cout.flush();
}
// Find a way to do this in C++ by removing cin echoing.
std::string pass_prompt = "Password for "+name+": ";
pass = std::string(getpass(pass_prompt.c_str()));
}
if (pass.empty()) {
return { "", "" };
}
}
return { user, pass };
}
}
|