]> bicyclesonthemoon.info Git - ott/bsta/blobdiff - goto.1.pl
fix ONG; fix update; total reset
[ott/bsta] / goto.1.pl
index 36c44ecf064c5966982547c55829c4dcb3317019..80dcf16c92bcd15a8acf6297b26bca81826b7591 100644 (file)
--- a/goto.1.pl
+++ b/goto.1.pl
@@ -1,11 +1,11 @@
 ###RUN_PERL: #!/usr/bin/perl
-#
-# /bsta/g
-###RUN_PERL: #!/usr/bin/perl
 
+# /bsta/g
+# goto is generated from goto.1.pl.
+#
 # The frame list
 #
-# Copyright (C) 2017, 2023  Balthasar Szczepański
+# Copyright (C) 2017, 2023, 2024  Balthasar Szczepański
 #
 # This program is free software: you can redistribute it and/or modify
 # it under the terms of the GNU Affero General Public License as
 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
 
 use strict;
-#use warnings;
+use utf8;
+# use Encode::Locale ('decode_argv');
+use Encode ('encode', 'decode');
+
 ###PERL_LIB: use lib /botm/lib/bsta
-use bsta_lib qw(failpage gethttpheader getcgi readdatafile printdatafile entityencode urlencode);
-use File::Copy;
+use botm_common (
+       'read_header_env',
+       'read_data_file',
+       'url_query_decode',
+       '_x_encoded'
+);
+use bsta_lib (
+       'STATE',
+       'fail_method', 'fail_content_type',
+       'redirect',
+       'get_password',
+       'print_goto',
+       'merge_settings'
+);
+
+###PERL_PATH_SEPARATOR:     PATH_SEPARATOR     = /
 
 ###PERL_CGI_PATH:           CGI_PATH           = /bsta/
-###PERL_CGI_CSS_PATH:       CGI_CSS_PATH       = /bsta/bsta.css
-###PERL_CGI_LOGO_PATH:      CGI_LOGO_PATH      = /bsta/botmlogo.png
+###PERL_CGI_LIST_PATH:      CGI_LIST_PATH      = /bsta/goto.htm
 ###PERL_CGI_VIEWER_PATH:    CGI_VIEWER_PATH    = /bsta/v
 
 ###PERL_DATA_PATH:          DATA_PATH          = /botm/data/bsta/
@@ -36,137 +52,79 @@ use File::Copy;
 ###PERL_DATA_STATE_PATH:    DATA_STATE_PATH    = /botm/data/bsta/state
 ###PERL_DATA_LIST_PATH:     DATA_LIST_PATH     = /botm/data/bsta/list
 
-###PERL_WEBSITE:            WEBSITE            = 1190.bicyclesonthemoon.info
+###PERL_WWW_GOTO_PATH:      WWW_GOTO_PATH      = /botm/www/1190/bsta/goto.htm
+
 ###PERL_WEBSITE_NAME:       WEBSITE_NAME       = Bicycles on the Moon
-###PERL_FAVICON_PATH:       FAVICON_PATH       = /img/favicon.png
+
+binmode STDIN,  ':encoding(UTF-8)';
+binmode STDOUT, ':encoding(UTF-8)';
+binmode STDERR, ':encoding(UTF-8)';
+# decode_argv();
+
+my $time = time();
+srand ($time-$$);
 
 my %http;
 my %cgi;
 my %settings;
 my %state;
-my %gotolist;
-
-my @timetab;
-
-my $time = time();
-srand ($time-$$);
+my %goto_list;
 
 my $method;
 my $password;
-my $passwordOK;
-
-my $frame;
-my $last;
-my $title;
-my $ongtime;
-my $ongstate;
-my $line;
+my $password_ok;
+my $no_cgi;
 
 delete @ENV{qw(IFS CDPATH ENV BASH_ENV)};
 ###PERL_SET_PATH: $ENV{'PATH'} = /usr/local/bin:/usr/bin:/bin;
 
 if ($ENV{'REQUEST_METHOD'} =~ /^(HEAD|GET|POST)$/) {
-       $method=$1;
+       $method = $1;
 }
 else{
-       exit failpage("Status: 405 Method Not Allowed\nAllow: GET, POST, HEAD\n","405 Method Not Allowed","The interface does not support the $ENV{'REQUEST_METHOD'} method.",$method);
+       exit fail_method($ENV{'REQUEST_METHOD'}, ['GET', 'POST', 'HEAD']);
 }
 
