bin/pastebin.userv: Don't throw the supplied content away.
[odin-cgi] / bin / pastebin.userv
CommitLineData
be24e9af
MW
1#! /usr/bin/perl
2
3use lib "lib";
4
5use Odin;
6use DBI;
7use Encode;
8use Encode::Locale;
be24e9af
MW
9
10my $BAD = 0;
11
12sub bad ($) {
13 my ($m) = @_;
14 $BAD = 1;
15 print STDERR "$Odin::PROG: $m\n";
16}
17
18Odin::cmdline_who;
19
20sub read_content () {
21 my $c = "";
22 while (read STDIN, my $buf, 8192) { $c .= $buf; }
23 return Odin::tidy_pastebin_content decode locale => $c;
24}
25
26my $op = shift(@ARGV) // "help";
27if ($op eq "help") {
28 print <<EOF;
29Commands available:
30
31 claim TAG EDITKEY
32 del TAG ...
33 get TAG
34 help
35 list
36 new [-l LANG] [-t TITLE]
37 rekey TAG
38 update [-c] [-l LANG] [-t TITLE] TAG
39EOF
40} elsif ($op eq "list") {
41 @ARGV == 0 or Odin::fail "usage: list";
42 my $db = Odin::open_db;
43 for my $r (@{$db->selectall_arrayref
3300e9a2 44 ("SELECT tag, stamp, lang, title
be24e9af
MW
45 FROM odin_pastebin WHERE owner = ?
46 ORDER BY stamp", undef, $Odin::WHO)}) {
3300e9a2 47 my ($tag, $stamp, $lang, $title) = @$r;
cc346ee1
MW
48 Odin::print_columns Odin::fmt_time $stamp => 25,
49 $tag => 12, $lang => 16, (encode locale => $title) => 0;
be24e9af
MW
50 }
51} elsif ($op eq "new") {
f0bcb39a
MW
52 my $op = Odin::OptParse->new(@ARGV);
53 my $p = (title => undef, lang => "txt");
54 while (my $o = $op->get) {
55 if ($o eq "l") { $p{lang} = $op->arg; }
56 elsif ($o eq "t") { $p{title} = decode locale => $op->arg; }
57 else { $op->unk; }
58 }
59 @ARGV = $op->rest;
60 $op->bad if @ARGV;
61 $op->ok or Odin::fail "usage: new [-l LANG] [-t TITLE]";
62 $p{content} = read_content;
be24e9af
MW
63 @{$db->selectall_arrayref
64 ("SELECT lang FROM odin_pastebin_lang WHERE lang = ?", undef, $p{lang})}
65 or Odin::fail "unknown language `$p{lang}'";
66 my ($tag, $edit) = Odin::new_pastebin %p;
93ec1b86 67 print "$Odin::PASTEBIN/$tag $edit\n";
be24e9af
MW
68} elsif ($op eq "get") {
69 @ARGV == 1 or Odin::fail "usage: get TAG";
70 my ($tag) = @ARGV;
71 Odin::get_pastebin Odin::open_db, $tag, my %p;
72 print encode locale => $p{content};
73} elsif ($op eq "claim") {
74 @ARGV == 2 or Odin::fail "usage: claim TAG EDITKEY";
75 my ($tag, $key) = @ARGV;
76 Odin::claim_pastebin $tag, $key;
77} elsif ($op eq "rekey") {
78 @ARGV == 1 or Odin::fail "usage: rekey TAG";
79 my ($tag) = @ARGV;
80 my $key = Odin::rekey_pastebin $tag;
81 print $key, "\n";
82} elsif ($op eq "del") {
83 @ARGV or Odin::fail "usage: del TAG ...";
84 Odin::delete_pastebin map { $_, undef } @ARGV;
85} elsif ($op eq "update") {
f0bcb39a
MW
86 my $op = Odin::OptParse->new(@ARGV);
87 my %p = ();
88 my $contentp = 0;
89 while (my $o = $op->get) {
90 if ($o eq "c") { $contentp = 1; }
91 elsif ($o eq "l") { $p{lang} = $op->arg; }
92 elsif ($o eq "t") { $p{title} = decode locale => $op->arg; }
93 else { $op->unk; }
94 }
95 @ARGV = $op->rest;
98984c9d
MW
96 $op->bad if @ARGV != 1;
97 $op->ok or Odin::fail "usage: update [-c] [-l LANG] [-t TITLE] TAG";
98 my $tag = shift @ARGV;
f0bcb39a 99 $p{content} = read_content if $contentp;
be24e9af
MW
100 Odin::update_pastebin $tag, undef, %p or Odin::fail "nothing changed";
101} else {
102 Odin::fail "unknown operation `$op'";
103}