kuvia/app/Console/Commands/ThemesScann.php

108 lines
3.2 KiB
PHP

<?php
namespace App\Console\Commands;
use App\Models\Theme;
use Illuminate\Console\Command;
class ThemesScann extends Command
{
/**
* The name and signature of the console command.
*
* @var string
*/
protected $signature = 'theme:scan';
/**
* The console command description.
*
* @var string
*/
protected $description = 'Command description';
/**
* Create a new command instance.
*
* @return void
*/
public function __construct()
{
parent::__construct();
}
/**
* Execute the console command.
*
* @return int
*/
public function handle()
{
$themesGallery = scandir(__DIR__."/../../../resources/views/themes/tenant");
foreach ($themesGallery as $theme) {
$this->info("Check Theme: ".$theme);
if(substr($theme, 0, 1) == ".") {
continue;
}
$settings = json_decode(file_get_contents(__DIR__."/../../../resources/views/themes/tenant/".$theme."/settings.json"));
$themeModel = Theme::query()->where("name", "=", $theme)->where("typ", "=", "tenant")->first();
if(!is_null($themeModel)) {
$this->info("Themes already exists: ".$theme);
continue;
}
$this->info("Found new Theme: ".$theme);
$themeModel = new Theme();
$themeModel->typ = "tenant";
$themeModel->name = $theme;
$themeModel->status = "private";
if($settings->public) {
$themeModel->status = "public";
}
$themeModel->img_pixel = $settings->usesSize->pixel;
$themeModel->img_small = $settings->usesSize->small;
$themeModel->img_medium = $settings->usesSize->medium;
$themeModel->img_big = $settings->usesSize->big;
$themeModel->saveOrFail();
}
$themesGallery = scandir(__DIR__."/../../../resources/views/themes/gallery");
foreach ($themesGallery as $theme) {
$this->info("Check Theme: ".$theme);
if(substr($theme, 0, 1) == ".") {
continue;
}
$settings = json_decode(file_get_contents(__DIR__."/../../../resources/views/themes/gallery/".$theme."/settings.json"));
$themeModel = Theme::query()->where("name", "=", $theme)->where("typ", "=", "gallery")->first();
if(!is_null($themeModel)) {
$this->info("Themes already exists: ".$theme);
continue;
}
$this->info("Found new Theme: ".$theme);
$themeModel = new Theme();
$themeModel->typ = "gallery";
$themeModel->name = $theme;
$themeModel->status = "private";
if($settings->public) {
$themeModel->status = "public";
}
$themeModel->img_pixel = $settings->usesSize->pixel;
$themeModel->img_small = $settings->usesSize->small;
$themeModel->img_medium = $settings->usesSize->medium;
$themeModel->img_big = $settings->usesSize->big;
$themeModel->saveOrFail();
}
}
}