Make WordPress Core

Ticket #24633: 24633.15.patch

File 24633.15.patch, 7.4 KB (added by adamsilverstein, 10 years ago)

simplified version

  • src/wp-admin/admin-ajax.php

     
    6161        'query-attachments', 'save-attachment', 'save-attachment-compat', 'send-link-to-editor',
    6262        'send-attachment-to-editor', 'save-attachment-order', 'heartbeat', 'get-revision-diffs',
    6363        'save-user-color-scheme', 'update-widget', 'query-themes', 'parse-embed', 'set-attachment-thumbnail',
    64         'parse-media-shortcode'
     64        'parse-media-shortcode', 'generate_password',
    6565);
    6666
    6767// Register core Ajax calls.
  • src/wp-admin/css/forms.css

     
    462462        border-color: #8dff1c;
    463463}
    464464
    465 .indicator-hint {
    466         padding-top: 8px;
     465#password2 .indicator-hint {
     466        padding: 4px 0 0 220px;
    467467}
    468468
    469469p.search-box {
     
    666666        cursor: pointer;
    667667}
    668668
     669.form-table tr#password td,
     670.form-table tr#password2 td {
     671        padding: 0 10px;
     672}
     673.form-table tr#password2 th,
     674.form-table tr#password th {
     675        padding: 0 10px 20px 0px;
     676}
     677
    669678/*------------------------------------------------------------------------------
    670679  19.0 - Tools
    671680------------------------------------------------------------------------------*/
     
    963972                padding: 0;
    964973                line-height: 2;
    965974        }
     975
     976        #password2 .indicator-hint {
     977                padding-left: 0;
     978        }
    966979}
    967980
    968981@media only screen and (max-width: 768px) {
  • src/wp-admin/includes/ajax-actions.php

     
    27592759                'body' => ob_get_clean()
    27602760        ) );
    27612761}
     2762
     2763/**
     2764 * Generates a password via ajax
     2765 *
     2766 * @since 4.1.0
     2767 */
     2768function wp_ajax_generate_password() {
     2769        wp_die( wp_generate_password( 30 ) );
     2770}
  • src/wp-admin/includes/user.php

     
    174174
    175175        if ( $update ) {
    176176                $user_id = wp_update_user( $user );
     177
     178                // Encourage the user to reset their password
     179                if( ! empty( $_POST['reset_password'] ) ) {
     180                        update_user_option( $user_id, 'default_password_nag', true, true );
     181                }
     182
     183                // Send the new, plaintext password to the user
     184                if( ! empty( $_POST['send_password'] ) ) {
     185                        $blogname = wp_specialchars_decode( get_option( 'blogname' ), ENT_QUOTES );
     186                        $message  = sprintf( __( 'Username: %s' ), $user->user_login ) . "\r\n";
     187                        $message .= sprintf( __( 'Password: %s' ), $pass1 ) . "\r\n";
     188                        $message .= wp_login_url() . "\r\n";
     189
     190                        wp_mail( $user->user_email, sprintf( __( '[%s] Your username and password' ), $blogname ), $message );
     191                }
     192
    177193        } else {
    178194                $user_id = wp_insert_user( $user );
    179195                wp_new_user_notification( $user_id, isset( $_POST['send_password'] ) ? wp_unslash( $pass1 ) : '' );
  • src/wp-admin/js/user-profile.js

     
    3232
    3333        $(document).ready( function() {
    3434                var $colorpicker, $stylesheet, user_id, current_user_id,
    35                         select = $( '#display_name' );
     35                        select = $( '#display_name' ),
    3636
    37                 $('#pass1').val('').keyup( check_pass_strength );
    38                 $('#pass2').val('').keyup( check_pass_strength );
     37                /* Passwords */
     38
     39                /**
     40                 * Add a Generate Password button
     41                 * Add a show password icon to view password when editing own profile
     42                 * @since 4.1.0
     43                 */
     44                        $pass1 = $( '#pass1' ),
     45                        $pass2 = $( '#pass2' ),
     46                        password_repeat = $( '.password-repeat' );
     47
     48                $pass2.val('').keyup( check_pass_strength );
     49                // Handle user entering password
     50                $pass1.val('').on( 'keyup', function() {
     51                        check_pass_strength();
     52                        // Show the password repeat field
     53                        password_repeat.show();
     54                        // Ensure fireld type is password
     55                        if ( 'text' === $pass1.attr( 'type' ) ) {
     56                                $pass1.attr( 'type', 'password' );
     57                        }
     58                });
     59
     60                // Handle the Generate Password button
     61                $( '#generate-password' ).on('click', function() {
     62                        // Send an ajax request to the server to get a new password
     63                        $.post( ajaxurl, { action: 'generate_password' }, function(response) {
     64                                $pass2.val( response );
     65                                $pass1.val( response ).trigger( 'keyup' );
     66                                password_repeat.hide();
     67                                $pass1.attr( 'type', 'text' );
     68                                $pass1.focus().select();
     69                        });
     70                });
     71
    3972                $('#pass-strength-result').show();
     73
     74                /* End Passwords */
     75
    4076                $('.color-palette').click( function() {
    4177                        $(this).siblings('input[name="admin_color"]').prop('checked', true);
    4278                });
  • src/wp-admin/user-edit.php

     
    459459        <th><label for="pass1"><?php _e( 'New Password' ); ?></label></th>
    460460        <td>
    461461                <input class="hidden" value=" " /><!-- #24364 workaround -->
    462                 <input type="password" name="pass1" id="pass1" class="regular-text" size="16" value="" autocomplete="off" /><br />
    463                 <span class="description"><?php _e( 'If you would like to change the password type a new one. Otherwise leave this blank.' ); ?></span>
    464         </td>
     462                <input type="password" name="pass1" id="pass1" class="regular-text" value="" autocomplete="off" />
     463                <input type="button" name="generate-password" id="generate-password" value="<?php _e( 'Generate Password' ); ?>" class="button hide-if-no-js" />
     464        </td>
    465465</tr>
    466 <tr>
    467         <th scope="row"><label for="pass2"><?php _e( 'Repeat New Password' ); ?></label></th>
     466<tr id="password2">
     467        <th><label class="password-repeat hidden" for="pass2"><?php _e( 'Repeat New Password' ); ?></label></th>
    468468        <td>
    469         <input name="pass2" type="password" id="pass2" class="regular-text" size="16" value="" autocomplete="off" /><br />
    470         <span class="description" for="pass2"><?php _e( 'Type your new password again.' ); ?></span>
    471         <br />
    472         <div id="pass-strength-result"><?php _e( 'Strength indicator' ); ?></div>
    473         <p class="description indicator-hint"><?php _e( 'Hint: The password should be at least seven characters long. To make it stronger, use upper and lower case letters, numbers, and symbols like ! " ? $ % ^ &amp; ).' ); ?></p>
     469                <div class="password-repeat hidden">
     470                        <input name="pass2" type="password" id="pass2" class="regular-text" value="" autocomplete="off" />
     471                        <br />
     472                        <div id="pass-strength-result"><?php _e( 'Strength indicator' ); ?></div>
     473                        <p class="description indicator-hint"><?php _e( 'Hint: The password should be at least seven characters long. To make it stronger, use upper and lower case letters, numbers and symbols like ! " ? $ % ^ &amp; ).' ); ?></p>
     474                </div>
     475                <p class="description"><?php _e( 'If you would like to change the password type or generate a new one. Otherwise leave this blank.' ); ?></p>
     476                <?php if( ! IS_PROFILE_PAGE ) { ?>
     477                <p class="hide-if-no-js">
     478                        <label for="send_password">
     479                                <input type="checkbox" name="send_password" id="send_password" value="1" /> <?php _e( 'Send this password to the user by email.' ); ?>
     480                        </label>
     481                        <br />
     482                        <label for="reset_password">
     483                                <input type="checkbox" name="reset_password" id="reset_password" value="1" /> <?php _e( 'Encourage the user to change their password, once logged in.' ); ?>
     484                        </label>
     485                </p>
     486                <?php } ?>
    474487        </td>
    475488</tr>
    476489<?php endif; ?>