summaryrefslogtreecommitdiff
path: root/gmi.pl
blob: c397eb0be13c6c270283cfc70bdac5a5597c484d (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
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
#!/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.13';

# 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 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;
my $prompt = "gmi> ";

my %commands = (
	'url' => sub { url($_[0]) },
	'cwu' => sub { cwu() },
	'links' => sub { links() },
	'nav' => sub { nav(0, $_[0]) },
	'navh' => sub { nav(1, $_[0]) },
	'root' => sub { root() },
	'hist' => sub { hist() },
	'back' => sub { back(0) },
	'backnodisplay' => sub { back(1) },
	'display' => sub { display() },
	'aaa' => sub { aaa() },
	'usepager' => sub { toggle('pager') },
	'textwrap' => sub { textwrap($_[0]) },
	'pager' => sub { pager($_[0]) },
	'save' => sub { ; },
	'help' => sub { ; },
);

while () {

	print "$prompt";
	chomp(my $input = <STDIN>);

	### $input
	if ($input) {
		my ($command, $option) = split(/\s/, $input);
		do_command(\$command, \%commands, \$option);
	}
}

sub do_command {
	# referenced command, referenced options, referenced option
	my ($rCmd, $rhCommands, $rOption) = @_; 

	# checking if options even has the command
	if (exists $rhCommands->{$$rCmd}) {

		# assigning a reference to a subroutine to the value
		my $rsub = $rhCommands->{$$rCmd};

		#running the subroutine
		&$rsub($$rOption);
	}
	# options doesn't have the command
	else {
		### @_
		print "Command is invalid.\n";
	}	
}

sub url {
	my ($url) = @_;
	if (!$url) { print("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',
	
	); 

	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 {
		print("error=$!, ssl_error=$SSL_ERROR\n");
	}
}

sub get_links {
	undef(@links);
	my ($doc) = @_;
	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] ". colored("$$item[0]", 'underline') ." $$item[1]\n";
		$counter++;
	}
	if ($hist) {
		print($hist);
	}
	else {
		print("\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) {
		print($d);
	}
	else {
		print("No links.\n");
	}
	0;
}

sub cwu {
	print("$current_url\n");
	0;
}

sub nav {
	# Setting 0: from links
	# Setting 1: from history
	my ($setting,$n) = @_;
	### $n
	### $setting
	### @_
	if (! $n or $n !~ /\d+/) {
		print("Try 'links' or 'hist' then 'nav x', where x is the number.\n");
		return 1;
	}
	$n -= 1;

	my $link;

	if ($setting == 0 and @links) {
		$link = $links[$n][0];
	} elsif ($setting == 1 and @history) {
		$link = $history[$n][0];
	}
	else {
		print("'$n' isn't available.\n");
		return 1;
	}

	# 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 {
	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 {
	print("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 { 
		print($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();
			print("[AUTO] $c\n");
		}
		else {
			print("$wrapper->{columns}\n");
		}
	}
}

sub pager {
	my ($p) = @_;
	if ($p) {
		$ENV{pager} = $p;
		0;
	}
	else {
		print("$ENV{pager}\n");
	}
}