|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* CodeIgniter-Aauth
|
|
|
|
*
|
|
|
|
* Aauth is a User Authorization Library for CodeIgniter 4.x, which aims to make
|
|
|
|
* easy some essential jobs such as login, permissions and access operations.
|
|
|
|
* Despite ease of use, it has also very advanced features like grouping,
|
|
|
|
* access management, public access etc..
|
|
|
|
*
|
|
|
|
* @package CodeIgniter-Aauth
|
|
|
|
* @author Emre Akay
|
|
|
|
* @author Raphael "REJack" Jackstadt
|
|
|
|
* @copyright 2014-2019 Emre Akay
|
|
|
|
* @license https://opensource.org/licenses/MIT MIT License
|
|
|
|
* @link https://github.com/emreakay/CodeIgniter-Aauth
|
|
|
|
*/
|
|
|
|
|
|
|
|
namespace App\Controllers\Account;
|
|
|
|
|
|
|
|
use CodeIgniter\Controller;
|
|
|
|
use App\Libraries\Aauth;
|
|
|
|
use Config\Services;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Aauth Accont/Verification Controller
|
|
|
|
*
|
|
|
|
* @package CodeIgniter-Aauth
|
|
|
|
*/
|
|
|
|
class Verification extends Controller
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* Constructor
|
|
|
|
*/
|
|
|
|
public function __construct()
|
|
|
|
{
|
|
|
|
$this->aauth = new Aauth();
|
|
|
|
$this->request = Services::request();
|
|
|
|
helper('form');
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Index
|
|
|
|
*
|
|
|
|
* @param string $verificationCode Verification Code
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
public function index(string $verificationCode = '')
|
|
|
|
{
|
|
|
|
if ($input = $this->request->getPost())
|
|
|
|
{
|
|
|
|
if (! $this->aauth->verifyUser($input['verification_code']))
|
|
|
|
{
|
|
|
|
$data['errors'] = $this->aauth->printErrors('<br />', true);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
$data['infos'] = $this->aauth->printInfos('<br />', true);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
$data['verificationCode'] = $verificationCode;
|
|
|
|
$data['cssFiles'] = [
|
|
|
|
'/assets/css/login.css'
|
|
|
|
];
|
|
|
|
|
|
|
|
echo view('Account/Verification', $data);
|
|
|
|
}
|
|
|
|
}
|