You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

413 lines
11 KiB
C

6 years ago
// This Source Code Form is subject to the terms of the Mozilla Public
// License, version 2.0. If a copy of the MPL was not distributed with this
// file, You can obtain one at http://mozilla.org/MPL/2.0/.
#include <strophe.h>
6 years ago
#include <stdlib.h>
#include <string.h>
#include <weechat/weechat-plugin.h>
3 years ago
#include "plugin.h"
3 years ago
//#include "oauth.h"
//#include "teaminfo.h"
#include "account.h"
#include "channel.h"
#include "buffer.h"
#include "message.h"
3 years ago
#include "command.h"
3 years ago
void command__display_account(struct t_account *account)
6 years ago
{
int num_channels, num_pv;
3 years ago
if (account->is_connected)
6 years ago
{
3 years ago
num_channels = 0;//xmpp_account_get_channel_count(account);
num_pv = 0;//xmpp_account_get_pv_count(account);
6 years ago
weechat_printf(
NULL,
3 years ago
" %s %s%s%s %s(%s%s%s) [%s%s%s]%s, %d %s, %d pv",
(account->is_connected) ? "*" : " ",
weechat_color("chat_server"),
3 years ago
account->name,
weechat_color("reset"),
weechat_color("chat_delimiters"),
weechat_color("chat_server"),
3 years ago
weechat_config_string(account->options[ACCOUNT_OPTION_JID]),
6 years ago
weechat_color("chat_delimiters"),
weechat_color("reset"),
3 years ago
(account->is_connected) ? _("connected") : _("not connected"),
6 years ago
weechat_color("chat_delimiters"),
weechat_color("reset"),
num_channels,
NG_("channel", "channels", num_channels),
num_pv);
}
else
{
weechat_printf(
NULL,
3 years ago
" %s%s%s %s(%s%s%s)%s",
weechat_color("chat_server"),
3 years ago
account->name,
weechat_color("reset"),
weechat_color("chat_delimiters"),
weechat_color("chat_server"),
3 years ago
weechat_config_string(account->options[ACCOUNT_OPTION_JID]),
weechat_color("chat_delimiters"),
6 years ago
weechat_color("reset"));
}
}
3 years ago
void command__account_list(int argc, char **argv)
6 years ago
{
3 years ago
int i, one_account_found;
struct t_account *ptr_account2;
char *account_name = NULL;
6 years ago
for (i = 2; i < argc; i++)
{
3 years ago
if (!account_name)
account_name = argv[i];
6 years ago
}
3 years ago
if (!account_name)
6 years ago
{
3 years ago
if (accounts)
6 years ago
{
weechat_printf(NULL, "");
3 years ago
weechat_printf(NULL, _("All accounts:"));
for (ptr_account2 = accounts; ptr_account2;
ptr_account2 = ptr_account2->next_account)
6 years ago
{
3 years ago
command__display_account(ptr_account2);
6 years ago
}
}
else
3 years ago
weechat_printf(NULL, _("No account"));
6 years ago
}
else
{
3 years ago
one_account_found = 0;
for (ptr_account2 = accounts; ptr_account2;
ptr_account2 = ptr_account2->next_account)
6 years ago
{
3 years ago
if (weechat_strcasestr(ptr_account2->name, account_name))
6 years ago
{
3 years ago
if (!one_account_found)
6 years ago
{
weechat_printf(NULL, "");
weechat_printf(NULL,
_("Servers with \"%s\":"),
3 years ago
account_name);
6 years ago
}
3 years ago
one_account_found = 1;
command__display_account(ptr_account2);
6 years ago
}
}
3 years ago
if (!one_account_found)
6 years ago
weechat_printf(NULL,
3 years ago
_("No account found with \"%s\""),
account_name);
6 years ago
}
}
3 years ago
void command__add_account(const char *name, const char *jid, const char *password)
6 years ago
{
3 years ago
struct t_account *account;
3 years ago
account = account__casesearch(name);
if (account)
{
weechat_printf(
NULL,
3 years ago
_("%s%s: account \"%s\" already exists, can't add it!"),
weechat_prefix("error"), WEECHAT_XMPP_PLUGIN_NAME,
name);
return;
}
3 years ago
account = account__alloc(name);
if (!account)
{
weechat_printf(
NULL,
3 years ago
_("%s%s: unable to add account"),
weechat_prefix("error"), WEECHAT_XMPP_PLUGIN_NAME);
return;
}
3 years ago
account->name = strdup(name);
if (jid)
3 years ago
weechat_config_option_set(account->options[ACCOUNT_OPTION_JID],
strdup(jid), 1);
3 years ago
if (password)
3 years ago
weechat_config_option_set(account->options[ACCOUNT_OPTION_PASSWORD],
strdup(password), 1);
if (jid)
weechat_config_option_set(account->options[ACCOUNT_OPTION_NICKNAME],
strdup(xmpp_jid_node(account->context, jid)), 1);
weechat_printf (
NULL,
3 years ago
_("%s: account %s%s%s %s(%s%s%s)%s added"),
WEECHAT_XMPP_PLUGIN_NAME,
weechat_color("chat_server"),
3 years ago
account->name,
weechat_color("reset"),
weechat_color("chat_delimiters"),
weechat_color("chat_server"),
3 years ago
jid ? jid : "???",
weechat_color("chat_delimiters"),
weechat_color("reset"));
6 years ago
}
3 years ago
void command__account_add(int argc, char **argv)
6 years ago
{
3 years ago
char *name, *jid = NULL, *password = NULL;
6 years ago
3 years ago
switch (argc)
6 years ago
{
3 years ago
case 5:
password = argv[4];
case 4:
jid = argv[3];
case 3:
name = argv[2];
command__add_account(name, jid, password);
break;
default:
weechat_printf(NULL, _("account add: wrong number of arguments"));
break;
6 years ago
}
}
3 years ago
int command__connect_account(struct t_account *account)
{
3 years ago
if (!account)
return 0;
3 years ago
if (account->is_connected)
{
weechat_printf(
NULL,
3 years ago
_("%s%s: already connected to account \"%s\"!"),
weechat_prefix("error"), WEECHAT_XMPP_PLUGIN_NAME,
account->name);
}
3 years ago
account__connect(account);
return 1;
}
3 years ago
int command__account_connect(int argc, char **argv)
{
int i, nb_connect, connect_ok;
3 years ago
struct t_account *ptr_account;
(void) argc;
(void) argv;
connect_ok = 1;
nb_connect = 0;
for (i = 2; i < argc; i++)
{
nb_connect++;
3 years ago
ptr_account = account__search(argv[i]);
if (ptr_account)
{
3 years ago
if (!command__connect_account(ptr_account))
{
connect_ok = 0;
}
}
else
{
weechat_printf(
NULL,
3 years ago
_("%s%s: account not found \"%s\" "
"(add one first with: /account add)"),
weechat_prefix("error"), WEECHAT_XMPP_PLUGIN_NAME,
argv[i]);
}
}
return (connect_ok) ? WEECHAT_RC_OK : WEECHAT_RC_ERROR;
}
3 years ago
void command__account_delete(int argc, char **argv)
6 years ago
{
3 years ago
struct t_account *account;
char *account_name;
if (argc < 3)
{
weechat_printf(
NULL,
_("%sToo few arguments for command\"%s %s\" "
"(help on command: /help %s)"),
weechat_prefix("error"),
argv[0], argv[1], argv[0] + 1);
return;
}
3 years ago
account = account__search(argv[2]);
if (!account)
{
weechat_printf(
NULL,
3 years ago
_("%s%s: account \"%s\" not found for \"%s\" command"),
weechat_prefix("error"), WEECHAT_XMPP_PLUGIN_NAME,
argv[2], "xmpp delete");
return;
}
3 years ago
if (account->is_connected)
{
weechat_printf(
NULL,
3 years ago
_("%s%s: you cannot delete account \"%s\" because you"
"are connected. Try \"/xmpp disconnect %s\" first."),
3 years ago
weechat_prefix("error"), WEECHAT_XMPP_PLUGIN_NAME,
argv[2], argv[2]);
return;
}
3 years ago
account_name = strdup(account->name);
account__free(account);
weechat_printf (
NULL,
3 years ago
_("%s: account %s%s%s has been deleted"),
WEECHAT_XMPP_PLUGIN_NAME,
weechat_color("chat_server"),
3 years ago
(account_name) ? account_name : "???",
weechat_color("reset"));
3 years ago
if (account_name)
free(account_name);
6 years ago
}
3 years ago
int command__account(const void *pointer, void *data,
struct t_gui_buffer *buffer, int argc,
char **argv, char **argv_eol)
6 years ago
{
6 years ago
(void) pointer;
(void) data;
(void) buffer;
3 years ago
if (argc <= 1 || weechat_strcasecmp(argv[1], "list") == 0)
{
command__account_list(argc, argv);
return WEECHAT_RC_OK;
}
if (argc > 1)
{
if (weechat_strcasecmp(argv[1], "add") == 0)
{
command__account_add(argc, argv);
return WEECHAT_RC_OK;
}
if (weechat_strcasecmp(argv[1], "connect") == 0)
{
command__account_connect(argc, argv);
return WEECHAT_RC_OK;
}
if (weechat_strcasecmp(argv[1], "delete") == 0)
{
command__account_delete(argc, argv);
return WEECHAT_RC_OK;
}
WEECHAT_COMMAND_ERROR;
}
6 years ago
return WEECHAT_RC_OK;
}
3 years ago
int command__me(const void *pointer, void *data,
struct t_gui_buffer *buffer, int argc,
char **argv, char **argv_eol)
{
3 years ago
struct t_account *ptr_account = NULL;
3 years ago
struct t_channel *ptr_channel = NULL;
struct xmpp_stanza_t *message;
char *text;
(void) pointer;
(void) data;
(void) argv;
3 years ago
buffer__get_account_and_channel(buffer, &ptr_account, &ptr_channel);
if (!ptr_account)
return WEECHAT_RC_ERROR;
if (!ptr_channel)
{
weechat_printf (
ptr_account->buffer,
_("%s%s: \"%s\" command can not be executed on a account buffer"),
weechat_prefix("error"), WEECHAT_XMPP_PLUGIN_NAME, "me");
return WEECHAT_RC_OK;
}
if (!ptr_account->is_connected)
{
weechat_printf(buffer,
_("%s%s: you are not connected to server"),
weechat_prefix("error"), WEECHAT_XMPP_PLUGIN_NAME);
return WEECHAT_RC_OK;
}
if (argc > 1)
{
3 years ago
text = argv_eol[0];
message = xmpp_message_new(ptr_account->context, "chat", ptr_channel->name, NULL);
xmpp_message_set_body(message, text);
xmpp_send(ptr_account->connection, message);
xmpp_stanza_release(message);
weechat_printf(ptr_channel->buffer, "* %s %s",
weechat_config_string(ptr_account->options[ACCOUNT_OPTION_JID]),
text);
3 years ago
}
return WEECHAT_RC_OK;
}
3 years ago
void command__init()
6 years ago
{
3 years ago
struct t_hook *hook;
hook = weechat_hook_command(
"account",
N_("handle xmpp accounts"),
6 years ago
N_("list"
3 years ago
" || add <account>"
" || connect <account>"
" || delete <account>"),
N_(" list: list accounts\n"
" add: add a xmpp account\n"
"connect: connect to a xmpp account\n"
" delete: delete a xmpp account\n"),
6 years ago
"list"
3 years ago
" || add %(xmpp_account)"
" || connect %(xmpp_account)"
" || delete %(xmpp_account)",
&command__account, NULL, NULL);
if (!hook)
weechat_printf(NULL, "Failed to setup command /account");
hook = weechat_hook_command(
"me",
N_("send a xmpp action to the current channel"),
N_("<message>"),
N_("message: message to send"),
3 years ago
NULL, &command__me, NULL, NULL);
if (!hook)
weechat_printf(NULL, "Failed to setup command /me");
6 years ago
}