File:  [Local Repository] / db / prgsrc / db.cgi
Revision 1.150: download - view: text, annotated - select for diffs - revision graph
Fri Nov 14 11:23:03 2008 UTC (15 years, 6 months ago) by roma7
Branches: MAIN
CVS tags: HEAD
Sync with live

    1: #!/usr/bin/perl -w
    2: 
    3: use DBI;
    4: use CGI ':all';
    5: #use strict;
    6: use Encode;
    7: my @softfields=("От Олега Степанова");
    8: use Time::Local;
    9: use Data::Dumper "Dumper";
   10: use URI::Escape;
   11: my $proxyredirect=1;
   12: use POSIX qw(locale_h);
   13: use locale;
   14: use vars qw($opt_z);
   15: use Getopt::Std;
   16: #my ($dbuser,$dbname,$dbpass,$dbhost);
   17: eval {require "dbdefs.pl";} ;
   18: my $url=url||'';
   19: my @used_stop=();
   20: my $showNearQuestions=0;
   21: $dbuser||="piataev";
   22: $dbname||="chgk";
   23: $dbpass||="";
   24: $dbhost||="localhost";
   25: getopts('z');
   26: $opt_z||=param("makehtml");
   27: my $timestamp="_timestamp.tmp";
   28: my $usehash=0;
   29: my $paramtour;
   30: my $withanswers=param('answer')||param('answers');
   31: open STDERR, ">/var/tmp/errors1";
   32: my $newsurl='http://news.chgk.info/';
   33: my $reklama="../dimrub/db/reklama.html";
   34: my $footer="../dimrub/db/footer.html";
   35: $footer="../../chgk/footer.html" if $url=~/zaba/;
   36: $reklama="../../chgk/reklama.html" if $url=~/zaba/;
   37: my $datefooter="../dimrub/db/date";
   38: $datefooter="../../chgk/date" if $url=~/zaba/;
   39: 
   40: my $fname;
   41: $reklama="../reklama.html" if $opt_z;
   42: $footer="../footer.html" if $opt_z;
   43: $datefooter="../date" if $opt_z;
   44: my $HTMLDIR="/znatoki/dimrub/db/baza/";
   45: $HTMLDIR="/files/";
   46: my $realHTMLDIR;
   47: if ($^O =~ /win/i) {
   48:  $realHTMLDIR="/html/znatoki/baza/";
   49: } else 
   50: {
   51:   $realHTMLDIR="/home/znatoki/chgk-db/public_html/dimrub/db/files/";
   52: }
   53: 
   54: 
   55: my $usehtml=$opt_z||0;
   56: $usehtml=1;
   57: $usehtml=0 if $url=~/zaba/ || $url=~/localhost/;
   58: 
   59: my $usewas=0;
   60: my $cashednumber=500;
   61: my $outputnumber=10;
   62: my ($proxyptext,$proxysstr);
   63: my $printqueries=0;
   64: my $qs=query_string;
   65: my $globaloutput;
   66: my %forbidden=();
   67: my $debug=0; #added by R7
   68: my $metod=param('metod')||'';
   69: my $outputkvo=param('kvo') ||$outputnumber;
   70: $outputkvo=100 if $outputkvo>100;
   71: 
   72: if (param('debug')) {$debug=1; $printqueries=1}
   73: *STDERR=*STDOUT if $debug;
   74: if ($url !~ /db\.chgk\.info/ && $url !~ /localhost/ && $url !~ /bilbo/ && $url !~ /zaba/ && $url !~ /question\.chgk\.info/ ) {
   75:    my $u="http://db.chgk.info/cgi-bin/db.cgi?$qs";
   76:    Redirect ($u);
   77:    exit;
   78: }
   79: 
   80: if ($proxyredirect && $metod=~/proxy/ && $url !~ /localhost/ && $url !~ /bilbo/ && $url !~ /zaba/) {
   81:    my $u="http://chgk.zaba.ru/cgi-bin/db.cgi?$qs";
   82:    Redirect ($u);
   83:    exit;
   84: }
   85: 
   86: #if (!param('sstr') && param('all')) {
   87: #	   my $destination='http://db.chgk.info/all.html';
   88: #		Redirect($destination);
   89: #                exit;
   90: #}
   91: my $thislocale;
   92: if ($^O =~ /win/i) {
   93: 	$thislocale = "Russian_Russia.20866";
   94: } else {
   95: 	$thislocale = "ru_RU.KOI8-R";
   96: }
   97: POSIX::setlocale( &POSIX::LC_ALL, $thislocale );
   98: 
   99: if ((uc 'а') ne 'А') {print STDERR "Koi8-r locale not installed!\n"};
  100: 
  101: my %fieldname= (0,'Question', 1, 'Answer', 2, 'PassCriteria', 3, 'Comments', 4, 'Authors', 5, 'Sources');
  102: my %rusfieldname=('Question','Вопрос', 'Answer', 'Ответ', 'PassCriteria','Зачёт',
  103:                   'Comments', 'Комментарии', 'Authors', 'Автор', 
  104:                   'Sources', 'Источник','old','Старый','rus','Новый',
  105:                   'chgk', 'ЧГК', 'brain', 'Брейн-ринг','game', 'Своя игра', 
  106:                   'ehruditka', 'Эрудитка', 'beskrylka', 'Бескрылка', 'igp', 'Интернет'
  107: );
  108: my %searchin;
  109: my $rl=qr/[йцукенгшщзхъфывапролджэячсмитьбюё]/;
  110: my $RL=qr/[ЙЦУКЕНГШЩЗХЪЭЖДЛОРПАВЫФЯЧСМИТЬБЮЁ]/;
  111: my $RLrl=qr/(?:(?:${rl})|(?:${RL}))+/;
  112: my $l=qr/(?:(?:${RLrl})|(?:[\w\-]))+/;
  113: my $Ll=qr/(?:[A-Z])|(?:${RL})/;
  114: my %metodchar=('rus',1,'old',2);
  115: 
  116: 
  117: 
  118: 
  119: $searchin{$_}=1 foreach param('searchin');
  120: my %TypeName=('children'=>'Д', 'game'=>'Я', 'igp'=>'И',
  121:               'chgk'=>'Ч', 'brain'=>'Б', 'beskrylka'=>'Л','ehruditka'=>'Э');
  122: 
  123: 
  124: sub countz {
  125:   my ($dbh,$type)=@_;
  126:   
  127:   my $sth=$dbh->prepare("select count(*) from Questions where Type LIKE '%$type%'");
  128:   $sth->execute();
  129:   my ($tmp)=$sth->fetchrow();
  130:   return $tmp;
  131: }
  132: 
  133: my $all=param('all');
  134: $all=0 if lc $all eq 'no';
  135: my ($PWD) = `pwd` if $^O!~/win/i;
  136: chomp $PWD if $PWD;
  137: my ($SRCPATH) = "/home/db-chgk/public_html/dimrub/src";
  138: my ($ZIP) = "/usr/bin/zip";
  139: my $DUMPFILE = "/tmp/chgkdump";
  140: my ($SENDMAIL) = "/usr/sbin/sendmail";
  141: my ($TMPDIR) = "/var/tmp";
  142: my ($TMSECS) = 30*24*60*60;
  143: my (%RevMonths) =
  144: 	('Jan', '0', 'Feb', '1', 'Mar', '2', 'Apr', '3', 'May', '4', 'Jun', '5',
  145: 	'Jul', '6', 'Aug', '7', 'Sep', '8', 'Oct', '9', 'Nov', '10',
  146: 	'Dec', '11',
  147: 	 'Янв', '0', 'Фев', 1, 'Мар', 2, 'Апр', 3, 'Май', '4',
  148: 	 'Июн', '5', 'Июл', 6, 'Авг', '7', 'Сен', '8',
  149: 	 'Окт', '9', 'Ноя', '19', 'Дек', '11');
  150: my @months=('000','Jan',"Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct",
  151:           "Nov","Dec");
  152: 
  153: 
  154: # Determine whether the given time is within 2 months from now.
  155: sub NewEnough {
  156: 	my ($a) = @_;
  157: 	my ($year, $month, $day) = split('-', $a);
  158: 	$month=1 if ($month<=0);
  159: 	$day=1 if ($day<=0);
  160: 	return (time - timelocal(0, 0, 0, $day, $month -1, $year) < $TMSECS);
  161: }
  162: 
  163: # Reads one question from the DB. Gets DB handler and Question ID.
  164: 
  165: sub Redirect {
  166: my ($destination) = @_;
  167: print header.<<EndOfHTML;
  168: <head><meta http-equiv="refresh" content="0; URL=$destination"></head>
  169: EndOfHTML
  170: ;
  171: =head
  172: 
  173: print <<EndOfHTML;
  174: Content-type: text/html
  175: Location: $destination
  176: 
  177: <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
  178: <HTML><HEAD><TITLE>Redirection</TITLE></HEAD>
  179: <BODY BGCOLOR="#FFFFFF">
  180: <H1>Redirection</H1>
  181: <P>It appears that your browser cannot handle redirections
  182: automatically. You can proceed to the randomly-selected page 
  183: by clicking <A HREF="$destination">here</A>.</P>
  184: </BODY>
  185: </HTML>
  186: EndOfHTML
  187: ;
  188: =cut
  189: }
  190: 
  191: 
  192: 
  193: 
  194: sub GetTournament {
  195: 	my ($dbh, $Id) = @_;
  196: 	my (%Tournament, $field, @arr);
  197: 
  198: 	return %Tournament if ($Id == 0);
  199: 
  200: 	my ($sth) = $dbh->prepare("SELECT * FROM Tournaments WHERE Id=$Id");
  201: 	$sth->execute;
  202: 
  203: 	@arr = $sth->fetchrow;
  204: 	my($i, $name) = 0;
  205: 	foreach $name (@{$sth->{NAME}}) {
  206: 		$Tournament{$name} = $arr[$i++];
  207: 	}
  208:         $sth->finish;
  209: 	return %Tournament;
  210: }
  211: 
  212: sub fetchquestion {
  213: 	my ($sth,$q,$WithTour)=@_;
  214: 	if ($WithTour) {
  215: 		($$q{'QuestionId'}, $$q{'Question'},$$q{'Answer'},$$q{'PassCriteria'},$$q{'Comments'},$$q{'Authors'},$$q{'Sources'},
  216:          	$$q{'Number'}, 
  217:          	$$q{'Title'}, $$q{'TourTitle'}, $$q{'FileName'},$$q{'PlayedAt'},$$q{'TourNumber'}) = 
  218: 	        $sth->fetchrow;
  219: 	} else {
  220: 		($$q{'QuestionId'}, $$q{'Question'},$$q{'Answer'},$$q{'PassCriteria'},$$q{'Comments'},$$q{'Authors'},$$q{'Sources'},
  221:          	$$q{'Number'})= 
  222: 	        $sth->fetchrow;
  223: 	}
  224: }
  225: 
  226: 
  227: 
  228: 
  229: sub SelectQuestions {
  230:   	my ($dbh,$q,$WithTour) = @_;
  231:   	my %q=();
  232: #	$_ = "QuestionId=$_" foreach @$q;
  233: #	my $where=join " OR ",@$q;
  234:         my $where=join ',',@$q;
  235:         $where &&= "QuestionId IN (".(join ',',$where).")";
  236: 	$where||=1;
  237: 	$where="($where) AND Questions.ParentId=t1.Id AND t1.ParentId=t2.Id" 
  238: 		if $WithTour;
  239: 
  240: 	my $query;
  241: 	if ($WithTour) {
  242:  		$query="SELECT QuestionId, Questions.Question, Answer, PassCriteria, Comments, Authors, Sources,
  243:                         Questions.Number
  244: 			, t2.Title, t1.Title, t2.FileName,  t2.PlayedAt,t1.Number
  245: 			from Questions,Tournaments as t1, Tournaments as t2 
  246:                         WHERE $where";
  247: 	} else {
  248:  		$query="SELECT QuestionId, Questions.Question, Answer, PassCriteria, Comments, Authors, Sources,
  249:                         Questions.Number from Questions 
  250:                         WHERE $where";
  251: 	}
  252: 
  253: 	my $sth;
  254: 	$sth=$dbh->prepare($query);
  255: 	$sth->execute;
  256: 	return $sth;
  257: }
  258: 
  259: 
  260: # Reads one question from the DB. Gets DB handler and Question ID.
  261: sub GetQuestion {
  262: 	my ($dbh, $QuestionId) = @_;
  263: 	my (%Question, $field, @arr);
  264: 
  265: 	my($sth) = $dbh->prepare("
  266: 		SELECT * FROM Questions WHERE QuestionId=$QuestionId
  267: 	");
  268: 
  269: 	$sth->execute;
  270: 
  271: 	@arr = $sth->fetchrow;
  272: 	my($i, $name) = 0;
  273: 	foreach $name (@{$sth->{NAME}}) {
  274: 		$Question{$name} = $arr[$i++];
  275: 	}
  276: 
  277:         $sth->finish;
  278: 	return %Question;
  279: }
  280: 
  281: sub tourhref {
  282:    my ($t,$a,$gr)=@_;
  283:    my $res;
  284:    if ($usehtml) {
  285:    	$res=$t;
  286: 	$res=~s/\-q$//;
  287: 	$res=~s/\-a$//;
  288:    	$res.=$a?"-a":"-q" unless $gr;
  289:    	$res.=".html";
  290:    	$res=~s/(\#\d+)(.*)$/$2$1/;
  291:         my $t=$res;
  292:         $t=~s/\#.*$//;
  293: #   	$res=~s/\.1// unless $gr ||$res=~/\.\d+$/;#-e "$realHTMLDIR$t";
  294:         $t=$res;
  295:         $t=~s/\#.*$//;
  296: #   	$res=~s/\.html/-q\.html/ unless -e "$realHTMLDIR$t";
  297:    	$res="$HTMLDIR$res" unless $opt_z;
  298:       	return $res;
  299:    } else {
  300:    	$res=$url;
  301:    	$res.=$a?"?answers=1&":"?";
  302:    	$res.="tour=$t";
  303: 
  304:       	return $res;
  305:    }
  306: 
  307: }
  308: 
  309: # Gets numbers of all the questions from the given tour.
  310: sub GetTourQuestions {
  311: 	my ($dbh, $ParentId) = @_;
  312: 	my (@arr, @Questions);
  313: 	my ($sth) = $dbh->prepare("SELECT QuestionId FROM Questions
  314: 		WHERE ParentId=$ParentId order by Number");
  315: 
  316: 	$sth->execute;
  317: 
  318: 	while (@arr = $sth->fetchrow) {
  319: 		push @Questions, $arr[0];
  320: 	}
  321: 
  322:         $sth->finish;
  323: 	return @Questions;
  324: }
  325: 
  326: # Returns list of children of the given tournament.
  327: sub GetTours {
  328: 	my ($dbh, $ParentId) = @_;
  329: 	my (@arr, @Tours);
  330: 
  331: 	my ($sth) = $dbh->prepare("SELECT Id FROM Tournaments
  332: 		WHERE ParentId=$ParentId ORDER BY Id");
  333: 
  334: 	$sth->execute;
  335: 
  336: 	while (@arr = $sth->fetchrow) {
  337: 		push @Tours, $arr[0];
  338: 	}
  339:         $sth->finish;
  340: 	return @Tours;
  341: }
  342: 
  343: sub count
  344: {
  345:   my ($dbh,$word)=@_; 
  346:   $word=$dbh->quote(uc $word);
  347:   my $query="SELECT number from nests,nf where $word=w1 AND w2=nf.id";
  348:   my $sth=$dbh->prepare($query);
  349:   $sth->execute;
  350:   my @a=$sth->fetchrow;
  351:   $sth->finish;
  352:   $a[0]||0;
  353: }
  354: 
  355: 
  356: sub printform
  357: {
  358: 
  359:   my $qnumber=("&nbsp;"x10)."Выводить по 
  360:   <input type=\"text\" name=\"kvo\" value=$outputkvo size=\"3\" maxlength=\"5\">";
  361: #textfield(-name=>'kvo',
  362: #                         -default=>6,
  363: #                         -size=>3,
  364: #                         -maxlength=>5)." вопросов";
  365:   my $sstr=param('sstr');
  366:   my @df=keys %searchin;
  367:   my %checked;
  368:   $checked{lc $_}="" foreach ('Question','Answer','PassCriteria','Comments','Authors','Sources','old','rus',
  369:       'chgk','brain','igp','game','ehruditka','beskrylka');
  370:   @df=('Question', 'Answer') unless @df;
  371:   $checked{lc $_}="checked" foreach @df;
  372:   my $fields=checkbox_group('searchin',['Question','Answer','PassCriteria','Comments','Authors','Sources'], [@df],
  373:              'false',\%rusfieldname);
  374:   @df=param('type');
  375:   @df=('chgk','brain','igp','game','ehruditka','beskrylka') unless @df;
  376:   $checked{lc $_}="checked" foreach @df;
  377:   my $all=param('all') && param('all') eq 'yes';
  378: 
  379:   $checked{'all'}=$all?"checked":"";
  380:   $checked{'any'}=$all?"":"checked";
  381:   $checked{lc param('metod')}="checked";
  382:   $checked{'rus'}=1 unless $checked{'rus'} || $checked{'old'};
  383: 
  384: #################################################
  385: return   
  386: <<EOT
  387: <form method="get" enctype="application/x-www-form-urlencoded"
  388: action="/znatoki/cgi-bin/db.cgi">
  389: <h2>Поиск в базе вопросов</h2>
  390: 
  391: <input type="text" name="sstr" value="$sstr" size="30" maxlength="50"> 
  392: <input type="submit" value="Поиск"> $qnumber
  393: <p>
  394: 
  395: <table border="1" cellpadding=4 cellspacing=0>
  396: <tr>
  397: <th align="left" rowspan=3 width="20%"> Вариант поиска:
  398: </td><td rowspan=2 colspan=3>
  399: <input type="radio" $checked{'old'} name="metod" value="old"> Простой (старый)
  400: </td><td>
  401: <input type="checkbox" $checked{'chgk'} name="type" value="chgk">&nbsp;"Что?&nbsp;Где?&nbsp;Когда?"
  402: </td><td><nobr>
  403: <input type="checkbox" $checked{'brain'} name="type" value="brain">&nbsp;"Брейн-Ринг"</nobr>
  404: </td><td>
  405: <input type="checkbox" $checked{'igp'} name="type" value="igp">&nbsp;"Интернет"
  406: </td>
  407: </tr><tr>
  408: <td>
  409: <input type="checkbox" $checked{'game'} name="type" value="game">&nbsp;"Своя&nbsp;игра"
  410: </td><td>
  411: <input type="checkbox"  $checked{'ehruditka'} name="type" value="ehruditka">&nbsp;"Эрудитка"
  412: </td><td>
  413: <input type="checkbox" $checked{'beskrylka'} name="type" value="beskrylka">&nbsp;"Бескрылка"
  414: </td>
  415: </tr><tr>
  416: <td colspan=6><input type="radio" $checked{'rus'} name="metod" value="rus"> Расширенный (с учетом грамматики, в вопросах всех типов)
  417: </td>
  418: </tr><tr>
  419: <th align="left">Искать:
  420: </td><td colspan=3>
  421: <input type="radio" $checked{'all'} name="all" value="yes">Все слова
  422: </td><td colspan=3>
  423: <input type="radio" $checked{'any'} name="all" value="no">Любое слово
  424: </td>
  425: </tr><tr>
  426: <th align="left">Поля для поиска:
  427: </td><td width="15%">
  428: <input type="checkbox" name="searchin" value="Question" $checked{'question'}>Вопрос
  429: </td><td width="15%">
  430: <input type="checkbox" name="searchin" value="Answer" $checked{'answer'}>Ответ<br> 
  431: </td><td width="15%">
  432: <input type="checkbox" name="searchin" value="PassCriteria" $checked{'passcriteria'}>Зачёт<br> 
  433: </td><td width="15%">
  434: <input type="checkbox" name="searchin" value="Comments" $checked{'comments'}>Комментарии<br> 
  435: </td><td width="15%">
  436: <input type="checkbox" name="searchin" value="Authors" $checked{'authors'}>Автор<br>
  437: </td><td width="15%">
  438: <input type="checkbox" name="searchin" value="Sources" $checked{'sources'}>Источник<br>
  439: </td>
  440: </tr>
  441: </table>
  442: <!--p><i>Если при попытке поиска выдаётся сообщение об ошибке, 
  443: попробуйте воспользоваться 
  444: <a href="http://chgk.zaba.ru/search.html">зеркалом базы</a></i-->
  445: </center>
  446: 
  447: EOT
  448: .endform
  449: .hr
  450: 
  451: }
  452: 
  453: sub proxy
  454: {     
  455:       my ($dbh,$ptext,$allnf)=@_;
  456:       my $sstr=makeproxysstr($dbh,$ptext,$allnf);
  457:       return russearch($dbh,$sstr,0,$allnf);
  458: }
  459: 
  460: sub makeproxysstr {
  461:       my ($dbh,$ptext)=@_;
  462:       my $text=$$ptext;
  463:       POSIX::setlocale( &POSIX::LC_ALL, $thislocale );
  464:       $text=~tr/ёЁ/еЕ/;
  465:       $text=~s/(${RLrl})p(${RLrl})/$1p$2/gom;
  466:       $text=~s/p(${RLrl})/р$1/gom;
  467:       $text=~s/(${RLrl})p/$1р/gom;
  468:       $text=~s/\s+/ /gmo;
  469:       $text=~s/[^йцукенгшщзхъфывапролджэячсмитьбюЙЦУКЕНГШЩЗХЪФЫВАПРОЛДЖЭЯЧСМИТЬБЮQWERTYUIOPASDFGHJKLZXCVBNM0-9]/ /g;
  470:       $text=uc $text;
  471:       my @list= $text=~m/(?:(?:${RLrl})+)|(?:[A-Za-z0-9]+)/gom;
  472: 
  473:       my (%c, %good,$sstr);
  474:       foreach (@list)
  475:       {
  476:            $c{$_}=count($dbh,$_)||10000;
  477:       }
  478:       my @words=sort {$c{$a}<=> $c{$b}} @list;
  479: 
  480: #      $good{$words[$_]}=1 foreach 0..4;
  481:       foreach (@words)
  482:       {
  483:          $good{$_}=1 if $c{$_}<200 && length $_>2;
  484:       }
  485: 
  486:       $good{$words[$_]}=0 foreach 16..$#words;
  487: 
  488:       $sstr.=" $_" foreach grep {$good{$_}} @list;
  489:       $$ptext=$sstr;
  490:       return $sstr;
  491: }
  492: 
  493: 
  494: sub russearch {
  495:             my ($dbh, $sstr, $all,$allnf)=@_;
  496:             my (@qw,@w,@tasks,$qw,@arr,$nf,$sth,@nf,$w,$where,$e,@where,%good,$i,%where,$from);
  497:             my($number,@good,$t,$task,@rho,$rank,%rank,$r2,$r1,$word,$n,@last,$good,@words,%number,$taskid);
  498:             my ($hi, $lo, $wordnumber,$query,$blob,$field,$sf,$ii);
  499:             my @frequence;
  500:             my (@arr1,@ar,@sf,@arr2);
  501: 	    my %tasks;
  502: 	    my $tasks;
  503: 	    my @verybad;
  504: 	    my %nf;
  505:             my %tasksof;
  506:             my %wordsof;
  507:             my %relevance;
  508:             my @blob;
  509:             my %count;
  510:             my %stop_word;
  511: 	POSIX::setlocale( &POSIX::LC_ALL, $thislocale );
  512: $sstr=~tr/йцукенгшщзхъфывапролджэячсмитьбю/ЙЦУКЕНГШЩЗХЪФЫВАПРОЛДЖЭЯЧСМИТЬБЮ/;
  513: #    	    @qw=@w =split (' ', uc $sstr);
  514:             my $ts=uc $sstr;
  515:       	    @qw=@w= $ts=~m/(?:(?:${RLrl})+)|(?:[A-Za-z0-9]+)/gom;
  516:             $query="select nf.word from nf  where number>=50000";
  517:             $sth=$dbh->prepare($query);
  518:             $sth->execute();
  519: 	    %stop_word=();
  520: 	    while (@arr = $sth->fetchrow)
  521: 	        {
  522: 	           $stop_word{$arr[0]}=1;
  523: 	        }
  524:                 $sth->finish;
  525:     	    
  526: 
  527: #-----------
  528:             foreach $i (0..$#w) # заполняем массив @nf начальных форм
  529:                            # $nf[$i] -- ссылка на массив возможных
  530:                            # начальных форм словоформы $i
  531:             {
  532:                 (push @used_stop, uc $w[$i]),next if $stop_word{uc $w[$i]};
  533:                 $qw= $dbh->quote (uc $w[$i]);
  534: 
  535:                 $query="  select distinct w2 from nests
  536:                                 where w1=$qw";
  537:                 $sth=$dbh -> prepare($query);
  538: 	        $sth -> execute;
  539: 	        @{$nf[$i]}=();
  540: 	        while (@arr = $sth->fetchrow)
  541: 	        {
  542: 	           push (@{$nf[$i]},$arr[0])
  543: 	        }
  544:                 $sth->finish;
  545:             }
  546: 
  547: 
  548:             my @bad=grep {!@{$nf[$_]}} 0..$#w; # @bad -- номера словоформ,
  549:                                            # которых нет в словаре
  550: 
  551:             if (@bad) #есть неопознанные словоформы
  552:             {
  553:                require  "cw.pl";
  554:                foreach $i(@bad)
  555:                {
  556:                  if (@arr=checkword($dbh,$w[$i]))
  557:                    {push (@{$nf[$i]}, @arr);}
  558:                  else
  559:                    {push (@verybad,$i);}
  560:                }
  561:             }
  562:             return () if ($all && @verybad);
  563: 
  564: 
  565:             my $kvo=0;
  566:             push @$allnf, @{$_} foreach @nf;
  567: 
  568:             foreach $i (0..$#w) #запросы в базу...
  569:             {
  570:               @arr=@{$nf[$i]} if $nf[$i];
  571:               @arr2=@arr1=@arr;
  572: 
  573: 
  574: 
  575: 
  576:               $_= " word2question.word=$_" foreach @arr;
  577:               $_= " nf.id=".$_. ' ' foreach @arr1;
  578: #              @arr=(0) unless @arr;
  579:               $query="select questions from word2question where (". (join ' OR ', @arr).") ";
  580: 
  581:     	      $sth=$dbh -> prepare($query);
  582:               $sth->execute;
  583: 
  584:               @blob=();
  585:               while (@arr=$sth->fetchrow)
  586:               {
  587:                 @blob=(@blob,unpack 'C*',$arr[0]);
  588:               }
  589:               $sth->finish;
  590:               $query="select number from nf where ".(join ' OR ', @arr1);
  591:     	      $sth=$dbh -> prepare($query);
  592:               $sth->execute;
  593: 
  594:               while (@arr=$sth->fetchrow)
  595:               {
  596:                 $frequence[$i]+=$arr[0];
  597:               }
  598:               $sth->finish;
  599: 
  600: 
  601:               if (@blob < 4)
  602:               {
  603:                  $tasksof{$i}=undef;
  604:               } else
  605:               {
  606:                  $kvo++;
  607:                  $ii=0;
  608:                  while ($ii<$#blob)  # создаём хэш %tasksof, ключи которого --
  609:                              # номера искомых словоформ, а значения --
  610:                              # списки вопросов, в которых есть соответствующа
  611:                              # словоформа.
  612:                              # Каждый список в свою очередь также оформлен в
  613:                              # виде хэша, ключи которого -- номера вопросов,
  614:                              # а значения -- списки номеров вхождений. Вот.
  615:                  {
  616:                     ($field,$lo,$hi,$wordnumber)=@blob[$ii..($ii+3)];
  617:                     $ii+=4;
  618:                     my $addnumber=($field >> 4) << 16;
  619:                     $number=(($field >> 4) << 16)+($hi << 8) + $lo;
  620:                     $field=$fieldname{$field & 0xF};
  621:                     if ($searchin{$field})
  622:                     {
  623:                       push @{$tasksof{$i}{$number}}, $wordnumber;
  624:                                       # дополнили в хэше, висящем на
  625:                                       # словоформе $i в %tasksof список
  626:                                       # вхождений $i в вопрос $number.
  627:                       push @{$wordsof{$number}{$i}}, $wordnumber;
  628:                                       # дополнили в хэше, висящем на
  629:                                       # вопросе $number в %wordsof список
  630:                                       # вхождений $i в вопрос $number.
  631: 
  632: 
  633:                     }
  634:                  }  #while ($ii<$#blob)
  635:                }
  636:             }    #foreach $i
  637: 
  638: #Ищем пересечение или объединение списков вопросов (значений %tasksof)
  639:        	    foreach $sf (keys %tasksof)
  640:            {
  641: 		foreach (keys %{$tasksof{$sf}})
  642:                 {
  643:   		     next if $forbidden{$_};
  644:                      $count{$_}++ 
  645:                 }
  646: 
  647:            }
  648:              @tasks= ($all ? (grep {$count{$_}==$kvo} keys %count) :
  649:                              keys %count) ;
  650: 
  651: 
  652: ############ Сортировка найденных вопросов
  653: 
  654: foreach (keys %wordsof)
  655: {
  656:   $relevance{$_}=&relevance($#w,$wordsof{$_},\@frequence) if $_
  657: }
  658: 
  659: @tasks=sort {$relevance{$b}<=>$relevance{$a}} @tasks;
  660: 
  661: ############
  662: 
  663: 
  664:         return  @tasks;
  665: }
  666: 
  667: 
  668: sub distance  {
  669:                  # на входе -- номера словоформ и ссылки на
  670:                  # списки вхождений. На выходе -- расстояние,
  671:                  # вычисляемое по формуле min(|b-a-pb+pa|)
  672:                  #                       pb,pa
  673:                  # (pb и pa -- позиции слов b и a)
  674:    my ($a,$b,$lista,$listb)=@_;
  675:    my ($pa,$pb,$min,$curmin);
  676:    $min=10000;
  677:    foreach $pa (@$lista)
  678:    {
  679:      foreach $pb (@$listb)
  680:      {
  681:         $curmin=abs($b-$a-$pb+$pa);
  682:         $min= $curmin if $curmin<$min;
  683:      }
  684:    }
  685:    return $min;
  686: 
  687: }
  688: 
  689: sub relevance {
  690:               # На входе -- количество искомых словоформ -1 и
  691:               # ссылка на hash, ключи которого --
  692:               # номера словоформ, а значения -- списки вхождений
  693: 
  694:        my ($n,$words,$frequence)=@_;
  695:        my $relevance=0;
  696:        my ($first,$second,$d);
  697:        foreach $first (0..$n)
  698:        {
  699:          $relevance+=scalar @{$$words{$first}}+1000+1000/$$frequence[$first]
  700: if $$words{$first};
  701:          foreach $second ($first+1..$n)
  702:          {
  703:             $d=&distance($first,$second,$$words{$first},$$words{$second});
  704:             $relevance+=($d>10?0:10-$d)*10;
  705:          }
  706:        }
  707:        return $relevance;
  708: }
  709: 
  710: 
  711: 
  712: # Returns list of QuestionId's, that have the search string in them.
  713: sub Search {
  714: 	my ($dbh, $s,$metod,$all,$allnf) = @_;
  715: 	my $sstr=$$s;
  716: 	my (@arr, @Questions, @fields);
  717: 	my (@sar, $i, $sth,$where,$query);
  718: 	if ($metod eq 'rus')
  719: 	{
  720: 	     my @tasks;
  721: 	     @tasks = russearch($dbh,$sstr,$all,$allnf);
  722: 	     
  723: 	    
  724: 	     return @tasks
  725: 	}
  726: 	elsif ($metod eq 'proxy')
  727: 	{
  728: 	  my @task=proxy($dbh,$s,$allnf);
  729: 	  return @task
  730: 	}
  731: 
  732: 
  733: 
  734: ###Simple and advanced query processing. Added by R7
  735: 	if ($metod eq 'simple' || $metod eq 'advanced')
  736: 	{
  737:           foreach (qw/Question Answer PassCriteria Sources Authors Comments/) {
  738: 		if (param($_)) {
  739: 			push @fields, $_;
  740: 		}
  741: 	   }
  742: 
  743: 	   @fields=(qw/Question Answer PassCriteria Sources Authors Comments/) unless scalar @fields;
  744: 	   my $fields=join ",", @fields;
  745:            my $q=new Text::Query($sstr,
  746:                  -parse => 'Text::Query::'.
  747:                    (($metod eq 'simple') ? 'ParseSimple':'ParseAdvanced'),
  748:                  -solve => 'Text::Query::SolveSQL',
  749:                  -build => 'Text::Query::BuildSQLMySQL',
  750:                  -fields_searched => $fields);
  751: 
  752:            $where=	$$q{'matchexp'};
  753:            $query= "SELECT Questionid FROM Questions
  754:                 WHERE $where";
  755: 
  756:            $sth = $dbh->prepare($query);
  757:          } else
  758: ######
  759:          {
  760: 
  761: 	  foreach (param('searchin')) {
  762: #		if (param($_)) {
  763: 			push @fields, "IFNULL($_, '')";
  764: #		}
  765: 	  }
  766: 	  @sar = split " ", $sstr;
  767: 	  for $i (0 .. $#sar) {
  768: 		$sar[$i] = $dbh->quote("%${sar[$i]}%");
  769: 	  }
  770: 	  $_.=' ' foreach (@fields); # Это чтобы последнее слово поля
  771: 	                             # не сливалось с первым словом
  772: 	                             # следующего поля, R7
  773: 	  my($f) = "CONCAT(" . join(',', @fields) . ")";
  774: 	  if (param('all') eq 'yes') {
  775: 		$sstr = join " AND $f LIKE ", @sar;
  776: 	  } else {
  777: 		$sstr = join " OR $f LIKE ", @sar;
  778:     	  }
  779:     	  
  780:    my $query;
  781:                $query="SELECT QuestionId FROM Questions
  782: 		WHERE ($f LIKE $sstr) AND (".&makewhere.") ORDER BY QuestionId";
  783: 
  784: 
  785: 	  $sth = $dbh->prepare($query)
  786: 	} #else -- processing old-style query (R7)
  787: 
  788: 	$sth->execute;
  789: 	while (@arr = $sth->fetchrow) {
  790: 		push @Questions, $arr[0] unless $forbidden{$arr[0]};
  791: 	}
  792:         $sth->finish;
  793:         
  794: 	return @Questions;
  795: }
  796: 
  797: sub makewhere {
  798:       my @type=param('type');    
  799:       my $type='';
  800: 
  801:       $type .= ($_=$TypeName{$_}) foreach @type;
  802:       my $where=' 0 ';
  803:       foreach (@type) {
  804:  	     $where.= " OR (Type ='$_') OR (Type ='$_Д') OR (Type ='Д$_') ";
  805:       } 
  806:       $where.= "OR (Type='ЧБ')" if ($type=~/Ч|Б/);
  807:       return $where;
  808: }
  809: 
  810:  # Substitute every letter by a pair (for case insensitive search).
  811:  my (@letters) = qw/аА бБ вВ гГ дД еЕ жЖ зЗ иИ йЙ кК лЛ мМ нН оО
  812:  пП рР сС тТ уУ фФ хХ цЦ чЧ шШ щЩ ьЬ ыЫ эЭ юЮ яЯ/;
  813: 
  814: sub NoCase {
  815: 	my ($sstr) = shift;                   	
  816: 	my ($res);
  817: 
  818: 	if (($res) = grep(/$sstr/, @letters)) {
  819: 		return "[$res]";
  820: 	} else {
  821: 		return $sstr;
  822: 	}
  823: }
  824: 
  825: sub PrintList {
  826:    my ($dbh,$Questions,$shablon,$was)=@_;
  827:         my $Output;
  828: 	my $first=param('first') ||1;
  829: 	$first=$first-($first-1)%$outputkvo;
  830:         my $fkvo=param('fkvo')||($#$Questions+1);
  831: 	my $last=$first+$outputkvo-1;
  832: 	$last=$fkvo if $fkvo<$last;
  833:         my($f,$l);
  834:         my $nav='';
  835:         my $qs=query_string;
  836: 	$qs=~s/\;/\&/g;
  837:         $qs=~s/\&first\=[^\&]+//g;
  838:         my $sstr=param('sstr')||'';
  839:         $qs=~s/sstr=[^\&]+/sstr=$sstr/;
  840:         if ($usewas) {
  841:         	$qs=~s/\&was=[^\&]+//;
  842:         	$qs.="&was=$was" if $was;
  843:         	$qs.="&fkvo=$fkvo" if $was;
  844:         }
  845:         if ($first>$outputkvo*3+1)
  846:         {
  847:            $nav.=
  848:             ("&nbsp;"x4).
  849:             a({href=>$url."?".$qs."\&first=1"},"<<").("&nbsp;"x4).
  850:             a({href=>($url."?".$qs."\&first=".($first-$outputkvo))},"<").("&nbsp;"x4)
  851: 	}
  852:         else {$nav.='&nbsp;'x15;}
  853: 
  854:      my ($fprint,$lprint);
  855:      my $llprint=$fkvo- ($fkvo)%$outputkvo+1; #
  856:      if ($fkvo<=$outputkvo*7)
  857:      {         $fprint=1;
  858:                $lprint=$llprint;
  859:      }
  860:      elsif ($first>$outputkvo*3 && $fkvo-$first>$outputkvo*3)
  861:      {
  862:        $fprint=$first-$outputkvo*3;
  863:        $lprint=$first+$outputkvo*3;
  864:      } 
  865:      elsif  ($first<=$outputkvo*3)
  866:      {
  867:         $fprint=1; $lprint=6*$outputkvo+1;
  868:      }
  869:      else
  870:      { 
  871:            $lprint=$llprint;
  872:            $fprint=$lprint-$outputkvo*6
  873:      }
  874:          
  875: #        my $fprint=($first>$outputkvo*3) ? $first-$outputkvo*3 : 1;
  876: #        my $lprint=$#$Questions+1-$fprint>$outputkvo*7 ? $outputkvo*7 :$#$Questions+1;
  877: #        if ($lprint-$fprint<$outputkvo*6 && $fprint>1)
  878: #        {
  879: #            $fprint=$lprint-$outputkvo*6;
  880: #            $fprint=1 if ($fprint<=0) 
  881: #        }
  882: 
  883: 
  884: 
  885:         for($f=$fprint; $f<=$lprint; $f+=$outputkvo)
  886: 	{
  887: #	  next if $first-$f>$outputkvo*3;
  888: 	  $l=$f+$outputkvo-1;
  889: 	  $l=$fkvo if $l>$fkvo+1;
  890: 	  if ($f==$first) {$nav.="[$f-$l] ";}
  891: 	  else {
  892:                   $nav.= "[".a({href=>($url."?".$qs."\&first=$f")},"$f-$l")."] ";}
  893: 	}
  894:         if ($lprint+$outputkvo<$fkvo)
  895:         {
  896:            $nav.=
  897:             ("&nbsp;"x4).
  898:             a({href=>($url."?".$qs."\&first=".($first+$outputkvo))},">").("&nbsp;"x4).
  899:             a({href=>$url."?".$qs."\&first=$llprint"},">>").("&nbsp;"x4)
  900:         }
  901: 	$Output.= "$nav".br."\n";
  902: 	my @q=@$Questions[$first-1..$last-1];
  903: 	my %q=();
  904: 	my $sth=SelectQuestions($dbh,\@q,1);
  905: 	my $qq;
  906: 	my @Q;
  907: 	for (0..$#q) {
  908: 	        %{$Q[$_]}=();
  909: 		fetchquestion($sth,$Q[$_],1);
  910: 		$q{$Q[$_]{'QuestionId'}}=$Q[$_];
  911: 	}
  912: 
  913: 	for (my $i = $first; $i <= $last; $i++) {
  914: 		my $q=$q{$$Questions[$i-1]};
  915: 	        my $output;
  916: 		$output = &PrintQuestion($dbh, $q, 1, 0, 1,$text,1  );
  917: #                if (param('metod') && (param('metod') eq 'rus' || param('metod') eq 'proxy'))
  918:                 {
  919: 	             $output=~s/\b($shablon)\b/\<strong\>$1\<\/strong\>/gi;
  920: 	             $output=~s/($shablon)/\<strong\>$1\<\/strong\>/gi;
  921: 	             $output=~s/(href="[^"]*?)(?:<.*?>)+([^"]*?)(?:<\/.*?>)+([^"]*?")/!1 $1$2$3 2!/g;#!!!!
  922: 		}
  923: 
  924: 		$Output.= $output;
  925: 	}
  926: 	$sth->finish;
  927: 
  928: 	$Output.= "$nav".br."\n";
  929: 	return $Output;
  930: }
  931: 
  932: sub PrintSearch {
  933:         my $Output='';
  934: 	my ($dbh, $sstr, $metod,$was) = @_;
  935: 	my $t=time;
  936: 	$Output.= printform;
  937: 	my @allnf;
  938: 	my @Questions;
  939: 	$was=0 if $metod eq 'proxy';
  940: 	if ($usewas && $was && ($metod ne 'proxy'))
  941: 	{
  942: 	  my $sth=$dbh->prepare ("select sstr,questions,allnf from lastqueries where id=".param('was'));
  943:           $sth->execute;
  944:           my ($q,$nf);
  945: 	  ($sstr, $q,$nf)=($sth->fetchrow);
  946:           @Questions=unpack 'L*',$q; 
  947:           @allnf=unpack 'L*',$nf;        
  948:           $sth->finish;
  949:         }  
  950:         if (!$was || ($metod eq 'proxy') || (param('first')+$outputkvo>$cashednumber))
  951:         {
  952:              @Questions=&Search($dbh, \$sstr,$metod,$all,\@allnf);
  953:              $cashednumber=$#Questions if $cashednumber>$#Questions;
  954:              my $tmp=$dbh->quote(pack("L*",@Questions[0..$cashednumber]));
  955:              my $qsstr=$dbh->quote($sstr);
  956:              my $nf=$dbh->quote(pack("L*", @allnf));
  957:              my $ss=200;
  958:              if ($usewas) {
  959:              	do 
  960:              		{
  961:                			$was=int rand(32000);
  962:              		}
  963:              	while (--$ss && (!$dbh->do ("insert into lastqueries (id,sstr,questions,allnf) 
  964:                          values ($was, $qsstr,$tmp,$nf)")));
  965:              	$Output.= "Something is wrong...".br."\n" unless $ss;
  966:  	      }
  967:         }
  968: 
  969: 
  970: 
  971: 	$Output.= p. "Время поиска: " . (time-$t) ." сек.".p;
  972: 	$_="\"$_\"" foreach @used_stop;
  973: 	$Output.= p. (join ', ',@used_stop) ." ignored".p if @used_stop;
  974: 	my ($output, $i, $suffix, $hits) = ('', 0, '', $#Questions + 1);
  975: 
  976:         my $shablon;
  977:         $metod='rus' if $metod eq 'proxy';
  978:         if ($metod eq 'rus')
  979:         {
  980:            my $where='0';
  981:            $where.= " or w2=$_ " foreach @allnf;
  982:            my $query="select w1 from nests where $where";
  983:            my $sth=$dbh->prepare($query);
  984: 
  985: 	   $sth->execute;
  986: 	   my @shablon;
  987: 	   while (my @arr = $sth->fetchrow)
  988: 	   {
  989: 	     push @shablon,"(?:$arr[0])";
  990: 	   }
  991: 	   $sth->finish;
  992:            $shablon= join "|", @shablon;
  993:            $shablon=~s/[её]/\[ЕЁ\]/gi;
  994: #           $shablon=~s/([йцукенгшщзхъфывапролджэячсмитьбюЙЦУКЕНГШЩЗХЪФЫВАПРОЛДЖЭЯЧСМИТЬБЮ])/&NoCase($1)/ge;
  995:            $shablon=qr/$shablon/i;
  996: 
  997:         }
  998: 
  999:         $hits=param("fkvo")||$hits;
 1000: 
 1001: 	if ($hits =~ /1.$/  || $hits =~ /[5-90]$/) {
 1002: 		$suffix = 'й';
 1003: 	} elsif ($hits =~ /1$/) {
 1004: 		$suffix = 'е';
 1005: 	} else {
 1006: 		$suffix = 'я';
 1007: 	}
 1008: 
 1009: 	$Output.= p({align=>"center"}, "Результаты поиска на " . strong($sstr)
 1010: 	. " : $hits попадани$suffix.");
 1011: 
 1012: 	if (param('word')) {
 1013: 		$sstr = '[ 	\.\,:;]' . $sstr . '[  \.\,:\;]';
 1014: 	}
 1015: 
 1016: #	$sstr =~ s/(.)/&NoCase($1)/ge;
 1017: 
 1018: 	my @sar;
 1019: 	if ($metod ne 'rus') 
 1020: 	{
 1021: 	  my $ss=$sstr;
 1022: 	  (@sar) = split(' ', $ss);
 1023: 	  s/(\W)/\\$1/g foreach (@sar);
 1024: 	  $shablon=join "|",@sar;
 1025: 	}
 1026: 	$Output.=PrintList($dbh,\@Questions,$shablon,$was);
 1027: 	return $Output;
 1028: }
 1029: 
 1030: sub PrintRandom {
 1031:    my ($dbh, $type, $num, $text) = @_;
 1032:    my $razd=param('razd');
 1033:    my %q;
 1034:    my $answer=$razd?0:1;
 1035:    my @answers;
 1036: #my $t=time;
 1037:    my (@Questions) = &Get12Random($dbh, $type, $num);
 1038: 
 1039: 	my ($output, $i) = ('', 0);
 1040: #$output.="time=".(time-$t).p;
 1041: 	if ($text) {
 1042: 		$output .= "	$num случайных вопросов.\n\n";
 1043: 	} else {
 1044: 		$output .=
 1045: 			h2({align=>"center"}, "$num случайных вопросов.");
 1046: 	}
 1047: 	my $sth=SelectQuestions($dbh,\@Questions,0);
 1048: 	for ($i = 0; $i <= $#Questions; $i++) {
 1049: 		fetchquestion($sth,\%q,0);
 1050: 		$output .=
 1051: 			&PrintQuestion($dbh, \%q, $answer, $i + 1, 0, $text,1);
 1052: 			push @answers, $q{'Answer'};
 1053: 	}
 1054: 	$sth->finish;
 1055: 	unless ($answer )
 1056:         { 
 1057:          $output.=$text?"\n".('-'x 20)."\nОтветы\n~~~~~~\n\n":h2('Ответы');
 1058:          $sth=SelectQuestions($dbh,\@Questions,0);
 1059:          for ($i = 0; $i <= $#Questions; $i++) {
 1060: #                fetchquestion($sth,\%q,0);
 1061: #		$output .=
 1062: #			&PrintQuestion($dbh, \%q, -1, $i + 1, 0, $text,1);
 1063:                 $output.=$text?("Ответ ". ($i+1).": $answers[$i]\n\n"):
 1064: 			b("Ответ ". ($i+1).": "). $answers[$i].p;
 1065: 	 }
 1066:         }
 1067: 
 1068: 	return $output;
 1069: }
 1070: 
 1071: sub PrintEditor {
 1072:        my $t=shift; #ссылка на Хэш с полями
 1073:        my $ed=$$t{'Editors'}||'';
 1074:        my $edname=($ed=~/\,/ ) ? "Редакторы"  : "Редактор" ;
 1075:        return $ed? h4({align=>"center"},"$edname: $ed" ): '';
 1076: }
 1077: 
 1078: sub PrintTournament {
 1079:    my ($dbh, $Id, $answer) = @_;
 1080: 	my (%Tournament, @Tours, $i, $list, $qnum, $imgsrc, $alt,
 1081: 		$SingleTour);
 1082: 	my ($output) = '';
 1083: 
 1084: 	%Tournament = &GetTournament($dbh, $Id) if ($Id);
 1085: 
 1086: 	my ($URL) = $Tournament{'URL'}||'';
 1087: 	$URL=~s/http:\/znatoki\/boris\/reports\//$newsurl/ if $url=~/kulichki/ || $url=~/db.chgk.info/;
 1088: 	$URL=~s/\/znatoki\/boris\/reports\//$newsurl/ if url=~/kulichki/ || $url=~/db.chgk.info/;
 1089: 	my ($Info) = $Tournament{'Info'};
 1090: 	my ($Copyright) = $Tournament{'Copyright'};
 1091: 	my $fname=$Tournament{'FileName'};
 1092: 	@Tours = &GetTours($dbh, $Id);
 1093: 	$list='';
 1094: 	my $textid;
 1095: 	if ($Id) {
 1096: 		for ($Tournament{'Type'}) {
 1097: 			/Г/ && do {
 1098: 				$output .= h2({align=>"center"},
 1099: 					      "Группа: $Tournament{'Title'} ",
 1100: 					      $Tournament{'PlayedAt'}||'') . p . "\n";
 1101: 				last;
 1102: 			};
 1103: 			/Ч/ && do {
 1104: 				return &PrintTour($dbh, $Tours[0], $answer)
 1105: 					if ($#Tours == 0);
 1106: 
 1107: 				my $title="Пакет: $Tournament{'Title'}";
 1108: 				if ($Tournament{'PlayedAt'}) {
 1109: 				    $title .= " $Tournament{'PlayedAt'}";
 1110: 				}
 1111: 
 1112: 				$output .= h2({align=>"center"},
 1113: 					"$title") . p . "\n";
 1114: 			       $output.=&PrintEditor(\%Tournament);
 1115: 				last;
 1116: 			};
 1117: 			/Т/ && do {
 1118: 				return &PrintTour($dbh, $Id, $answer);
 1119: 			};
 1120: 		}
 1121: 	} else {
 1122: 		my ($qnum) = GetQNum($dbh,0);
 1123: 		my ($qnum1) = GetQNum($dbh,1);
 1124: 		$output .= h2("База вопросов").
 1125:                  h3("$qnum запис".&Suffix2($qnum).
 1126:                  " (уникальных $qnum1)");
 1127: 
 1128: #		 h4("<table>".
 1129: #		 Tr(td("Из них:"), td("Вопросов ЧГК: ".countz($dbh,'Ч'))).		 
 1130: #		 Tr(td("&nbsp;"), td("Вопросов для брейна: ".countz($dbh,'Б'))).		 
 1131: #		 Tr(td("&nbsp;"), td("Вопросов для ЧГК и брейна: ".countz($dbh,'ЧБ'))).		 
 1132: #		 Tr(td("&nbsp;"), td("Интернет-вопросов: ".countz($dbh,'И'))).		 
 1133: #		 Tr(td("&nbsp;"), td("Бескрылок: ".countz($dbh,'Л'))).
 1134: #		 Tr(td("&nbsp;"),td("Заданий для Своей Игры: ".countz($dbh,'Я'))).
 1135: #		 Tr(td("&nbsp;"),td("Эрудиток: ".countz($dbh,'Э'))))."</table>"
 1136: 	}
 1137: 
 1138: 	for ($i = 0; $i <= $#Tours; $i++) {
 1139: 		%Tournament = &GetTournament($dbh, $Tours[$i]);
 1140: 
 1141: 		if ($Tournament{'Type'} =~ /Ч/) {
 1142: 			$SingleTour = 0;
 1143: 			my (@Tours) = &GetTours($dbh, $Tournament{'Id'});
 1144: 			$SingleTour = 1
 1145: 				if ($#Tours == 0);
 1146: 		}
 1147: 		if ($Tournament{'QuestionsNum'} > 0) {
 1148: 			$qnum = " ($Tournament{'QuestionsNum'} вопрос" .
 1149: 				&Suffix($Tournament{'QuestionsNum'}) . ")\n";
 1150: 		} else {
 1151: 			$qnum = '';
 1152: 		}
 1153: 		if ($Tournament{'Type'} !~ /[ТЧ]/) {
 1154: 		    $SingleTour=0;
 1155: 			$imgsrc = "/icons/folder.gif";
 1156: 			$alt = "[*]";
 1157: 		} else {
 1158: 			$imgsrc = "/icons/folder.gif";
 1159: 			$alt = "[-]";
 1160: 		}
 1161: 
 1162: 		my $textid;
 1163: 		if ($textid=$Tournament{'FileName'})
 1164: 		{
 1165: 		   $textid=~s/\.txt//;
 1166: 		}
 1167: 		elsif ($textid=$Tournament{'Number'})
 1168: 		  {
 1169: 		      $fname=~s/\.txt//;
 1170: 		      $textid="$fname.$textid";
 1171: 		  }
 1172: 	       else {$textid=$Tournament{'Id'}};
 1173: 		
 1174: 
 1175: 		if ($SingleTour or ($Tournament{'Type'} =~ /Т/)) {
 1176: 			$list .= dd(img({src=>$imgsrc, alt=>$alt})
 1177: 				. " " . $Tournament{'Title'} . " " .
 1178: 				    ($Tournament{'PlayedAt'}||"") . $qnum) .
 1179: 				dl(
 1180: 					dd("["
 1181: 						. a({href=>tourhref($textid,0)},
 1182: 						"вопросы") . "] ["
 1183:                   . a({href=>tourhref($textid,1)},
 1184:                   "вопросы + ответы") . "]")
 1185: 				);
 1186: 		} else {
 1187: 			$list .= dd(a({href=>
 1188:                                  $url . "?tour=$textid&comp=1"},
 1189: 				img({src=>'/icons/compressed.gif', alt=>'[ZIP]', border=>1}))				.  
 1190: 				" " . 
 1191:                                 img({src=>$imgsrc, alt=>$alt})
 1192: 				. " " . a({href=>tourhref($textid,0,1)},
 1193: 				$Tournament{'Title'}. " ".
 1194: 					  ($Tournament{'PlayedAt'}||'')) . $qnum); 
 1195: 		}
 1196: 	}
 1197: 	$output .= dl($list);
 1198: 
 1199: 	if ($URL) {
 1200: 	        if ($url=~/zaba\.ru/ && $URL=~/^\//){$URL="http://info.chgk.info$URL"}
 1201: 		$output .=
 1202: 		p("Дополнительная информация об этом турнире - по адресу " .
 1203: 			a({-'href'=>$URL}, $URL));
 1204: 	}
 1205: 	if ($Copyright) {
 1206: 		$output .= p("Копирайт: " .   $Copyright);
 1207: 	}
 1208: 
 1209: 
 1210: 
 1211: 	if ($Info) {
 1212: 		$output .= p($Info);
 1213: 	}
 1214: 
 1215: 	$output.=p("<a href='/dbxml.php?tour=".param('tour')."'>XML</a>");
 1216: 	
 1217: 	
 1218: 	return $output;
 1219: }
 1220: 
 1221: sub Suffix {
 1222: 	my ($qnum) = @_;
 1223: 	my ($suffix) = 'а' if $qnum =~ /[234]$/;
 1224:    $suffix = '' if $qnum =~ /1$/;
 1225:    $suffix = 'ов' if $qnum =~ /[567890]$/ || $qnum =~ /1.$/;
 1226: 	return $suffix;
 1227: }
 1228: 
 1229: 
 1230: sub Suffix1 {
 1231: 	my ($qnum) = @_;
 1232: 	my ($suffix) = 'я' if $qnum =~ /[234]$/;
 1233:        $suffix = 'е' if $qnum =~ /1$/;
 1234:        $suffix = 'й' if $qnum =~ /[567890]$/ || $qnum =~ /1.$/;
 1235: 	return $suffix;
 1236: }
 1237: 
 1238: sub Suffix2 {
 1239: 	my ($qnum) = @_;
 1240: 	my ($suffix) = 'и' if $qnum =~ /[234]$/;
 1241:        $suffix = 'ь' if $qnum =~ /1$/;
 1242:        $suffix = 'ей' if $qnum =~ /[567890]$/ || $qnum =~ /1.$/;
 1243: 	return $suffix;
 1244: }
 1245: 
 1246: sub IsTour {
 1247: 	my ($dbh, $Id,$n) = @_;
 1248: 
 1249: 	my ($sth) ;
 1250:         
 1251:         if (defined $n) 
 1252:         { $sth=$dbh->prepare ("select Id FROM Tournaments
 1253:                            WHERE ParentId=$Id AND Number=$n");
 1254:         }
 1255:         else
 1256:         {
 1257:           $sth=$dbh->prepare("SELECT Id FROM Tournaments
 1258: 		WHERE Id=$Id");
 1259: 	}
 1260: 	$sth->execute;
 1261:         my $a=($sth->fetchrow)[0];
 1262: 	$sth->finish;
 1263:  	return $a;
 1264: }
 1265: 
 1266: # Gets a DB handler (ofcourse) and a tour Id. Prints all the
 1267: # question of that tour, according to the options.
 1268: sub PrintTour {
 1269: 	my ($dbh, $Id, $answer) = @_;
 1270: 	my ($output, $q, $bottom, $field) = ('', 0, '', '');
 1271: 
 1272: 	my (%Tour) = &GetTournament($dbh, $Id);
 1273: 	my (@Tours) = &GetTours($dbh, $Tour{'ParentId'});
 1274: 	my (%Tournament) = &GetTournament($dbh, $Tour{'ParentId'});
 1275: 	my %q;
 1276: 
 1277: 	return 0
 1278: 		if ($Tour{'Type'} !~ /Т/);
 1279: 
 1280: 	my ($fname)=$Tournament{'FileName'};
 1281: 	$fname=~s/\.txt//;
 1282: 	my ($qnum) = $Tour{'QuestionsNum'};
 1283: 	my ($suffix) = &Suffix($qnum);
 1284: 
 1285: 	$output .= h2({align=>"center"}, $Tournament{"Title"},
 1286: 		      $Tournament{'PlayedAt'}||'',
 1287: 		      "<br>\n", $Tour{"Title"} .
 1288: 		" ($qnum вопрос$suffix)\n") . p;
 1289: 	$output .=&PrintEditor(\%Tour);
 1290: 
 1291: 	my (@Questions) = &GetTourQuestions($dbh, $Id);
 1292: 	my $sth=SelectQuestions($dbh,\@Questions,0);
 1293: 	for ($q = 0; $q <= $#Questions; $q++) {
 1294: 		fetchquestion($sth,\%q,0);
 1295: 		$output .= &PrintQuestion($dbh, \%q, $answer, 0,0,$text,1);
 1296: 	}
 1297: 	$sth->finish;
 1298: 	$output .= hr({-'align'=>'center', -'width'=>'80%'});
 1299: 
 1300: 	if ($Tournament{'URL'}) {
 1301: 		$output .=
 1302: 		p("Дополнительная информация об этом турнире - по адресу " .
 1303: 			a({-'href'=>$Tournament{'URL'}}, $Tournament{'URL'}));
 1304: 	}
 1305: 
 1306: 	if ($Tournament{'Copyright'}) {
 1307: 		$output .= p("Копирайт: " .   $Tournament{'Copyright'});
 1308: 	}
 1309: 
 1310: 	if ($Tournament{'Info'}) {
 1311: 		$output .= p($Tournament{'Info'});
 1312: 	}
 1313: 
 1314: 	if ($Tour{'Info'}) {
 1315: 		$output .= p($Tour{'Info'});
 1316: 	}
 1317: 
 1318: 	$output.=p("<a href='/dbxml.php?tour=".param('tour')."'>XML</a>");
 1319: 
 1320: 	my $n=$Tour{'Number'};
 1321: 	if ($answer == 0) {
 1322: 	        my $nn=".$n";
 1323: 	        $nn="" if ($n==1 && !&IsTour($dbh, $Tour{'ParentId'}, $n + 1));
 1324: 	        
 1325: 		$bottom .=
 1326: 			"[" . a({href=>tourhref("$fname$nn",1)}, 
 1327:                          "ответы") .  "] " . br."\n";
 1328: 	}
 1329: 	if ($n>1) {
 1330: 		$bottom .=
 1331: 			"[" . a({href=>tourhref("$fname.".($n-1),0)},
 1332: 			"предыдущий тур") . "] ";
 1333: 		$bottom .=
 1334: 			"[" . a({href=>tourhref("$fname.".($n-1),1)},
 1335: 			"предыдущий тур с ответами") . "] " . br."\n";
 1336: 	}
 1337: 	if (&IsTour($dbh, $Tour{'ParentId'}, $n + 1)) {
 1338: 		$bottom .=
 1339: 			"[" . a({href=>tourhref("$fname.".($n+1),0)},
 1340: 			"следующий тур") . "] ";
 1341: 		$bottom .=
 1342: 			"[" . a({href=>tourhref("$fname.".($n+1),1)},
 1343: 			"следующий тур с ответами") . "] ";
 1344: 	}
 1345: 
 1346: 	$output .=
 1347: 		p({align=>"center"}, font({size=>-1}, $bottom));
 1348: 
 1349: 	return $output;
 1350: }
 1351: 
 1352: 
 1353: sub escapeUrl {
 1354: 	my $uri = shift;
 1355: 	$uri=~s/<.*?>//g;
 1356: 	$uri =~ s/([Ю-Ъю-ъ]+)/URI::Escape::uri_escape_utf8(decode("koi8-r",$1))/eg;
 1357: 	return $uri;	
 1358: }
 1359: 
 1360: sub PrintField {
 1361: 	my ($header, $value, $text) = @_;
 1362: 	if ($text) {
 1363: 	    $value =~ s/<[\/\w]*?>//sg;
 1364: 	} else {
 1365: 	    if ($header=~/Комментар/)
 1366: 	    {
 1367: 		$value=~s/^\s*$_[\.:]/p."\n".strong("$_").":\n"/me foreach @softfields;
 1368: 	    }
 1369: 
 1370: 	    $value =~ s/^\s+/<br>\n&nbsp;&nbsp;&nbsp;&nbsp;/mg;
 1371: 	    $value =~ s/(\s+)-+(\s+)/$1&#0150;$2/mg;
 1372: 	    $value =~ s/\s+\&#0150/&nbsp;\&#0150/mg 
 1373: 			if $value !~ /^\|/;
 1374: 	    $value =~ s/^\|([^\n]*)/<pre>$1<\/pre>/mg;
 1375: 
 1376: 	    $value =~ s/(http:\/\/\S+[^\s\)\(\,\.])/a({href=>escapeUrl($1)},$1)/egm if $header !~ /^Авто/;#!!!
 1377: 
 1378: 
 1379: #	    $value =~ s/(http:\/\/\S+[^\s\)\(\,\.])/make/eg if $header !~ /^Авто/;#!!!
 1380: #	    $value =~ s/(http:\/\/\S+[^\s\)\(\,\.])/<a href="$1">$1<\/a>/g if $header !~ /^Авто/;
 1381: #	    $value =~ s/(http:\/\/(?:\w+.)+[\w\\\~]+(\?[^\s.]+)?)/<a href="$1">$1<\/a>/g if $header !~ /^Авто/;
 1382: #	    $value =~ s/(\s)"/$1&#147;/mg;
 1383: #	    $value =~ s/^"/&#147;/mg;
 1384: #	    $value =~ s/"/&#148;/mg;
 1385: 	}
 1386: 
 1387: 	if ($value=~/^\s*(<p.*?>)?\s*<strong/) {
 1388: 		return $text ? "$value\n\n" :
 1389: 			$value . p . "\n";
 1390: 	}
 1391: 	return $text ? "$header:\n$value\n\n" :
 1392: 		strong("$header: ") . "\n".$value . p . "\n";
 1393: }
 1394: 
 1395: # Gets a DB handler (ofcourse) and a question Id. Prints
 1396: # that question, according to the options.
 1397: sub PrintQuestion {
 1398: 	my ($dbh, $Id, $answer, $qnum, $title, $text,$h) = @_;
 1399: 	my ($output, $titles) = ('', '');
 1400: 	my $fname;
 1401: 	my (%Question);
 1402: 	if ($h) {
 1403: 	  %Question=%$Id;
 1404: 	} else {
 1405: 		%Question = &GetQuestion($dbh, $Id);
 1406: 		if ($title) {
 1407: 			my (%Tour) = GetTournament($dbh, $Question{'ParentId'});
 1408: 			my (%Tournament) = GetTournament($dbh, $Tour{'ParentId'});
 1409: 			$Question{'FileName'}=$Tournament{'FileName'};
 1410: 			$Question{'Title'}=$Tournament{'Title'};
 1411: 			$Question{'PlayedAt'}=$Tournament{'PlayedAt'};
 1412: 			$Question{'TourNumber'}=$Tour{'Number'};
 1413: 			$Question{'TourTitle'}=$Tour{'Title'};
 1414: 		}
 1415: 
 1416:         }
 1417: 		$qnum = $Question{'Number'}
 1418: 		if ($qnum == 0);
 1419: 	if (!$text) {
 1420: 		$output .= hr({width=>"50%"}) if $answer>=0;
 1421: 		if ($title) {
 1422: 			$fname=$Question{'FileName'};
 1423: 			$fname=~s/\.txt//;
 1424: 			$titles .=
 1425: 				dd(img({src=>"/icons/folder.open.gif"}) . " " .
 1426: 					 a({href=>tourhref($fname,0,1)}, 
 1427:                                $Question{'Title'}, $Question{'PlayedAt'}||''));
 1428: 			$titles .=
 1429: 				dl(dd(img({src=>"/icons/folder.open.gif"}) . " " .
 1430: 					a({href=>tourhref("$fname.$Question{'TourNumber'}#$qnum",1)}, 
 1431:                           $Question{'TourTitle'})));
 1432: 		}
 1433: 		$output .= dl(strong($titles));
 1434: 	}
 1435: 
 1436: 
 1437: 	$output.= "<a NAME=\"$qnum\">" unless $text;
 1438: 
 1439: 	if ($answer>=0) {$output .=
 1440: 		&PrintField("Вопрос $qnum", $Question{'Question'}, $text);}
 1441: 	else {$output .="$qnum. "}
 1442: 	if ($answer==1|| $answer==-1) {
 1443: 		$output .=
 1444: 			&PrintField("Ответ", $Question{'Answer'}, $text);
 1445: 		if ($Question{'PassCriteria'} ) {
 1446: 		  $output .=
 1447: 			&PrintField("Зачёт", $Question{'PassCriteria'}, $text);
 1448:                 }
 1449: 
 1450: 		if ($Question{'Authors'} ) {
 1451:                       my $q=$Question{'Authors'};
 1452: ###АВТОРА!!
 1453: # 		      my $sth=$dbh->prepare("select Authors.CharId,Name, Surname, Nicks from Authors, A2Q
 1454: #                                  where Authors.Id=Author And Question=$Id");
 1455: #                       $sth->execute;
 1456: #                       my ($AuthorId,$Name, $Surname,$other,$Nicks);
 1457: #                      if (!$text) {
 1458: #                       while ((($AuthorId,$Name, $Surname,$Nicks)=$sth->fetchrow),$AuthorId)
 1459: #                       {
 1460: #                          my ($firstletter)=$Name=~m/^./g;
 1461: #                          $Name=~s/\./\\\./g;
 1462: #                          $Name=~s/ё/[её]/g;
 1463: #                          $Surname=~s/ё/[её]/g;
 1464: #                           my $sha="(?:$Name\\s+$Surname)|(?:$Surname\\s+$Name)|(?:$firstletter\\.\\s*$Surname)|(?:$Surname\\s+$firstletter\\.)|(?:$Surname)";
 1465: #                           if ($Nicks)
 1466: #                           {
 1467: #                             $Nicks=~s/^\|//;
 1468: #                             foreach (split /\|/, $Nicks)
 1469: #                             {
 1470: #                               s/\s+/ /g;
 1471: #                               s/\s+$//;
 1472: #                               s/ /\\s+/g;
 1473: #                               s/\./\\\./g;
 1474: #                               if (s/>$//) {$sha="$sha|(?:$_)"}
 1475: #                               else        {$sha="(?:$_)|$sha"}
 1476: #                             }
 1477: #                           }
 1478: #                           $q=~s/($sha)/a({href=>url."?qofauthor=$AuthorId"},$1)/ei;
 1479: #                           unless ($1) 
 1480: #                             {   
 1481: #                                 $q=~s/$Name/a({href=>url."?qofauthor=$AuthorId"},$1)/ei;
 1482: #                             }
 1483: #                       }
 1484: #                      }
 1485: 			$output .= &PrintField("Автор(ы)", $q, $text);
 1486: 
 1487: 		}
 1488: 
 1489: 		if ($Question{'Sources'}) {
 1490: 			$output .= &PrintField("Источник(и)", $Question{'Sources'}, $text);
 1491: 		}
 1492: 
 1493: 		if ($Question{'Comments'}) {
 1494: 			$output .= &PrintField("Комментарии", $Question{'Comments'}, $text);
 1495: 		}
 1496: 	}
 1497: 	elsif ($answer==2) {
 1498: 	  my $text=$Question{'Answer'};
 1499: 	  $text=~s/\n/<option>/mg;
 1500: 	  $output.="<select><option selected>Ответ:<option>$text</select>";
 1501: 	  $text=$Question{'Comments'}||'';
 1502: 	  if ($text) {
 1503:              $text=~s/\n/<option>/mg;
 1504: 	     $output.="<select><option selected>Комментарий:<option>$text</select>"
 1505: 	  }
 1506: 	} 
 1507: 	elsif ($answer==3) {
 1508:         $output.=  <<EOTT
 1509: 	  <div align=right STYLE="cursor:hand;" OnStart="toggle(document.all.HideShow$qnum);" OnClick="toggle(document.all.HideShow$qnum);">
 1510: 	  <font size=-2 color=red> Показать/убрать ответ</font></div>
 1511: 	  <span style="display:none" id=HideShow$qnum>
 1512: EOTT
 1513:           .&PrintField("Ответ", $Question{'Answer'}, $text);
 1514: 		if ($Question{'Authors'}) {
 1515: 			$output .= &PrintField("Автор(ы)", $Question{'Authors'}, $text);
 1516: 		}
 1517: 		if ($Question{'PassCriteria'}) {
 1518: 			$output .= &PrintField("Зачёт", $Question{'PassCriteria'}, $text);
 1519: 		}
 1520: 
 1521: 		if ($Question{'Sources'}) {
 1522: 			$output .= &PrintField("Источник(и)", $Question{'Sources'}, $text);
 1523: 		}
 1524: 
 1525: 		if ($Question{'Comments'}) {
 1526: 			$output .= &PrintField("Комментарии", $Question{'Comments'}, $text);
 1527: 		}
 1528: 
 1529: 
 1530: 
 1531: $output.="</span>"
 1532: 
 1533: 	}
 1534: 	$output=~s/\(pic: ([^\)]*)\)/<p><img src="\/znatoki\/images\/db\/$1"><p>/g unless $text;
 1535: 	$output=~s/⌡/\&iuml;/g;
 1536: 	$output=~s/⌠/\&Iuml;/g;
 1537: 
 1538: 	$paramtour||=param("tour");
 1539: 	$fname=$fname.".$Question{'TourNumber'}" if $fname && $Question{'TourNumber'};
 1540: $fname||=param('tour');
 1541: 	my $qid=$fname ? ($fname.".$Question{'Number'}" ): '';
 1542: 
 1543: 	$output.=br."\n".a({href=> "/search/"."?metod=proxy&
 1544: qid=$qid"}, 'Близкие вопросы').p
 1545:              if $answer>0 && !$text && $qid && $showNearQuestions;
 1546: 	return $output;
 1547: }
 1548: 
 1549: # Returns the total number of questions currently in the DB.
 1550: sub GetQNum {
 1551: 	my ($dbh,$x) = @_;
 1552: 	my ($sth) = $dbh->prepare("SELECT COUNT(*) FROM Questions");
 1553: 	$sth->execute;
 1554: 	my $tmp=($sth->fetchrow)[0];
 1555:         $sth->finish;
 1556: 	($sth)=  $dbh -> prepare("select distinct count(first) FROM equalto");
 1557: 	           $sth -> execute;
 1558: 	my ($c)=$sth->fetchrow;
 1559: 
 1560: #	           $i++  while ( my  ($first, $second)=$sth -> fetchrow)
 1561: #                  {
 1562: #                       $forbidden{$first}=1;
 1563: #                  }
 1564:                   $sth->finish;
 1565: 
 1566:  	return $tmp-($x?$c:0);
 1567: }
 1568: sub GetMaxQId {
 1569: 	my ($dbh) = @_;
 1570: 	my ($sth) = $dbh->prepare("SELECT MAX(QuestionId) FROM Questions");
 1571: 	$sth->execute;
 1572: 	my $tmp=($sth->fetchrow)[0];
 1573:         $sth->finish;
 1574:  	return $tmp;
 1575: 
 1576: }
 1577: 
 1578: # Returns Id's of 12 random questions
 1579: sub Get12Random {
 1580:    my ($dbh, $type, $num) = @_;
 1581: 	my ($i, @questions, $q, $t, $sth);
 1582: 	my ($qnum) = &GetMaxQId($dbh);
 1583: 	my (%chosen);
 1584: 	srand;
 1585: 	my $where=0;
 1586: 	my $r=int (rand(10000));
 1587: 	my $w1=$r<5000? "QuestionId<50000 ":"QuestionId>=50000";
 1588: 	$w1=1 if $url=~/zaba/;
 1589: 	$w1=1 if $type!~/Ч/;
 1590: 	foreach (split '', $type)
 1591:         {
 1592:  	   $where.= " OR (Type ='$_') OR (Type ='$_Д') ";
 1593:  	}
 1594:         $where.= "OR (Type='ЧБ')" if ($type=~/Ч|Б/);
 1595: 
 1596: #   $q="select QuestionId, QuestionId/$r-floor(QuestionId/$r) as val 
 1597: #       from Questions where $where order by val limit $num";
 1598: # Когда на куличках появится mysql >=3.23 надо заменить на order by rand();
 1599:    $q="select QuestionId from Questions where ($w1) AND ($where) order by rand() limit $num";
 1600: 
 1601: 
 1602:    $sth=$dbh->prepare($q);
 1603:    $sth->execute;
 1604:    while (($i)=$sth->fetchrow)
 1605:    {
 1606:       push @questions,$i;
 1607:    }
 1608:    $sth->finish;
 1609:     for ($i=@questions; --$i;){ 
 1610:        my $j=rand ($i+1); 
 1611:        @questions[$i,$j]=@questions[$j,$i] unless $i==$j;
 1612:     }
 1613:    return @questions;
 1614: }
 1615: 
 1616: sub Include_virtual {
 1617: 	my ($fn, $output) = (@_, '');
 1618: 	return "\n<!--#include virtual=\"$fn\"-->\n" if ($opt_z);
 1619: 	open F , $fn
 1620: 		or return ""; #die "Can't open the file $fn: $!\n";
 1621: 
 1622: 	while (<F>) {
 1623: 		if (/<!--#include/o) {
 1624: 			s/<!--#include virtual="\/?([^\/].*)" -->/&Include_virtual($1)/e;
 1625: 		}
 1626: 		if (/<!--#exec/o) {
 1627: 			s/<!--#exec.*cmd\s*=\s*"([^"]*)".*-->/`$1`/e;
 1628: 		}
 1629: 		$output .= $_;
 1630: 	}
 1631: 	return $output||"";
 1632: }
 1633: 
 1634: sub PrintArchive {
 1635: 	my($dbh, $Id) = @_;
 1636: 	my ($output, @list, $i);
 1637: 
 1638: 	my (%Tournament) = &GetTournament($dbh, $Id);
 1639: 	my (@Tours) = &GetTours($dbh, $Id);
 1640: 	if ($Tournament{'Type'} =~ /Г/ || $Id == 0) {
 1641: 		for ($i = 0; $i <= $#Tours; $i++) {
 1642: 			push(@list ,&PrintArchive($dbh, $Tours[$i]));
 1643: 		}
 1644: 		return @list;
 1645: 	}
 1646: #	return "$SRCPATH/$Tournament{'FileName'} ";
 1647: 	return "$TMPDIR/$Tournament{'FileName'} ";
 1648: }
 1649: 
 1650: sub PrintAll {
 1651: 	my ($dbh, $Id,$fname) = @_;
 1652: 	my ($output, $list, $i);
 1653: 
 1654: 	my (%Tournament) = &GetTournament($dbh, $Id);
 1655: 	my (@Tours) = &GetTours($dbh, $Id);
 1656: 	my $SingleTour = $#Tours == 0;
 1657: 
 1658: 	my ($New) = ($Id and $Tournament{'Type'} eq 'Ч' and
 1659: 		&NewEnough($Tournament{"CreatedAt"})) ?
 1660: 		img({src=>"/znatoki/dimrub/db/new-sml.gif", alt=>"NEW!"}) : "";
 1661: 
 1662: 	if ($Id == 0) {
 1663: 		$output = h3("Все турниры");
 1664: 	} else {
 1665: 	         my $textid;
 1666: 		 if ($textid=$Tournament{'FileName'})
 1667: 		 {
 1668: 		   $textid=~s/\.txt//;
 1669: 		 }
 1670: 		 elsif ($textid=$Tournament{'Number'})
 1671: 		 {
 1672: 		      $fname=~s/\.txt//;
 1673: 		      $textid="$fname.$textid";
 1674: 		 }
 1675: 	         else {$textid=$Tournament{'Id'}};
 1676: 
 1677: 
 1678: 		$output .= dd(img({src=>"/icons/folder.gif", alt=>"[*]"}) .
 1679:       " " . a({href=>tourhref($textid,0,!$SingleTour)},
 1680:       $Tournament{'Title'}) ." " . ($Tournament{'PlayedAt'}||'') . " $New");
 1681: 	}
 1682: 	if ($Id == 0 or $Tournament{'Type'} =~ /Г/ or $Tournament{'Type'} eq '') {
 1683: 		for ($i = 0; $i <= $#Tours; $i++) {
 1684: 			$list .= &PrintAll($dbh, $Tours[$i],$Tournament{'FileName'});
 1685: 		}
 1686: 		$output .= dl($list);
 1687: 	}
 1688: 	return $output;
 1689: }
 1690: 
 1691: sub PrintDates {
 1692: 	my ($dbh) = @_;
 1693: 	my ($from) = param('from_year') . "-" . param('from_month') .
 1694: 		"-" .  param('from_day');
 1695: 	my ($to) = param('to_year') . "-" . param('to_month') . "-" .  param('to_day');
 1696: 	$from = $dbh->quote($from);
 1697: 	$to = $dbh->quote($to);
 1698: 	my ($sth) = $dbh->prepare("
 1699: 		SELECT DISTINCT Id
 1700: 		FROM Tournaments
 1701: 		WHERE PlayedAt >= $from AND PlayedAt <= $to
 1702: 		AND Type = 'Ч'
 1703: 	");
 1704: 	$sth->execute;
 1705: 	my (%Tournament, @array, $output, $list);
 1706: 
 1707: 	$output = h3("Список турниров, проходивших между $from и $to.");
 1708: 	while (@array = $sth->fetchrow) {
 1709: 		next
 1710: 			if (!$array[0]);
 1711: 		%Tournament = &GetTournament($dbh, $array[0]);
 1712: 	         my $textid;
 1713: 		 if ($textid=$Tournament{'FileName'})
 1714: 		 {
 1715: 		   $textid=~s/\.txt//;
 1716: 		 }
 1717: 		 elsif ($textid=$Tournament{'Number'})
 1718: 		 {
 1719: 		      $fname=~s/\.txt//;
 1720: 		      $textid="$fname.$textid";
 1721: 		 }
 1722: 	         else {$textid=$Tournament{'Id'}};
 1723:       $list .= dd(img({src=>"/icons/folder.gif", alt=>"[*]"}) .
 1724:       " " . a({href=>tourhref($textid,0,1)},
 1725:       $Tournament{'Title'}, $Tournament{'PlayedAt'}||''));
 1726: 	}
 1727:         $sth->finish;
 1728: 	$output .= dl($list);
 1729: 	return $output;
 1730: }
 1731: 
 1732: sub PrintQOfAuthor
 1733: {
 1734: 
 1735:     my ($dbh, $id) = @_;
 1736:     my $Output='';
 1737:     unless ($id=~/^\d+$/) {
 1738:       $id=$dbh->quote($id);
 1739:       my $sth =  $dbh->prepare("SELECT Id FROM Authors WHERE CharId=$id");
 1740:       $sth->execute;
 1741:       ($id)=$sth->fetchrow;
 1742:       $sth->finish;
 1743:     }
 1744:     $id=$dbh->quote($id);
 1745: 
 1746:     my $sth =  $dbh->prepare("SELECT  Name, Surname FROM Authors WHERE Id=$id");
 1747:     $sth->execute;
 1748:     my ($name,$surname)=$sth->fetchrow;
 1749: 
 1750:     $sth =  $dbh->prepare("SELECT Question FROM A2Q WHERE Author=$id");
 1751:     $sth->execute;
 1752:     my $q;
 1753:     my @Questions;
 1754:     while (($q)=$sth->fetchrow,$q)
 1755:      {push @Questions,$q unless $forbidden{$q}}
 1756:     $sth->finish;
 1757: 
 1758:     my ($output, $i, $suffix, $hits) = ('', 0, '', $#Questions + 1);
 1759: 
 1760:     if ($hits =~ /1.$/  || $hits =~ /[5-90]$/) {
 1761: 		$suffix = 'й';
 1762: 	} elsif ($hits =~ /1$/) {
 1763: 		$suffix = 'е';
 1764: 	} else {
 1765: 		$suffix = 'я';
 1766: 	}
 1767: 	$Output.= printform;
 1768: 	$Output.= p({align=>"center"}, "Автор ".strong("$name $surname ")
 1769: 	. " : $hits попадани$suffix.");
 1770: 
 1771: 
 1772: #	for ($i = 0; $i <= $#Questions; $i++) {
 1773: #		$output = &PrintQuestion($dbh, $Questions[$i], 1, $i + 1, 1);
 1774: #		print $output;
 1775: #	}
 1776:         $Output.=PrintList($dbh,\@Questions,'gdfgdfgdfgdfg');
 1777: }
 1778: 
 1779: 
 1780: sub PrintAuthors
 1781: {
 1782:      my ($dbh,$sort)=@_;
 1783:      my($output,$out1,@array,$sth);
 1784:      if ($sort eq 'surname')
 1785:      {
 1786:         $sth =
 1787:              $dbh->prepare("SELECT Id, Name, Surname, QNumber FROM Authors order by Surname, Name");
 1788:      }
 1789:      elsif($sort eq 'name')
 1790:      {
 1791:         $sth =
 1792:              $dbh->prepare("SELECT Id, Name, Surname, QNumber FROM Authors order by Name, Surname");
 1793:      }
 1794:      else
 1795:      {
 1796:         $sth =
 1797:              $dbh->prepare("SELECT Id, Name, Surname, QNumber FROM Authors Order by QNumber DESC, Surname");
 1798:      }
 1799: 
 1800:      $output.=h2("Авторы вопросов")."\n";
 1801:      $output.="<TABLE>";
 1802: 
 1803: 
 1804:      $sth->execute;
 1805:      $output.=Tr(th[a({href=>$url."?authors=name"},"Имя")
 1806: .", ".
 1807: a({href=>$url."?authors=surname"},"фамилия")
 1808:      , a({href=>$url."?authors=kvo"},"Количество вопросов")]);
 1809: 
 1810:      $out1='';
 1811: 
 1812:      my $ar=$sth->fetchall_arrayref;
 1813: 
 1814:      $sth->finish;
 1815: 
 1816: 
 1817:     foreach my $arr(@$ar)
 1818:      {
 1819: 
 1820:            my ($id,$name,$surname,$kvo)=@$arr;
 1821:            if (!$name || !$surname) {
 1822:               } else
 1823:            {
 1824:              my $add=Tr(td([a({href=>$url."?qofauthor=$id"},"$name $surname"), $kvo]))."\n";
 1825:              $output.=$add;
 1826:            }
 1827:      }
 1828:      $output.="</TABLE>";
 1829:      $sth->finish;
 1830:      return $output;
 1831: }
 1832: 
 1833: 
 1834: sub WriteFile {
 1835:   my ($dbh,$fname) = @_;
 1836:   $fname=~s/\s+$//;
 1837:   $fname=~s/^\s+//;
 1838:   $fname=~s/\.txt$//;
 1839:   $fname=~s/.*\/(\w+)/$1/;
 1840: 
 1841:   my $query= "SELECT Id, Title, Copyright, Info, URL, 
 1842:                       Editors, EnteredBy, PlayedAt, CreatedAt 
 1843:                      from Tournaments where FileName=
 1844:                      '$fname' OR FileName=".$dbh->quote("$fname.txt");
 1845:   my $sth=$dbh->prepare($query);
 1846:   my (%Question,%editor,%qnumber,%copyright,%author,%vid,%tourtitle);
 1847:   $sth->execute;
 1848:   my ($Id, $Title, $Copyright, $Info, $URL, 
 1849:    $Editors, $EnteredBy, $PlayedAt, $CreatedAt)=
 1850:       $sth->fetchrow;
 1851:   return -1 unless $Id;
 1852:   open (OUT, ">$TMPDIR/$fname.txt") || print STDERR "Error in $fname.txt\n";
 1853:   print OUT "Чемпионат:\n$Title\n\n";
 1854:   my $date=$PlayedAt||'00-00-00';
 1855:   my ($year,$month,$day)=split /-/, $date;
 1856: #  $month=0,$date=0 if $year && $month==1 && $day==1;
 1857:   my $pdate=sprintf("%02d-%3s-%4d",$day,$months[$month],$year);
 1858: 
 1859:   print OUT "Дата:\n$pdate\n\n" if $date;
 1860: 
 1861:   print OUT "URL:\n$URL\n\n" if $URL;
 1862: 
 1863:   print OUT "Инфо:\n$Info\n\n" if $Info;
 1864: 
 1865:   print OUT "Копирайт:\n$Copyright\n\n" if $Copyright;
 1866: 
 1867:   print OUT "Редактор:\n$Editors\n\n" if $Editors;
 1868: 
 1869: 
 1870:   $query= "SELECT Id, Title, Copyright, Editors from Tournaments where ParentId=$Id order by Id";
 1871:   $sth=$dbh->prepare($query);
 1872:   $sth->execute;
 1873:   my ($tourid,$tourtitle,$cright,$editor,@tours,$vid,$author,$tourauthor);
 1874: 
 1875: 
 1876:   while (($tourid,$tourtitle,$cright,$editor)=$sth->fetchrow,$tourid)
 1877:   {
 1878: #    $text{$tourid}="Тур:\n$tourtitle\n\n";
 1879:     $query= "SELECT * from Questions where ParentId=$tourid order by QuestionId";
 1880:     my $sth1=$dbh->prepare($query);
 1881:     $sth1->execute;
 1882:     push(@tours,$tourid);
 1883:     $tourtitle{$tourid}=$tourtitle;
 1884:     $copyright{$tourid}=$cright;
 1885:     $editor{$tourid}=$editor;
 1886:     $vid='';
 1887:     my $author='';
 1888:     my $eqauthor=1;
 1889:     my $qnumber=0;
 1890:     my @arr;
 1891:     while ( (@arr=$sth1->fetchrow), $arr[0])
 1892:     {
 1893: 	my($i, $name);
 1894: 	$i=0;
 1895: 	$qnumber++;
 1896: 	foreach $name (@{$sth1->{NAME}}) {
 1897: 	        if ($arr[$i]) {
 1898:   	           $arr[$i]=~s/^(.*?)\s*$/$1/;
 1899: 		   $Question{$tourid}[$qnumber]{$name} = $arr[$i];
 1900: 		} else {
 1901:   	            $Question{$tourid}[$qnumber]{$name} = 
 1902:                    ''}
 1903:                 $i++;
 1904: 	}
 1905: 	if ($vid)
 1906:         {
 1907:           if ($vid ne $Question{$tourid}[$qnumber]{'Type'}) {print STDERR "Warning: Different types for Tournament $tourid\n"}
 1908:         } else 
 1909:         {
 1910:             $vid=$Question{$tourid}[$qnumber]{'Type'};
 1911:         } 
 1912: 
 1913: 	if ($author)
 1914:         {
 1915:           if ($author ne $Question{$tourid}[$qnumber]{'Authors'})  
 1916:           {
 1917:              $eqauthor=0;
 1918:           }
 1919:         } else 
 1920:         {
 1921:             $author=$Question{$tourid}[$qnumber]{'Authors'};
 1922:             $eqauthor=0 unless $author;
 1923:         } 
 1924:     }
 1925:     $vid{$tourid}=$vid;
 1926:     $qnumber{$tourid}=$qnumber;
 1927:     $author{$tourid}=$eqauthor ? $author : '';
 1928:   }
 1929: 
 1930: 
 1931:   $vid='';
 1932:   my $eqvid=1;
 1933:   my $eqauthor=1;
 1934:   foreach (@tours)
 1935:   {
 1936:      $vid||=$vid{$_};
 1937:      if ($vid{$_} ne $vid)
 1938:      {
 1939:         $eqvid=0;
 1940:      }
 1941:      $author||=$author{$_};
 1942:      if (!$author{$_} || ($author{$_} ne $author))
 1943:      {
 1944:         $eqauthor=0;
 1945:      }
 1946:   }
 1947:   
 1948:   print OUT "Вид:\n$vid\n\n" if $eqvid;
 1949:   print OUT "Автор:\n$author\n\n" if $eqauthor;
 1950: 
 1951:   foreach my $tour(@tours)
 1952:   {
 1953:      print OUT "Тур:\n$tourtitle{$tour}\n\n";
 1954:      print OUT "Вид:\n$vid{$tour}\n\n" if  !$eqvid;
 1955:      print OUT "Копирайт:\n$copyright{$tour}\n\n" if $copyright{$tour} && ($copyright{$tour} ne $Copyright);
 1956:      print OUT "Редактор:\n$editor{$tour}\n\n" if $editor{$tour} && ($editor{$tour} ne $Editors);
 1957:      $tourauthor=0;
 1958:      if (!$eqauthor && $author{$tour})
 1959:      { 
 1960:        print OUT "Автор:\n$author{$tour}\n\n";
 1961:        $tourauthor=1;
 1962:      }
 1963:      foreach my $q(1..$qnumber{$tour})
 1964:      {
 1965:         print OUT "Вопрос $q:\n".$Question{$tour}[$q]{'Question'}."\n\n";
 1966: 	print OUT  "Ответ:\n".$Question{$tour}[$q]{'Answer'}."\n\n";
 1967: 	print OUT  "Зачёт:\n".$Question{$tour}[$q]{'PassCriteria'}."\n\n";
 1968: 	print OUT  "Автор:\n".$Question{$tour}[$q]{'Authors'}."\n\n" 
 1969:                if !$tourauthor && !$eqauthor && $Question{$tour}[$q]{'Authors'};
 1970: 	print OUT  "Комментарий:\n".$Question{$tour}[$q]{'Comments'}."\n\n" 
 1971:                if $Question{$tour}[$q]{'Comments'};
 1972: 	print OUT "Источник:\n".$Question{$tour}[$q]{'Sources'}."\n\n" 
 1973:                if $Question{$tour}[$q]{'Sources'};
 1974: 	print OUT "Рейтинг:\n".$Question{$tour}[$q]{'Rating'}."\n\n" 
 1975:                if $Question{$tour}[$q]{'Rating'};
 1976: 
 1977:      }
 1978:   }
 1979: 
 1980:   close OUT;
 1981: 
 1982: 
 1983: 
 1984: }
 1985: 
 1986: sub Bottom
 1987: {
 1988: 	my $output.=&Include_virtual("$footer")||"";
 1989: 	$output.=p."<center><font size=-2>Обновление: ".&Include_virtual("$datefooter")."</center></font>";
 1990: 	$output.=<<EEE
 1991: <SCRIPT LANGUAGE="JavaScript">
 1992: function toggle(e) {
 1993:   if (e.style.display == "none") {
 1994:      e.style.display="";
 1995:   } else {
 1996:      e.style.display = "none";
 1997:  }
 1998: }
 1999: </SCRIPT>
 2000: EEE
 2001: ;
 2002: 	$output.=end_html;
 2003: 	return $output;
 2004: }
 2005: 
 2006: 
 2007: MAIN:
 2008: {
 2009:         
 2010: 	setlocale(LC_CTYPE,'russian');
 2011: 	POSIX::setlocale( &POSIX::LC_ALL, $thislocale );
 2012: 	my($i, $tour);
 2013: 	my($text) = (param('text')) ? 1 : 0;
 2014: 	$tour = (param('tour')) ? param('tour') : 0;
 2015: 	my $texttour=$tour;
 2016: 	my ($sth,$dbh);
 2017: 	my($dsn) = "DBI:mysql:database=$dbname;host=$dbhost";
 2018:         $dbh = DBI->connect($dsn, $dbuser, $dbpass)
 2019: #	$dbh = DBI->connect("DBI:mysql:$dbname", $username, $dbpass)
 2020: 		or do {
 2021: 			print header.h1("Временные проблемы") . "База вопросов временно не
 2022: 			работает. Заходите попозже.";
 2023: 			print &Include_virtual("$reklama") if $url!~/localhost/;
 2024: 		    print end_html;
 2025: 			die "Can't connect to DB chgk\n";
 2026: 		};
 2027:         $dbh->do("set names koi8r");
 2028: 
 2029: 	if (param('qid') && (param('qid')=~/^\d+$/) || $tour && $tour=~/^\d+$/) {
 2030: #	   my $destination='http://chgk.zaba.ru/search.html';
 2031: #		print header (-'Content-Type' => 'text/html',
 2032: #                -'Location:'=> 'http:\\db.chgk.info');
 2033: 		Redirect($destination);
 2034:                 exit
 2035: 	}
 2036: 
 2037: 	if (0 && $tour && !param('qnumber') && (!param('answers')||(param('answers')<=1)))
 2038: 	{       
 2039: 	        my $n=param('tour');
 2040: 	        $n=~s/.txt$//;        
 2041: 		my $gr=($n=~/^[A-Z]/) || (-e "$realHTMLDIR$n.html");
 2042: 		my $destination=tourhref($tour,param('answers')||0,$gr);
 2043: 		my $d=$destination;
 2044: 		$d=~s/$HTMLDIR/$realHTMLDIR/;
 2045: #		print header.$destination;
 2046: #                print header."$d|".(-e "$realHTMLDIR$n.html");
 2047:                 if (-e $d) {
 2048: 			Redirect($destination);
 2049: 			exit
 2050: 		}
 2051: 		$d=~s/\.\d+//;
 2052: 		$destination=~s/\.\d+//;
 2053:                 if (-e $d) {
 2054: 			Redirect($destination);
 2055: 			exit
 2056: 		}
 2057: 
 2058: 	}
 2059: 
 2060: 	if ($tour !~ /^[0-9]*$/) {	    
 2061: 		    if ($tour=~/\./)
 2062: 		    {
 2063: 		        my ($fname,$n)= split /\./ , $tour;
 2064: 
 2065: 	                $sth = $dbh->prepare(
 2066:                        "SELECT t2.Id FROM Tournaments as t1, 
 2067:                         Tournaments as t2 
 2068: 			WHERE (t1.FileName = '$fname.txt' OR t1.FileName='$fname')
 2069:                         AND t1.Id=t2.ParentId AND t2.Number=$n");
 2070: 		    }	
 2071: 		    else 
 2072: 		        {
 2073:                           $sth = $dbh->prepare("SELECT Id FROM Tournaments
 2074: 			             WHERE FileName = '$tour.txt' OR 
 2075:                                        FileName = '$tour'");
 2076: 			}
 2077: 		    $sth->execute;
 2078: 	            $tour = ($sth->fetchrow)[0];
 2079:                     $sth->finish;
 2080: 	}
 2081: 
 2082: 
 2083: 	if ($text && !param ('comp')) {
 2084: 		print header('text/plain');
 2085: 	} elsif (!param('comp')) {
 2086: 		print header(-charset =>'koi8-r')}
 2087: 	  my $sstr=param('sstr');
 2088:           $opt_z||=param("makehtml");
 2089: 	  if (param('qid')) {
 2090: 	      my $sth;
 2091: 	      my $qid=param('qid');
 2092: #		if ($qid !~ /^[0-9]+$/) 
 2093:                 {
 2094:                     my ($fname,$t,$n)= split /\./ , $qid;
 2095:                     $n=$t,$t='' unless $n;
 2096:                     $t||=1;
 2097: 		    if ($t)
 2098: 		    {
 2099: 	                $sth = $dbh->prepare(
 2100:                        "SELECT t2.Id FROM Tournaments as t1, 
 2101:                         Tournaments as t2 
 2102: 			WHERE (t1.FileName = '$fname.txt' OR t1.FileName='$fname')
 2103:                         AND t1.Id=t2.ParentId AND t2.Number=$t");
 2104: 		    }	
 2105: #		    else 
 2106: #		        {
 2107: #                          $sth = $dbh->prepare("SELECT Id FROM Tournaments
 2108: #			             WHERE FileName = '$fname.txt' OR FileName = '$fname'" );
 2109: #			}
 2110: 		    $sth->execute;
 2111: 	            $tour = ($sth->fetchrow)[0];
 2112:                     $sth->finish;
 2113: 	            $sth = $dbh->prepare(
 2114:                        "SELECT QuestionId FROM 
 2115:                         Questions 
 2116: 			WHERE ParentId=$tour AND 
 2117:                         Questions.Number=$n");
 2118: 		        $sth->execute;
 2119: 	                $qid = ($sth->fetchrow)[0];
 2120:               	     my $query="SELECT Question, Answer from Questions where QuestionId=$qid";
 2121: 	      	     $sth=$dbh->prepare($query);
 2122: 	      	     $sth->execute;
 2123: 	      	     $sstr= join ' ',$sth->fetchrow;
 2124:               	     $sth->finish;
 2125: 	      	     $searchin{'Question'}=1;
 2126: 	      	     $searchin{'Answer'}=1;
 2127:               	     $sstr=~tr/ёЁ/еЕ/;
 2128:               	     $sstr=~s/[^йцукенгшщзхъфывапролджэячсмитьбюЙЦУКЕНГШЩЗХЪФЫВАПРОЛДЖЭЯЧСМИТЬБЮa-zA-Z0-9]/ /gi;
 2129:               	     $proxysstr=$sstr;
 2130:               	     $proxysstr=makeproxysstr($dbh,\$proxysstr);
 2131:               } 
 2132:               
 2133:  	}
 2134: 
 2135: 
 2136: 	if (!param('comp') and !param('sqldump') and !$text) {
 2137: 	   my $title="Результаты поиска на \"". ($proxysstr||$sstr) .'"' 
 2138:                                                     if ($proxysstr||$sstr);
 2139:            $title||="База вопросов";
 2140: 	   $globaloutput.=start_html(-"title"=>$title,
 2141: 	           -author=>'dimrub@icomverse.com',
 2142: 	           -bgcolor=>'#fff0e0',
 2143: 				  -vlink=>'#800020');#}
 2144: $globaloutput.="<style>
 2145: td	{font-size: x-small; font-family : sans-serif}
 2146: th	{font-size: x-small; font-family : sans-serif}
 2147: </style>\n";
 2148: 
 2149: 		$globaloutput.=&Include_virtual("$reklama")||'';
 2150: 	}
 2151: 
 2152:        if ($usehash && !$opt_z && length ($qs)<=255 && $qs !~ /(sstr)|(rand)|(comp)|(all=)/i) {
 2153:         	my $sth=$dbh->prepare("SELECT page,times,t from hash where query=".$dbh->quote($qs));
 2154:         	$sth->execute();
 2155:         	my ($p,$times,$t)=$sth->fetchrow();
 2156:         	$sth->finish;
 2157:         	if ($p) {
 2158: 			print ".$p";
 2159: 			$dbh->disconnect;
 2160: 			exit ;
 2161: 		}
 2162:        }
 2163: 
 2164: 
 2165: 
 2166: 
 2167:         if (param('hideequal')) {
 2168: 	           my ($sth)=  $dbh -> prepare("select first, second FROM equalto");
 2169: 	           $sth -> execute;
 2170: 	           while ( my  ($first, $second)=$sth -> fetchrow)
 2171:                   {
 2172:                        $forbidden{$first}=1;
 2173:                   }
 2174:                   $sth->finish;
 2175:         }
 2176: 
 2177: 
 2178: 
 2179: 	if (param('rand')) {
 2180: 		my ($type, $qnum) = ('', 12);
 2181: 		$type.=$TypeName{$_} foreach param('type');
 2182: #		$type .= 'Б' if (param('brain'));
 2183: #		$type .= 'Ч' if (param('chgk'));
 2184: 		$qnum = param('qnum') if (param('qnum') =~ /^\d+$/);
 2185: 		$qnum = 0 if (!$type);
 2186: 		my $Email;
 2187: 		if (($Email=param('email')) && -x $SENDMAIL &&
 2188: 		open(F, "| $SENDMAIL $Email")) {
 2189: 			my ($mime_type) = $text ? "plain" : "html";
 2190: 			print F <<EOT;
 2191: To: $Email
 2192: From: olegstepanov\@mail.ru
 2193: Subject: Sluchajnij Paket Voprosov "Chto? Gde? Kogda?"
 2194: MIME-Version: 1.0
 2195: Content-type: text/$mime_type; charset="koi8-r"
 2196: 
 2197: EOT
 2198: 			print F &PrintRandom($dbh, $type, $qnum, $text);
 2199: 			close F;
 2200: 			$globaloutput.= "Пакет случайно выбранных вопросов послан по адресу $Email. Нажмите
 2201: 			на <B>Reload</B> для получения еще одного пакета";
 2202: 		} else {
 2203: 			$globaloutput.= &PrintRandom($dbh, $type, $qnum, $text);
 2204: 		}
 2205: 	}
 2206: 	  elsif (param('authors')){
 2207:                 $globaloutput.= &PrintAuthors($dbh,param('authors'));
 2208:         }
 2209:           elsif (param('qofauthor')){
 2210:                 $globaloutput.= &PrintQOfAuthor($dbh,param('qofauthor'));
 2211:         }
 2212:           elsif (param('sstr')||param('was')) {
 2213: 		$globaloutput.=&PrintSearch($dbh, $sstr||' ', param('metod')||'',param('was'));
 2214: 		$dbh->do("delete from lastqueries where
 2215:                       (TO_DAYS(NOW()) - TO_DAYS(t) >= 2) OR
 2216: 		           (time_to_sec(now())-time_to_sec(t) >3600)") if $usewas && random(30)==0;
 2217: 	} 
 2218: 	  elsif (param('qid')) {
 2219:  	      $globaloutput.=&PrintSearch($dbh, $sstr||'', 'proxy');
 2220:  	}
 2221:  	elsif (param('getfile')){
 2222:            $globaloutput.=&writefile
 2223:  	} elsif (param('all')) {
 2224: #	   my $destination='http://db.chgk.info/all.html';
 2225: #		Redirect($destination);
 2226: #                exit;
 2227: 		$globaloutput.=&PrintAll($dbh, 0);
 2228: 	} elsif (param('from_year') && param('to_year')) {
 2229: 		$globaloutput.=&PrintDates($dbh);
 2230: 	} elsif (param('comp')) {
 2231:             print "Content-Type: application/octet-stream\n";
 2232:             print  "Content-Type: application/force-download\n";
 2233:             print  "Content-Type: application/download\n";
 2234:             print  "Content-Type: application/x-zip-compressed; name=$texttour.zip\n";
 2235:             print "Content-Disposition: attachment; filename=$texttour.zip \n\n";
 2236: 	    $tour ||= 0;
 2237: 	    my (@files) = &PrintArchive($dbh, $tour);
 2238: 	    WriteFile($dbh,$_) foreach @files;
 2239: 	    open F, "$ZIP -j - @files |";
 2240: 	    binmode(F);
 2241: 	    binmode(STDOUT);
 2242: 	    print join "",<F>;
 2243: 	    close F;
 2244: 	    $dbh->disconnect;
 2245: 	    exit;
 2246: 	} elsif (param('sqldump')) {
 2247: 	    print header(
 2248: 			 -'Content-Type' => 'application/x-zip-compressed; name="dump.zip"',
 2249: 			 -'Content-Disposition' => 'attachment; filename="dump.zip"'
 2250: 			 );
 2251: 	    open F, "$ZIP -j - $DUMPFILE |";
 2252: 	    print (<F>);
 2253: 	    close F;
 2254: 	    $dbh->disconnect;
 2255: 	    exit;
 2256: 
 2257: 	} 
 2258:         elsif (!$opt_z && !param("makehtml")) {
 2259: 		my $QuestionNumber=0;
 2260: 		my $qnum;
 2261: 		if ($qnum=param('qnumber')){
 2262:       	          my ($sth) = $dbh->prepare("SELECT QuestionId FROM Questions
 2263: 		     WHERE ParentId=$tour AND Number=$qnum");
 2264: 		  $sth->execute;
 2265: 		  $QuestionNumber=($sth->fetchrow)[0]||0;
 2266: 	        }
 2267: 	        if ($QuestionNumber) {
 2268: 		  $globaloutput.= &PrintQuestion($dbh, $QuestionNumber, $withanswers||0, $qnum, 1,$text,0);
 2269: #                                        $dbh, $Id, $answer, $qnum, $title, $text
 2270: 		} else  {
 2271:   		   $globaloutput.=&PrintTournament($dbh, $tour, $withanswers);
 2272:   		}
 2273: 	}
 2274: 	else {
 2275: 	          $opt_z=1;
 2276: 	          $url="http://db.chgk.info/cgi-bin/db.cgi";
 2277: 	          open TS, $timestamp;
 2278: 	          my $d=$dbh->quote(<TS>);
 2279: 	          close TS;
 2280: 		  open FF, ">${realHTMLDIR}index.html" or die "ERROR! - ${HTMLDIR}index.html\n";
 2281: 		       my $o=$globaloutput;
 2282: 		       $o.=&PrintTournament($dbh, 0, 0);
 2283: 		       $o.=&Bottom;
 2284: 		       print FF $o;
 2285: 		  close FF;
 2286: 		  open FF, ">${realHTMLDIR}all.html" or die "ERROR! - ${HTMLDIR}all.html\n";
 2287: 		       $o=$globaloutput;
 2288: 		       $o.=&PrintAll($dbh,0);
 2289: 		       $o.=&Bottom;
 2290: 		       print FF $o;
 2291: 		       close FF;
 2292: 
 2293: 
 2294: #      	          my ($sth) = $dbh->prepare("SELECT t1.Id, t1.FileName, t1.Type, 
 2295: #			count(t2.Id) 
 2296: #                     FROM Tournaments as t1, Tournaments as t2
 2297: #		     WHERE t1.CreatedAt>$d AND t2.ParentId=t1.Id GROUP BY t1.Id");
 2298: my ($sth) = $dbh->prepare("SELECT t1.Id, t1.FileName, t1.Type, count(t2.Id)  FROM Tournaments as t1  LEFT JOIN Tournaments as t2 
 2299:  ON t2.ParentId=t1.id WHERE t1.CreatedAt>=$d GROUP BY t1.Id");
 2300: 		  $sth->execute;
 2301: 		  my ($Id,$fname,$type,$c);
 2302: 		  while (($Id,$fname,$type,$c)=$sth->fetchrow,$Id) {
 2303: 		     next unless $fname;
 2304: 		     print "$fname\n";
 2305: 		     $fname=~s/\.txt$//;
 2306: 		     if ($type=~/Т/ || $c<=1)
 2307: 		     {
 2308: 		       open FF, ">$realHTMLDIR$fname-q.html" or die "ERROR! - $fname-q.html\n";
 2309: 		       my $o=$globaloutput;
 2310: 		       $paramtour=$fname;
 2311: 		       $o.=&PrintTournament($dbh, $Id, 0);
 2312: 		       $o.=&Bottom;
 2313: 		       print FF $o;
 2314: 		       close FF;
 2315: 		       open FF, ">$realHTMLDIR$fname-a.html";
 2316: 		       $o=$globaloutput;
 2317: 		       $o.=&PrintTournament($dbh, $Id, 1);
 2318: 		       $o.=&Bottom;
 2319: 		       print FF $o;
 2320: 		       close FF;
 2321: 		     }
 2322: 		     else {
 2323: 		       open FF, ">$realHTMLDIR$fname.html" or die "ERROR! - $fname-q.html\n";
 2324: 		       my $o=$globaloutput;
 2325: 		       $o.=&PrintTournament($dbh, $Id, 0);
 2326: 		       $o.=&Bottom;
 2327: 		       print FF $o;
 2328: 		       close FF;
 2329: 
 2330: 		     }
 2331:                   }
 2332:         }
 2333: 	if (!$text) {
 2334: 		$globaloutput.=&Bottom;
 2335: 	}
 2336:         if (!$opt_z){ 
 2337: 	  print $globaloutput;
 2338: 	  if (($qs!~ /(rand)|(sstr)|(comp)/i) && (length $qs<=255) && $usehash) {
 2339: 		$globaloutput=  $dbh->quote($globaloutput);
 2340: 		$dbh->do("insert into hash (query,page) values (".
 2341: 		$dbh->quote($qs).
 2342:                     ",$globaloutput)");
 2343: 	  }
 2344: 	}
 2345: 
 2346: 	$dbh->disconnect;
 2347: }

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>