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
|
#!/usr/bin/perl
# this is a gemini client
use strict;
use warnings;
use utf8;
use bytes;
use feature qw(refaliasing);
no warnings qw(experimental::refaliasing);
our $VERSION = 'v0.0.11';
# TODO:
# back() only works once; should fix this
# url() should also handle relative paths
# Modules
use IO::Socket::SSL; # CPAN
use URL::XS qw(parse_url split_url_path parse_url_query); # CPAN
use Term::TUI qw(:all); # CPAN
use IO::Pager; # CPAN
require Text::Wrapper; # CPAN
use Term::ReadKey; # CPAN
use Term::ANSIColor; # Core
use Path::Naive qw(normalize_path); # CPAN
use Smart::Comments; # CPAN
my $wrapper = Text::Wrapper->new(columns=>70, body_start=>'');
$ENV{pager} = 'less';
my $use_pager = 1;
my $pager_text_wrap_auto = 1;
my $doc_out = 1; # display doc for human consumption?
my $doc;
my @links;
my $current_url = "";
my @history;
# The way Term::TUI handles the data makes it impossible
# to just give it a variable, but it does support stdin
my %modes =
(".HELP" => "Super basic gemini glient.\nVersion: $VERSION\n" .
"Type 'go' to enter 'go' mode. You can also: 'go url capsule.com' without being in 'go' mode.",
"go" => {".HELP" => "going to browse",
"url" => [ "Make a request to a URL\nThis will set the current working URL" .
"\nExample: [gemini://]capsule.com/", \&url ],
"u" => ["Alias of `url'", \&url ],
"cwu" => ["Returns current working URL", \&cwu ],
"c" => ["Alias of `cwu'", \&cwu ],
"links" => ["Current working URL's links", \&links ],
"l" => ["Alias of `links'", \&links ],
"nav" => ["Follow a link.\nSets current working URL", \&nav, 0 ],
"n" => ["Alias of `nav'", \&nav, 0 ],
"navh" => ["Follow a link from history.\nSets current working URL", \&nav, 1 ],
"nh" => ["Alias of `navh'", \&nav, 1 ],
"root" => ["Navigate to current working URL root\n" .
"E.G. gemini://capsule.com/blog/20220112.gmi -> gemini://capsule.com/", \&root ],
"hist" => ["Returns history.", \&hist ],
"h" => ["Alias of `hist'", \&hist ],
"back" => ["Go back to the previous URL (uses history)", \&back, 0 ],
"b" => ["Alias of `back'", \&back, 0 ],
"backnodisplay" => ["Go back to the previous URL (uses history), ".
"but do not display the page.", \&back, 1 ],
"bd" => ["Alias of `backnodisplay'.", \&back, 1 ],
"display" => ["Display the current working URL.", \&display] ,
"d" => ["Alias of `display'", \&display ],
},
"cert" => {".HELP" => "Manage certs",
"aaa" => [ "This command returns `aaa'.", \&aaa ],
},
"config" => {".HELP" => "Config settings to your liking.",
"usepager" => ["This toggles pager use.\n" .
"1 = use pager, 0 = stdout", \&toggle, 'pager'],
"textwrap" => ["Input must be an interger or 'auto'. No\n".
"input returns the current text-wrap.", \&textwrap],
"pager" => ["Set which pager to use.", \&pager],
"save" => ["Save your settings (not implimented yet)", \&asdf],
}
);
my $flag;
$flag=TUI_Run("gc",\%modes);
#print "*** ABORT ***\n" if ($flag);
#TUI_Script(\%modes,"/config pager;");
sub url {
# gemini://website.com/request-path.gmi
my ($url) = @_;
if (!$url) { TUI_Out("Example: [gemini://]capsule.com/\n"); return 0;}
if ( $url !~ m|^.*://.*|) {
$url = "gemini://$url";
}
### $url
$url = parse_url($url);
my $cl = IO::Socket::SSL->new(
PeerHost => "$url->{host}",
PeerPort => '1965',
SSL_verify_mode => SSL_VERIFY_NONE,
# will update version when support is better or
# when gemini removes TLSv1_2 as a supported version
SSL_version => 'TLSv1_2',
); #or die "error=$!, ssl_error=$SSL_ERROR";
if ($cl) {
my $path;
if (! $url->{path}) {
$path = ''
}
else {
$path = "$url->{path}";
}
$current_url = "$url->{scheme}://$url->{host}/$path";
# ["absolute_url", "description"]
update_history( ["$url->{scheme}://$url->{host}/$path", "$url->{host}/$path"] );
# gemini spec: <URL><CR><LF>
# <URL> is an absolute path
print $cl "$url->{scheme}://$url->{host}/$path\r\n";
undef($doc);
while (<$cl>) {
$doc .= $_;
}
get_links($doc);
if ($doc_out) {
display($doc);
}
}
else {
TUI_Out("error=$!, ssl_error=$SSL_ERROR\n");
}
}
sub get_links {
undef(@links);
my ($doc) = @_;
#map(push(@links, $_), $doc =~ m/^=>[\s]*([\w\-\\\/\.\:\~\?\=]+)[\s]*(.+)?$/gm);
for my $line (split('\n', $doc)) {
if ($line =~ m/^=>[\s]*([\w\d\-\\\/\.\:\~\?\=\#]+)[\s]*(.+)?$/gm) {
if ($2) {
push(@links, ["$1", "$2"]);
}
else {
push(@links, ["$1", "$1"]);
}
}
}
## @links
}
sub hist {
my $hist;
my $counter = 1;
for my $item (@history) {
$hist .= "[$counter] $$item[0] $$item[1]\n";
#$hist .= "$$item[1][0]\n";
$counter++;
}
if ($hist) {
TUI_Out($hist);
}
else {
TUI_Out("\n");
}
}
sub update_history {
my ($history) = @_;
push(@history, $history);
}
sub links {
my $d;
my $counter = 1;
for my $item (@links) {
$d .= "[$counter] ". colored($$item[0], 'underline') . " $$item[1]\n";
$counter++;
}
if ($d) {
TUI_Out($d);
}
else {
TUI_Out("No links.\n");
}
0;
}
sub cwu {
TUI_Out("$current_url\n");
0;
}
sub nav {
# Setting 0: from links
# Setting 1: from history
my ($setting,$n) = @_;
if (! $n) {
TUI_Out("Try 'links' or 'hist' then 'nav x', where x is the number.\n");
return 1;
}
$n -= 1;
### $n
### $setting
### @_
my $link;
if ($setting == 0) {
$link = $links[$n][0];
} elsif ($setting == 1) {
$link = $history[$n][0];
}
# This implies it is valid
if (has_scheme($link)) {
url("$link");
}
else {
if ($link =~ m|\.{1,2}/.*|) {
my $new_url = parse_url($current_url);
my $parsed_url_path = split_url_path($new_url->{path}, 256);
my $url_path;
# request doc will be different
pop(@$parsed_url_path);
for (@$parsed_url_path) {
$url_path .= "/$_";
}
### $url_path
### $link
my $path = normalize_path("$url_path/$link");
url("$new_url->{scheme}://$new_url->{host}$path");
}
else {
my $new_url = parse_url($current_url);
url("$new_url->{scheme}://$new_url->{host}/$link");
}
}
}
sub has_scheme {
#print ($_[0]);
return ($_[0] =~ m|^.*(://)|);
}
sub root {
my $new_url = parse_url($current_url);
url("$new_url->{scheme}://$new_url->{host}/");
}
sub back {
my ($display) = @_;
### @_
### $display
#
my $dok_out = $doc_out;
$doc_out = 0 if ($display == 1);
url("$history[-2][0]");
### @history
$doc_out = $dok_out if ($display == 1);
}
sub aaa {
TUI_Out("aaa\n");
}
sub display {
if ($pager_text_wrap_auto) {
my ($wc) = GetTerminalSize();
$wrapper->columns($wc);
}
if ($use_pager) {
IO::Pager::open(my $FH) or warn($!);
print $FH $wrapper->wrap($doc);
}
else {
TUI_Out($wrapper->wrap($doc));
}
}
sub toggle {
my ($t) = @_;
if ($t eq 'pager') {
set_toggle($use_pager);
print "$use_pager\n";
}
}
sub set_toggle {
# refaliasing
\my $t = \$_[0];
if ($t == 1) {
$t = 0;
}
else {
$t = 1;
}
}
sub textwrap {
my ($c) = @_;
if ($c and $c =~ m/^\d+$/) {
$wrapper->columns($c);
$pager_text_wrap_auto = 0;
} elsif ($c and $c eq 'auto') {
$pager_text_wrap_auto = 1;
}
else {
if ($pager_text_wrap_auto) {
my ($c) = GetTerminalSize();
TUI_Out("[AUTO] $c\n");
}
else {
TUI_Out("$wrapper->{columns}\n");
}
}
}
sub pager {
my ($p) = @_;
if ($p) {
$ENV{pager} = $p;
0;
}
else {
TUI_Out("$ENV{pager}\n");
}
}
|