116 lines
		
	
	
		
			3.9 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			116 lines
		
	
	
		
			3.9 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| 
 | |
| namespace kernel\modules\module_shop_client\controllers;
 | |
| 
 | |
| use GuzzleHttp\Client;
 | |
| use GuzzleHttp\Exception\GuzzleException;
 | |
| use JetBrains\PhpStorm\NoReturn;
 | |
| use kernel\AdminController;
 | |
| use kernel\helpers\Debug;
 | |
| use kernel\modules\module_shop_client\services\ModuleShopClientService;
 | |
| use kernel\Request;
 | |
| use kernel\services\ModuleService;
 | |
| 
 | |
| class ModuleShopClientController extends AdminController
 | |
| {
 | |
| 
 | |
|     protected Client $client;
 | |
|     protected ModuleService $moduleService;
 | |
| 
 | |
|     protected function init(): void
 | |
|     {
 | |
|         parent::init();
 | |
|         $this->cgView->viewPath = KERNEL_MODULES_DIR . "/module_shop_client/views/";
 | |
| 
 | |
|         $this->client = new Client();
 | |
|         $this->moduleService = new ModuleService();
 | |
|     }
 | |
| 
 | |
|     /**
 | |
|      * @throws GuzzleException
 | |
|      */
 | |
|     public function actionIndex(int $page_number = 1): void
 | |
|     {
 | |
|         $per_page = 8;
 | |
| 
 | |
|         $token = $_ENV['MODULE_SHOP_TOKEN'];
 | |
|         $modules_info = $this->client->request('GET', $_ENV['MODULE_SHOP_URL'] . '/api/module_shop/gb_slug', [
 | |
|             'headers' => [
 | |
|                 'Authorization' => 'Bearer ' . $token,
 | |
|             ]
 | |
|         ]);
 | |
|         $modules_info = json_decode($modules_info->getBody()->getContents(), true);
 | |
|         $module_count = count($modules_info);
 | |
|         $modules_info = array_slice($modules_info, $per_page*($page_number-1), $per_page);
 | |
|         $this->cgView->render("index.php", [
 | |
|             'modules_info' => $modules_info,
 | |
|             'moduleService' => $this->moduleService,
 | |
|             'page_number' => $page_number,
 | |
|             'module_count' => $module_count,
 | |
|             'per_page' => $per_page,
 | |
|         ]);
 | |
|     }
 | |
| 
 | |
|     /**
 | |
|      * @throws GuzzleException
 | |
|      */
 | |
|     public function actionView(int $id): void
 | |
|     {
 | |
|         $token = $_ENV['MODULE_SHOP_TOKEN'];
 | |
|         $module_info = $this->client->request('GET', $_ENV['MODULE_SHOP_URL'] . '/api/module_shop/' . $id, [
 | |
|             'headers' => [
 | |
|                 'Authorization' => 'Bearer ' . $token,
 | |
|             ]
 | |
|         ]);
 | |
|         $module_info = json_decode($module_info->getBody()->getContents(), true);
 | |
|         $this->cgView->render("view.php", ['data' => $module_info]);
 | |
|     }
 | |
| 
 | |
|     /**
 | |
|      * @throws GuzzleException
 | |
|      */
 | |
|     #[NoReturn] public function actionInstall(): void
 | |
|     {
 | |
|         $request = new Request();
 | |
|         $id = $request->get('id');
 | |
|         $token = $_ENV['MODULE_SHOP_TOKEN'];
 | |
|         Debug::prn(123);
 | |
|         $module = $this->client->request('GET', $_ENV['MODULE_SHOP_URL'] . '/api/module_shop/install/' . $id, [
 | |
|             'headers' => [
 | |
|                 'Authorization' => 'Bearer ' . $token,
 | |
|                 'Accept' => 'application/itguild',
 | |
|                 'sink' => RESOURCES_DIR . '/tmp/ms/some.itguild'
 | |
|             ]
 | |
|         ]);
 | |
| 
 | |
|         $module = json_decode($module->getBody()->getContents(), true);
 | |
| //        Debug::dd(123);
 | |
|         $this->moduleService->installModule(RESOURCES_DIR . '/tmp/ms/some.igm');
 | |
|         $this->redirect('/admin/module_shop_client', 302);
 | |
| 
 | |
| 
 | |
| //        $request = new Request();
 | |
| //        $id = $request->get("id");
 | |
| //        $token = $_ENV['MODULE_SHOP_TOKEN'];
 | |
| //        $module_info = $this->client->request('GET', $_ENV['MODULE_SHOP_URL'] . '/api/module_shop/' . $id, [
 | |
| //            'headers' => [
 | |
| //                'Authorization' => 'Bearer ' . $token,
 | |
| //            ]
 | |
| //        ]);
 | |
| //        $module_info = json_decode($module_info->getBody()->getContents(), true);
 | |
| //        Debug::dd($_ENV['MODULE_SHOP_URL'] . $module_info['path_to_archive']);
 | |
| //        $this->moduleService->installModule(RESOURCES_DIR . '/tmp/ms/some.igm');
 | |
| //        $this->redirect('/admin/module_shop_client', 302);
 | |
| 
 | |
|     }
 | |
| 
 | |
|     #[NoReturn] public function actionDelete(): void
 | |
|     {
 | |
|         $request = new Request();
 | |
|         $slug = $request->get("slug");
 | |
|         $module_info = $this->moduleService->getModuleInfoBySlug($slug);
 | |
|         $this->moduleService->uninstallModule($module_info['app_module_path']);
 | |
|         $this->redirect('/admin/module_shop_client', 302);
 | |
|     }
 | |
| 
 | |
| } |