/[Frey]/trunk/lib/Frey/Server.pm
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 /trunk/lib/Frey/Server.pm

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

trunk/server.pl revision 13 by dpavlin, Sun Jun 29 00:17:56 2008 UTC trunk/lib/Frey/Server.pm revision 19 by dpavlin, Sun Jun 29 12:55:39 2008 UTC
# Line 1  Line 1 
1  #!/usr/bin/perl  package Frey::Server;
2    
 # server of yet unnamed framework  
   
 use warnings;  
3  use strict;  use strict;
4    use warnings;
 use lib 'lib';  
5    
6  use Continuity;  use Continuity;
7  use Continuity::REPL;  use Continuity::REPL;
# Line 23  $server = Continuity->new( Line 19  $server = Continuity->new(
19    port => 16001,    port => 16001,
20    path_session => 1,    path_session => 1,
21    cookie_session => 'sid',    cookie_session => 'sid',
22      callback => \&main,
23  );  );
24  $server->debug_level( 2 );  $server->debug_level( 2 );
25    
# Line 35  sub main { Line 32  sub main {
32    my ($req) = @_;    my ($req) = @_;
33        
34    my $path = $req->request->url->path;    my $path = $req->request->url->path;
35    print STDERR "Path: '$path'\n";    warn "REQUEST: $path\n";
36    
37          warn $req->request->header('User_Agent');          warn $req->request->header('User_Agent');
38  #warn dump( $req );  #warn dump( $req );
39    
40    # If this is a request for the pushtream, then give them that    # If this is a request for the pushtream, then give them that
41    if($path =~ /pushstream/) {    if($path =~ /pushstream/) {
42      pushstream($req);          pushstream($req);
43    }    }
44        
45    # If they are sending us a message, we give them a thread for that too    # If they are sending us a message, we give them a thread for that too
46    if($path =~ /sendmessage/) {    if($path =~ /sendmessage/) {
47      send_message($req);          send_message($req);
48    }    }
49    
50    # Otherwise, lets give them the base page    # Otherwise, lets give them page
51    send_base_page($req);    send_page($req);
52  }  }
53    
54  # Here we accept a connection to the browser, and keep it open. Meanwhile we  # Here we accept a connection to the browser, and keep it open. Meanwhile we
# Line 93  sub send_message { Line 90  sub send_message {
90    
91  # This isn't a pushstream, nor a new message. It is just the main page. We loop  # This isn't a pushstream, nor a new message. It is just the main page. We loop
92  # in case they ask for it multiple times :)  # in case they ask for it multiple times :)
93  sub send_base_page {  sub send_page {
94    my ($req) = @_;    my ($req) = @_;
95    while(1) {    while(1) {
96          warn "param = ",dump($req->param);          warn "param = ",dump($req->param);
97            $req->print( HTML->view( 'status' ) );
         my $id = $req->param('id');  
 #       $id = 1 unless $id =~ m/^\d+$/;  
   
         use Strix::User;  
         my $user = Strix::User->new( id => $id );  
   
         if ( ! $user ) {  
                 $req->conn->send_status_line( 500, "user $id" );  
                 $req->print( "Can't find user with id $id" );  
         } else {  
                 $req->print( HTML->view( 'user', $user ) );  
         }  
   
 =for later  
     $req->print(qq{  
       <html>  
         <head>  
           <title>Chat!</title>  
           <script src="jquery.js" type="text/javascript"></script>  
           <script src="chat-ajax-push.js" type="text/javascript"></script>  
         </head>  
         <body>  
           <form id=f>  
           <input type=text id=username name=usernamename size=10>  
           <input type=text id=message name=message size=50>  
           <input type=submit name="sendbutton" value="Send" id="sendbutton">  
           <span id=status></span>  
           </form>  
           <br>  
           <div id=log>-- no messages yet --</div>  
         </body>  
       </html>  
     });  
 =cut  
98      $req->next;      $req->next;
   
99          Module::Refresh->refresh;          Module::Refresh->refresh;
100    }    }
101  }  }
102    
   

Legend:
Removed from v.13  
changed lines
  Added in v.19

  ViewVC Help
Powered by ViewVC 1.1.26