/[wopi]/make_poll.pl
This is repository of my old source code which isn't updated any more. Go to git.rot13.org for current projects!
ViewVC logotype

Diff of /make_poll.pl

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1.6 by dpavlin, Thu Apr 24 19:11:45 2003 UTC revision 1.10 by dpavlin, Sat Oct 11 11:40:36 2003 UTC
# Line 53  my $prefix="wopi_"; Line 53  my $prefix="wopi_";
53  # this is usename in database  # this is usename in database
54  my $db_user="dpavlin";  my $db_user="dpavlin";
55    
56    # This option allows users to fill poll without using invitation URL.
57    # That also means it's unpossible for them to return to exiting poll
58    # because they don't have thair own unique ID. Howver, it enables simple
59    # polls to be conducted by just publishing URL to them.
60    my $without_invitation=0;
61    
62    # This will remove numbers before answers. That enables you to have
63    # answers written like:
64    # 1.1 red
65    # 1.2 black
66    # and users will see just "red" and "black"
67    my $remove_nrs_in_answers=0;
68    
69  #------------------------------------------------------------------  #------------------------------------------------------------------
70    
71  sub suck_file {  sub suck_file {
# Line 83  $out.=' Line 96  $out.='
96                  $sql="update '.$poll.' set '.join(",\n",@sql_update).',                  $sql="update '.$poll.' set '.join(",\n",@sql_update).',
97                          do_stranice=\'$PHP_SELF\'                          do_stranice=\'$PHP_SELF\'
98                          where id=$id";                          where id=$id";
99                  print "<pre>$sql</pre>";  #               print "<pre>$sql</pre>";
100                  $result=pg_Exec($conn,fix_sql($sql));                  $result=pg_Exec($conn,fix_sql($sql));
101          } elseif($do_stranice != $PHP_SELF && isset($do_uri) && isset($a)) {          } elseif($do_stranice != $PHP_SELF && isset($do_uri) && isset($a)) {
102                  Header("Location: $do_uri?a=$a");                  Header("Location: $do_uri?a=$a");
# Line 179  $p->parsefile($xmlfile); Line 192  $p->parsefile($xmlfile);
192  print "p[$page_nr] ";  print "p[$page_nr] ";
193    
194  open(PAGE, ">$poll/$last_fn") or die "Couldn't open $last_fn for writing:\n$!";  open(PAGE, ">$poll/$last_fn") or die "Couldn't open $last_fn for writing:\n$!";
 if ($page_nr <= 2) {  
         print PAGE php_new_poll();  
 }  
195  print PAGE php_header($page_nr,@prelast_sql_update);  print PAGE php_header($page_nr,@prelast_sql_update);
196  my $next_fn=sprintf("%02d.php",$page_nr);  my $next_fn=sprintf("%02d.php",$page_nr);
197  $last_page=~s/##NEXTPAGE##/$next_fn/;  $last_page=~s/##NEXTPAGE##/$next_fn/;
# Line 197  close(PAGE); Line 207  close(PAGE);
207  # dump sql structure  # dump sql structure
208    
209  open(SQL,">$poll/$poll.sql") || die "$poll.sql: $!";  open(SQL,">$poll/$poll.sql") || die "$poll.sql: $!";
210    print SQL "drop database ".$prefix.$poll.";\n";
211    print SQL "create database ".$prefix.$poll.";\n";
212    print SQL "\\connect ".$prefix.$poll.";\n";
213  print SQL "create table poslani ( member_id int4 not null, unesen timestamp default now() );\n";  print SQL "create table poslani ( member_id int4 not null, unesen timestamp default now() );\n";
214  print SQL "create table $poll (do_stranice text default null, ",join(",\n",@sql_create),");\n";  print SQL "create table $poll (do_stranice text default null, ",join(",\n",@sql_create),");\n";
215  close(SQL);  close(SQL);
# Line 212  $common_php =~ s/##DB_USER##/$db_user/g; Line 225  $common_php =~ s/##DB_USER##/$db_user/g;
225  $common_php =~ s/##PREFIX##/$prefix/g;  $common_php =~ s/##PREFIX##/$prefix/g;
226  my $members_db = $prefix."members";  my $members_db = $prefix."members";
227  $common_php =~ s/##MEMBERS_DB##/$members_db/g;  $common_php =~ s/##MEMBERS_DB##/$members_db/g;
228    $common_php =~ s/##WITHOUT_INVITATION##/$without_invitation/g;
229    
230  print PHP $common_php;  print PHP $common_php;
231  close(PHP);  close(PHP);
# Line 232  rename "$poll/01.php","$poll/index.php" Line 246  rename "$poll/01.php","$poll/index.php"
246    
247  # return unique name of pitanje  # return unique name of pitanje
248  sub new_pit {  sub new_pit {
249          my $out="p".$pitanje_nr.$p_suffix;          my $out="p".$pitanje_nr;
250            $out .= "_".$p_suffix if ($p_suffix);
251          $curr_suffix=$p_suffix;          $curr_suffix=$p_suffix;
252          $p_suffix++;          $p_suffix++;
253          return $out;          return $out;
# Line 438  sub sgml_escape { Line 453  sub sgml_escape {
453  }  # End sgml_escape  }  # End sgml_escape
454    
455    
 sub php_new_poll {  
         return '<?php  
 include_once("common.php");  
 if (isset($do_stranice) && $do_stranice !="") {  
         Header("Location: $do_uri?a=$a");  
         exit;  
 }  
 $member_id=id_decode($a);  
 $sql="insert into '.$poll.' ( http_referer,remote_addr,user_agent, member_id ) values (\'$HTTP_REFERER\',\'$REMOTE_ADDR\',\'$HTTP_USER_AGENT\',$member_id)";  
   
 #       print "<pre>$sql</pre>";  
         $result=pg_Exec($conn,fix_sql($sql));  
         $lastoid=pg_getlastoid($result);  
         $result = pg_Exec($conn,fix_sql("select id from '.$poll.' where oid=$lastoid"));  
         $row=pg_fetch_row($result,0);  
         $id=$row[0];  
 ?>';  
 }  
   
456  ################################################################  ################################################################
457    
458  package Poll;  package Poll;
# Line 475  sub page { Line 471  sub page {
471    
472                          if (defined $last_fn) {                          if (defined $last_fn) {
473                                  open(PAGE, ">$poll/$last_fn") or die "Couldn't open $last_fn for writing:\n$!";                                  open(PAGE, ">$poll/$last_fn") or die "Couldn't open $last_fn for writing:\n$!";
474                                  if ($page_nr < 2) {                                  print PAGE php_header($page_nr,@prelast_sql_update);
                                         print PAGE php_new_poll();  
                                 } else {  
                                         print PAGE php_header($page_nr,@prelast_sql_update);  
                                 } # last_sql_update  
   
   
475                                  my $next_fn=sprintf("%02d.php",$page_nr);                                  my $next_fn=sprintf("%02d.php",$page_nr);
476                                  $last_page=~s/##NEXTPAGE##/$next_fn/;                                  $last_page=~s/##NEXTPAGE##/$next_fn/;
477                                  print PAGE $last_page;                                  print PAGE $last_page;
# Line 620  sub dropdown { Line 610  sub dropdown {
610                  if (defined $text) {                  if (defined $text) {
611                          chomp $text;                          chomp $text;
612                          $text=~s/^\s*//g;                          $text=~s/^\s*//g;
613                          $text=~s/^[\d\.\s]+//g;                          $text=~s/^[\d\.\s]+//g if ($remove_nrs_in_answers);
614                          $text=~s/\s*$//g;                          $text=~s/\s*$//g;
615                          push @dropdown_data,x($text) if ($text ne "");                          push @dropdown_data,x($text) if ($text ne "");
616                  } else {                  } else {
# Line 688  sub radiobuttons { Line 678  sub radiobuttons {
678                  if (defined $text) {                  if (defined $text) {
679                          chomp $text;                          chomp $text;
680                          $text=~s/^\s*//g;                          $text=~s/^\s*//g;
681                          $text=~s/^[\d\.\s]+//g;                          $text=~s/^[\d\.\s]+//g if ($remove_nrs_in_answers);
682                          $text=~s/\s*$//g;                          $text=~s/\s*$//g;
683                          push @radiobuttons_data,x($text) if ($text ne "");                          push @radiobuttons_data,x($text) if ($text ne "");
684                  } else {                  } else {
# Line 733  sub checkboxes { Line 723  sub checkboxes {
723                  if (defined $text) {                  if (defined $text) {
724                          chomp $text;                          chomp $text;
725                          $text=~s/^\s*//g;                          $text=~s/^\s*//g;
726                          $text=~s/^[\d\.\s]+//g;                          $text=~s/^[\d\.\s]+//g if ($remove_nrs_in_answers);
727                          $text=~s/\s*$//g;                          $text=~s/\s*$//g;
728                          push @checkboxes_data,x($text) if ($text ne "");                          push @checkboxes_data,x($text) if ($text ne "");
729                  } else {                  } else {
# Line 771  sub checkboxes { Line 761  sub checkboxes {
761          }          }
762  }  }
763    
764    print "\n\nTo create database for poll $poll use:\n\n";
765    print "\$ psql template1 < $poll/$poll.sql\n\n";
766    print "THIS WILL DISTROY ALL DATA IN EXISTING DATABASE ".$prefix.$poll." !!\n";
767    
768  # read configuration data  # read configuration data
769  #  #
770  # FIX: write actually this :-)  # FIX: write actually this :-)
# Line 782  sub config { Line 776  sub config {
776                  my ($xp, $text) = @_;                  my ($xp, $text) = @_;
777                  $db_user=x($attref->{db_user});                  $db_user=x($attref->{db_user});
778                  $prefix=x($attref->{prefix});                  $prefix=x($attref->{prefix});
779                    $without_invitation=x($attref->{without_invitation}) &&
780                            print "Pool is without need for unique ID (and invitation URLs).\n";
781                    $remove_nrs_in_answers=x($attref->{$remove_nrs_in_answers}) &&
782                            print "Numbers before answers will be removed.\n";
783          }          }
784  }  }
785    

Legend:
Removed from v.1.6  
changed lines
  Added in v.1.10

  ViewVC Help
Powered by ViewVC 1.1.26