1
0
mirror of https://github.com/weechat/weechat.git synced 2026-06-24 20:06:38 +02:00
Files
weechat/src/plugins/alias/alias-command.c
T

417 lines
15 KiB
C

/*
* SPDX-FileCopyrightText: 2003-2025 Sébastien Helleu <flashcode@flashtux.org>
*
* SPDX-License-Identifier: GPL-3.0-or-later
*
* This file is part of WeeChat, the extensible chat client.
*
* WeeChat is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 3 of the License, or
* (at your option) any later version.
*
* WeeChat is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with WeeChat. If not, see <https://www.gnu.org/licenses/>.
*/
/* Alias commands */
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
#include "../weechat-plugin.h"
#include "alias.h"
#include "alias-command.h"
#include "alias-config.h"
/*
* Adds a new alias.
*/
void
alias_command_add (const char *alias_name, const char *command,
const char *completion, int update)
{
struct t_config_option *ptr_option;
/* define new alias */
if (!alias_new (alias_name, command, completion))
{
weechat_printf (NULL,
_("%s%s: error creating alias \"%s\" "
"=> \"%s\""),
weechat_prefix ("error"), ALIAS_PLUGIN_NAME,
alias_name, command);
return;
}
/* create configuration option for command */
ptr_option = weechat_config_search_option (alias_config_file,
alias_config_section_cmd,
alias_name);
weechat_config_option_free (ptr_option);
alias_config_cmd_new_option (alias_name, command);
/* create configuration option for completion */
ptr_option = weechat_config_search_option (alias_config_file,
alias_config_section_completion,
alias_name);
weechat_config_option_free (ptr_option);
if (completion)
alias_config_completion_new_option (alias_name, completion);
/* display message */
weechat_printf (NULL,
(update) ?
_("Alias updated: \"%s\" => \"%s\"") :
_("Alias created: \"%s\" => \"%s\""),
alias_name, command);
}
/*
* Callback for command "/alias": displays or creates alias.
*/
int
alias_command_cb (const void *pointer, void *data,
struct t_gui_buffer *buffer, int argc,
char **argv, char **argv_eol)
{
char *ptr_alias_name, *ptr_alias_name2, *name;
struct t_alias *ptr_alias, *ptr_alias2, *ptr_next_alias;
struct t_config_option *ptr_option;
int alias_found, i, update;
/* make C compiler happy */
(void) pointer;
(void) data;
(void) buffer;
/* List all aliases */
if ((argc == 1) || (weechat_strcmp (argv[1], "list") == 0))
{
if (alias_list)
{
/* get pointer to alias name */
ptr_alias_name = NULL;
if (argc > 1)
{
ptr_alias_name = (weechat_string_is_command_char (argv[2])) ?
(char *)weechat_utf8_next_char (argv[2]) : argv[2];
}
/* display list of aliases */
alias_found = 0;
for (ptr_alias = alias_list; ptr_alias;
ptr_alias = ptr_alias->next_alias)
{
if (!ptr_alias_name
|| strstr (ptr_alias->name, ptr_alias_name))
{
if (!alias_found)
{
weechat_printf (NULL, "");
if (ptr_alias_name)
{
weechat_printf (NULL,
_("Aliases with \"%s\":"),
ptr_alias_name);
}
else
{
weechat_printf (NULL, _("All aliases:"));
}
}
ptr_option = weechat_config_search_option (
alias_config_file,
alias_config_section_completion,
ptr_alias->name);
if (ptr_option)
{
weechat_printf (
NULL,
" %s %s=>%s %s %s(%s%s %s%s)%s",
ptr_alias->name,
weechat_color ("chat_delimiters"),
weechat_color ("chat"),
ptr_alias->command,
weechat_color ("chat_delimiters"),
weechat_color ("chat"),
_("completion:"),
weechat_config_string (ptr_option),
weechat_color ("chat_delimiters"),
weechat_color ("chat"));
}
else
{
weechat_printf (
NULL,
" %s %s=>%s %s",
ptr_alias->name,
weechat_color ("chat_delimiters"),
weechat_color ("chat"),
ptr_alias->command);
}
alias_found = 1;
}
}
if (!alias_found)
{
weechat_printf (NULL, _("No alias found matching \"%s\""),
(ptr_alias_name) ? ptr_alias_name : "");
}
}
else
{
weechat_printf (NULL, _("No alias defined"));
}
return WEECHAT_RC_OK;
}
if ((weechat_strcmp (argv[1], "add") == 0)
|| (weechat_strcmp (argv[1], "addreplace") == 0))
{
WEECHAT_COMMAND_MIN_ARGS(4, argv[1]);
update = 0;
ptr_alias_name = (weechat_string_is_command_char (argv[2])) ?
(char *)weechat_utf8_next_char (argv[2]) : argv[2];
ptr_alias = alias_search (ptr_alias_name);
if (ptr_alias)
{
if (weechat_strcmp (argv[1], "addreplace") == 0)
{
alias_free (ptr_alias);
ptr_option = weechat_config_search_option (
alias_config_file,
alias_config_section_cmd,
ptr_alias_name);
weechat_config_option_free (ptr_option);
ptr_option = weechat_config_search_option (
alias_config_file,
alias_config_section_completion,
ptr_alias_name);
weechat_config_option_free (ptr_option);
update = 1;
}
else
{
weechat_printf (NULL,
_("%sAlias \"%s\" already exists"),
weechat_prefix ("error"),
ptr_alias_name);
return WEECHAT_RC_ERROR;
}
}
alias_command_add (ptr_alias_name, argv_eol[3], NULL, update);
return WEECHAT_RC_OK;
}
if ((weechat_strcmp (argv[1], "addcompletion") == 0)
|| (weechat_strcmp (argv[1], "addreplacecompletion") == 0))
{
WEECHAT_COMMAND_MIN_ARGS(5, argv[1]);
update = 0;
ptr_alias_name = (weechat_string_is_command_char (argv[3])) ?
(char *)weechat_utf8_next_char (argv[3]) : argv[3];
ptr_alias = alias_search (ptr_alias_name);
if (ptr_alias)
{
if (weechat_strcmp (argv[1], "addreplacecompletion") == 0)
{
alias_free (ptr_alias);
ptr_option = weechat_config_search_option (
alias_config_file,
alias_config_section_cmd,
ptr_alias_name);
weechat_config_option_free (ptr_option);
ptr_option = weechat_config_search_option (
alias_config_file,
alias_config_section_completion,
ptr_alias_name);
weechat_config_option_free (ptr_option);
update = 1;
}
else
{
weechat_printf (NULL,
_("%sAlias \"%s\" already exists"),
weechat_prefix ("error"),
ptr_alias_name);
return WEECHAT_RC_ERROR;
}
}
alias_command_add (ptr_alias_name, argv_eol[4], argv[2], update);
return WEECHAT_RC_OK;
}
if (weechat_strcmp (argv[1], "del") == 0)
{
WEECHAT_COMMAND_MIN_ARGS(3, argv[1]);
for (i = 2; i < argc; i++)
{
ptr_alias_name = (weechat_string_is_command_char (argv[i])) ?
(char *)weechat_utf8_next_char (argv[i]) : argv[i];
ptr_alias = alias_list;
while (ptr_alias)
{
ptr_next_alias = ptr_alias->next_alias;
if (weechat_string_match (ptr_alias->name, ptr_alias_name, 1))
{
name = strdup (ptr_alias->name);
alias_free (ptr_alias);
ptr_option = weechat_config_search_option (
alias_config_file,
alias_config_section_cmd,
ptr_alias_name);
weechat_config_option_free (ptr_option);
ptr_option = weechat_config_search_option (
alias_config_file,
alias_config_section_completion,
ptr_alias_name);
weechat_config_option_free (ptr_option);
weechat_printf (NULL, _("Alias \"%s\" removed"), name);
free (name);
}
ptr_alias = ptr_next_alias;
}
}
return WEECHAT_RC_OK;
}
if (weechat_strcmp (argv[1], "rename") == 0)
{
WEECHAT_COMMAND_MIN_ARGS(4, argv[1]);
ptr_alias_name = (weechat_string_is_command_char (argv[2])) ?
(char *)weechat_utf8_next_char (argv[2]) : argv[2];
ptr_alias_name2 = (weechat_string_is_command_char (argv[3])) ?
(char *)weechat_utf8_next_char (argv[3]) : argv[3];
ptr_alias = alias_search (ptr_alias_name);
if (!ptr_alias)
{
weechat_printf (NULL,
_("%sAlias \"%s\" not found"),
weechat_prefix ("error"),
ptr_alias_name);
return WEECHAT_RC_ERROR;
}
else
{
/* check if target name already exists */
ptr_alias2 = alias_search (ptr_alias_name2);
if (ptr_alias2)
{
weechat_printf (NULL, _("%sAlias \"%s\" already exists"),
weechat_prefix ("error"), ptr_alias_name2);
return WEECHAT_RC_ERROR;
}
else
{
/* rename alias */
if (alias_rename (ptr_alias, ptr_alias_name2))
{
weechat_printf (
NULL,
_("Alias \"%s\" has been renamed to \"%s\""),
ptr_alias_name,
ptr_alias_name2);
}
}
}
return WEECHAT_RC_OK;
}
if (weechat_strcmp (argv[1], "missing") == 0)
{
for (i = 0; alias_default[i][0]; i++)
{
if (!alias_search (alias_default[i][0]))
{
alias_command_add (alias_default[i][0], /* name */
alias_default[i][1], /* command */
alias_default[i][2], /* completion */
0); /* update */
}
}
return WEECHAT_RC_OK;
}
WEECHAT_COMMAND_ERROR;
}
/*
* Hooks alias command.
*/
void
alias_command_init (void)
{
struct t_hook *ptr_hook;
ptr_hook = weechat_hook_command (
"alias",
N_("list, add or remove command aliases"),
/* TRANSLATORS: only text between angle brackets (eg: "<name>") may be translated */
N_("list [<name>]"
" || add|addreplace <name> [<command>[;<command>...]]"
" || addcompletion|addreplacecompletion <completion> <name> "
"[<command>[;<command>...]]"
" || del <name>|<mask>..."
" || rename <name> <new_name>"
" || missing"),
/* xgettext:no-c-format */
WEECHAT_CMD_ARGS_DESC(
N_("raw[list]: list aliases (without argument, this list is "
"displayed)"),
N_("raw[add]: add an alias"),
N_("raw[addreplace]: add or replace an existing alias"),
N_("raw[addcompletion]: add an alias with a custom completion"),
N_("raw[addreplacecompletion]: add or replace an existing alias "
"with a custom completion"),
N_("name: name of alias"),
N_("completion: completion for alias: by default completion is "
"done with target command (you can use \"%%command\" to use the "
"completion of an existing command)"),
N_("command: command name with arguments (many commands can be "
"separated by semicolons)"),
N_("raw[del]: delete aliases"),
N_("mask: name where wildcard \"*\" is allowed"),
N_("raw[rename]: rename an alias"),
N_("raw[missing]: add missing aliases (using default aliases)"),
"",
N_("In command, special variables are replaced:"),
N_(" $n: argument \"n\" (between 1 and 9)"),
N_(" $-m: arguments from 1 to \"m\""),
N_(" $n-: arguments from \"n\" to last"),
N_(" $n-m: arguments from \"n\" to \"m\""),
N_(" $*: all arguments"),
N_(" $&: all arguments, with \" replaced by \\\""),
N_(" $~: last argument"),
N_(" $var: where \"var\" is a local variable of buffer (see "
"/buffer listvar), examples: $nick, $channel, $server, $plugin, "
"$name"),
"",
N_("Examples:"),
AI(" /alias add split /window splith"),
AI(" /alias add hello /allchan -exclude=#weechat hello"),
AI(" /alias rename hello Hello"),
AI(" /alias addcompletion %%sajoin forcejoin /quote forcejoin")),
"list %(alias)"
" || add|addreplace %(alias) %(commands:/)|%(alias_value)"
" || addcompletion|addreplacecompletion %- %(alias) "
"%(commands:/)|%(alias_value)"
" || del %(alias)|%*"
" || rename %(alias) %(alias)"
" || missing",
&alias_command_cb, NULL, NULL);
ALIAS_COMMAND_KEEP_SPACES;
}