You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

172 lines
3.5 KiB

<?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 groupping,
* access management, public access etc..
*
* @package CodeIgniter-Aauth
* @author Magefly Team
* @copyright 2014-2017 Emre Akay
* @copyright 2018 Magefly
* @license https://opensource.org/licenses/MIT MIT License
* @link https://github.com/magefly/CodeIgniter-Aauth
*/
namespace App\Controllers\Admin;
use CodeIgniter\Controller;
use Config\Aauth as AauthConfig;
use App\Libraries\Aauth;
use Config\Services;
/**
* Aauth Admin/Users Controller
*
* @package CodeIgniter-Aauth
*/
class Users extends Controller
{
/**
* Constructor
*/
public function __construct()
{
$this->config = new AauthConfig();
$this->aauth = new Aauth();
$this->request = Services::request();
helper('form');
helper('aauth');
}
/**
* Index
*
* @return void
*/
public function index()
{
$data = $this->aauth->listUsersPaginated();
$data['cssFiles'] = [
'/assets/css/admin/users/index.css'
];
echo view('Templates/HeaderAdmin', $data);
echo view('Admin/Users/Home', $data);
echo view('Templates/FooterAdmin');
}
/**
* New
*
* @return void
*/
public function new()
{
$data['useUsername'] = $this->config->loginUseUsername;
echo view('Templates/HeaderAdmin');
echo view('Admin/Users/New', $data);
echo view('Templates/FooterAdmin');
}
/**
* Create
*
* @return void
*/
public function create()
{
$email = $this->request->getPost('email');
$username = $this->request->getPost('username');
$password = $this->request->getPost('password');
if (! $this->aauth->createUser($email, $password, empty($username) ? null : $username))
{
return redirect()->back()->with('errors', $this->aauth->getErrorsArray());
}
return redirect()->to('/admin/users');
}
/**
* Edit
*
* @return void
*/
public function edit($userId)
{
$data['useUsername'] = $this->config->loginUseUsername;
$data['user'] = $this->aauth->getUser($userId);
echo view('Templates/HeaderAdmin');
echo view('Admin/Users/Edit', $data);
echo view('Templates/FooterAdmin');
}
/**
* Update
*
* @return void
*/
public function update($userId)
{
$email = $this->request->getPost('email');
$username = $this->request->getPost('username');
$password = $this->request->getPost('password');
if (! $this->aauth->updateUser($userId, empty($email) ? null : $email, empty($password) ? null : $password, empty($username) ? null : $username))
{
return redirect()->back()->with('errors', $this->aauth->getErrorsArray());
}
return redirect()->to('/admin/users/edit/' . $userId);
}
/**
* Show
*
* @return void
*/
public function show($userId)
{
$data['user'] = $this->aauth->getUser($userId);
echo view('Templates/HeaderAdmin');
echo view('Admin/Users/Show', $data);
echo view('Templates/FooterAdmin');
}
/**
* Delete
*
* @return void
*/
public function delete($userId)
{
if (! $this->aauth->getUser($userId))
{
return redirect()->to('/admin/users');
}
$id = $this->request->getPost('id');
if ($userId == $id)
{
if($this->aauth->deleteUser($userId))
{
return redirect()->to('/admin/users');
}
}
$data['user'] = $this->aauth->getUser($userId);
echo view('Templates/HeaderAdmin');
echo view('Admin/Users/Delete', $data);
echo view('Templates/FooterAdmin');
}
}