summaryrefslogtreecommitdiffstats
path: root/lib/Reply/Plugin/Nopaste.pm
blob: 8ecf0e17524f3bcd401eb476ffae84e8d319a525 (plain) (blame)
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
package main;
use strict;
use warnings;
# ABSTRACT: command to nopaste a transcript of the current session

use mop;

use App::Nopaste;

=head1 SYNOPSIS

  ; .replyrc
  [Nopaste]
  service = Gist

=head1 DESCRIPTION

This plugin provides a C<#nopaste> command, which will use L<App::Nopaste> to
nopaste a transcript of the current Reply session. The C<service> option can be
used to choose an alternate service to use, rather than using the one that
App::Nopaste chooses on its own. If arguments are passed to the C<#nopaste>
command, they will be used as the title of the paste.

Note that this plugin should be loaded early in your configuration file, in
order to ensure that it sees all modifications to the result (due to plugins
like [DataDump], etc).

=cut

class Reply::Plugin::Nopaste extends Reply::Plugin {
    has $history = '';
    has $service;

    has $prompt;
    has $line;
    has $result;

    method prompt ($next, @args) {
        $prompt = $next->(@args);
        return $prompt;
    }

    method read_line ($next, @args) {
        $line = $next->(@args);
        $line = "$line\n" if defined $line;
        return $line;
    }

    method print_error ($next, $error) {
        $result = $error;
        $next->($error);
    }

    method print_result ($next, @result) {
        $result = @result ? join('', @result) . "\n" : '';
        $next->(@result);
    }

    method loop ($continue) {
        $history .= "$prompt$line$result"
            if defined $prompt
            && defined $line
            && defined $result;

        undef $prompt;
        undef $line;
        undef $result;

        $continue;
    }

    method command_nopaste ($cmd_line) {
        $cmd_line = "Reply session" unless length $cmd_line;

        print App::Nopaste->nopaste(
            text => $history,
            desc => $cmd_line,
            lang => 'perl',
            (defined $service
                ? (services => [ $service ])
                : ()),
        ) . "\n";

        return '';
    }
}

=for Pod::Coverage
  command_nopaste

=cut

1;