fix persons and sites registration pages for latest changes
[plewww.git] / planetlab / sites / register.php
1 <?php
2 //
3 // Site registration and verification form. 
4 //
5 // Thierry Parmentelat -- INRIA 
6 // based on persons/register.php 
7 //
8
9 // Get session and API handles
10 require_once 'plc_session.php';
11 global $plc, $api, $adm;
12
13 // Print header
14 require_once 'plc_drupal.php';
15 drupal_set_title('New Site Registration');
16 include 'plc_header.php';
17
18 require_once 'site_form.php';
19 require_once 'details.php';
20 require_once 'nifty.php';
21
22 $verbose = FALSE;
23
24 // initialize objects
25 $objectnames = array ('site','pi','tech','address');
26
27 $site_form = build_site_form(TRUE);
28 $input = parse_form ($site_form, $_REQUEST, $input);
29 $empty_form = $input['is_empty'];
30
31 $site=$input['site'];
32 $pi=$input['pi'];
33 $tech=$input['tech'];
34 $address=$input['address'];
35
36 # allow address to be left out
37 function non_empty_address ($address) {
38   return !empty($address['line1']);
39 }
40
41 if (! $empty_form ) {
42   // Look for missing/blank entries
43   $error = form_check_required ($site_form, $input);
44   $messages= array();
45   $verboses= array();
46
47   if (empty($error)) {
48
49     // I considered using begin/commit
50     // but first it was incorrectly reporting errors - which I fixed
51     // second: you need site_id to perform AddSiteAddress
52     // but you cannot write
53     // begin()
54     // site_id=AddSite()
55     // AddSiteAddress(site_id,..)
56     // because site_id would not be evaluated at the time you use it
57     //
58     // and you cannot either write
59     // begin
60     // AddSite(..)
61     // AddSiteAddress('login_base',...)
62     // because if the first call fails because login_base is already taken, 
63     // then you're going to add the new address to the wrong site
64     // 
65     // the bottom line is, there's no advantage in using begin/commit at all
66     
67     // creating the site
68     $site['enabled']=FALSE;
69     global $PENDING_CONSORTIUM_ID;
70     $site['ext_consortium_id']=$PENDING_CONSORTIUM_ID;
71     $site_id=$adm->AddSite($site);
72     $api_error .= $adm->error();
73     if (empty($api_error)) {
74       $verboses [] = "Site created as disabled, with ext_consortium_id=".$PENDING_CONSORTIUM_ID;
75     } else {
76       $error .= $api_error;
77     }
78   }
79   
80   if (empty($error)) {
81
82     // Thierry on august 22 2007
83     // use NotifySupport to send this message, and get rid of the fake account
84
85     $subject = "Site registration form : new site " . $site['name'];
86     // should use GetMessages and stuff, but I do not trust the way 
87     // templates are created in db-config, for upgrades notably
88     $template = <<< EOF
89 We received a site registration form for site name %s
90
91 To review, please visit https://%s:%d/db/sites/join_request.php?review=t&site_id=%d.
92 EOF;
93     $body=sprintf($template,$site['name'],PLC_WWW_HOST,PLC_WWW_SSL_PORT,$site_id);
94     $adm->NotifySupport($subject,$body);
95       
96     $messages [] = "Your registration request has been received.";
97     $messages [] = "A mail was sent to the operations team, your application should be processed shortly.";
98     $messages [] = "Upon approval, the PI will receive an information e-mail";
99     $messages [] = "Please send a message to " . PLC_MAIL_SUPPORT_ADDRESS . " if this request is not instructed within a few days.";
100
101   // creating address
102     if (non_empty_address($address)) {
103       $adm->AddSiteAddress($site_id,$address);
104       $api_error = $adm->error();
105       if (empty($api_error)) {
106         $verboses [] = "Address created";
107       } else {
108         $error .= $api_error;
109       }
110     }
111
112     // creating PI
113     // Thierry 23 august 2007
114     // avoid using a pre-existing federated account
115     $known_pi = $adm->GetPersons(array("email"=>$pi['email'],
116                                        "peer_id"=>NULL),array("person_id"));
117     if ($known_pi) {
118       $messages [] = " Note: PI was already known";
119       $pi_id=$known_pi[0]['person_id'];
120     } else {
121       $pi['enabled']=FALSE;
122       $pi_id=$adm->AddPerson($pi);
123       $api_error = $adm->error();
124       if (empty($api_error)) {
125         $verboses [] = "PI created as disabled</p>";
126       } else {
127         $error .= $api_error;
128       }
129     }
130     if ($adm->AddPersonToSite($pi_id,$site_id)) {
131       $verboses [] = "PI attached to new site";
132     }
133     if ($adm->AddRoleToPerson('pi',$pi_id)) {
134       $verboses [] = $pi['email'] . " granted PI role</p>";
135     }
136     
137     if ($pi['email'] == $tech['email']) {
138       // need to assign tech role so the registration request gets filled properly
139       if ($adm->AddRoleToPerson('tech',$pi_id)) {
140         $verboses [] = $pi['email'] . " granted Tech role</p>";
141       }
142     } else {
143       // creating TECH
144       $known_tech = $adm->GetPersons(array("email"=>$tech['email'],
145                                            "peer_id"=>NULL),array("person_id"));
146       // jan-2013 with improvements in plcapi-5.1-6 about managing persons and tags,
147       // AddPerson has gone more picky and we need to remove some fields
148       // that no longer are silently ignored by AddPerson
149       $user_role_required=$tech['user-role'];
150       unset($tech['user-role']);
151       if ($known_tech) {
152         $messages [] = " Note: Tech was already known";
153         $tech_id=$known_tech[0]['person_id'];
154       } else {
155         $tech['enabled']=FALSE;
156         $tech_id=$adm->AddPerson($tech);
157         $api_error = $adm->error();
158         if (empty($api_error)) {
159           $verboses [] = "Tech created as disabled</p>";
160         } else {
161           $error .= $api_error;
162         }
163       }
164       if ($adm->AddPersonToSite($tech_id,$site_id)) {
165         $verboses [] = "Tech attached to new site";
166       }
167       if ($adm->AddRoleToPerson('tech',$tech_id)) {
168         $verboses [] = $tech['email'] . " granted Tech role";
169       }
170       if ( $user_role_required && $adm->AddRoleToPerson('user',$tech_id) ) {
171         $verboses [] = $tech['email'] . " granted User role";
172       }
173     }
174   }
175     
176
177   // Show messages
178   if (!empty($messages)) {
179     print '<div class="messages status"><ul>';
180     foreach ($messages as $line) {
181       print "<li> $line";
182     }
183     print "</ul></div>";
184   }
185         
186   if ($verbose && !empty($verboses)) {
187     print '<div class="messages status"><ul>';
188     print "<p> Verbose messages</p>";
189     foreach ($verboses as $line) {
190       print "<li> $line";
191     }
192     print "</ul></div>";
193   }
194         
195   if (!empty($error)) {
196     print '<div class="messages error">' . $error . '</div>';
197   } else {
198     // to prevent resubmit
199     $site['site_id']="XXX";
200   }
201 }
202
203 $self = $_SERVER['PHP_SELF'];
204 if (!empty($_SERVER['QUERY_STRING'])) {
205   $self .= "?" . $_SERVER['QUERY_STRING'];
206 }
207
208 print <<<EOF
209 <div class="content">
210
211 <form action="$self" method="post">
212
213 EOF;
214
215 $nifty=new PlekitNifty ('register','site-register','medium');
216 $nifty->start();
217 $details = new PlekitDetails(TRUE);
218 $details -> start();
219
220 $register_button='<input type="submit" name="op" value="Register"  class="form-submit" />';
221
222 // Do not allow resubmits
223 if (empty($site['site_id'])) {
224   $details->tr($register_button,'center');
225 }
226
227 form_render_details ($details, $site_form, $input, ! $empty_form);
228
229 // Do not allow resubmits
230 if (empty($site['site_id'])) {
231   // some space
232   $details->space();
233   $details->tr($register_button,'center');
234 }
235
236 $details -> end();
237 $nifty->end();
238 print "</form></div>";
239
240 include 'plc_footer.php';
241
242 ?>