/usr/share/perl5/App/Nopaste.pm is in libapp-nopaste-perl 1.004-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 | use strict;
use warnings;
package App::Nopaste; # git description: 1.003-10-gd281f41
# ABSTRACT: Easy access to any pastebin
our $VERSION = '1.004';
use 5.008003;
use Module::Pluggable search_path => 'App::Nopaste::Service', sub_name => '_plugins';
use Class::Load 'load_class';
use namespace::clean;
use base 'Exporter';
our @EXPORT_OK = 'nopaste';
sub plugins { goto \&_plugins };
sub nopaste {
# process arguments
# allow "nopaste($text)"
unshift @_, 'text' if @_ == 1;
# only look for $self if we have odd number of arguments
my $self;
$self = @_ % 2 ? shift : __PACKAGE__;
# everything else
my %args = @_;
$args{services} = defined($ENV{NOPASTE_SERVICES})
&& [split ' ', $ENV{NOPASTE_SERVICES}]
if !defined($args{services});
$args{nick} = $ENV{NOPASTE_NICK} || $ENV{USER}
if !defined($args{nick});
my $using_default = 0;
unless (ref($args{services}) eq 'ARRAY' && @{$args{services}}) {
$using_default = 1;
$args{services} = [ $self->plugins ];
}
@{ $args{services} }
or Carp::croak "No App::Nopaste::Service module found";
defined $args{text}
or Carp::croak "You must specify the text to nopaste";
$args{error_handler} ||= sub {
my ($msg, $srv) = @_;
$msg =~ s/\n*$/\n/;
warn "$srv: $msg"
};
# try to paste to each service in order
for my $service (@{ $args{services} }) {
$service = "App::Nopaste::Service::$service"
unless $service =~ /^App::Nopaste::Service/;
no warnings 'exiting';
my @ret = eval {
local $SIG{__WARN__} = sub {
$args{warn_handler}->($_[0], $service);
} if $args{warn_handler};
load_class($service);
next unless $service->available(%args);
next if $using_default && $service->forbid_in_default;
$service->nopaste(%args);
};
@ret = (0, $@) if $@;
# success!
return $ret[1] if $ret[0];
# failure!
$args{error_handler}->($ret[1], $service);
}
Carp::croak "No available App::Nopaste::Service modules found";
}
1;
__END__
=pod
=encoding UTF-8
=for stopwords nopaste pastebin
=head1 NAME
App::Nopaste - Easy access to any pastebin
=head1 VERSION
version 1.004
=head1 SYNOPSIS
use App::Nopaste 'nopaste';
my $url = nopaste(q{
perl -wle 'print "Prime" if (1 x shift) !~ /^1?$|^(11+?)\1+$/' [number]
});
# or on the command line:
nopaste test.pl
=> http://pastebin.com/fcba51f
=head1 DESCRIPTION
Pastebins (also known as nopaste sites) let you post text, usually code, for
public viewing. They're used a lot in IRC channels to show code that would
normally be too long to give directly in the channel (hence the name nopaste).
Each pastebin is slightly different. When one pastebin goes down (I'm looking
at you, L<http://paste.husk.org>), then you have to find a new one. And if you
usually use a script to publish text, then it's too much hassle.
This module aims to smooth out the differences between pastebins, and provides
redundancy: if one site doesn't work, it just tries a different one.
It's also modular: you only need to put on CPAN a
L<App::Nopaste::Service::Foo> module and anyone can begin using it.
=head1 INTERFACE
=head2 CLI
See the documentation in L<App::Nopaste::Command>.
=head2 C<nopaste>
use App::Nopaste 'nopaste';
my $url = nopaste(
text => "Full text to paste (the only mandatory argument)",
desc => "A short description of the paste",
nick => "Your nickname",
lang => "perl",
chan => "#moose",
private => 1, # default: 0
# this is the default, but maybe you want to do something different
error_handler => sub {
my ($error, $service) = @_;
warn "$service: $error";
},
warn_handler => sub {
my ($warning, $service) = @_;
warn "$service: $warning";
},
# you may specify the services to use - but you don't have to
services => ["Shadowcat", "Gist"],
);
print $url if $url;
The C<nopaste> function will return the URL of the paste on
success, or C<undef> on failure.
For each failure, the C<error_handler> argument is invoked with the error
message and the service that issued it.
For each warning, the C<warn_handler> argument is invoked with the warning
message and the service that issued it.
=head1 SEE ALSO
L<WebService::NoPaste>, L<WWW::Pastebin::PastebinCom::Create>, L<Devel::REPL::Plugin::Nopaste>
L<http://perladvent.org/2011/2011-12-14.html>
=head1 AUTHOR
Shawn M Moore, C<sartak@gmail.com>
=head1 COPYRIGHT AND LICENSE
Copyright 2008- Shawn M Moore.
This program is free software; you can redistribute it and/or modify it
under the same terms as Perl itself.
=head1 AUTHOR
Shawn M Moore, <sartak@gmail.com>
=head1 COPYRIGHT AND LICENSE
This software is copyright (c) 2008 by Shawn M Moore.
This is free software; you can redistribute it and/or modify it under
the same terms as the Perl 5 programming language system itself.
=head1 CONTRIBUTORS
=for stopwords Shawn M Moore Karen Etheridge Thomas Sibley François Gannaz Ricardo Signes Justin Hunter Kevin Falcone Zoffix Znet David Golden Dean Hamstead Sergey Romanov Jesse Luehrs Rafael Kitover Arthur Axel 'fREW' Schmidt יובל קוג'מן (Yuval Kogman) Darian Anthony Patrick Bremner Graham Knop Jason Mills John Goulah Maximilian Gass Sebastian Paaske Tørholm Tatsuhiko Miyagawa gregor herrmann vti Ævar Arnfjörð Bjarmason Сергей Романов
=over 4
=item *
Shawn M Moore <code@sartak.org>
=item *
Karen Etheridge <ether@cpan.org>
=item *
Thomas Sibley <tsibley@cpan.org>
=item *
François Gannaz <francois.gannaz@silecs.info>
=item *
Ricardo Signes <rjbs@cpan.org>
=item *
Justin Hunter <justin.d.hunter@gmail.com>
=item *
Kevin Falcone <kevin@jibsheet.com>
=item *
Zoffix Znet <cpan@zoffix.com>
=item *
David Golden <dagolden@cpan.org>
=item *
Dean Hamstead <dean@fragfest.com.au>
=item *
Sergey Romanov <complefor@rambler.ru>
=item *
Jesse Luehrs <doy@tozt.net>
=item *
Rafael Kitover <rkitover@cpan.org>
=item *
Arthur Axel 'fREW' Schmidt <frioux@gmail.com>
=item *
יובל קוג'מן (Yuval Kogman) <nothingmuch@woobling.org>
=item *
Darian Anthony Patrick <dap@darianpatrick.com>
=item *
David Bremner <bremner@unb.ca>
=item *
Graham Knop <haarg@haarg.org>
=item *
Jason Mills <jmmills@cpan.org>
=item *
John Goulah <jgoulah@gmail.com>
=item *
Maximilian Gass <mxey@ghosthacking.net>
=item *
Sebastian Paaske Tørholm <Eckankar+github@gmail.com>
=item *
Tatsuhiko Miyagawa <miyagawa@bulknews.net>
=item *
gregor herrmann <gregoa@debian.org>
=item *
vti <viacheslav.t@gmail.com>
=item *
Ævar Arnfjörð Bjarmason <avarab@gmail.com>
=item *
Сергей Романов <sromanov@cpan.org>
=back
=cut
|