]> bicyclesonthemoon.info Git - ott/bsta/blobdiff - viewer.1.pl
update static page after comment
[ott/bsta] / viewer.1.pl
index 9205be6ddab2a9227aaea22991ad98153b6db3da..33c90edcb079ba8a18b60a3830160fbc3515ffbe 100644 (file)
@@ -5,7 +5,7 @@
 #
 # The viewer interface
 #
-# Copyright (C) 2016-2017, 2019-2020, 2023  Balthasar Szczepański
+# Copyright (C) 2016, 2017, 2019, 2020, 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
@@ -27,31 +27,32 @@ use Encode ('encode', 'decode');
 
 ###PERL_LIB: use lib /botm/lib/bsta
 use botm_common (
+       'HTTP_STATUS',
        'read_header_env',
        'read_data_file', 'write_data_file',
        'url_query_decode',
-       'join_path'
+       'join_path',
+       'open_encoded',
+       'http_header_status',
 );
 use bsta_lib (
        'STATE', 'TEXT_MODE', 'INTF_STATE',
        'fail_method', 'fail_content_type',
        'get_remote_addr', 'get_frame', 'get_password',
        'merge_settings',
-       'print_viewer_page', 'write_index'
+       'print_viewer_page', 'write_index',
+       'ong'
 );
-use File::Copy;
 
 ###PERL_PATH_SEPARATOR:     PATH_SEPARATOR     = /
 
 ###PERL_DATA_PATH:          DATA_PATH          = /botm/data/bsta/
 ###PERL_DATA_DEFAULT_PATH:  DATA_DEFAULT_PATH  = /botm/data/bsta/default
-###PERL_DATA_LIST_PATH:     DATA_LIST_PATH     = /botm/data/bsta/list
 ###PERL_DATA_NOACCESS_PATH: DATA_NOACCESS_PATH = /botm/data/bsta/noaccess
 ###PERL_DATA_SETTINGS_PATH: DATA_SETTINGS_PATH = /botm/data/bsta/settings
 ###PERL_DATA_STATE_PATH:    DATA_STATE_PATH    = /botm/data/bsta/state
 ###PERL_DATA_STORY_PATH:    DATA_STORY_PATH    = /botm/data/bsta/story
-
-###PERL_WWW_PATH:           WWW_PATH           = /botm/www/1190/bsta/
+###PERL_DATA_WORDS_PATH:    DATA_WORDS_PATH    = /botm/data/bsta/words/
 
 binmode STDIN,  ':encoding(UTF-8)';
 binmode STDOUT, ':encoding(UTF-8)';
@@ -64,16 +65,19 @@ srand ($time-$$);
 my %http;
 my %cgi;
 my %frame_data;
+my %prev_frame_data;
 my %next_frame_data;
 my %default;
 my %settings;
 my %state;
 my %new_state;
 my %goto_list;
+my %words_data;
 
 my $method;
 my $frame;
 my $frame_data_path;
+my $prev_frame_data_path;
 my $next_frame_data_path;
 my $password;
 my $password_ok;
@@ -81,10 +85,12 @@ my $IP;
 my $access;
 my $timer;
 my $timer_unlocked;
-my $state_file;
+my $fh;
 my $show_command;
 my $ongtime;
 my $text_mode;
+my $words_page;
+my $words_data_path;
 
 delete @ENV{qw(IFS CDPATH ENV BASH_ENV)};
 ###PERL_SET_PATH: $ENV{'PATH'} = /usr/local/bin:/usr/bin:/bin;
@@ -93,23 +99,23 @@ if ($ENV{'REQUEST_METHOD'} =~ /^(HEAD|GET|POST)$/) {
        $method = $1;
 }
 else{
-       exit fail_method($ENV{'REQUEST_METHOD'}, 'GET, POST, HEAD');
+       exit fail_method($ENV{'REQUEST_METHOD'}, ['GET', 'POST', 'HEAD']);
 }
 
 %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 %cgi_post=url_query_decode( <STDIN> );
