PluginProbe ʕ •ᴥ•ʔ
Tutor LMS – eLearning and online course solution / 2.1.5
Tutor LMS – eLearning and online course solution v2.1.5
3.9.14 3.9.13 3.9.12 3.9.11 trunk 1.0.0 1.0.0-alpha 1.0.1 1.0.2 1.0.3 1.0.4 1.0.5 1.0.6 1.0.7 1.0.8 1.0.9 1.1.0 1.1.1 1.2.0 1.2.1 1.2.11 1.2.12 1.2.13 1.2.20 1.3.0 1.3.1 1.3.2 1.3.3 1.3.4 1.3.5 1.3.6 1.3.7 1.3.8 1.3.9 1.4.0 1.4.1 1.4.2 1.4.3 1.4.4 1.4.5 1.4.6 1.4.7 1.4.8 1.4.9 1.5.0 1.5.1 1.5.2 1.5.3 1.5.4 1.5.5 1.5.6 1.5.7 1.5.8 1.5.9 1.6.0 1.6.1 1.6.2 1.6.3 1.6.4 1.6.5 1.6.6 1.6.7 1.6.8 1.6.9 1.7.0 1.7.1 1.7.2 1.7.3 1.7.4 1.7.5 1.7.6 1.7.7 1.7.8 1.7.9 1.8.0 1.8.1 1.8.10 1.8.2 1.8.3 1.8.4 1.8.5 1.8.6 1.8.7 1.8.8 1.8.9 1.9.0 1.9.1 1.9.10 1.9.11 1.9.12 1.9.13 1.9.14 1.9.15 1.9.16 1.9.2 1.9.3 1.9.4 1.9.5 1.9.6 1.9.7 1.9.8 1.9.9 2.0.0 2.0.1 2.0.10 2.0.2 2.0.3 2.0.4 2.0.5 2.0.6 2.0.7 2.0.8 2.0.9 2.1.0 2.1.1 2.1.10 2.1.2 2.1.3 2.1.4 2.1.5 2.1.6 2.1.7 2.1.8 2.1.9 2.2.0 2.2.1 2.2.2 2.2.3 2.2.4 2.3.0 2.4.0 2.5.0 2.6.0 2.6.1 2.6.2 2.7.0 2.7.1 2.7.2 2.7.3 2.7.4 2.7.5 2.7.6 2.7.7 3.0.0 3.0.1 3.0.2 3.1.0 3.2.0 3.2.1 3.2.2 3.2.3 3.3.0 3.3.1 3.4.0 3.4.1 3.4.2 3.5.0 3.6.0 3.6.1 3.6.2 3.6.3 3.6.4 3.7.0 3.7.1 3.7.2 3.7.3 3.7.4 3.8.0 3.8.1 3.8.2 3.8.3 3.9.0 3.9.1 3.9.10 3.9.2 3.9.3 3.9.4 3.9.5 3.9.6 3.9.7 3.9.8 3.9.9
tutor / classes / FormHandler.php
tutor / classes Last commit date
Addons.php 3 years ago Admin.php 3 years ago Ajax.php 3 years ago Announcements.php 3 years ago Assets.php 3 years ago Backend_Page_Trait.php 3 years ago Course.php 3 years ago Course_Embed.php 3 years ago Course_Filter.php 3 years ago Course_List.php 3 years ago Course_Settings_Tabs.php 3 years ago Course_Widget.php 3 years ago Custom_Validation.php 3 years ago Dashboard.php 3 years ago FormHandler.php 3 years ago Frontend.php 3 years ago Gutenberg.php 3 years ago Input.php 3 years ago Instructor.php 3 years ago Instructors_List.php 3 years ago Lesson.php 3 years ago Options_V2.php 3 years ago Post_types.php 3 years ago Private_Course_Access.php 3 years ago Q_and_A.php 3 years ago Question_Answers_List.php 3 years ago Quiz.php 3 years ago Quiz_Attempts_List.php 3 years ago RestAPI.php 3 years ago Reviews.php 3 years ago Rewrite_Rules.php 3 years ago Shortcode.php 3 years ago Student.php 3 years ago Students_List.php 3 years ago Taxonomies.php 3 years ago Template.php 3 years ago Theme_Compatibility.php 3 years ago Tools.php 3 years ago Tools_V2.php 3 years ago Tutor.php 3 years ago TutorEDD.php 3 years ago Tutor_Base.php 3 years ago Tutor_Setup.php 3 years ago Upgrader.php 3 years ago User.php 3 years ago Utils.php 3 years ago Video_Stream.php 3 years ago Withdraw.php 3 years ago Withdraw_Requests_List.php 3 years ago WooCommerce.php 3 years ago
FormHandler.php
248 lines
1 <?php
2 /**
3 * Manage Form
4 *
5 * @package Tutor
6 * @author Themeum <support@themeum.com>
7 * @link https://themeum.com
8 * @since 1.4.3
9 */
10
11 namespace TUTOR;
12
13 if ( ! defined( 'ABSPATH' ) ) {
14 exit;
15 }
16
17 /**
18 * FormHandler class
19 *
20 * @since 1.4.3
21 */
22 class FormHandler {
23
24 /**
25 * Constructor
26 *
27 * @since 1.4.3
28 * @return void
29 */
30 public function __construct() {
31 add_action( 'tutor_action_tutor_retrieve_password', array( $this, 'tutor_retrieve_password' ) );
32 add_action( 'tutor_action_tutor_process_reset_password', array( $this, 'tutor_process_reset_password' ) );
33
34 add_action( 'tutor_reset_password_notification', array( $this, 'reset_password_notification' ), 10, 2 );
35 add_filter( 'tutor_lostpassword_url', array( $this, 'lostpassword_url' ) );
36 }
37
38 /**
39 * Retrieve Password
40 *
41 * @since 1.4.3
42 * @return void|bool
43 */
44 public function tutor_retrieve_password() {
45 tutils()->checking_nonce();
46
47 //phpcs:ignore WordPress.Security.NonceVerification.Missing
48 $login = sanitize_user( tutils()->array_get( 'user_login', $_POST ) );
49
50 if ( empty( $login ) ) {
51 tutor_flash_set( 'danger', __( 'Enter a username or email address.', 'tutor' ) );
52 return false;
53 } else {
54 // Check on username first, as customers can use emails as usernames.
55 $user_data = get_user_by( 'login', $login );
56 }
57
58 // If no user found, check if it login is email and lookup user based on email.
59 if ( ! $user_data && is_email( $login ) && apply_filters( 'tutor_get_username_from_email', true ) ) {
60 $user_data = get_user_by( 'email', $login );
61 }
62
63 $errors = new \WP_Error();
64
65 do_action( 'lostpassword_post', $errors );
66
67 if ( $errors->get_error_code() ) {
68 tutor_flash_set( 'danger', $errors->get_error_message() );
69 return false;
70 }
71
72 if ( ! $user_data ) {
73 tutor_flash_set( 'danger', __( 'Invalid username or email.', 'tutor' ) );
74 return false;
75 }
76
77 if ( is_multisite() && ! is_user_member_of_blog( $user_data->ID, get_current_blog_id() ) ) {
78 tutor_flash_set( 'danger', __( 'Invalid username or email.', 'tutor' ) );
79 return false;
80 }
81
82 // Redefining user_login ensures we return the right case in the email.
83 $user_login = $user_data->user_login;
84
85 do_action( 'retrieve_password', $user_login );
86
87 $allow = apply_filters( 'allow_password_reset', true, $user_data->ID );
88
89 if ( ! $allow ) {
90 tutor_flash_set( 'danger', __( 'Password reset is not allowed for this user', 'tutor' ) );
91 return false;
92 } elseif ( is_wp_error( $allow ) ) {
93 tutor_flash_set( 'danger', $allow->get_error_message() );
94 return false;
95 }
96
97 // Get password reset key (function introduced in WordPress 4.4).
98 $key = get_password_reset_key( $user_data );
99
100 // Send email notification.
101 do_action( 'tutor_reset_password_notification', $user_login, $key );
102 }
103
104 /**
105 * Send notification for rest password
106 *
107 * @since 1.4.3
108 *
109 * @param string $user_login username.
110 * @param string $reset_key reset key.
111 *
112 * @return void
113 */
114 public function reset_password_notification( $user_login = '', $reset_key = '' ) {
115 $this->send_notification( $user_login, $reset_key );
116
117 $html = '<h3>' . __( 'Check your E-Mail', 'tutor' ) . '</h3>';
118 $html .= '<p> ' . __( "We've sent an email to this account's email address. Click the link in the email to reset your password", 'tutor' ) . '</p>';
119 $html .= '<p>' . __( "If you don't see the email, check other places it might be, like your junk, spam, social, promotion or others folders.", 'tutor' ) . '</p>';
120 tutor_flash_set( 'success', $html );
121 }
122
123 /**
124 * Get lost password URL
125 *
126 * @since 1.4.3
127 *
128 * @param string $url URL.
129 * @return string
130 */
131 public function lostpassword_url( $url ) {
132 return tutils()->tutor_dashboard_url( 'retrieve-password' );
133 }
134
135 /**
136 * Handle reset password request
137 *
138 * @since 1.4.3
139 * @return void|bool
140 */
141 public function tutor_process_reset_password() {
142 tutils()->checking_nonce();
143
144 $reset_key = Input::post( 'reset_key' );
145 $user_id = Input::post( 'user_id', 0, Input::TYPE_INT );
146 $password = Input::post( 'password' );
147 $confirm_password = Input::post( 'confirm_password' );
148
149 $user = get_user_by( 'ID', $user_id );
150 $user = check_password_reset_key( $reset_key, $user->user_login );
151
152 if ( is_wp_error( $user ) ) {
153 tutor_flash_set( 'danger', __( 'This key is invalid or has already been used. Please reset your password again if needed.', 'tutor' ) );
154 return false;
155 }
156
157 if ( $user instanceof \WP_User ) {
158 if ( ! $password ) {
159 tutor_flash_set( 'danger', __( 'Please enter your password.', 'tutor' ) );
160 return false;
161 }
162
163 if ( $password !== $confirm_password ) {
164 tutor_flash_set( 'danger', __( 'Passwords do not match.', 'tutor' ) );
165 return false;
166 }
167
168 tutils()->reset_password( $user, $password );
169
170 do_action( 'tutor_user_reset_password', $user );
171
172 // Perform the login.
173 $creds = array(
174 'user_login' => $user->user_login,
175 'user_password' => $password,
176 'remember' => true,
177 );
178 $user = wp_signon( apply_filters( 'tutor_login_credentials', $creds ), is_ssl() );
179
180 do_action( 'tutor_user_reset_password_login', $user );
181
182 wp_safe_redirect( tutor_utils()->tutor_dashboard_url() );
183 exit;
184 }
185 }
186
187 /**
188 * Send Password Reset E-Mail to user.
189 * We are sending directly right now, later we will introduce centralised E-Mail notification System...
190 *
191 * @since 1.4.3
192 *
193 * @param string $user_login login username.
194 * @param string $reset_key password reset key.
195 *
196 * @return void
197 */
198 public function send_notification( $user_login, $reset_key ) {
199
200 $user_data = get_user_by( 'login', $user_login );
201
202 $variable = array(
203 'user_login' => $user_login,
204 'reset_key' => $reset_key,
205 'user_id' => $user_data->ID,
206 );
207
208 $html = tutor_get_template_html( 'email.send-reset-password', $variable );
209 /* translators: %s: site name */
210 $subject = sprintf( __( 'Password Reset Request for %s', 'tutor' ), get_option( 'blogname' ) );
211
212 $header = 'Content-Type: text/html' . "\r\n";
213
214 add_filter( 'wp_mail_from', array( $this, 'get_from_address' ) );
215 add_filter( 'wp_mail_from_name', array( $this, 'get_from_name' ) );
216
217 wp_mail( $user_data->user_email, $subject, $html, $header );
218
219 remove_filter( 'wp_mail_from', array( $this, 'get_from_address' ) );
220 remove_filter( 'wp_mail_from_name', array( $this, 'get_from_name' ) );
221 }
222
223 /**
224 * Get e-mail from address
225 *
226 * @since 1.4.3
227 * @return string
228 */
229 public function get_from_address() {
230 $from_address = get_tutor_option( 'email_from_address' );
231 $default = ! $from_address ? get_option( 'admin_email' ) : $from_address;
232 return apply_filters( 'tutor_email_from_address', $default );
233 }
234
235 /**
236 * Get e-mail from name
237 *
238 * @since 1.4.3
239 * @return string
240 */
241 public function get_from_name() {
242 $from_name = get_tutor_option( 'email_from_name' );
243 $default = ! $from_name ? get_option( 'blogname' ) : $from_name;
244 return apply_filters( 'tutor_email_from_name', $default );
245 }
246
247 }
248