diff -r 000000000000 -r d970ebf37754 wp/wp-signup.php --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/wp/wp-signup.php Wed Nov 06 03:21:17 2013 +0000 @@ -0,0 +1,736 @@ + section of the site sign-up screen. + * + * @since 3.0.0 + */ + do_action( 'signup_header' ); +} +add_action( 'wp_head', 'do_signup_header' ); + +if ( !is_multisite() ) { + wp_redirect( site_url('wp-login.php?action=register') ); + die(); +} + +if ( !is_main_site() ) { + wp_redirect( network_site_url( 'wp-signup.php' ) ); + die(); +} + +// Fix for page title +$wp_query->is_404 = false; + +/** + * Prints styles for front-end Multisite signup pages + * + * @since MU + */ +function wpmu_signup_stylesheet() { + ?> + + +
+
+' . __('Site Name:') . ''; + else + echo ''; + + if ( $errmsg = $errors->get_error_message('blogname') ) { ?> +

+ ' . $current_site->domain . $current_site->path . '
'; + else + echo '.' . ( $site_domain = preg_replace( '|^www\.|', '', $current_site->domain ) ) . '
'; + + if ( !is_user_logged_in() ) { + if ( !is_subdomain_install() ) + $site = $current_site->domain . $current_site->path . __( 'sitename' ); + else + $site = __( 'domain' ) . '.' . $site_domain . $current_site->path; + echo '

(' . sprintf( __('Your address will be %s.'), $site ) . ') ' . __( 'Must be at least 4 characters, letters and numbers only. It cannot be changed, so choose carefully!' ) . '

'; + } + + // Blog Title + ?> + + get_error_message('blog_title') ) { ?> +

+ '; + ?> + +
+

+ + +
+ + +

+
+ + ' . __('Username:') . ''; + if ( $errmsg = $errors->get_error_message('user_name') ) { + echo '

'.$errmsg.'

'; + } + echo '
'; + _e( '(Must be at least 4 characters, letters and numbers only.)' ); + ?> + + + get_error_message('user_email') ) { ?> +

