]> bicyclesonthemoon.info Git - ott/bsta/blobdiff - reset.1.pl
update static page after comment
[ott/bsta] / reset.1.pl
index 998096a0f25be5873db451e7dc880386a3ff3343..9e2dfccc734f6efea4f55b31a50fdbd23ab243cb 100644 (file)
@@ -4,7 +4,7 @@
 #
 # Reset BSTA state
 #
-# Copyright (C) 2016 - 2018, 2023  Balthasar Szczepański
+# Copyright (C) 2016, 2017, 2018, 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(writedatafile);
+use botm_common (
+       'read_data_file', 'write_data_file',
+       'opendir_encoded', 'readdir_decoded', 'unlink_encoded',
+       'join_path'
+);
+use bsta_lib (
+       'STATE', 'INTF_STATE', 'CHAT_STATE',
+       'write_index'
+);
+
+binmode STDIN,  ':encoding(UTF-8)';
+binmode STDOUT, ':encoding(UTF-8)';
+binmode STDERR, ':encoding(UTF-8)';
+decode_argv();
 
-###PERL_CGI_PATH:           CGI_PATH           = /bsta/
+###PERL_PATH_SEPARATOR:     PATH_SEPARATOR     = /
 
 ###PERL_DATA_CHAT_PATH:     DATA_CHAT_PATH     = /botm/data/bsta/chat
+###PERL_DATA_LIST_PATH:     DATA_LIST_PATH     = /botm/data/bsta/list
+###PERL_DATA_SETTINGS_PATH: DATA_SETTINGS_PATH = /botm/data/bsta/state
 ###PERL_DATA_STATE_PATH:    DATA_STATE_PATH    = /botm/data/bsta/state
 ###PERL_DATA_STORY_PATH:    DATA_STORY_PATH    = /botm/data/bsta/story
+###PERL_DATA_WORDS_PATH:    DATA_WORDS_PATH    = /botm/data/bsta/words/
 
-###PERL_WWW_INDEX_PATH:     WWW_INDEX_PATH     = /botm/www/1190/bsta/index.htm
+###PERL_RESET_PASSWORD:     RESET_PASSWORD     = ''
 
-###PERL_WEBSITE:            WEBSITE            = 1190.bicyclesonthemoon.info
+my %story;
+my %state;
+my %chat;
+my %settings;
+my %goto_list;
 
-###PERL_COIN_DATE:          COIN_DATE          = 13-Nov-2016 22:15
-###PERL_INTF_DATE:          INTF_DATE          = 28-Sep-2016 20:34
+delete @ENV{qw(IFS CDPATH ENV BASH_ENV)};
+###PERL_SET_PATH: $ENV{'PATH'} = /usr/local/bin:/usr/bin:/bin;
 
