mirror of
https://github.com/profanity-im/profanity.git
synced 2024-12-04 14:46:46 -05:00
Add support for evaluated password
This commit is contained in:
parent
99a87a148f
commit
401835f32a
@ -931,6 +931,7 @@ static struct cmd_t command_defs[] =
|
|||||||
"|xa|dnd : Priority for the specified presence.",
|
"|xa|dnd : Priority for the specified presence.",
|
||||||
"resource : The resource to be used.",
|
"resource : The resource to be used.",
|
||||||
"password : Password for the account, note this is currently stored in plaintext if set.",
|
"password : Password for the account, note this is currently stored in plaintext if set.",
|
||||||
|
"eval_password : Shell command evaluated to retrieve password for the account. Can be used to retrieve password from keyring.",
|
||||||
"muc : The default MUC chat service to use.",
|
"muc : The default MUC chat service to use.",
|
||||||
"nick : The default nickname to use when joining chat rooms.",
|
"nick : The default nickname to use when joining chat rooms.",
|
||||||
"otr : Override global OTR policy for this account: manual, opportunistic or always.",
|
"otr : Override global OTR policy for this account: manual, opportunistic or always.",
|
||||||
@ -1260,6 +1261,7 @@ cmd_init(void)
|
|||||||
autocomplete_add(account_set_ac, "dnd");
|
autocomplete_add(account_set_ac, "dnd");
|
||||||
autocomplete_add(account_set_ac, "resource");
|
autocomplete_add(account_set_ac, "resource");
|
||||||
autocomplete_add(account_set_ac, "password");
|
autocomplete_add(account_set_ac, "password");
|
||||||
|
autocomplete_add(account_set_ac, "eval_password");
|
||||||
autocomplete_add(account_set_ac, "muc");
|
autocomplete_add(account_set_ac, "muc");
|
||||||
autocomplete_add(account_set_ac, "nick");
|
autocomplete_add(account_set_ac, "nick");
|
||||||
autocomplete_add(account_set_ac, "otr");
|
autocomplete_add(account_set_ac, "otr");
|
||||||
|
@ -343,6 +343,10 @@ cmd_account(gchar **args, struct cmd_help_t help)
|
|||||||
accounts_set_password(account_name, value);
|
accounts_set_password(account_name, value);
|
||||||
cons_show("Updated password for account %s", account_name);
|
cons_show("Updated password for account %s", account_name);
|
||||||
cons_show("");
|
cons_show("");
|
||||||
|
} else if (strcmp(property, "eval_password") == 0) {
|
||||||
|
accounts_set_eval_password(account_name, value);
|
||||||
|
cons_show("Updated eval_password for account %s", account_name);
|
||||||
|
cons_show("");
|
||||||
} else if (strcmp(property, "muc") == 0) {
|
} else if (strcmp(property, "muc") == 0) {
|
||||||
accounts_set_muc_service(account_name, value);
|
accounts_set_muc_service(account_name, value);
|
||||||
cons_show("Updated muc service for account %s: %s", account_name, value);
|
cons_show("Updated muc service for account %s: %s", account_name, value);
|
||||||
|
@ -43,7 +43,7 @@
|
|||||||
|
|
||||||
ProfAccount*
|
ProfAccount*
|
||||||
account_new(const gchar * const name, const gchar * const jid,
|
account_new(const gchar * const name, const gchar * const jid,
|
||||||
const gchar * const password, gboolean enabled, const gchar * const server,
|
const gchar * const password, const gchar * eval_password, gboolean enabled, const gchar * const server,
|
||||||
int port, const gchar * const resource, const gchar * const last_presence,
|
int port, const gchar * const resource, const gchar * const last_presence,
|
||||||
const gchar * const login_presence, int priority_online, int priority_chat,
|
const gchar * const login_presence, int priority_online, int priority_chat,
|
||||||
int priority_away, int priority_xa, int priority_dnd,
|
int priority_away, int priority_xa, int priority_dnd,
|
||||||
@ -67,6 +67,12 @@ account_new(const gchar * const name, const gchar * const jid,
|
|||||||
new_account->password = NULL;
|
new_account->password = NULL;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (eval_password != NULL) {
|
||||||
|
new_account->eval_password = strdup(eval_password);
|
||||||
|
} else {
|
||||||
|
new_account->eval_password = NULL;
|
||||||
|
}
|
||||||
|
|
||||||
new_account->enabled = enabled;
|
new_account->enabled = enabled;
|
||||||
|
|
||||||
if (server != NULL) {
|
if (server != NULL) {
|
||||||
|
@ -41,6 +41,7 @@ typedef struct prof_account_t {
|
|||||||
gchar *name;
|
gchar *name;
|
||||||
gchar *jid;
|
gchar *jid;
|
||||||
gchar *password;
|
gchar *password;
|
||||||
|
gchar *eval_password;
|
||||||
gchar *resource;
|
gchar *resource;
|
||||||
gchar *server;
|
gchar *server;
|
||||||
int port;
|
int port;
|
||||||
@ -61,7 +62,7 @@ typedef struct prof_account_t {
|
|||||||
} ProfAccount;
|
} ProfAccount;
|
||||||
|
|
||||||
ProfAccount* account_new(const gchar * const name, const gchar * const jid,
|
ProfAccount* account_new(const gchar * const name, const gchar * const jid,
|
||||||
const gchar * const passord, gboolean enabled, const gchar * const server,
|
const gchar * const passord, const gchar * eval_password, gboolean enabled, const gchar * const server,
|
||||||
int port, const gchar * const resource, const gchar * const last_presence,
|
int port, const gchar * const resource, const gchar * const last_presence,
|
||||||
const gchar * const login_presence, int priority_online, int priority_chat,
|
const gchar * const login_presence, int priority_online, int priority_chat,
|
||||||
int priority_away, int priority_xa, int priority_dnd,
|
int priority_away, int priority_xa, int priority_dnd,
|
||||||
|
@ -46,6 +46,7 @@
|
|||||||
#include "log.h"
|
#include "log.h"
|
||||||
#include "tools/autocomplete.h"
|
#include "tools/autocomplete.h"
|
||||||
#include "xmpp/xmpp.h"
|
#include "xmpp/xmpp.h"
|
||||||
|
#include "ui/ui.h"
|
||||||
|
|
||||||
static gchar *accounts_loc;
|
static gchar *accounts_loc;
|
||||||
static GKeyFile *accounts;
|
static GKeyFile *accounts;
|
||||||
@ -224,6 +225,11 @@ accounts_get_account(const char * const name)
|
|||||||
}
|
}
|
||||||
|
|
||||||
gchar *password = g_key_file_get_string(accounts, name, "password", NULL);
|
gchar *password = g_key_file_get_string(accounts, name, "password", NULL);
|
||||||
|
gchar *eval_password = g_key_file_get_string(accounts, name, "eval_password", NULL);
|
||||||
|
if (eval_password != NULL) {
|
||||||
|
FILE *evaled_password = popen(eval_password, "r");
|
||||||
|
fscanf(evaled_password, "%s", password);
|
||||||
|
}
|
||||||
gboolean enabled = g_key_file_get_boolean(accounts, name, "enabled", NULL);
|
gboolean enabled = g_key_file_get_boolean(accounts, name, "enabled", NULL);
|
||||||
|
|
||||||
gchar *server = g_key_file_get_string(accounts, name, "server", NULL);
|
gchar *server = g_key_file_get_string(accounts, name, "server", NULL);
|
||||||
@ -278,7 +284,7 @@ accounts_get_account(const char * const name)
|
|||||||
g_strfreev(always);
|
g_strfreev(always);
|
||||||
}
|
}
|
||||||
|
|
||||||
ProfAccount *new_account = account_new(name, jid, password, enabled,
|
ProfAccount *new_account = account_new(name, jid, password, eval_password, enabled,
|
||||||
server, port, resource, last_presence, login_presence,
|
server, port, resource, last_presence, login_presence,
|
||||||
priority_online, priority_chat, priority_away, priority_xa,
|
priority_online, priority_chat, priority_away, priority_xa,
|
||||||
priority_dnd, muc_service, muc_nick, otr_policy, otr_manual,
|
priority_dnd, muc_service, muc_nick, otr_policy, otr_manual,
|
||||||
@ -286,6 +292,7 @@ accounts_get_account(const char * const name)
|
|||||||
|
|
||||||
g_free(jid);
|
g_free(jid);
|
||||||
g_free(password);
|
g_free(password);
|
||||||
|
g_free(eval_password);
|
||||||
g_free(server);
|
g_free(server);
|
||||||
g_free(resource);
|
g_free(resource);
|
||||||
g_free(last_presence);
|
g_free(last_presence);
|
||||||
@ -441,6 +448,15 @@ accounts_set_password(const char * const account_name, const char * const value)
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void
|
||||||
|
accounts_set_eval_password(const char * const account_name, const char * const value)
|
||||||
|
{
|
||||||
|
if (accounts_account_exists(account_name)) {
|
||||||
|
g_key_file_set_string(accounts, account_name, "eval_password", value);
|
||||||
|
_save_accounts();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
void
|
void
|
||||||
accounts_clear_password(const char * const account_name)
|
accounts_clear_password(const char * const account_name)
|
||||||
{
|
{
|
||||||
|
@ -61,6 +61,7 @@ void accounts_set_server(const char * const account_name, const char * const val
|
|||||||
void accounts_set_port(const char * const account_name, const int value);
|
void accounts_set_port(const char * const account_name, const int value);
|
||||||
void accounts_set_resource(const char * const account_name, const char * const value);
|
void accounts_set_resource(const char * const account_name, const char * const value);
|
||||||
void accounts_set_password(const char * const account_name, const char * const value);
|
void accounts_set_password(const char * const account_name, const char * const value);
|
||||||
|
void accounts_set_eval_password(const char * const account_name, const char * const value);
|
||||||
void accounts_set_muc_service(const char * const account_name, const char * const value);
|
void accounts_set_muc_service(const char * const account_name, const char * const value);
|
||||||
void accounts_set_muc_nick(const char * const account_name, const char * const value);
|
void accounts_set_muc_nick(const char * const account_name, const char * const value);
|
||||||
void accounts_set_otr_policy(const char * const account_name, const char * const value);
|
void accounts_set_otr_policy(const char * const account_name, const char * const value);
|
||||||
|
Loading…
Reference in New Issue
Block a user