126 lines
		
	
	
		
			3.5 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			126 lines
		
	
	
		
			3.5 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| namespace app\controllers;
 | |
| 
 | |
| 
 | |
| use app\foo;
 | |
| use app\helpers\Debug;
 | |
| use app\models\forms\CreateUserForm;
 | |
| use app\models\Question;
 | |
| use app\models\User;
 | |
| use app\services\UserService;
 | |
| 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\Error\LoaderError;
 | |
| use Twig\Error\RuntimeError;
 | |
| use Twig\Error\SyntaxError;
 | |
| use Twig\TwigFunction;
 | |
| 
 | |
| class UserController extends Controller{
 | |
|     /**
 | |
|      * @throws SyntaxError
 | |
|      * @throws RuntimeError
 | |
|      * @throws LoaderError
 | |
|      */
 | |
|     public function actionCreate(): void
 | |
|     {
 | |
|         echo $this->twig->render('user_create.html.twig');
 | |
|     }
 | |
| 
 | |
|     public function actionAdd(): void
 | |
|     {
 | |
|         $userForm = new CreateUserForm();
 | |
|         $userService = new UserService();
 | |
|         $userForm->load($_REQUEST);
 | |
|         if ($userForm->validate()){
 | |
|             $userService->create($userForm);
 | |
|             $this->redirect("/admin/user");
 | |
|         }
 | |
|         $this->redirect("/admin/user/create");
 | |
|     }
 | |
| 
 | |
|     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');
 | |
|     }
 | |
| 
 | |
|     /**
 | |
|      * @throws RuntimeError
 | |
|      * @throws SyntaxError
 | |
|      * @throws LoaderError
 | |
|      */
 | |
|     public function actionUpdate(): void
 | |
|     {
 | |
| //        $loader = new \Twig\Loader\FilesystemLoader(__DIR__.'/../views');
 | |
| //        $twig = new \Twig\Environment($loader, ['cache' => 'app/views/cache']);
 | |
|         echo $this->twig->render('user_update.html.twig');
 | |
|     }
 | |
| 
 | |
|     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();
 | |
|     }
 | |
| 
 | |
| } |