+ +
+ get_error_message('generic') ) { + echo '

' . $errmsg . '

'; + } + /** + * Fires at the end of the user registration form on the site sign-up form. + * + * @since 3.0.0 + * + * @param array $errors An array possibly containing 'user_name' or 'user_email' errors. + */ + do_action( 'signup_extra_fields', $errors ); +} + +/** + * Validate user signup name and email + * + * @since MU + * + * @uses wpmu_validate_user_signup() to retrieve an array of user data + * @return array Contains username, email, and error messages. + */ +function validate_user_form() { + return wpmu_validate_user_signup($_POST['user_name'], $_POST['user_email']); +} + +/** + * Allow returning users to sign up for another site + * + * @since MU + * + * @uses wp_get_current_user() to get the current user + * @param string $blogname The new site name + * @param string $blog_title The new blog title + * @param array $errors + */ +function signup_another_blog($blogname = '', $blog_title = '', $errors = '') { + global $current_site; + $current_user = wp_get_current_user(); + + if ( ! is_wp_error($errors) ) { + $errors = new WP_Error(); + } + + $signup_defaults = array( + 'blogname' => $blogname, + 'blog_title' => $blog_title, + 'errors' => $errors + ); + + /** + * Filter the default site sign-up variables. + * + * @since 3.0.0 + * + * @param array $signup_defaults { + * An array of default site sign-up variables. + * + * @type string $blogname The site blogname. + * @type string $blog_title The site title. + * @type array $errors An array possibly containing 'blogname' or 'blog_title' errors. + * } + */ + $filtered_results = apply_filters( 'signup_another_blog_init', $signup_defaults ); + + $blogname = $filtered_results['blogname']; + $blog_title = $filtered_results['blog_title']; + $errors = $filtered_results['errors']; + + echo '

' . sprintf( __( 'Get another %s site in seconds' ), $current_site->site_name ) . '

'; + + if ( $errors->get_error_code() ) { + echo '

' . __( 'There was a problem, please correct the form below and try again.' ) . '

'; + } + ?> +

add another site to your account. There is no limit to the number of sites you can have, so create to your heart’s content, but write responsibly!' ), $current_user->display_name ) ?>

+ + ID); + if ( !empty($blogs) ) { ?> + +

+ + + +

+
+ + + +

+
+ get_error_code() ) { + signup_another_blog($blogname, $blog_title, $errors); + return false; + } + + $public = (int) $_POST['blog_public']; + + $blog_meta_defaults = array( + 'lang_id' => 1, + 'public' => $public + ); + + /** + * Filter the new site meta variables. + * + * @since MU + * @deprecated 3.0.0 Use the 'add_signup_meta' filter instead. + * + * @param array $blog_meta_defaults An array of default blog meta variables. + */ + $meta = apply_filters( 'signup_create_blog_meta', $blog_meta_defaults ); + /** + * Filter the new default site meta variables. + * + * @since 3.0.0 + * + * @param array $meta { + * An array of default site meta variables. + * + * @type int $lang_id The language ID. + * @type int $blog_public Whether search engines should be discouraged from indexing the site. 1 for true, 0 for false. + * } + */ + $meta = apply_filters( 'add_signup_meta', $meta ); + + wpmu_create_blog( $domain, $path, $blog_title, $current_user->ID, $meta, $wpdb->siteid ); + confirm_another_blog_signup($domain, $path, $blog_title, $current_user->user_login, $current_user->user_email, $meta); + return true; +} + +/** + * Confirm a new site signup + * + * @since MU + * + * @param string $domain The domain URL + * @param string $path The site root path + * @param string $user_name The username + * @param string $user_email The user's email address + * @param array $meta Any additional meta from the 'add_signup_meta' filter in validate_blog_signup() + */ +function confirm_another_blog_signup( $domain, $path, $blog_title, $user_name, $user_email = '', $meta = array() ) { + ?> +

{$blog_title}" ) ?>

+

+ http://%2$s is your new site. Log in as “%4$s” using your existing password.' ), $domain.$path, $domain.$path, "http://" . $domain.$path . "wp-login.php", $user_name ) ?> +

+ $user_name, + 'user_email' => $user_email, + 'errors' => $errors, + ); + + /** + * Filter the default user variables used on the user sign-up form. + * + * @since 3.0.0 + * + * @param array $signup_user_defaults { + * An array of default user variables. + * + * @type string $user_name The user username. + * @type string $user_email The user email address. + * @type array $errors An array of possible errors relevant to the sign-up user. + * } + */ + $filtered_results = apply_filters( 'signup_user_init', $signup_user_defaults ); + $user_name = $filtered_results['user_name']; + $user_email = $filtered_results['user_email']; + $errors = $filtered_results['errors']; + + ?> + +

site_name ) ?>

+
+ + + + +

+ + + + + + /> + +
+ /> + + +

+ +

+
+ get_error_code() ) { + signup_user($user_name, $user_email, $errors); + return false; + } + + if ( 'blog' == $_POST['signup_for'] ) { + signup_blog($user_name, $user_email); + return false; + } + + /** This filter is documented in wp-signup.php */ + wpmu_signup_user( $user_name, $user_email, apply_filters( 'add_signup_meta', array() ) ); + + confirm_user_signup($user_name, $user_email); + return true; +} + +/** + * New user signup confirmation + * + * @since MU + * + * @param string $user_name The username + * @param string $user_email The user's email address + */ +function confirm_user_signup($user_name, $user_email) { + ?> +

+

you must activate it.' ) ?>

+

%s and click the link given.' ), $user_email ); ?>

+

+ $user_name, + 'user_email' => $user_email, + 'blogname' => $blogname, + 'blog_title' => $blog_title, + 'errors' => $errors + ); + + /** + * Filter the default site creation variables for the site sign-up form. + * + * @since 3.0.0 + * + * @param array $signup_blog_defaults { + * An array of default site creation variables. + * + * @type string $user_name The user username. + * @type string $user_email The user email address. + * @type string $blogname The blogname. + * @type string $blog_title The title of the site. + * @type array $errors An array of possible errors relevant to new site creation variables. + * } + */ + $filtered_results = apply_filters( 'signup_blog_init', $signup_blog_defaults ); + + $user_name = $filtered_results['user_name']; + $user_email = $filtered_results['user_email']; + $blogname = $filtered_results['blogname']; + $blog_title = $filtered_results['blog_title']; + $errors = $filtered_results['errors']; + + if ( empty($blogname) ) + $blogname = $user_name; + ?> +
+ + + + + +

