#!/usr/bin/perl # this is a gemini client use strict; use warnings; #use diagnostics; use utf8; use bytes; use feature qw(refaliasing); no warnings qw(experimental::refaliasing); our $VERSION = 'v0.0.21'; # TODO: # back() only works once; should fix this # 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 Text::ParseWords; # Core use Term::ReadLine; # 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 = ""; my %commands = ( 'url' => [sub { url($_[0]) }, 'Go to the specified URL.'], 'u' => [sub { url($_[0]) }, 'Alias of `url\''], 'urlrelative' => [sub { urlrelative($_[0]) }, "Navigate the current URL relatively.\n\n" ."Note: if the current path is '/blog/my-post1.gmi' and 'my-post2.gmi'\n" . "was supplied then the resulting path will be: '/blog/my-post2.gmi'\n" . "which is probably what you want. You can also use './my-post2.gmi'.\n" . "'.', of course, means 'same directory', in this case '/blog/'.\n\n" . "To remove the forward slash ('/') at the end of the current url,\n" . "type the back-slash ('\\') by itself.\n\n" . "urlrelative without an argument will remove the ending '/' or go\n" . "up a directory without appending a forward slash.\n" . "IE: '/blog/drafts/secret/post.gmi -> '/blog/drafts/secret' -> '/blog/drafts'"], 'ur' => [sub { urlrelative($_[0]) }, 'Alias of `urlrelative\''], 'cwu' => [sub { print "$current_url\n"; }, 'Returns the current working URL.'], 'c' => [sub { print "$current_url\n"; }, 'Alias of `cwu\'.'], 'links' => [sub { links() }, 'Returns the links on the current page.'], 'l' => [sub { links() }, 'Alias of `links\'.'], 'nav' => [sub { nav(0, $_[0]) }, 'Navigate to a link that is on the current page (use links)'], 'n' => [sub { nav(0, $_[0]) }, 'Alias of `nav\'.'], 'navh' => [sub { nav(1, $_[0]) }, 'Navigate to a URL specified from history (use hist)'], 'nh' => [sub { nav(1, $_[0]) }, 'Alias of `navh\'.'], 'root' => [sub { root() }, 'Go to the root of the current URL.\n' . 'Exp: gemini://capsule.com/blog/2020112.gmi -> gemini://capsule.com/' ], 'hist' => [sub { hist() }, 'Returns history.' ], 'h' => [sub { hist() }, 'Alias of `hist\'.' ], 'back' => [sub { back(0) }, 'Go back in history.' ], 'b' => [sub { back(0) }, 'Alias of `back\'.' ], 'backnodisplay' => [sub { back(1) }, 'Go back in history but do not display the page' . '(still accesses the resource).' ], 'bd' => [sub { back(1) }, 'Alias of `backnodisplay\'.'], 'display' => [sub { display() }, 'Display the current page.' ], 'd' => [sub { display() }, 'Alias of `display\'.' ], 'usepager' => [sub { toggle('pager') }, 'This toggles pager use. 1 = use pager, 0 = stdout.' ], 'textwrap' => [sub { textwrap($_[0]) }, 'Set textwrap length.\nGiving \'auto\' will ' . "automatically determine the appropriate length. (Currently $wrapper->{columns})"], 'pager' => [sub { pager($_[0]) }, "Set which pager to use. (currently $ENV{pager})"], 'save' => [sub { ; }, 'Save the config settings. (Not yet implimented)'], 'help' => [sub { help($_[0]); }, 'Use help before a command to get extra info. (cmds to see commands)'], 'cmds' => [sub {cmds()}, 'Returns the available commands.'], 'ver' => [sub {print "$VERSION\n"}, "Returns the version ($VERSION)"], 'exit' => [sub {exit 0;}, "This exits the program with a status code of 0."], ); my $term=new Term::ReadLine "hmm, what goes here?"; my @completions = keys %commands; my $OUT = $term->OUT || \*STDOUT; $term->Attribs->{'do_expand'}=1; $term->Attribs->{'completion_entry_function'} = $term->Attribs->{'list_completion_function'}; $term->Attribs->{'completion_word'} = \@completions; $term->ornaments(0); $prompt = "$current_url > "; print "Press to see available commands.\n"; while ( defined ($_ = $term->readline($prompt)) ) { if ($_) { my ($command, $detail) = split(/\s/, $_); do_command(\$command, \$detail); } $prompt = "$current_url > "; } sub do_command { # referenced command, referenced arg my ($rCmd, $rArg) = @_; # ## @_ # checking if %commands even has the command if (exists $commands{$$rCmd}) { # assigning a reference to a subroutine to the value my $rsub = $commands{$$rCmd}[0]; #running the subroutine &$rsub($$rArg); } # options doesn't have the command else { print "Command is invalid.\n"; } } sub help { my ($cmd) = @_; ### @_ if ($cmd and exists $commands{$cmd}) { print "$commands{$cmd}[1]\n"; } elsif ($cmd) { print "`$cmd' isn't an avaliable command.\n"; } else { print "$commands{help}[1]\n" } } sub url { my ($url) = @_; ### $url if (!$url) { print("Example: [gemini://]capsule.com/\n"); return 1;} if ( $url !~ m|^.*://.*|) { $url = "gemini://$url"; } $url = parse_url($url); ### $url if (! $url->{port} or $url->{port} eq 0) { $url->{port} = '1965'; } my $cl = IO::Socket::SSL->new( PeerHost => "$url->{host}", PeerPort => "$url->{port}", SSL_verify_mode => SSL_VERIFY_NONE, SSL_version => '!SSLv2:!SSLv3:!TLSv1:!TLSv1_1', ); if ($cl) { my $path; if (! $url->{path}) { $path = '' } else { $path = normalize_path("$url->{path}"); } #$url->{path} .= "/" if ($need_slash); $current_url = return_url($url); ### $current_url ### $url # ["absolute_url", "description"] update_history( ["$current_url", ""] ); # gemini spec: # is an absolute path print $cl "$current_url\r\n"; undef($doc); while (<$cl>) { $doc .= $_; } get_links($doc); if ($doc_out) { display($doc); } } else { print("error=$!, ssl_error=$SSL_ERROR\n"); } } sub urlrelative { my ($urlr) = @_; if (! $urlr) { $urlr = ""} if (! $current_url) {print "Relative movement impossible: no current URL.\n"; return 1;} my $end_with_slash = 1 if ($urlr =~ m|/$|); my $dot_only = 1 if ($urlr =~ m|^\.$|); my $dot_2_only = 1 if ($urlr =~ m|^\.\.$|); # since we are going up into a dir my $c_url_directory = 1 if ($current_url =~ m|/$|); my $remove_slash = 1 if ($urlr =~ m|^\\$|); # back slash \ not a forward slash / ### is urlr a slash only ? if ($urlr =~ m|^/$|) { # if slash only $current_url .= "/"; url("$current_url"); return 0; } ### remove slash ? if ($remove_slash) { substr($current_url,-1,1,''); ### $current_url url($current_url); return 0; } ### is the current url a directory? if ($c_url_directory) { $current_url .= "$urlr"; my $c_p_url = parse_url($current_url); ### $c_p_url # if $urlr has '..' then normalize_path will not go beyond the last element # which is why prefixing a '/' and then taking it away (parse_url doesnt have # the forward / ) will result in expected behavior as host always end with '/' $c_p_url->{path} = normalize_path("/" . $c_p_url->{path}); if ($end_with_slash or $dot_only or $dot_2_only) { $c_p_url->{path} .= "/"; # normalize path will remove it } substr($c_p_url->{path},0,1,''); url(return_url($c_p_url)); return 0; } ### current url is not a directory, so should be fine to remove last item on path # ^ some servers serve index page on 'dir' rather than 'dir/' :v annoying # authors using servers like that will notice that the links on index page need to be # carefully managed, because ALL clients (that handle links correctly) *will* mess up. if (! $c_url_directory) { my $c_p_url = parse_url($current_url); ### $c_p_url my $c_paths_url = split_url_path($c_p_url->{path}, 256); ### $c_paths_url pop(@$c_paths_url); ### $c_paths_url delete ($c_p_url->{path}); for (@$c_paths_url) { $c_p_url->{path} .= "$_/"; } ### $c_p_url $c_p_url->{path} .= "$urlr"; $c_p_url->{path} = normalize_path("/" . "$c_p_url->{path}"); if ($end_with_slash or $dot_only or $dot_2_only) { $c_p_url->{path} .= "/"; # normalize path will remove it } substr($c_p_url->{path},0,1,''); ### $c_p_url url(return_url($c_p_url)); return 0; } } sub return_url { my ($url) = @_; my $url_string; # ## @_ if (ref($url) ne 'HASH') { # assuming string if ($url !~ m|.*://|) { $url =~ s|(.*)|gemini://$1|; } $url = parse_url($url); } my $scheme = $url->{scheme}; my $username = $url->{username}; my $password = $url->{password}; my $host = $url->{host}; my $port = $url->{port}; my $path = $url->{path}; my $query = $url->{query}; my $fragment = $url->{fragment}; # 'https://peter:bro@localhost:8989/some/path/to/resource?q1=yes&q2=no&q3=maybe#frag=1'; # a valid url ^^ if (! $scheme) { $url_string .= "gemini://"; } else { $url_string .= "$scheme://"; } if ($username and $password) { $url_string .= "$username:$password@"; } elsif ($username) { $url_string .= "$username@"; } $url_string .= "$host" if ($host); if ($port and $port ne 1965) { $url_string .= ":$port"; } $url_string .= "/"; $url_string .= "$path" if ($path); $url_string .= "?$query" if ($query); $url_string .= "#$fragment" if ($fragment); return $url_string; } 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"]); } } } } 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"); } } 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 and exists $links[$n][0]) { $link = $links[$n][0]; } elsif ($setting == 1 and @history and exists $history[$n][0]) { $link = $history[$n][0]; } else { my $m = $n+1; print("'$m' isn't available.\n"); return 1; } # This implies it is valid fqdn if (has_scheme($link)) { url("$link"); } else { my $c_url = parse_url($current_url); my $end_with_slash = 1 if ($link =~ m|.*/$|); my $begin_with_slash = 1 if ($link =~ m|^/.*|); ### current url doesnt have a path ? # if (! $c_url->{path}) { # delete($c_url->{path}); # $c_url->{path} = $link; # if ($begin_with_slash) { # substr($c_url->{path},0,1,''); # } # url(return_url($c_url)); # return 0; # } ### absolute location ? if ($begin_with_slash) { delete($c_url->{path}); $c_url->{path} = $link; if ($end_with_slash){ $c_url->{path} .= "/"; } substr($c_url->{path},0,1,''); url(return_url($c_url)); return 0; } ### current url is a directory ? if ($current_url =~ m|.*/$|) { $current_url .= $link; #if ($end_with_slash) { # $current_url .= "/"; #} url(return_url($current_url)); return 0; } else { ### current url must NOT be a directory my $d; if ($c_url->{path}) { my $cp_url = split_url_path($c_url->{path}, 256); pop(@$cp_url); for (@$cp_url) { $d .= "$_/"; } } $d .= $link; $c_url->{path} = normalize_path($d); if ($end_with_slash) { $c_url->{path} .= "/"; } url(return_url($c_url)); return 0; } } } 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 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"); } } sub cmds { my $c; for (sort keys %commands) { $c .= "$_ "; } print $wrapper->wrap($c); }