brta archive module
This commit is contained in:
15
kernel/IGTabel/action_column/DeleteActionColumn.php
Normal file
15
kernel/IGTabel/action_column/DeleteActionColumn.php
Normal file
@ -0,0 +1,15 @@
|
||||
<?php
|
||||
|
||||
namespace kernel\IGTabel\action_column;
|
||||
|
||||
use Itguild\Tables\ActionColumn\ActionColumn;
|
||||
|
||||
class DeleteActionColumn extends ActionColumn
|
||||
{
|
||||
protected string $prefix = '/delete/';
|
||||
public function fetch(): string
|
||||
{
|
||||
$link = $this->baseUrl . $this->prefix . $this->id;
|
||||
return " <a href='$link' class='btn btn-danger'>Удалить</a> ";
|
||||
}
|
||||
}
|
16
kernel/IGTabel/action_column/EditActionColumn.php
Normal file
16
kernel/IGTabel/action_column/EditActionColumn.php
Normal file
@ -0,0 +1,16 @@
|
||||
<?php
|
||||
|
||||
namespace kernel\IGTabel\action_column;
|
||||
|
||||
use Itguild\Tables\ActionColumn\ActionColumn;
|
||||
|
||||
class EditActionColumn extends ActionColumn
|
||||
{
|
||||
protected string $prefix = "/update/";
|
||||
|
||||
public function fetch(): string
|
||||
{
|
||||
$link = $this->baseUrl . $this->prefix . $this->id;
|
||||
return " <a href='$link' class='btn btn-success'>Редактировать</a> ";
|
||||
}
|
||||
}
|
@ -2,15 +2,41 @@
|
||||
|
||||
namespace kernel\app_modules\tag\controllers;
|
||||
|
||||
use Exception;
|
||||
use JetBrains\PhpStorm\NoReturn;
|
||||
use kernel\AdminController;
|
||||
use kernel\app_modules\tag\models\forms\CreateTagForm;
|
||||
use kernel\app_modules\tag\models\Tag;
|
||||
use kernel\app_modules\tag\services\TagService;
|
||||
use kernel\helpers\Debug;
|
||||
use kernel\modules\menu\service\MenuService;
|
||||
|
||||
class TagController extends AdminController
|
||||
{
|
||||
private TagService $tagService;
|
||||
protected function init(): void
|
||||
{
|
||||
parent::init();
|
||||
$this->cgView->viewPath = KERNEL_APP_MODULES_DIR . "/tag/views/";;
|
||||
$this->cgView->viewPath = KERNEL_APP_MODULES_DIR . "/tag/views/";
|
||||
$this->tagService = new TagService();
|
||||
}
|
||||
|
||||
public function actionCreate(): void
|
||||
{
|
||||
$this->cgView->render("form.php");
|
||||
}
|
||||
|
||||
#[NoReturn] public function actionAdd(): void
|
||||
{
|
||||
$tagForm = new CreateTagForm();
|
||||
$tagForm->load($_REQUEST);
|
||||
if ($tagForm->validate()){
|
||||
$tag = $this->tagService->create($tagForm);
|
||||
if ($tag){
|
||||
$this->redirect("/admin/tag/" . $tag->id);
|
||||
}
|
||||
}
|
||||
$this->redirect("/admin/tag/create");
|
||||
}
|
||||
|
||||
public function actionIndex($page_number = 1): void
|
||||
@ -18,4 +44,58 @@ class TagController extends AdminController
|
||||
$this->cgView->render("index.php", ['page_number' => $page_number]);
|
||||
}
|
||||
|
||||
/**
|
||||
* @throws Exception
|
||||
*/
|
||||
public function actionView($id): void
|
||||
{
|
||||
$tag = Tag::find($id);
|
||||
|
||||
if (!$tag){
|
||||
throw new Exception(message: "The tag not found");
|
||||
}
|
||||
$this->cgView->render("view.php", ['tag' => $tag]);
|
||||
}
|
||||
|
||||
/**
|
||||
* @throws Exception
|
||||
*/
|
||||
public function actionUpdate($id): void
|
||||
{
|
||||
$model = Tag::find($id);
|
||||
if (!$model){
|
||||
throw new Exception(message: "The tag not found");
|
||||
}
|
||||
|
||||
$this->cgView->render("form.php", ['model' => $model]);
|
||||
}
|
||||
|
||||
/**
|
||||
* @throws Exception
|
||||
*/
|
||||
public function actionEdit($id): void
|
||||
{
|
||||
$tag = Tag::find($id);
|
||||
if (!$tag){
|
||||
throw new Exception(message: "The tag not found");
|
||||
}
|
||||
$tagForm = new CreateTagForm();
|
||||
$tagService = new TagService();
|
||||
$tagForm->load($_REQUEST);
|
||||
if ($tagForm->validate()) {
|
||||
$tag = $tagService->update($tagForm, $tag);
|
||||
if ($tag) {
|
||||
$this->redirect("/admin/tag/" . $tag->id);
|
||||
}
|
||||
}
|
||||
$this->redirect("/admin/tag/update/" . $id);
|
||||
}
|
||||
|
||||
#[NoReturn] public function actionDelete($id): void
|
||||
{
|
||||
$post = Tag::find($id)->first();
|
||||
$post->delete();
|
||||
$this->redirect("/admin/tag/");
|
||||
}
|
||||
|
||||
}
|
@ -4,6 +4,15 @@ namespace kernel\app_modules\tag\models;
|
||||
|
||||
use Illuminate\Database\Eloquent\Model;
|
||||
|
||||
/**
|
||||
* @property int $id
|
||||
* @property string $label
|
||||
* @property string $entity
|
||||
* @property string $slug
|
||||
* @property int $status
|
||||
* @method static where(int[] $array)
|
||||
* @method static find($id)
|
||||
*/
|
||||
class Tag extends Model
|
||||
{
|
||||
const DISABLE_STATUS = 0;
|
||||
|
20
kernel/app_modules/tag/models/forms/CreateTagForm.php
Normal file
20
kernel/app_modules/tag/models/forms/CreateTagForm.php
Normal file
@ -0,0 +1,20 @@
|
||||
<?php
|
||||
|
||||
namespace kernel\app_modules\tag\models\forms;
|
||||
|
||||
use kernel\FormModel;
|
||||
|
||||
class CreateTagForm extends FormModel
|
||||
{
|
||||
|
||||
public function rules(): array
|
||||
{
|
||||
return [
|
||||
'label' => 'required|min-str-len:5|max-str-len:30',
|
||||
'entity' => 'required|min-str-len:1|max-str-len:50',
|
||||
'slug' => '',
|
||||
'status' => ''
|
||||
];
|
||||
}
|
||||
|
||||
}
|
@ -7,12 +7,12 @@ use Phroute\Phroute\RouteCollector;
|
||||
App::$collector->group(["prefix" => "admin"], function (CgRouteCollector $router) {
|
||||
App::$collector->group(["prefix" => "tag"], function (CGRouteCollector $router){
|
||||
App::$collector->get('/', [\app\modules\tag\controllers\TagController::class, 'actionIndex']);
|
||||
// App::$collector->get('/page/{page_number}', [\kernel\modules\menu\controllers\MenuController::class, 'actionIndex']);
|
||||
// App::$collector->get('/create', [\kernel\modules\menu\controllers\MenuController::class, 'actionCreate']);
|
||||
// App::$collector->post("/", [\kernel\modules\menu\controllers\MenuController::class, 'actionAdd']);
|
||||
// App::$collector->get('/{id}', [\kernel\modules\menu\controllers\MenuController::class, 'actionView']);
|
||||
// App::$collector->any('/update/{id}', [\kernel\modules\menu\controllers\MenuController::class, 'actionUpdate']);
|
||||
// App::$collector->any("/edit/{id}", [\kernel\modules\menu\controllers\MenuController::class, 'actionEdit']);
|
||||
// App::$collector->get('/delete/{id}', [\kernel\modules\menu\controllers\MenuController::class, 'actionDelete']);
|
||||
App::$collector->get('/page/{page_number}', [\app\modules\tag\controllers\TagController::class, 'actionIndex']);
|
||||
App::$collector->get('/create', [\app\modules\tag\controllers\TagController::class, 'actionCreate']);
|
||||
App::$collector->post("/", [\app\modules\tag\controllers\TagController::class, 'actionAdd']);
|
||||
App::$collector->get('/{id}', [\app\modules\tag\controllers\TagController::class, 'actionView']);
|
||||
App::$collector->any('/update/{id}', [\app\modules\tag\controllers\TagController::class, 'actionUpdate']);
|
||||
App::$collector->any("/edit/{id}", [\app\modules\tag\controllers\TagController::class, 'actionEdit']);
|
||||
App::$collector->get('/delete/{id}', [\app\modules\tag\controllers\TagController::class, 'actionDelete']);
|
||||
});
|
||||
});
|
42
kernel/app_modules/tag/services/TagService.php
Normal file
42
kernel/app_modules/tag/services/TagService.php
Normal file
@ -0,0 +1,42 @@
|
||||
<?php
|
||||
|
||||
namespace kernel\app_modules\tag\services;
|
||||
|
||||
use kernel\app_modules\tag\models\Tag;
|
||||
use kernel\FormModel;
|
||||
use kernel\helpers\Slug;
|
||||
|
||||
class TagService
|
||||
{
|
||||
|
||||
public function create(FormModel $form_model): false|Tag
|
||||
{
|
||||
$model = new Tag();
|
||||
$model->label = $form_model->getItem('label');
|
||||
$model->entity = $form_model->getItem('entity');
|
||||
$model->status = $form_model->getItem('status');
|
||||
$model->slug = Slug::createSlug($form_model->getItem('label'), Tag::class);
|
||||
if ($model->save()){
|
||||
return $model;
|
||||
}
|
||||
|
||||
return false;
|
||||
}
|
||||
|
||||
public function update(FormModel $form_model, Tag $tag): false|Tag
|
||||
{
|
||||
if ($tag->label !== $form_model->getItem('label')) {
|
||||
$tag->slug = Slug::createSlug($form_model->getItem('label'), Tag::class);
|
||||
}
|
||||
$tag->label = $form_model->getItem('label');
|
||||
$tag->entity = $form_model->getItem('entity');
|
||||
$tag->status = $form_model->getItem('status');
|
||||
|
||||
if ($tag->save()){
|
||||
return $tag;
|
||||
}
|
||||
|
||||
return false;
|
||||
}
|
||||
|
||||
}
|
58
kernel/app_modules/tag/views/form.php
Normal file
58
kernel/app_modules/tag/views/form.php
Normal file
@ -0,0 +1,58 @@
|
||||
<?php
|
||||
/**
|
||||
* @var Tag $model
|
||||
*/
|
||||
|
||||
use kernel\app_modules\tag\models\Tag;
|
||||
|
||||
$form = new \itguild\forms\ActiveForm();
|
||||
$form->beginForm(isset($model) ? "/admin/tag/edit/" . $model->id : "/admin/tag");
|
||||
|
||||
$form->field(class: \itguild\forms\inputs\TextInput::class, name: "label", params: [
|
||||
'class' => "form-control",
|
||||
'placeholder' => 'Заголовок',
|
||||
'value' => $model->label ?? ''
|
||||
])
|
||||
->setLabel("Заголовок")
|
||||
->render();
|
||||
|
||||
$form->field(class: \itguild\forms\inputs\TextInput::class, name: "entity", params: [
|
||||
'class' => "form-control",
|
||||
'placeholder' => 'Сущность',
|
||||
'value' => $model->entity ?? ''
|
||||
])
|
||||
->setLabel("Сущность")
|
||||
->render();
|
||||
|
||||
$form->field(\itguild\forms\inputs\Select::class, 'status', [
|
||||
'class' => "form-control",
|
||||
'value' => $model->status ?? ''
|
||||
])
|
||||
->setLabel("Статус")
|
||||
->setOptions(Tag::getStatus())
|
||||
->render();
|
||||
?>
|
||||
<div class="row">
|
||||
<div class="col-sm-2">
|
||||
<?php
|
||||
$form->field(\itguild\forms\inputs\Button::class, name: "btn-submit", params: [
|
||||
'class' => "btn btn-primary ",
|
||||
'value' => 'Отправить',
|
||||
'typeInput' => 'submit'
|
||||
])
|
||||
->render();
|
||||
?>
|
||||
</div>
|
||||
<div class="col-sm-2">
|
||||
<?php
|
||||
$form->field(\itguild\forms\inputs\Button::class, name: "btn-reset", params: [
|
||||
'class' => "btn btn-warning",
|
||||
'value' => 'Сбросить',
|
||||
'typeInput' => 'reset'
|
||||
])
|
||||
->render();
|
||||
?>
|
||||
</div>
|
||||
</div>
|
||||
<?php
|
||||
$form->endForm();
|
@ -24,8 +24,16 @@ $table->beforePrint(function () {
|
||||
return PrimaryBtn::create("Создать", "/admin/tag/create")->fetch();
|
||||
//return (new PrimaryBtn("Создать", "/admin/user/create"))->fetch();
|
||||
});
|
||||
|
||||
$table->columns([
|
||||
"status" => [
|
||||
"value" => function ($cell) {
|
||||
return Tag::getStatus()[$cell];
|
||||
}]
|
||||
]);
|
||||
|
||||
$table->addAction(\kernel\IGTabel\action_column\ViewActionColumn::class);
|
||||
//$table->addAction(MenuEditActionColumn::class);
|
||||
//$table->addAction(MenuDeleteActionColumn::class);
|
||||
$table->addAction(\kernel\IGTabel\action_column\DeleteActionColumn::class);
|
||||
$table->addAction(\kernel\IGTabel\action_column\EditActionColumn::class);
|
||||
$table->create();
|
||||
$table->render();
|
30
kernel/app_modules/tag/views/view.php
Normal file
30
kernel/app_modules/tag/views/view.php
Normal file
@ -0,0 +1,30 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
* @var \Illuminate\Database\Eloquent\Collection $tag
|
||||
*/
|
||||
|
||||
use kernel\modules\user\models\User;
|
||||
use Itguild\EloquentTable\ViewEloquentTable;
|
||||
use Itguild\EloquentTable\ViewJsonTableEloquentModel;
|
||||
use kernel\IGTabel\btn\DangerBtn;
|
||||
use kernel\IGTabel\btn\PrimaryBtn;
|
||||
use kernel\IGTabel\btn\SuccessBtn;
|
||||
|
||||
$table = new ViewEloquentTable(new ViewJsonTableEloquentModel($tag, [
|
||||
'params' => ["class" => "table table-bordered", "border" => "2"],
|
||||
'baseUrl' => "/admin/tag",
|
||||
]));
|
||||
$table->beforePrint(function () use ($tag) {
|
||||
$btn = PrimaryBtn::create("Список", "/admin/tag")->fetch();
|
||||
$btn .= SuccessBtn::create("Редактировать", "/admin/tag/update/" . $tag->id)->fetch();
|
||||
$btn .= DangerBtn::create("Удалить", "/admin/tag/delete/" . $tag->id)->fetch();
|
||||
return $btn;
|
||||
});
|
||||
$table->rows([
|
||||
'status' => (function ($data) {
|
||||
return \kernel\app_modules\tag\models\Tag::getStatus()[$data];
|
||||
})
|
||||
]);
|
||||
$table->create();
|
||||
$table->render();
|
@ -55,8 +55,6 @@ class AdminThemeController extends ConsoleController
|
||||
if (file_exists(ROOT_DIR . $this->argv['path'])) {
|
||||
$themeName = basename($this->argv['path']);
|
||||
$active_admin_theme = Option::where("key", "active_admin_theme")->first();
|
||||
var_dump($active_admin_theme->value);
|
||||
var_dump(ROOT_DIR . $this->argv['path']);
|
||||
if ($active_admin_theme->value === ROOT_DIR . $this->argv['path']) {
|
||||
$this->out->r("Меняем тему на базовую", 'green');
|
||||
$adminThemeService = new AdminThemeService();
|
||||
|
@ -3,6 +3,7 @@
|
||||
namespace kernel\console\controllers;
|
||||
|
||||
use kernel\console\ConsoleController;
|
||||
use kernel\helpers\Debug;
|
||||
use kernel\helpers\Files;
|
||||
use kernel\helpers\Manifest;
|
||||
use kernel\models\Option;
|
||||
@ -75,4 +76,34 @@ class ModuleController extends ConsoleController
|
||||
}
|
||||
}
|
||||
|
||||
public function actionPackModule(): void
|
||||
{
|
||||
if (!isset($this->argv['path'])) {
|
||||
throw new \Exception('Missing module path "--path" specified');
|
||||
}
|
||||
|
||||
if (file_exists(ROOT_DIR . $this->argv['path'])) {
|
||||
$moduleName = basename($this->argv['path']);
|
||||
|
||||
$tmpModuleDirFull = RESOURCES_DIR . '/tmp/ad/' . $moduleName . "/";
|
||||
|
||||
$fileHelper = new Files();
|
||||
$fileHelper->copy_folder(APP_DIR . '/modules/' . $moduleName, $tmpModuleDirFull . 'app/');
|
||||
$fileHelper->copy_folder(KERNEL_APP_MODULES_DIR . '/' . $moduleName, $tmpModuleDirFull . 'kernel/');
|
||||
|
||||
$this->out->r("Модуль собран в одну папку", 'green');
|
||||
|
||||
|
||||
// $fileHelper->pack($zip, RESOURCES_DIR . '/tmp/modules/' . $moduleName . '.zip');
|
||||
$fileHelper->pack($tmpModuleDirFull, RESOURCES_DIR . '/tmp/modules/' . $moduleName . '.zip');
|
||||
|
||||
// $zip->addEmptyDir($moduleName);
|
||||
// $zip->close();
|
||||
// $this->out->r("zip закрыт", 'green');
|
||||
|
||||
$this->out->r("Архив создан", 'green');
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
}
|
@ -24,5 +24,6 @@ App::$collector->group(["prefix" => "admin"], callback: function (RouteCollector
|
||||
App::$collector->group(["prefix" => "module"], callback: function (RouteCollector $router){
|
||||
App::$collector->console('install', [\kernel\console\controllers\ModuleController::class, 'actionInstallModule']);
|
||||
App::$collector->console('uninstall', [\kernel\console\controllers\ModuleController::class, 'actionUninstallModule']);
|
||||
App::$collector->console('pack', [\kernel\console\controllers\ModuleController::class, 'actionPackModule']);
|
||||
});
|
||||
|
||||
|
@ -3,6 +3,7 @@
|
||||
namespace kernel\helpers;
|
||||
|
||||
use FilesystemIterator;
|
||||
use ZipArchive;
|
||||
|
||||
class Files
|
||||
{
|
||||
@ -41,4 +42,44 @@ class Files
|
||||
}
|
||||
rmdir($dir);
|
||||
}
|
||||
|
||||
public function pack(string $source, string $destination, bool $include_source = true): void
|
||||
{
|
||||
$zip = new ZipArchive();
|
||||
$zip->open($destination, ZipArchive::CREATE | ZipArchive::OVERWRITE);
|
||||
if ($include_source) {
|
||||
$zip->addEmptyDir(basename($source));
|
||||
}
|
||||
|
||||
if (is_file($source)) {
|
||||
$zip->addFile(basename($source));
|
||||
}
|
||||
|
||||
if (is_dir($source)) {
|
||||
$this->recursiveAddFile($zip, $source);
|
||||
}
|
||||
|
||||
$zip->close();
|
||||
}
|
||||
|
||||
private function recursiveAddFile(ZipArchive $zip, string $dir): void
|
||||
{
|
||||
$includes = new FilesystemIterator($dir);
|
||||
// Debug::prn($includes);
|
||||
foreach ($includes as $include) {
|
||||
// var_dump($include->getFilename());
|
||||
if(is_dir($include)/* && !is_link($include)*/) {
|
||||
var_dump('ЭТО ПАПКА');
|
||||
// $d = dir($include);
|
||||
// $entry = $d->read();
|
||||
// if ($entry == '.' || $entry == '..') continue;
|
||||
$zip->addEmptyDir(basename($include));
|
||||
$this->recursiveAddFile($zip, $include);
|
||||
}
|
||||
else {
|
||||
var_dump("ЭТО ФАЙЛ");
|
||||
$zip->addFile($include);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
@ -19,5 +19,11 @@ $table->beforePrint(function () use ($option) {
|
||||
$btn .= DangerBtn::create("Удалить", "/admin/option/delete/" . $option->id)->fetch();
|
||||
return $btn;
|
||||
});
|
||||
|
||||
$table->rows([
|
||||
'status' => (function ($data) {
|
||||
return \kernel\modules\option\models\Option::getStatus()[$data];
|
||||
})
|
||||
]);
|
||||
$table->create();
|
||||
$table->render();
|
@ -15,7 +15,6 @@ class PostService
|
||||
$model->content = $form_model->getItem('content');
|
||||
$model->user_id = $form_model->getItem('user_id');
|
||||
$model->title = $form_model->getItem('title');
|
||||
// $model->slug = Slug::recursiveCreateSlug(Post::class, $this->createSlug($form_model));
|
||||
$model->slug = Slug::createSlug($form_model->getItem('title'), Post::class);
|
||||
if ($model->save()){
|
||||
return $model;
|
||||
|
@ -9,6 +9,7 @@ App::$collector->group(["prefix" => "admin"], function (RouteCollector $router){
|
||||
App::$collector->group(["prefix" => "module"], function (RouteCollector $router){
|
||||
App::$collector->get('/', [\kernel\controllers\ModuleController::class, 'actionIndex']);
|
||||
App::$collector->get('/activate', [\kernel\controllers\ModuleController::class, 'actionActivate']);
|
||||
App::$collector->get('/view', [\kernel\controllers\ModuleController::class, 'actionView']);
|
||||
});
|
||||
});
|
||||
});
|
Reference in New Issue
Block a user