-my %story = (
-       'id'      => '0',
-       'letter'  => '',
-       'lastip'  => '0.0.0.0',
-       'content' => '',
-       'pass'    => '0',
-       'state'   => '0'
-);
-my %state = (
-       'state' => '0',
-       'last'  => '0',
+%settings = read_data_file(DATA_SETTINGS_PATH());
+unless (
+       ($ARGV[0] ne '') && (
+               ($ARGV[0] eq $settings{'password'}) ||
+               ($ARGV[0] eq RESET_PASSWORD())
+       )
+) {
+       print STDERR "Wrong password; no reset.\n";
+       exit 1;
+}
+
+%state = (
+       'state' => STATE->{'inactive'},
+       'last'  => 0,
        'ongtime' => '',
        'nextong' => '',
        'ip1' => '',
        'ip2' => '',
        'ip3' => ''
 );
-my %chat = (
-       'id'      => '0',
-       'state'   => '0',
+%story = (
+       'id'      => 0,
+       'letter'  => '',
+       'lastip'  => '0.0.0.0',
+       'content' => '',
+       'pass'    => 0,
+       'state'   => INTF_STATE->{'X'}
+);
+%chat = (
+       'id'      => 0,
+       'state'   => CHAT_STATE->{'disconnected'},
        'content' => ''
 );
+%goto_list = (
+);
 
-delete @ENV{qw(IFS CDPATH ENV BASH_ENV)};
-###PERL_SET_PATH: $ENV{'PATH'} = /usr/local/bin:/usr/bin:/bin;
-
-writedatafile(DATA_STATE_PATH,%state);
-writedatafile(DATA_STORY_PATH,%story);
-writedatafile(DATA_CHAT_PATH,%chat);
+write_data_file(DATA_STATE_PATH(), \%state);
+write_data_file(DATA_STORY_PATH(), \%story);
+write_data_file(DATA_CHAT_PATH() , \%chat);
+write_data_file(DATA_LIST_PATH() , \%goto_list);
 
-writeindex(WWW_INDEX_PATH);
+write_index(
+       \%state,
+       \%settings,
+       $story{'pass'},
+       $story{'state'},
+       0 # pause
+);
 
-#function borrowed from 2words.pl - keep consistent!
-sub writeindex {
-       (my $indexpath) = @_;
-       my $indexfile;
-       my $indexof;
-               
-       if(ref($indexpath)) {
-               $indexfile=$indexpath;
-               unless (seek($indexfile, 0, 0)) {
-                       return 0;
-               }
-       }
-       else {
-               unless (open ($indexfile, ">", $indexpath)) {
-                       return 0;
+if (opendir_encoded(my $dir, DATA_WORDS_PATH())) {
+       while (my $file_name = readdir_decoded($dir)) {
+               if ($file_name !~ /^[0-9]+$/) {
+                       next;
                }
+               my $full_path = join_path(PATH_SEPARATOR(), DATA_WORDS_PATH(), $file_name);
+               unlink_encoded ($full_path);
        }
-       
-       $indexof = CGI_PATH;
-       $indexof =~ s/\/$//g;
-       
-       print $indexfile '<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN">'."\n";
-       print $indexfile '<html>'."\n";
-       print $indexfile ' <head>'."\n";
-       print $indexfile '  <title>Index of '.$indexof.'</title>'."\n";
-       print $indexfile ' </head>'."\n";
-       print $indexfile ' <body>'."\n";
-       print $indexfile '<h1>Index of '.$indexof.'</h1>'."\n";
-       print $indexfile '<table><tr><th><img src="/icons/blank.gif" alt="[ICO]"></th><th><a href="?C=N;O=D">Name</a></th><th><a href="?C=M;O=A">Last modified</a></th><th><a href="?C=S;O=A">Size</a></th><th><a href="?C=D;O=A">Description</a></th></tr><tr><th colspan="5"><hr></th></tr>'."\n";
-       print $indexfile '<tr><td valign="top"><img src="/icons/back.gif" alt="[DIR]"></td><td><a href="/">Parent Directory</a></td><td>&nbsp;</td><td align="right">  - </td><td>&nbsp;</td></tr>'."\n";
-       print $indexfile '<tr><td valign="top"><img src="/icons/folder.gif" alt="[DIR]"></td><td><a href="2words/">2words/</a></td><td align="right">'.INTF_DATE.'  </td><td align="right">  - </td><td>&nbsp;</td></tr>'."\n";
-       print $indexfile '<tr><td valign="top"><img src="/icons/folder.gif" alt="[DIR]"></td><td><a href="coin/">coin/</a></td><td align="right">'.COIN_DATE.'  </td><td align="right">  - </td><td> Coincidence </td></tr>'."\n";
-       print $indexfile '<tr><th colspan="5"><hr></th></tr>'."\n";
-       print $indexfile '</table>'."\n";
-       print $indexfile '<address>Apache/2.2.22 (Debian) Server at '.WEBSITE.' Port 80</address>'."\n";
-       print $indexfile '</body></html>'."\n";
-       
-       
-       unless (ref($indexpath)) {
-               close ($indexfile);
-       }
-       else {
-               truncate ($indexfile , tell($indexfile));
-       }
-       
-       return 1;
 }