-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathoaf
executable file
·397 lines (317 loc) · 8 KB
/
oaf
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
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
#!/usr/bin/env perl
#
# Output as Format: read from stdin and output it as code in the given format
# https://github.com/sshaw/output-as-format
#
# Based off copy-as-format for Emacs: https://github.com/sshaw/copy-as-format
#
# Copyright (c) 2017-2019 Skye Shaw
#
# This library is free software; you can redistribute it and/or modify
# it under the same terms as Perl itself.
#
use strict;
use warnings;
package Util;
sub html_escape {
my $text = shift;
my %escapes = ('&' => '&', '<' => '<');
$$text =~ s/[&<]/$escapes{$&}/eg;
}
sub indent {
my ($text, $n) = @_;
$$text =~ s/^/' ' x $n/gme;
}
# Should just do Markdown->quote, Markdown->list, etc...
package Quote;
sub html {
my $lines = shift;
print '<blockquote>',"\n";
for (@$lines) {
Util::html_escape(\$_);
print $_,"\n";
}
print '</blockquote>',"\n";
}
sub jira {
my ($lines, $multiline) = @_;
if ($multiline) {
print '{quote}',"\n";
printf "%s\n", $_ for @$lines;
print '{quote}',"\n";
}
else {
printf "bq. %s\n", join ' ', @$lines
}
}
sub orgmode {
my $lines = shift;
print "#+BEGIN_QUOTE\n";
print $_,"\n" for @$lines;
print "#+END_QUOTE\n";
}
sub markdown {
my $lines = shift;
printf "> %s\n", $_ for @$lines;
}
sub output {
shift;
my ($format, $multiline) = @_;
my $lines = [];
die "unsupported quote format: $format\n" unless $Quote::{$format};
while (<STDIN>) {
chomp;
s/^\s*//g;
push @$lines, $_;
}
$multiline = @$lines > 1 ? 1 : 0 unless defined($multiline);
$Quote::{$format}->($lines, $multiline);
}
$Quote::{$_} = *markdown for qw(github slack);
package List;
sub html {
my ($lines, $numbered) = @_;
my $li = sub {
for (@$lines) {
Util::html_escape(\$_);
printf '<li>%s</li>', $_;
}
};
if ($numbered) {
print '<ol>';
$li->();
print '</ol>';
}
else {
print '<ul>';
$li->();
print '</ul>';
}
}
# mediawiki too
sub markdown {
my ($lines, $numbered) = @_;
my $prefix = $numbered ? '1.' : '*';
printf "%s %s\n", $prefix, $_ for @$lines;
}
sub jira {
my ($lines, $numbered) = @_;
my $prefix = $numbered ? '#' : '*';
printf "%s %s\n", $prefix, $_ for @$lines;
}
sub orgmode {
my ($lines, $numbered) = @_;
my $n = 1;
printf "%s %s\n", $numbered ? $n++ . '.' : '-', $_ for @$lines;
}
sub rst {
# Bullet lists are the same as Markdown
return markdown(shift) unless pop;
my $lines = shift;
printf "#. %s\n", $_ for @$lines;
}
sub pod {
# Numbered
my $lines = shift;
print '=over 2',"\n";
printf "=item %s\n" for @$lines;
print '=back';
}
sub output {
shift;
my ($format, $numbered) = @_;
my $lines = [];
die "unsupported list format: $format\n" unless $List::{$format};
while (<STDIN>) {
chomp;
s/^\s*//g;
push @$lines, $_;
}
$List::{$format}->($lines, $numbered);
}
$List::{$_} = *markdown for qw(github slack);
package Code;
sub output {
shift;
my ($format, $lang, $multiline) = @_;
my @indents;
my $snippet = '';
while (<STDIN>) {
s/\t/' ' x 8/eg;
$snippet .= $_;
push @indents, /^(\s*)/ && length $1;
}
exit 1 unless @indents;
# Remove the minimum amount of leading white space
my $trim = (sort { $a <=> $b } @indents)[0];
$snippet =~ s/^\s{$trim}//mg;
# Remove newline for single line input
chomp $snippet if @indents == 1;
$multiline = @indents > 1 ? 1 : 0 unless defined($multiline);
$Code::{$format}->($snippet, $multiline, $lang);
}
sub disqus {
my ($snippet, undef, $lang) = @_;
Util::html_escape(\$snippet);
printf "<pre><code class='%s'>\n%s</code></pre>\n", $lang || '', $snippet;
}
sub github {
my ($snippet, $multiline, $lang) = @_;
if ($multiline) {
printf "```%s\n%s```\n", $lang || '', $snippet;
} else {
printf '`%s`', $snippet;
}
}
sub hipchat {
my $snippet = shift;
printf '/code %s', $snippet;
}
sub html {
my ($snippet, $multiline, $lang) = @_;
Util::html_escape(\$snippet);
if ($multiline) {
printf "<pre><code>\n%s</code></pre>", $snippet;
}
else {
printf '<code>%s</code>', $snippet;
}
}
sub jira {
my ($snippet, $multiline, $lang) = @_;
if ($multiline) {
printf "{code%s}\n%s{code}\n", $lang ? ":$lang" : '', $snippet;
}
else {
printf '{{%s}}', $snippet;
}
}
sub markdown {
my ($snippet, $multiline) = @_;
if ($multiline) {
Util::indent(\$snippet, 4);
print $snippet;
}
else {
printf '`%s`', $snippet;
}
}
sub mediawiki {
my ($snippet, $multiline, $lang) = @_;
my $markup = sprintf '<syntaxhighlight lang="%s"', $lang || '';
$markup .= ' inline' unless $multiline;
$markup .= sprintf ">\n%s</syntaxhighlight>", $snippet;
print $markup;
}
sub orgmode {
my ($snippet, $multiline, $lang) = @_;
if ($multiline) {
printf "#+BEGIN_SRC %s\n%s\n#+END_SRC\n", $lang || '', $snippet;
}
else {
# Cannot escape '~' within Org-mode's code formatting
# entities and empty space don't work.
printf '~%s~', $snippet;
}
}
sub pod {
my ($snippet, $multiline, $lang) = @_;
if ($multiline) {
Util::indent(\$snippet, 2);
print $snippet;
}
else {
$snippet =~ s/<</E<lt>E<lt>/g;
printf 'C<< %s >>', $snippet;
}
}
sub rst {
my ($snippet, $multiline, $lang) = @_;
if ($multiline) {
Util::indent(\$snippet, 4);
printf ".. code::\n\n%s\n", $snippet;
}
else {
printf '``%s``', $snippet;
}
}
sub slack {
my ($snippet, $multiline) = @_;
if ($multiline) {
printf "```\n%s```\n", $snippet;
} else {
$snippet =~ s/^\s+|\s+$//g;
printf '`%s`', $snippet;
}
}
package main;
use Getopt::Long qw(:config no_ignore_case);
our $VERSION = '0.04';
sub HELP_MESSAGE {
my $out = shift;
print $out <<USAGE
usage: oaf [-1mpsLQ] [-f format] [-l lang] [--list[1]] [--quote]
Output stdin according to the given options
-f FORMAT Format to output, defaults to markdown
-h, --help Display this message
-l LANG Programming language of stdin, if supported by FORMAT
-L, --list Output a bullet point list using FORMAT, each line is a list item
-1, --list1 Output a numbered list using FORMAT, each line is a list item
-m Force multiline output, if supported by FORMAT
-p Print the supported formats and exit
-Q, --quote Output as a quote in FORMAT
-s Force single line output, if supported by FORMAT
--version Print the version
USAGE
}
sub VERSION_MESSAGE {
my $out = shift;
print $out "Output as Format v$VERSION\n";
}
my %options;
my %formats = (bitbucket => 'github',
disqus => 'disqus',
github => 'github',
gitlab => 'github',
hipchat => 'hipchat',
html => 'html',
jira => 'jira',
markdown => 'markdown',
mediawiki => 'mediawiki',
orgmode => 'orgmode',
pod => 'pod',
rst => 'rst',
slack => 'slack');
GetOptions('f=s' => \$options{f},
'h|help' => sub { HELP_MESSAGE(*STDOUT) and exit },
'l=s' => \$options{l},
'list|L' => \$options{list},
'list1|1' => \$options{list1},
'm' => \$options{m},
'p' => \$options{p},
'quote|Q' => \$options{quote},
's' => \$options{s},
'v|version' => sub { VERSION_MESSAGE(*STDOUT) and exit }
) or HELP_MESSAGE(*STDERR) and exit 1;
if ($options{p}) {
local $\= "\n";
print for sort keys %formats;
exit;
}
my $lang = $options{l} || $ENV{OAF_LANG};
my $multiline = $options{m};
$multiline = 0 if $options{s};
# FIXME: use GetOptions for this..?
my $format = $options{f} || $ENV{OAF_FORMAT} || 'markdown';
die "Unknown format: $format\n" unless $formats{$format};
# ======
if ($options{list} || $options{list1}) {
my $numbered = $options{list1} || 0;
List->output($formats{$format}, $numbered);
}
elsif ($options{quote}) {
Quote->output($formats{$format}, $multiline);
}
else {
Code->output($formats{$format}, $lang, $multiline);
}