pbot/Plugins/FuncSed.pm

60 lines
1.5 KiB
Perl
Raw Normal View History

2020-02-14 07:41:51 +01:00
# File: FuncSed.pm
#
# Purpose: Registers the sed Function
2021-07-11 00:00:22 +02:00
# SPDX-FileCopyrightText: 2021 Pragmatic Software <pragma78@gmail.com>
# SPDX-License-Identifier: MIT
2020-02-14 07:41:51 +01:00
package Plugins::FuncSed;
use parent 'Plugins::Plugin';
2021-06-19 06:23:34 +02:00
use PBot::Imports;
2020-02-14 07:41:51 +01:00
sub initialize {
2020-02-15 23:38:32 +01:00
my ($self, %conf) = @_;
$self->{pbot}->{functions}->register(
'sed',
{
desc => 'a sed-like stream editor',
usage => 'sed s/<regex>/<replacement>/[Pig]; P preserve case; i ignore case; g replace all',
subref => sub { $self->func_sed(@_) }
}
);
2020-02-14 07:41:51 +01:00
}
sub unload {
2020-02-15 23:38:32 +01:00
my $self = shift;
$self->{pbot}->{functions}->unregister('sed');
2020-02-14 07:41:51 +01:00
}
# near-verbatim insertion of krok's `sed` factoid
no warnings;
2020-02-15 23:38:32 +01:00
sub func_sed {
my $self = shift;
my $text = "@_";
if ($text =~ /^s(.)(.*?)(?<!\\)\1(.*?)(?<!\\)\1(\S*)\s+(.*)/p) {
my ($a, $r, $g, $m, $t) = ($5, "'\"$3\"'", index($4, "g") != -1, $4, $2);
2020-05-02 05:59:51 +02:00
print "a: $a, r: $r, g: $g, m: $m, t: $t\n";
print "text: [$text]\n";
2020-02-15 23:38:32 +01:00
if ($m =~ /P/) {
$r =~ s/^'"(.*)"'$/$1/;
$m =~ s/P//g;
if ($g) { $a =~ s|(?$m)($t)|$1=~/^[A-Z][^A-Z]/?ucfirst$r:($1=~/^[A-Z]+$/?uc$r:$r)|gie; }
else { $a =~ s|(?$m)($t)|$1=~/^[A-Z][^A-Z]/?ucfirst$r:($1=~/^[A-Z]+$/?uc$r:$r)|ie; }
} else {
if ($g) { $a =~ s/(?$m)$t/$r/geee; }
else { $a =~ s/(?$m)$t/$r/eee; }
}
return $a;
2020-02-14 07:41:51 +01:00
} else {
2020-02-15 23:38:32 +01:00
return "sed: syntax error";
2020-02-14 07:41:51 +01:00
}
}
use warnings;
1;