-%http = gethttpheader (\%ENV);
-%cgi = getcgi($ENV{'QUERY_STRING'});
+%http = read_header_env(\%ENV);
+%cgi = url_query_decode($ENV{'QUERY_STRING'});
 
 if ($method eq 'POST') {
        if ($http{'content-type'} eq 'application/x-www-form-urlencoded') {
-               my %cgipost=getcgi( <STDIN> );
-               foreach my $ind (keys %cgipost) {
-                       $cgi{$ind}=$cgipost{$ind};
-               }
+               my %cgi_post = url_query_decode( <STDIN> );
+               %cgi = merge_settings(\%cgi, \%cgi_post);
        }
        # multipart not supported
        else{
-               exit failpage("Status: 415 Unsupported Media Type\n","415 Unsupported Media Type","Unsupported Content-type: $http{'content-type'}.");
+               exit fail_content_type($method, $http{'content-type'});
        }
 }
 
-if ($cgi{'p'} =~ /^(.+)$/) {
-       $password=$1;
-}
-else {
-       $password='';
+$no_cgi = (scalar (keys %cgi) == 0);
+
+if ($no_cgi) {
+       if (_x_encoded('-f', WWW_GOTO_PATH())) {
+               exit redirect($method, CGI_LIST_PATH());
+       }
 }
 
-%settings=readdatafile(DATA_SETTINGS_PATH);
-%state=readdatafile(DATA_STATE_PATH);
-%gotolist=readdatafile(DATA_LIST_PATH);
+$password = get_password(\%cgi);
 
-if($password eq $settings{'password'}){
-       $passwordOK = 1;
-}
-else{
-       $passwordOK = 0;
-}
+%settings  = read_data_file(DATA_SETTINGS_PATH());
+%state     = read_data_file(DATA_STATE_PATH());
+%goto_list = read_data_file(DATA_LIST_PATH());
+
+$password_ok = ($password eq $settings{'password'});
 
-print "Content-type: text/html\n";
+print "Content-type: text/html; charset=UTF-8\n";
 print "\n";
 if($method eq 'HEAD') {
        exit;
 }
 
-print '<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "">'."\n";
-print '<html lang="en"><head>'."\n";
-print '<title>GOTO &bull; '.entityencode($settings{'story'}).' &bull; '.WEBSITE_NAME.'</title>'."\n";
-print '<meta http-equiv="Content-type" content="text/html; charset=UTF-8">'."\n";
-print '<link rel="icon" type="image/png" href="'.FAVICON_PATH.'">'."\n";
-print '<link rel="stylesheet" href="'.CGI_CSS_PATH.'">'."\n";
-print '</head><body>'."\n";
-print '<a href="/"><img id="botmlogo" src="'.CGI_LOGO_PATH.'" alt="'.WEBSITE.'"></a>'."\n";
-print '<div id="all">'."\n";
-
-print '<div id="inst" class="ins">'."\n";
-
-print '<div id="title">'."\n";
-print '<H1 id="titletext">'.entityencode($settings{'story'}).'</H1>'."\n";
-print '</div>'."\n";
-
-print '</div><div id="insb" class="ins">'."\n";
-
-print '<div id="chat">'."\n";
-
-$last=int($state{'last'});
-$ongstate=int($state{'state'});
-for ($frame=0; ; ++$frame) {
-       if((($frame > $last) || $ongstate<1) && !$passwordOK) {
-               last;
-       }
-       
-       $ongtime=$gotolist{'ongtime-'.$frame};
-       $title=$gotolist{'title-'.$frame};
-       if ($ongtime eq '') {
-               last;
-       }
-       @timetab=gmtime($ongtime);
-       
-       print '<span class="'.(($frame==$last && int($state{'state'}<2))?'ni':'br').'">'.sprintf('%03d',$frame).'</span> '.sprintf('%02d.%02d.%02d %02d:%02d',$timetab[3],$timetab[4]+1,$timetab[5]-100,$timetab[2],$timetab[1]).' <a href="'.CGI_VIEWER_PATH.'/'.$frame.($passwordOK?('?p='.urlencode($password)):'').'">'.entityencode($title).'</a><br>'."\n";
-}
-
-print '</div>'."\n";
-
-print '<div id="underlinks">'."\n";
-
-print '<a href="'.CGI_PATH.'">BSTA</a>'."\n";
-
-print '</div>'."\n";
-
-print '</div>'."\n";
-
-print '</div>'."\n";
-print '<a href="/" class="cz">'.WEBSITE.'</a>'."\n";
-
-
-print '</body></html>'."\n";
-
-
-
-
-
-
+print_goto(
+       \*STDOUT,
+       \%state,
+       \%settings,
+       \%goto_list,
+       $password_ok
+);