]> scripts.mit.edu Git - autoinstalls/wordpress.git/blob - wp-signup.php
cbea1268898474d634a974c86610ce9b8d1855fb
[autoinstalls/wordpress.git] / wp-signup.php
1 <?php
2
3 /** Sets up the WordPress Environment. */
4 require( dirname(__FILE__) . '/wp-load.php' );
5
6 add_action( 'wp_head', 'signuppageheaders' ) ;
7
8 require( './wp-blog-header.php' );
9 require_once( ABSPATH . WPINC . '/registration.php' );
10
11 if ( is_array( get_site_option( 'illegal_names' )) && isset( $_GET[ 'new' ] ) && in_array( $_GET[ 'new' ], get_site_option( 'illegal_names' ) ) == true ) {
12         wp_redirect( network_home_url() );
13         die();
14 }
15
16 function do_signup_header() {
17         do_action("signup_header");
18 }
19 add_action( 'wp_head', 'do_signup_header' );
20
21 function signuppageheaders() {
22         echo "<meta name='robots' content='noindex,nofollow' />\n";
23 }
24
25 if ( !is_multisite() ) {
26         wp_redirect( get_option( 'siteurl' ) . "/wp-login.php?action=register" );
27         die();
28 }
29
30 if ( !is_main_site() ) {
31         wp_redirect( network_home_url( 'wp-signup.php' ) );
32         die();
33 }
34
35 // Fix for page title
36 $wp_query->is_404 = false;
37
38 function wpmu_signup_stylesheet() {
39         ?>
40         <style type="text/css">
41                 .mu_register { width: 90%; margin:0 auto; }
42                 .mu_register form { margin-top: 2em; }
43                 .mu_register .error { font-weight:700; padding:10px; color:#333333; background:#FFEBE8; border:1px solid #CC0000; }
44                 .mu_register input[type="submit"],
45                         .mu_register #blog_title,
46                         .mu_register #user_email,
47                         .mu_register #blogname,
48                         .mu_register #user_name { width:100%; font-size: 24px; margin:5px 0; }
49                 .mu_register .prefix_address,
50                         .mu_register .suffix_address {font-size: 18px;display:inline; }
51                 .mu_register label { font-weight:700; font-size:15px; display:block; margin:10px 0; }
52                 .mu_register label.checkbox { display:inline; }
53                 .mu_register .mu_alert { font-weight:700; padding:10px; color:#333333; background:#ffffe0; border:1px solid #e6db55; }
54         </style>
55         <?php
56 }
57
58 add_action( 'wp_head', 'wpmu_signup_stylesheet' );
59 get_header();
60
61 do_action( 'before_signup_form' );
62 ?>
63 <div id="content" class="widecolumn">
64 <div class="mu_register">
65 <?php
66 function show_blog_form($blogname = '', $blog_title = '', $errors = '') {
67         global $current_site;
68         // Blog name
69         if ( !is_subdomain_install() )
70                 echo '<label for="blogname">' . __('Site Name:') . '</label>';
71         else
72                 echo '<label for="blogname">' . __('Site Domain:') . '</label>';
73
74         if ( $errmsg = $errors->get_error_message('blogname') ) { ?>
75                 <p class="error"><?php echo $errmsg ?></p>
76         <?php }
77
78         if ( !is_subdomain_install() )
79                 echo '<span class="prefix_address">' . $current_site->domain . $current_site->path . '</span><input name="blogname" type="text" id="blogname" value="'. esc_attr($blogname) .'" maxlength="60" /><br />';
80         else
81                 echo '<input name="blogname" type="text" id="blogname" value="'.esc_attr($blogname).'" maxlength="60" /><span class="suffix_address">.' . ( $site_domain = preg_replace( '|^www\.|', '', $current_site->domain ) ) . '</span><br />';
82
83         if ( !is_user_logged_in() ) {
84                 print '(<strong>' . __( 'Your address will be ' );
85                 if ( !is_subdomain_install() )
86                         print $current_site->domain . $current_site->path . __( 'sitename' );
87                 else
88                         print __( 'domain.' ) . $site_domain . $current_site->path;
89                 echo '.</strong>) ' . __( 'Must be at least 4 characters, letters and numbers only. It cannot be changed, so choose carefully!' ) . '</p>';
90         }
91
92         // Blog Title
93         ?>
94         <label for="blog_title"><?php _e('Site Title:') ?></label>
95         <?php if ( $errmsg = $errors->get_error_message('blog_title') ) { ?>
96                 <p class="error"><?php echo $errmsg ?></p>
97         <?php }
98         echo '<input name="blog_title" type="text" id="blog_title" value="'.esc_attr($blog_title).'" />';
99         ?>
100
101         <div id="privacy">
102         <p class="privacy-intro">
103             <label for="blog_public_on"><?php _e('Privacy:') ?></label>
104             <?php _e('Allow my site to appear in search engines like Google, Technorati, and in public listings around this network.'); ?>
105             <br style="clear:both" />
106             <label class="checkbox" for="blog_public_on">
107                 <input type="radio" id="blog_public_on" name="blog_public" value="1" <?php if ( !isset( $_POST['blog_public'] ) || $_POST['blog_public'] == '1' ) { ?>checked="checked"<?php } ?> />
108                 <strong><?php _e( 'Yes' ); ?></strong>
109             </label>
110             <label class="checkbox" for="blog_public_off">
111                 <input type="radio" id="blog_public_off" name="blog_public" value="0" <?php if ( isset( $_POST['blog_public'] ) && $_POST['blog_public'] == '0' ) { ?>checked="checked"<?php } ?> />
112                 <strong><?php _e( 'No' ); ?></strong>
113             </label>
114         </p>
115         </div>
116
117         <?php
118         do_action('signup_blogform', $errors);
119 }
120
121 function validate_blog_form() {
122         $user = '';
123         if ( is_user_logged_in() )
124                 $user = wp_get_current_user();
125
126         return wpmu_validate_blog_signup($_POST['blogname'], $_POST['blog_title'], $user);
127 }
128
129 function show_user_form($user_name = '', $user_email = '', $errors = '') {
130         // User name
131         echo '<label for="user_name">' . __('Username:') . '</label>';
132         if ( $errmsg = $errors->get_error_message('user_name') ) {
133                 echo '<p class="error">'.$errmsg.'</p>';
134         }
135         echo '<input name="user_name" type="text" id="user_name" value="'. esc_attr($user_name) .'" maxlength="60" /><br />';
136         _e( '(Must be at least 4 characters, letters and numbers only.)' );
137         ?>
138
139         <label for="user_email"><?php _e( 'Email&nbsp;Address:' ) ?></label>
140         <?php if ( $errmsg = $errors->get_error_message('user_email') ) { ?>
141                 <p class="error"><?php echo $errmsg ?></p>
142         <?php } ?>
143         <input name="user_email" type="text" id="user_email" value="<?php  echo esc_attr($user_email) ?>" maxlength="200" /><br /><?php _e('We send your registration email to this address. (Double-check your email address before continuing.)') ?>
144         <?php
145         if ( $errmsg = $errors->get_error_message('generic') ) {
146                 echo '<p class="error">' . $errmsg . '</p>';
147         }
148         do_action( 'signup_extra_fields', $errors );
149 }
150
151 function validate_user_form() {
152         return wpmu_validate_user_signup($_POST['user_name'], $_POST['user_email']);
153 }
154
155 function signup_another_blog($blogname = '', $blog_title = '', $errors = '') {
156         global $current_user, $current_site;
157
158         if ( ! is_wp_error($errors) ) {
159                 $errors = new WP_Error();
160         }
161
162         // allow definition of default variables
163         $filtered_results = apply_filters('signup_another_blog_init', array('blogname' => $blogname, 'blog_title' => $blog_title, 'errors' => $errors ));
164         $blogname = $filtered_results['blogname'];
165         $blog_title = $filtered_results['blog_title'];
166         $errors = $filtered_results['errors'];
167
168         echo '<h2>' . sprintf( __( 'Get <em>another</em> %s site in seconds' ), $current_site->site_name ) . '</h2>';
169
170         if ( $errors->get_error_code() ) {
171                 echo '<p>' . __( 'There was a problem, please correct the form below and try again.' ) . '</p>';
172         }
173         ?>
174         <p><?php printf( __( 'Welcome back, %s. By filling out the form below, you can <strong>add another site to your account</strong>. There is no limit to the number of sites you can have, so create to your heart&#8217;s content, but write responsibly!' ), $current_user->display_name ) ?></p>
175
176         <?php
177         $blogs = get_blogs_of_user($current_user->ID);
178         if ( !empty($blogs) ) { ?>
179
180                         <p><?php _e( 'Sites you are already a member of:' ) ?></p>
181                         <ul>
182                                 <?php foreach ( $blogs as $blog ) {
183                                         $home_url = get_home_url( $blog->userblog_id );
184                                         echo '<li><a href="' . esc_url( $home_url ) . '">' . $home_url . '</a></li>';
185                                 } ?>
186                         </ul>
187         <?php } ?>
188
189         <p><?php _e( 'If you&#8217;re not going to use a great site domain, leave it for a new user. Now have at it!' ) ?></p>
190         <form id="setupform" method="post" action="wp-signup.php">
191                 <input type="hidden" name="stage" value="gimmeanotherblog" />
192                 <?php do_action( "signup_hidden_fields" ); ?>
193                 <?php show_blog_form($blogname, $blog_title, $errors); ?>
194                 <p class="submit"><input type="submit" name="submit" class="submit" value="<?php esc_attr_e( 'Create Site' ) ?>" /></p>
195         </form>
196         <?php
197 }
198
199 function validate_another_blog_signup() {
200         global $wpdb, $current_user, $blogname, $blog_title, $errors, $domain, $path;
201         $current_user = wp_get_current_user();
202         if ( !is_user_logged_in() )
203                 die();
204
205         $result = validate_blog_form();
206         extract($result);
207
208         if ( $errors->get_error_code() ) {
209                 signup_another_blog($blogname, $blog_title, $errors);
210                 return false;
211         }
212
213         $public = (int) $_POST['blog_public'];
214         $meta = apply_filters( 'signup_create_blog_meta', array( 'lang_id' => 1, 'public' => $public ) ); // deprecated
215         $meta = apply_filters( 'add_signup_meta', $meta );
216
217         wpmu_create_blog( $domain, $path, $blog_title, $current_user->id, $meta, $wpdb->siteid );
218         confirm_another_blog_signup($domain, $path, $blog_title, $current_user->user_login, $current_user->user_email, $meta);
219         return true;
220 }
221
222 function confirm_another_blog_signup($domain, $path, $blog_title, $user_name, $user_email = '', $meta = '') {
223         ?>
224         <h2><?php printf( __( 'The site %s is yours.' ), "<a href='http://{$domain}{$path}'>{$blog_title}</a>" ) ?></h2>
225         <p>
226                 <?php printf( __( '<a href="http://%1$s">http://%2$s</a> is your new site.  <a href="%3$s">Log in</a> as &#8220;%4$s&#8221; using your existing password.' ), $domain.$path, $domain.$path, "http://" . $domain.$path . "wp-login.php", $user_name ) ?>
227         </p>
228         <?php
229         do_action( 'signup_finished' );
230 }
231
232 function signup_user($user_name = '', $user_email = '', $errors = '') {
233         global $current_site, $active_signup;
234
235         if ( !is_wp_error($errors) )
236                 $errors = new WP_Error();
237         if ( isset( $_POST[ 'signup_for' ] ) )
238                 $signup[ esc_html( $_POST[ 'signup_for' ] ) ] = 'checked="checked"';
239         else
240                 $signup[ 'blog' ] = 'checked="checked"';
241
242         //TODO - This doesn't seem to do anything do we really need it?
243         $signup['user'] = isset( $signup['user'] ) ? $signup['user'] : '';
244
245         // allow definition of default variables
246         $filtered_results = apply_filters('signup_user_init', array('user_name' => $user_name, 'user_email' => $user_email, 'errors' => $errors ));
247         $user_name = $filtered_results['user_name'];
248         $user_email = $filtered_results['user_email'];
249         $errors = $filtered_results['errors'];
250
251         ?>
252
253         <h2><?php printf( __( 'Get your own %s account in seconds' ), $current_site->site_name ) ?></h2>
254         <form id="setupform" method="post" action="wp-signup.php">
255                 <input type="hidden" name="stage" value="validate-user-signup" />
256                 <?php do_action( "signup_hidden_fields" ); ?>
257                 <?php show_user_form($user_name, $user_email, $errors); ?>
258
259                 <p>
260                 <?php if ( $active_signup == 'blog' ) { ?>
261                         <input id="signupblog" type="hidden" name="signup_for" value="blog" />
262                 <?php } elseif ( $active_signup == 'user' ) { ?>
263                         <input id="signupblog" type="hidden" name="signup_for" value="user" />
264                 <?php } else { ?>
265                         <input id="signupblog" type="radio" name="signup_for" value="blog" <?php echo $signup['blog'] ?> />
266                         <label class="checkbox" for="signupblog"><?php _e('Gimme a site!') ?></label>
267                         <br />
268                         <input id="signupuser" type="radio" name="signup_for" value="user" <?php echo $signup['user'] ?> />
269                         <label class="checkbox" for="signupuser"><?php _e('Just a username, please.') ?></label>
270                 <?php } ?>
271                 </p>
272
273                 <p class="submit"><input type="submit" name="submit" class="submit" value="<?php esc_attr_e('Next') ?>" /></p>
274         </form>
275         <?php
276 }
277
278 function validate_user_signup() {
279         $result = validate_user_form();
280         extract($result);
281
282         if ( $errors->get_error_code() ) {
283                 signup_user($user_name, $user_email, $errors);
284                 return false;
285         }
286
287         if ( 'blog' == $_POST['signup_for'] ) {
288                 signup_blog($user_name, $user_email);
289                 return false;
290         }
291
292         wpmu_signup_user($user_name, $user_email, apply_filters( "add_signup_meta", array() ) );
293
294         confirm_user_signup($user_name, $user_email);
295         return true;
296 }
297
298 function confirm_user_signup($user_name, $user_email) {
299         ?>
300         <h2><?php printf( __( '%s is your new username' ), $user_name) ?></h2>
301         <p><?php _e( 'But, before you can start using your new username, <strong>you must activate it</strong>.' ) ?></p>
302         <p><?php printf(__( 'Check your inbox at <strong>%1$s</strong> and click the link given.' ),  $user_email) ?></p>
303         <p><?php _e( 'If you do not activate your username within two days, you will have to sign up again.' ); ?></p>
304         <?php
305         do_action( 'signup_finished' );
306 }
307
308 function signup_blog($user_name = '', $user_email = '', $blogname = '', $blog_title = '', $errors = '') {
309         if ( !is_wp_error($errors) )
310                 $errors = new WP_Error();
311
312         // allow definition of default variables
313         $filtered_results = apply_filters('signup_blog_init', array('user_name' => $user_name, 'user_email' => $user_email, 'blogname' => $blogname, 'blog_title' => $blog_title, 'errors' => $errors ));
314         $user_name = $filtered_results['user_name'];
315         $user_email = $filtered_results['user_email'];
316         $blogname = $filtered_results['blogname'];
317         $blog_title = $filtered_results['blog_title'];
318         $errors = $filtered_results['errors'];
319
320         if ( empty($blogname) )
321                 $blogname = $user_name;
322         ?>
323         <form id="setupform" method="post" action="wp-signup.php">
324                 <input type="hidden" name="stage" value="validate-blog-signup" />
325                 <input type="hidden" name="user_name" value="<?php echo esc_attr($user_name) ?>" />
326                 <input type="hidden" name="user_email" value="<?php echo esc_attr($user_email) ?>" />
327                 <?php do_action( "signup_hidden_fields" ); ?>
328                 <?php show_blog_form($blogname, $blog_title, $errors); ?>
329                 <p class="submit"><input type="submit" name="submit" class="submit" value="<?php esc_attr_e('Signup') ?>" /></p>
330         </form>
331         <?php
332 }
333
334 function validate_blog_signup() {
335         // Re-validate user info.
336         $result = wpmu_validate_user_signup($_POST['user_name'], $_POST['user_email']);
337         extract($result);
338
339         if ( $errors->get_error_code() ) {
340                 signup_user($user_name, $user_email, $errors);
341                 return false;
342         }
343
344         $result = wpmu_validate_blog_signup($_POST['blogname'], $_POST['blog_title']);
345         extract($result);
346
347         if ( $errors->get_error_code() ) {
348                 signup_blog($user_name, $user_email, $blogname, $blog_title, $errors);
349                 return false;
350         }
351
352         $public = (int) $_POST['blog_public'];
353         $meta = array ('lang_id' => 1, 'public' => $public);
354         $meta = apply_filters( "add_signup_meta", $meta );
355
356         wpmu_signup_blog($domain, $path, $blog_title, $user_name, $user_email, $meta);
357         confirm_blog_signup($domain, $path, $blog_title, $user_name, $user_email, $meta);
358         return true;
359 }
360
361 function confirm_blog_signup($domain, $path, $blog_title, $user_name = '', $user_email = '', $meta) {
362         ?>
363         <h2><?php printf( __( 'Congratulations! Your new site, %s, is almost ready.' ), "<a href='http://{$domain}{$path}'>{$blog_title}</a>" ) ?></h2>
364
365         <p><?php _e( 'But, before you can start using your site, <strong>you must activate it</strong>.' ) ?></p>
366         <p><?php printf( __( 'Check your inbox at <strong>%s</strong> and click the link given.' ),  $user_email) ?></p>
367         <p><?php _e( 'If you do not activate your site within two days, you will have to sign up again.' ); ?></p>
368         <h2><?php _e( 'Still waiting for your email?' ); ?></h2>
369         <p>
370                 <?php _e( 'If you haven&#8217;t received your email yet, there are a number of things you can do:' ) ?>
371                 <ul id="noemail-tips">
372                         <li><p><strong><?php _e( 'Wait a little longer. Sometimes delivery of email can be delayed by processes outside of our control.' ) ?></strong></p></li>
373                         <li><p><?php _e( 'Check the junk or spam folder of your email client. Sometime emails wind up there by mistake.' ) ?></p></li>
374                         <li><?php printf( __( 'Have you entered your email correctly?  You have entered %s, if it&#8217;s incorrect, you will not receive your email.' ), $user_email ) ?></li>
375                 </ul>
376         </p>
377         <?php
378         do_action( 'signup_finished' );
379 }
380
381 // Main
382 $active_signup = get_site_option( 'registration' );
383 if ( !$active_signup )
384         $active_signup = 'all';
385
386 $active_signup = apply_filters( 'wpmu_active_signup', $active_signup ); // return "all", "none", "blog" or "user"
387
388 // Make the signup type translatable.
389 $i18n_signup['all'] = _x('all', 'Multisite active signup type');
390 $i18n_signup['none'] = _x('none', 'Multisite active signup type');
391 $i18n_signup['blog'] = _x('blog', 'Multisite active signup type');
392 $i18n_signup['user'] = _x('user', 'Multisite active signup type');
393
394 if ( is_super_admin() )
395         echo '<div class="mu_alert">' . sprintf( __( 'Greetings Site Administrator! You are currently allowing &#8220;%s&#8221; registrations. To change or disable registration go to your <a href="%s">Options page</a>.' ), $i18n_signup[$active_signup], esc_url( network_admin_url( 'ms-options.php' ) ) ) . '</div>';
396
397 $newblogname = isset($_GET['new']) ? strtolower(preg_replace('/^-|-$|[^-a-zA-Z0-9]/', '', $_GET['new'])) : null;
398
399 $current_user = wp_get_current_user();
400 if ( $active_signup == "none" ) {
401         _e( 'Registration has been disabled.' );
402 } elseif ( $active_signup == 'blog' && !is_user_logged_in() ) {
403         if ( is_ssl() )
404                 $proto = 'https://';
405         else
406                 $proto = 'http://';
407         $login_url = site_url( 'wp-login.php?redirect_to=' . urlencode($proto . $_SERVER['HTTP_HOST'] . '/wp-signup.php' ));
408         echo sprintf( __( 'You must first <a href="%s">log in</a>, and then you can create a new site.' ), $login_url );
409 } else {
410         $stage = isset( $_POST['stage'] ) ?  $_POST['stage'] : 'default';
411         switch ( $stage ) {
412                 case 'validate-user-signup' :
413                         if ( $active_signup == 'all' || $_POST[ 'signup_for' ] == 'blog' && $active_signup == 'blog' || $_POST[ 'signup_for' ] == 'user' && $active_signup == 'user' )
414                                 validate_user_signup();
415                         else
416                                 _e( 'User registration has been disabled.' );
417                 break;
418                 case 'validate-blog-signup':
419                         if ( $active_signup == 'all' || $active_signup == 'blog' )
420                                 validate_blog_signup();
421                         else
422                                 _e( 'Site registration has been disabled.' );
423                         break;
424                 case 'gimmeanotherblog':
425                         validate_another_blog_signup();
426                         break;
427                 case 'default':
428                 default :
429                         $user_email = isset( $_POST[ 'user_email' ] ) ? $_POST[ 'user_email' ] : '';
430                         do_action( "preprocess_signup_form" ); // populate the form from invites, elsewhere?
431                         if ( is_user_logged_in() && ( $active_signup == 'all' || $active_signup == 'blog' ) )
432                                 signup_another_blog($newblogname);
433                         elseif ( is_user_logged_in() == false && ( $active_signup == 'all' || $active_signup == 'user' ) )
434                                 signup_user( $newblogname, $user_email );
435                         elseif ( is_user_logged_in() == false && ( $active_signup == 'blog' ) )
436                                 _e( 'Sorry, new registrations are not allowed at this time.' );
437                         else
438                                 _e( 'You are logged in already. No need to register again!' );
439
440                         if ( $newblogname ) {
441                                 $newblog = get_blogaddress_by_name( $newblogname );
442
443                                 if ( $active_signup == 'blog' || $active_signup == 'all' )
444                                         printf( __( '<p><em>The site you were looking for, <strong>%s</strong> does not exist, but you can create it now!</em></p>' ), $newblog );
445                                 else
446                                         printf( __( '<p><em>The site you were looking for, <strong>%s</strong>, does not exist.</em></p>' ), $newblog );
447                         }
448                         break;
449         }
450 }
451 ?>
452 </div>
453 </div>
454 <?php do_action( 'after_signup_form' ); ?>
455
456 <?php get_footer(); ?>