-               foreach my $ind (keys %cgi_post) {
-                       $cgi{$ind} = $cgi_post{$ind};
-               }
+               my %cgi_post = url_query_decode( <STDIN> );
+               %cgi = merge_settings(\%cgi, \%cgi_post);
        }
        # multipart not supported
        else{
-               exit fail_content_type($http{'content-type'}, $method);
+               exit fail_content_type($method, $http{'content-type'});
        }
 }
+
 $IP = get_remote_addr();
 $frame = get_frame(\%cgi);
 $password = get_password(\%cgi);
@@ -125,10 +131,10 @@ if ($frame >= 0) {
 $password_ok = ($password eq $settings{'password'});
 
 # state & activation logic
-if (open ($state_file, "+<:encoding(UTF-8)", DATA_STATE_PATH())) {
-       if (flock($state_file, 2)) {
+if (open_encoded($fh, "+<:encoding(UTF-8)", DATA_STATE_PATH())) {
+       if (flock($fh, 2)) {
                
-               %state = read_data_file($state_file);
+               %state = read_data_file($fh);
                
                if ($frame < 0) {
                        $frame = int($state{'last'}) + $frame +1;
@@ -163,7 +169,7 @@ if (open ($state_file, "+<:encoding(UTF-8)", DATA_STATE_PATH())) {
                                else {
                                        $new_state{'state'} = STATE->{'ready'};
                                }
-                               write_data_file($state_file, '', '', \%new_state);
+                               write_data_file($fh, \%new_state);
                        }
                }
                elsif (
@@ -173,12 +179,10 @@ if (open ($state_file, "+<:encoding(UTF-8)", DATA_STATE_PATH())) {
                        # ready to activate?
                        # NOTE: at this point frame 0 is already ONGed.
                        my %story;
-                       my $frame_file;
-                       my $in_path;
-                       my $out_path;
+                       my $ong_time = int($settings{'firstongtime'});
+                       my $r;
                        
                        %story     = read_data_file(DATA_STORY_PATH());
-                       %goto_list = read_data_file(DATA_LIST_PATH);
                        
                        if (
                                (int($story{'state'}) == INTF_STATE->{'>|'} ) &&
@@ -186,10 +190,6 @@ if (open ($state_file, "+<:encoding(UTF-8)", DATA_STATE_PATH())) {
                        ) {
                                # conditions met; ACTIVATE!
                                
-                               # update ONG time of frame 1
-                               $frame_data{'ongtime'} = $time;
-                               write_data_file($frame_data_path, '', '', \%frame_data);
-                               
                                # set initial state
                                $state{'state'} = STATE->{'waiting'};
                                $state{'last'}  = 1; 
@@ -197,28 +197,28 @@ if (open ($state_file, "+<:encoding(UTF-8)", DATA_STATE_PATH())) {
                                $state{'ip2'}   = '0.0.0.0';
                                $state{'ip3'}   = '';
                                $state{'nextong'} = (int($time / 3600) + int($settings{'firstongtime'})) * 3600 ;
-                               $state{'ongtime'} = int($settings{'firstongtime'});
+                               $state{'ongtime'} = $ong_time;
                                
                                # prepare to ONG frame 1
                                
-                               # determine frame file & paths
-                               unless (defined($frame_data{'ext'})){
-                                       $frame_data{'ext'} = $default{'ext'};
+                               $r = ong(
+                                       1,         # frame ID
+                                       $time,     # ONG time,
+                                       $ong_time, # timer
+                                       0,         # update
+                                       0,         # print
+                                       \%settings,
+                                       \%default,
+                                       \%frame_data,
+                                       ''         # %goto_list
+                               );
+                               if ($r) {
+                                       $r = write_index(\%state, \%settings);
                                }
-                               $frame_file = sprintf($settings{'frame'}, $frame, $frame_data{'ext'});
-                               $in_path  = join_path(PATH_SEPARATOR(), DATA_PATH(), $frame_file);
-                               $out_path = join_path(PATH_SEPARATOR(), WWW_PATH(),  $frame_file);
-                               
-                               # update the GOTO list with frame 1
-                               $goto_list{'title-1'}   = $frame_data{'title'};
-                               $goto_list{'ongtime-1'} = $frame_data{'ongtime'};
-                               
-                               if (copy ($in_path, $out_path)) {
-                                       write_index(\%state, \%settings);
-                                       write_data_file($state_file,     '','', \%state);
-                                       write_data_file(DATA_LIST_PATH(),'','', \%goto_list);
+                               if ($r) {
+                                       $r = write_data_file($fh, \%state);
                                }
-                               else {
+                               unless ($r) {
                                        # FAILED ONG! Story as if it was inactive!
                                        $state{'state'} = STATE->{'inactive'};
                                }
@@ -229,19 +229,12 @@ if (open ($state_file, "+<:encoding(UTF-8)", DATA_STATE_PATH())) {
                # FAILED GET STATE! Story as if it was inactive!
                $state{'state'} = STATE->{'inactive'};
        }
-       close ($state_file);
+       close ($fh);
 }
 else {
        $state{'state'} = STATE->{'inactive'};
 }
 
-$next_frame_data_path = join_path(PATH_SEPARATOR(), DATA_PATH(), $frame+1);
-%next_frame_data = read_data_file($next_frame_data_path);
-
-# apply defaults
-%frame_data      = merge_settings(\%default,      \%frame_data);
-%next_frame_data = merge_settings(\%default, \%next_frame_data);
-
 $timer   = int($state{'nextong'}) - $time;
 $ongtime = int($state{'ongtime'});
 if($ongtime == 0) {
@@ -273,6 +266,16 @@ if (
                )
        ) {
        $access = 1;
+       if ($frame > 0) {
+               $prev_frame_data_path = join_path(PATH_SEPARATOR(), DATA_PATH(), $frame-1);
+               %prev_frame_data = read_data_file($prev_frame_data_path);
+       }
+       $next_frame_data_path = join_path(PATH_SEPARATOR(), DATA_PATH(), $frame+1);
+       %next_frame_data = read_data_file($next_frame_data_path);
+       
+       %frame_data      = merge_settings(\%default,      \%frame_data);
+       %prev_frame_data = merge_settings(\%default, \%prev_frame_data);
+       %next_frame_data = merge_settings(\%default, \%next_frame_data);
 }
 else {
        $access = 0;
@@ -282,15 +285,24 @@ else {
 }
 
 $text_mode = int($cgi{'b'});
-if($text_mode > 2) {
+if($text_mode > TEXT_MODE->{'words'}) {
        $text_mode = TEXT_MODE->{'normal'};
 }
+$words_page = int($cgi{'i'});
+
+$words_data_path = join_path(PATH_SEPARATOR(), DATA_WORDS_PATH(), $frame);
+%words_data = read_data_file(
+       $words_data_path, # file
+       '', # encoding
+       0,  # no header
+       ($text_mode != TEXT_MODE->{'words'}), # header only
+       1,  # as list
+);
 
-print "Content-type: text/html\n";
-if(!$access) {
-       print "Status: 403 Forbidden\n";
+if (!$access) {
+       print http_header_status(HTTP_STATUS->{'forbidden'});
 }
-print "\n";
+print "Content-type: text/html; charset=UTF-8\n\n";
 if($method eq 'HEAD') {
        exit;
 }
@@ -298,6 +310,7 @@ if($method eq 'HEAD') {
 print_viewer_page (
        \*STDOUT,
        {
+               'launch'        => 0,
                'frame'         => $frame,
                'access'        => $access,
                'password_ok'   => $password_ok,
@@ -306,9 +319,12 @@ print_viewer_page (
                'static'        => 0,
                'show_command'  => $show_command,
                'text_mode'     => $text_mode,
+               'words_page'    => $words_page
        },
        \%state,
        \%settings,
        \%frame_data,
-       \%next_frame_data
+       $access ? \%prev_frame_data : \%frame_data,
+       $access ? \%next_frame_data : \%frame_data,
+       \%words_data,
 );