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 82 83 84 85 86 87
|
# Url shortener for WeeChat by arza <arza@arza.us>, distributed freely and without any warranty, licensed under GPL3 <http://www.gnu.org/licenses/gpl.html>
# Why yet another url shortener script?
# - use your own shortener in a web server, for example: http://weechat.arza.us/url_arza.php
# - a key to shorten url in input line: bind to /url_arza
# - toggle short urls under long urls, not logged: /filter add url_arza * no_log ^^http:// ; /filter toggle url_arza
# - no dependencies
# - simple
# Requires WeeChat >=0.3.6
# Changelog:
# 2013-07-27 0.1: initial release
# 2019-02-10 0.2: support multiple urls per line, fix default values, fix truncated prefix, increase timeout, simplify
weechat::register('url_arza', 'arza <arza@arza.us>', '0.2', 'GPL3', 'Shorten long urls in buffers and input line', '', '');
weechat::hook_print('', 'notify_message', '://', 1, 'url_in', '');
weechat::hook_command('url_arza', 'Shorten url in input line', '', '', '', 'command', '');
weechat::hook_config('plugins.var.perl.url_arza.*', 'set', '');
my %settings;
for(
[ 'url', 'http://arza.us/s/?password=&url=', 'url for shortener, url to shorten is appended, the shortener should return the short url' ],
[ 'url_append_command', '&id_min_length=1', 'string to append to the url when shortening in input line' ],
[ 'url_append_incoming', '&id_min_length=2', 'string to append to the url when shortening incoming urls' ],
[ 'min_length', 100, 'minimum length for incoming urls to shorten' ],
){ my ($name, $value, $description) = @$_;
if(weechat::config_is_set_plugin($name)){
$settings{$name}=weechat::config_get_plugin($name);
}else{
weechat::config_set_plugin($name, $value);
weechat::config_set_desc_plugin($name, "$description (default: $value)");
$settings{$name}=$value;
}
}
my $timeout=5000;
my $delimiter="^\t";
sub escape { my $url=$_[0];
$url=~s/([^a-zA-Z0-9_.~-])/sprintf('%%%02x',ord($1))/eg;
return $url;
}
sub command { my $buffer=$_[1];
my $input=weechat::buffer_get_string($buffer, 'input');
my ($long) = $input=~/(https?:\/\/\S+)$/ or return weechat::WEECHAT_RC_OK;
weechat::hook_process("url:$settings{url}".escape($long).$settings{'url_append_command'}, $timeout, 'command_fetch', "$buffer $long $input");
return weechat::WEECHAT_RC_OK;
}
sub command_fetch { $_[2] && return weechat::WEECHAT_RC_ERROR;
my ($buffer, $long, $input, $short) = (split(/ /, $_[0], 3), $_[3]);
my $input_pos=weechat::buffer_get_integer($buffer, 'input_pos') + length($short) - length($long);
$input=~s/\Q$long\E$/$short/;
weechat::buffer_set($buffer, 'input', $input);
weechat::buffer_set($buffer, 'input_pos', $input_pos);
return weechat::WEECHAT_RC_OK;
}
sub url_in { my ($buffer, $displayed, $prefix, $line) = ($_[1], $_[4], $_[6], $_[7]);
$displayed or return weechat::WEECHAT_RC_OK;
for my $long ($line=~/(https?:\/\/\S+)/g){
if(length($long) >= $settings{'min_length'}){
weechat::hook_process("url:$settings{'url'}".escape($long).$settings{'url_append_incoming'}, $timeout, 'url_in_fetch', "$buffer $prefix");
}
}
return weechat::WEECHAT_RC_OK;
}
sub url_in_fetch { $_[2] && return weechat::WEECHAT_RC_ERROR;
my ($buffer, $prefix, $short) = (split(/ /, $_[0], 2), $_[3]);
weechat::print_date_tags( $buffer, 0, 'no_log',
' ' x ( weechat::config_string(weechat::config_get('weechat.look.prefix_align')) eq "none" ? length(weechat::string_remove_color($prefix, '')) : 0 )
. $delimiter . $short );
return weechat::WEECHAT_RC_OK;
}
sub set {
$settings{substr($_[1], length('plugins.var.perl.url_arza.'))}=$_[2];
return weechat::WEECHAT_RC_OK;
}
|