2021-12-10 10:41:16 +03:00
|
|
|
<?php defined('BASEPATH') or exit('No direct script access allowed');
|
|
|
|
|
|
|
|
/* ----------------------------------------------------------------------------
|
2022-01-18 15:05:42 +03:00
|
|
|
* Easy!Appointments - Online Appointment Scheduler
|
2021-12-10 10:41:16 +03:00
|
|
|
*
|
|
|
|
* @package EasyAppointments
|
|
|
|
* @author A.Tselegidis <alextselegidis@gmail.com>
|
2021-12-18 19:43:45 +03:00
|
|
|
* @copyright Copyright (c) Alex Tselegidis
|
2021-12-10 10:41:16 +03:00
|
|
|
* @license https://opensource.org/licenses/GPL-3.0 - GPLv3
|
|
|
|
* @link https://easyappointments.org
|
|
|
|
* @since v1.0.0
|
|
|
|
* ---------------------------------------------------------------------------- */
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Recovery controller.
|
|
|
|
*
|
|
|
|
* Handles the recovery page functionality.
|
|
|
|
*
|
|
|
|
* @package Controllers
|
|
|
|
*/
|
|
|
|
class Recovery extends EA_Controller {
|
|
|
|
/**
|
|
|
|
* User constructor.
|
|
|
|
*/
|
|
|
|
public function __construct()
|
|
|
|
{
|
|
|
|
parent::__construct();
|
|
|
|
|
|
|
|
$this->load->library('accounts');
|
|
|
|
$this->load->library('email_messages');
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Display the password recovery page.
|
|
|
|
*/
|
|
|
|
public function index()
|
|
|
|
{
|
2021-12-18 19:22:40 +03:00
|
|
|
$company_name = setting('company_name');
|
|
|
|
|
|
|
|
html_vars([
|
2021-12-10 10:41:16 +03:00
|
|
|
'dest_url' => session('dest_url', site_url('backend')),
|
2021-12-18 19:22:40 +03:00
|
|
|
'company_name' => $company_name
|
|
|
|
]);
|
|
|
|
|
2022-01-19 12:21:05 +03:00
|
|
|
$this->load->view('pages/recovery');
|
2021-12-10 10:41:16 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Recover the user password and notify the user via email.
|
|
|
|
*/
|
|
|
|
public function perform()
|
|
|
|
{
|
|
|
|
try
|
|
|
|
{
|
|
|
|
$username = request('username');
|
|
|
|
|
|
|
|
if (empty($username))
|
|
|
|
{
|
|
|
|
throw new InvalidArgumentException('No username value provided.');
|
|
|
|
}
|
|
|
|
|
|
|
|
$email = request('email');
|
|
|
|
|
|
|
|
if (empty($email))
|
|
|
|
{
|
|
|
|
throw new InvalidArgumentException('No email value provided.');
|
|
|
|
}
|
|
|
|
|
|
|
|
$new_password = $this->accounts->regenerate_password(
|
|
|
|
$username,
|
|
|
|
$email
|
|
|
|
);
|
|
|
|
|
|
|
|
if ($new_password)
|
|
|
|
{
|
|
|
|
$settings = [
|
|
|
|
'company_name' => setting('company_name'),
|
|
|
|
'company_link' => setting('company_link'),
|
|
|
|
'company_email' => setting('company_email')
|
|
|
|
];
|
|
|
|
|
|
|
|
$this->email_messages->send_password($new_password, $email, $settings);
|
|
|
|
}
|
|
|
|
|
|
|
|
json_response([
|
|
|
|
'success' => TRUE
|
|
|
|
]);
|
|
|
|
}
|
|
|
|
catch (Throwable $e)
|
|
|
|
{
|
|
|
|
json_exception($e);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|