+
+ get_error_code() ) { + signup_user($user_name, $user_email, $errors); + return false; + } + + $result = wpmu_validate_blog_signup($_POST['blogname'], $_POST['blog_title']); + extract($result); + + if ( $errors->get_error_code() ) { + signup_blog($user_name, $user_email, $blogname, $blog_title, $errors); + return false; + } + + $public = (int) $_POST['blog_public']; + $meta = array ('lang_id' => 1, 'public' => $public); + + /** This filter is documented in wp-signup.php */ + $meta = apply_filters( 'add_signup_meta', $meta ); + + wpmu_signup_blog($domain, $path, $blog_title, $user_name, $user_email, $meta); + confirm_blog_signup($domain, $path, $blog_title, $user_name, $user_email, $meta); + return true; +} + +/** + * New site signup confirmation + * + * @since MU + * + * @param string $domain The domain URL + * @param string $path The site root path + * @param string $blog_title The new site title + * @param string $user_name The user's username + * @param string $user_email The user's email address + * @param array $meta Any additional meta from the 'add_signup_meta' filter in validate_blog_signup() + */ +function confirm_blog_signup( $domain, $path, $blog_title, $user_name = '', $user_email = '', $meta = array() ) { + ?> +

{$blog_title}" ) ?>

+ +

you must activate it.' ) ?>

+

%s and click the link given.' ), $user_email) ?>

+

+

+

+ +

+

+ ' . sprintf( __( 'Greetings Site Administrator! You are currently allowing “%s” registrations. To change or disable registration go to your Options page.' ), $i18n_signup[$active_signup], esc_url( network_admin_url( 'settings.php' ) ) ) . '
'; + +$newblogname = isset($_GET['new']) ? strtolower(preg_replace('/^-|-$|[^-a-zA-Z0-9]/', '', $_GET['new'])) : null; + +$current_user = wp_get_current_user(); +if ( $active_signup == 'none' ) { + _e( 'Registration has been disabled.' ); +} elseif ( $active_signup == 'blog' && !is_user_logged_in() ) { + $login_url = site_url( 'wp-login.php?redirect_to=' . urlencode( network_site_url( 'wp-signup.php' ) ) ); + echo sprintf( __( 'You must first log in, and then you can create a new site.' ), $login_url ); +} else { + $stage = isset( $_POST['stage'] ) ? $_POST['stage'] : 'default'; + switch ( $stage ) { + case 'validate-user-signup' : + if ( $active_signup == 'all' || $_POST[ 'signup_for' ] == 'blog' && $active_signup == 'blog' || $_POST[ 'signup_for' ] == 'user' && $active_signup == 'user' ) + validate_user_signup(); + else + _e( 'User registration has been disabled.' ); + break; + case 'validate-blog-signup': + if ( $active_signup == 'all' || $active_signup == 'blog' ) + validate_blog_signup(); + else + _e( 'Site registration has been disabled.' ); + break; + case 'gimmeanotherblog': + validate_another_blog_signup(); + break; + case 'default': + default : + $user_email = isset( $_POST[ 'user_email' ] ) ? $_POST[ 'user_email' ] : ''; + /** + * Fires when the site sign-up form is sent. + * + * @since 3.0.0 + */ + do_action( 'preprocess_signup_form' ); + if ( is_user_logged_in() && ( $active_signup == 'all' || $active_signup == 'blog' ) ) + signup_another_blog($newblogname); + elseif ( is_user_logged_in() == false && ( $active_signup == 'all' || $active_signup == 'user' ) ) + signup_user( $newblogname, $user_email ); + elseif ( is_user_logged_in() == false && ( $active_signup == 'blog' ) ) + _e( 'Sorry, new registrations are not allowed at this time.' ); + else + _e( 'You are logged in already. No need to register again!' ); + + if ( $newblogname ) { + $newblog = get_blogaddress_by_name( $newblogname ); + + if ( $active_signup == 'blog' || $active_signup == 'all' ) + printf( '

' . __( 'The site you were looking for, %s, does not exist, but you can create it now!' ) . '

', $newblog ); + else + printf( '

' . __( 'The site you were looking for, %s, does not exist.' ) . '

', $newblog ); + } + break; + } +} +?> +
+ + + +