pbot/PBot/WebPaste.pm

85 lines
2.3 KiB
Perl
Raw Normal View History

# File: WebPaste.pm
# Author: pragma_
#
# Purpose: Pastes text to web paste sites.
# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 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/.
package PBot::WebPaste;
2020-02-15 23:38:32 +01:00
use parent 'PBot::Class';
use warnings; use strict;
2019-07-11 03:40:53 +02:00
use feature 'unicode_strings';
use Time::HiRes qw/gettimeofday/;
use Time::Duration;
use LWP::UserAgent::Paranoid;
2019-07-01 05:47:49 +02:00
use Encode;
sub initialize {
2020-02-15 23:38:32 +01:00
my ($self, %conf) = @_;
2020-02-15 23:38:32 +01:00
$self->{paste_sites} = [
sub { $self->paste_0x0st(@_) },
2021-02-07 22:51:58 +01:00
# sub { $self->paste_ixio(@_) }, # removed due to being too slow (temporarily hopefully)
2020-02-15 23:38:32 +01:00
];
2020-02-15 23:38:32 +01:00
$self->{current_site} = 0;
}
sub get_paste_site {
2020-02-15 23:38:32 +01:00
my ($self) = @_;
my $subref = $self->{paste_sites}->[$self->{current_site}];
if (++$self->{current_site} >= @{$self->{paste_sites}}) { $self->{current_site} = 0; }
return $subref;
}
sub paste {
2020-02-15 23:38:32 +01:00
my ($self, $text, %opts) = @_;
my %default_opts = (
no_split => 0,
);
%opts = (%default_opts, %opts);
2020-02-15 23:38:32 +01:00
$text =~ s/(.{120})\s/$1\n/g unless $opts{no_split};
2020-02-15 23:38:32 +01:00
my $result;
for (my $tries = 3; $tries > 0; $tries--) {
my $paste_site = $self->get_paste_site;
$result = $paste_site->($text);
last if $result !~ m/error pasting/;
}
2021-02-07 22:51:58 +01:00
$result =~ s/^\s+|\s+$//g;
2020-02-15 23:38:32 +01:00
return $result;
}
sub paste_0x0st {
2020-02-15 23:38:32 +01:00
my ($self, $text) = @_;
my $ua = LWP::UserAgent::Paranoid->new(request_timeout => 10);
push @{$ua->requests_redirectable}, 'POST';
my $response = $ua->post(
"https://0x0.st",
[ file => [ undef, "file", Content => $text ] ],
Content_Type => 'form-data'
);
2020-02-15 23:38:32 +01:00
alarm 1; # LWP::UserAgent::Paranoid kills alarm
return "error pasting: " . $response->status_line if not $response->is_success;
return $response->content;
2021-02-07 22:51:58 +01:00
}
sub paste_ixio {
my ($self, $text) = @_;
my $ua = LWP::UserAgent::Paranoid->new(request_timeout => 10);
push @{$ua->requests_redirectable}, 'POST';
my %post = ('f:1' => $text);
my $response = $ua->post("http://ix.io", \%post);
alarm 1; # LWP::UserAgent::Paranoid kills alarm
return "error pasting: " . $response->status_line if not $response->is_success;
return $response->content;
}
1;