PageRenderTime 53ms CodeModel.GetById 21ms RepoModel.GetById 0ms app.codeStats 0ms

/wp-signup.php

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