2017-12-06 06:05:44 +01:00
|
|
|
# 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;
|
|
|
|
|
|
|
|
use warnings;
|
|
|
|
use strict;
|
|
|
|
|
2019-07-11 03:40:53 +02:00
|
|
|
use feature 'unicode_strings';
|
|
|
|
|
2017-12-06 06:05:44 +01:00
|
|
|
use Time::HiRes qw/gettimeofday/;
|
|
|
|
use Time::Duration;
|
|
|
|
use LWP::UserAgent;
|
|
|
|
use Carp ();
|
2019-07-01 05:47:49 +02:00
|
|
|
use Encode;
|
2017-12-06 06:05:44 +01:00
|
|
|
|
|
|
|
sub new {
|
2019-05-28 18:19:42 +02:00
|
|
|
if (ref($_[1]) eq 'HASH') {
|
2017-12-06 06:05:44 +01:00
|
|
|
Carp::croak("Options to " . __FILE__ . " should be key/value pairs, not hash reference");
|
|
|
|
}
|
|
|
|
|
|
|
|
my ($class, %conf) = @_;
|
|
|
|
my $self = bless {}, $class;
|
|
|
|
$self->initialize(%conf);
|
|
|
|
return $self;
|
|
|
|
}
|
|
|
|
|
|
|
|
sub initialize {
|
|
|
|
my ($self, %conf) = @_;
|
|
|
|
|
|
|
|
$self->{pbot} = delete $conf{pbot} // Carp::croak("Missing pbot reference to " . __FILE__);
|
|
|
|
|
2018-02-28 20:14:19 +01:00
|
|
|
$self->{paste_sites} = [
|
|
|
|
sub { $self->paste_ixio(@_) },
|
|
|
|
];
|
2017-12-06 06:05:44 +01:00
|
|
|
|
|
|
|
$self->{current_site} = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
sub get_paste_site {
|
|
|
|
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 {
|
2019-08-07 03:23:13 +02:00
|
|
|
my ($self, $text, %opts) = @_;
|
|
|
|
|
|
|
|
my %default_opts = (
|
|
|
|
no_split => 0,
|
|
|
|
);
|
|
|
|
|
|
|
|
%opts = (%default_opts, %opts);
|
2017-12-06 06:05:44 +01:00
|
|
|
|
2019-08-07 03:23:13 +02:00
|
|
|
$text =~ s/(.{120})\s/$1\n/g unless $opts{no_split};
|
2019-07-01 05:47:49 +02:00
|
|
|
$text = encode('UTF-8', $text);
|
2017-12-06 06:05:44 +01:00
|
|
|
|
2019-07-01 05:47:49 +02:00
|
|
|
my $result;
|
2017-12-06 06:05:44 +01:00
|
|
|
for (my $tries = 5; $tries > 0; $tries--) {
|
|
|
|
my $paste_site = $self->get_paste_site;
|
|
|
|
$result = $paste_site->($text);
|
|
|
|
|
|
|
|
if ($result !~ m/error pasting/) {
|
|
|
|
last;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return $result;
|
|
|
|
}
|
|
|
|
|
|
|
|
sub paste_ixio {
|
2019-08-07 03:23:13 +02:00
|
|
|
my ($self, $text) = @_;
|
2017-12-06 06:05:44 +01:00
|
|
|
|
|
|
|
my $ua = LWP::UserAgent->new();
|
|
|
|
$ua->agent("Mozilla/5.0");
|
|
|
|
push @{ $ua->requests_redirectable }, 'POST';
|
|
|
|
$ua->timeout(10);
|
|
|
|
|
|
|
|
my %post = ('f:1' => $text);
|
|
|
|
my $response = $ua->post("http://ix.io", \%post);
|
|
|
|
|
2019-05-28 18:19:42 +02:00
|
|
|
if (not $response->is_success) {
|
2017-12-06 06:05:44 +01:00
|
|
|
return "error pasting: " . $response->status_line;
|
|
|
|
}
|
|
|
|
|
|
|
|
my $result = $response->content;
|
|
|
|
$result =~ s/^\s+//;
|
|
|
|
$result =~ s/\s+$//;
|
|
|
|
return $result;
|
|
|
|
}
|
|
|
|
|
|
|
|
1;
|