* put the vcard we just read back in.
[citadel.git] / ctdlphp / ctdlsession.php
1 <?PHP
2 // $Id$
3 //
4 // This gets called from within the header functions.  It establishes or
5 // connects to a PHP session, and then connects to Citadel if necessary.
6 //
7 // Web designers: please make changes in ctdlheader.php, not here.
8 //
9 // Copyright (c) 2003 by Art Cancro <ajc@uncensored.citadel.org>
10 // This program is released under the terms of the GNU General Public License.
11
12
13 function establish_citadel_session() {
14
15         global $session, $clientsocket;
16
17         if (strcmp('4.3.0', phpversion()) > 0) {
18                 die("This program requires PHP 4.3.0 or newer.");
19         }
20
21
22         session_start();
23
24         if (isset($_SESSION["ctdlsession"])) {
25                 $session = $_SESSION["ctdlsession"];
26         }
27         else {
28                 $session = "CtdlSession." . time() . rand(1000,9999) ;
29                 $_SESSION["ctdlsession"] = $session;
30         }
31
32         // See if there's a Citadel connection proxy open for this session.
33         // The name of the socket is identical to the name of the
34         // session, and it's found in the /tmp directory.
35
36         $sockname = "/tmp/" . $session . ".socket" ;
37
38         $clientsocket = fsockopen($sockname, 0, $errno, $errstr, 5);
39         if (!$clientsocket) {
40                 // It ain't there, dude.  Open up the proxy. (C version)
41                 //$cmd = "./sessionproxy " . $sockname ;
42                 //exec($cmd);
43
44                 // It ain't there, dude.  Open up the proxy.  (PHP version)
45                 if (CITADEL_DEBUG_PROXY){
46                         $stdout = '>>/tmp/sessionproxyout.txt';
47                 }
48                 else{
49                         $stdout = '>/dev/null';
50                 }
51
52                 $cmd = "./sessionproxy.php " . $sockname .
53                         " </dev/null ".$stdout."2>&1 " .
54                         " 3>&1 4>&1 5>&1 6>&1 7>&1 8>&1 & " ;
55                 exec($cmd);
56
57                 // Keep attempting connections 10 times per second up to 100 times
58                 $attempts = 0;
59                 while (!$clientsocket) {
60                         usleep(100);
61                         $clientsocket = fsockopen($sockname, 0, $errno, $errstr, 5);
62                         $attempts += 1;
63                         if ($attempts > 100) {
64                                 echo "ERROR: unable to start connection proxy. ";
65                                 echo "Please contact your system administrator.<BR>\n";
66                                 flush();
67                                 exit(1);
68                         }
69                 }
70
71                 // At this point we have a good connection to Citadel.
72                 $identity=array(
73                         "DevelNr" => '0',
74                         "ClientID" => '8',
75                         "VersionNumber" => '001',
76                         "ClientInfoString" => 'PHP web client|',
77                         "Remote Address" => $_SERVER['REMOTE_ADDR'] );
78
79                 ctdl_iden($identity);   // Identify client
80                 ctdl_MessageFormatsPrefered(array("text/html","text/plain"));
81                 if (isset($_SESSION["username"])) {
82                         login_existing_user(
83                                 $_SESSION["username"],
84                                 $_SESSION["password"]
85                         );
86                 }
87
88                 if (isset($_SESSION["room"])) {
89                         ctdl_goto($_SESSION["room"]);
90                 }
91                 else {
92                         ctdl_goto("_BASEROOM_");
93                 }
94         }
95
96         if (!isset($_SESSION["serv_humannode"])) {
97                 $server_info = ctdl_get_serv_info();
98                 print_r($server_info);
99                 $keys = array_keys($server_info);
100                 foreach ($keys as $key)
101                         $_SESSION[$key] = $server_info[$key];
102         }
103
104         // If the user is trying to call up any page other than
105         // login.php logout.php do_login.php,
106         // and the session is not logged in, redirect to login.php
107         //
108         if (isset($_SESSION["logged_in"]) && ($_SESSION["logged_in"] != 1)) {
109                 $filename = basename(getenv('SCRIPT_NAME'));
110                 if (    (strcmp($filename, "login.php"))
111                    &&   (strcmp($filename, "logout.php"))
112                    &&   (strcmp($filename, "do_login.php"))
113                 ) {
114                         header("Location: login.php");
115                         exit(0);
116                 }
117         }
118
119         
120 }
121
122
123 //
124 // Clear out both our Citadel session and our PHP session.  We're done.
125 //
126 function ctdl_end_session() {
127         global $clientsocket, $session;
128
129         // Tell the Citadel server to terminate our connection.
130         // (The extra newlines force it to see that the Citadel session
131         // ended, and the proxy will quit.)
132         //
133         fwrite($clientsocket, "QUIT\n\n\n\n\n\n\n\n\n\n\n");
134         $response = fgets($clientsocket, 4096);         // IGnore response
135         fclose($clientsocket);
136         unset($clientsocket);
137
138         // Now clear our PHP session.
139         $_SESSION = array();
140         session_write_close();
141 }
142
143 ?>