base-validation-callback.php
2 years ago
is-field-value-unique.php
1 year ago
is-user-email-unique.php
2 years ago
is-user-login-unique.php
2 years ago
is-user-password-valid.php
1 year ago
is-user-password-valid.php
45 lines
| 1 | <?php |
| 2 | |
| 3 | |
| 4 | namespace JFB_Modules\Validation\Ssr; |
| 5 | |
| 6 | use Jet_Form_Builder\Request\Parser_Context; |
| 7 | |
| 8 | // If this file is called directly, abort. |
| 9 | if ( ! defined( 'WPINC' ) ) { |
| 10 | die; |
| 11 | } |
| 12 | |
| 13 | class Is_User_Password_Valid extends Base_Validation_Callback { |
| 14 | |
| 15 | public function get_id(): string { |
| 16 | return 'is_user_password_valid'; |
| 17 | } |
| 18 | |
| 19 | public function get_label(): string { |
| 20 | return __( 'Compare with Current User Password', 'jet-form-builder' ); |
| 21 | } |
| 22 | |
| 23 | public function is_valid( $value, Parser_Context $context ): bool { |
| 24 | if ( ! is_user_logged_in() ) { |
| 25 | return false; |
| 26 | } |
| 27 | |
| 28 | if ( ! is_string( $value ) ) { |
| 29 | return false; |
| 30 | } |
| 31 | |
| 32 | $user = get_user_by( 'ID', get_current_user_id() ); |
| 33 | |
| 34 | if ( ! is_a( $user, \WP_User::class ) ) { |
| 35 | return false; |
| 36 | } |
| 37 | |
| 38 | if ( ! wp_check_password( $value, $user->user_pass, $user->ID ) ) { |
| 39 | return false; |
| 40 | } |
| 41 | |
| 42 | return true; |
| 43 | } |
| 44 | } |
| 45 |