106 lines
3.2 KiB
PHP
106 lines
3.2 KiB
PHP
<?php
|
|
namespace app\controllers;
|
|
|
|
|
|
use app\foo;
|
|
use app\helpers\Debug;
|
|
use app\models\Question;
|
|
use app\models\User;
|
|
use app\tables\columns\UserViewActionColumn;
|
|
use Exception;
|
|
use http\Message;
|
|
use Itguild\Tables\ListJsonTable;
|
|
use Itguild\Tables\ViewJsonTable;
|
|
use kernel\Controller;
|
|
use kernel\IGTabel\ListJsonTableEloquentCollection;
|
|
use kernel\IGTabel\ViewJsonTableEloquentModel;
|
|
use Twig\TwigFunction;
|
|
|
|
class UserController extends Controller{
|
|
public function actionCreate(): void
|
|
{
|
|
// $loader = new \Twig\Loader\FilesystemLoader(__DIR__.'/../views');
|
|
// $twig = new \Twig\Environment($loader, ['cache' => 'app/views/cache']);
|
|
echo $this->twig->render('userCreate.html');
|
|
}
|
|
|
|
public function actionAdd(): void
|
|
{
|
|
$_REQUEST["password_hash"] = password_hash($_REQUEST["password_hash"], PASSWORD_DEFAULT);
|
|
User::create($_REQUEST);
|
|
}
|
|
|
|
public function actionQuestionCount($user_id)
|
|
{
|
|
return Question::where('user_id', $user_id)->count();
|
|
}
|
|
|
|
/**
|
|
* @throws \Exception
|
|
*/
|
|
public function actionIndex(): void
|
|
{
|
|
$users = User::where(['role' => 1])->get();
|
|
|
|
$this->twig->addFunction(new TwigFunction('table', function () use ($users){
|
|
$dataProvider = new ListJsonTableEloquentCollection($users, [
|
|
'model' => User::class,
|
|
'perPage' => 5,
|
|
'params' => ["class" => "table table-bordered", "border" => "2"],
|
|
'baseUrl' => "/admin/user",
|
|
]);
|
|
$table = new ListJsonTable($dataProvider->getJson());
|
|
$table->addAction(UserViewActionColumn::class);
|
|
$table->create();
|
|
$table->render();
|
|
}));
|
|
|
|
echo $this->twig->render('user_table.html.twig');
|
|
}
|
|
|
|
/**
|
|
* @throws Exception
|
|
*/
|
|
public function actionView($id): void
|
|
{
|
|
$user = User::find($id);
|
|
if (!$user){
|
|
throw new Exception(message: "The user not found");
|
|
}
|
|
$this->twig->addFunction(new TwigFunction('table', function () use ($user){
|
|
$dataProvider = new ViewJsonTableEloquentModel($user, [
|
|
'params' => ["class" => "table table-bordered", "border" => "2"],
|
|
'baseUrl' => "/admin/user",
|
|
]);
|
|
$table = new ViewJsonTable($dataProvider->getJson());
|
|
$table->create();
|
|
$table->render();
|
|
}));
|
|
|
|
echo $this->twig->render('user_table.html.twig');
|
|
}
|
|
|
|
public function actionUpdate(): void
|
|
{
|
|
// $loader = new \Twig\Loader\FilesystemLoader(__DIR__.'/../views');
|
|
// $twig = new \Twig\Environment($loader, ['cache' => 'app/views/cache']);
|
|
echo $this->twig->render('userUpdate.html');
|
|
}
|
|
|
|
public function actionEdit(): void
|
|
{
|
|
$_REQUEST["password_hash"] = password_hash($_REQUEST["password_hash"], PASSWORD_DEFAULT);
|
|
|
|
$user = User::find($_REQUEST['id']);
|
|
$user->username = $_REQUEST['username'];
|
|
$user->email = $_REQUEST['email'];
|
|
$user->password_hash = $_REQUEST['password_hash'];
|
|
$user->save();
|
|
}
|
|
|
|
public function actionDelete($id): void
|
|
{
|
|
User::find($id)->delete();
|
|
}
|
|
|
|
} |