take commands from database

This commit is contained in:
Alexander Gabriel 2026-06-28 15:16:49 +00:00
parent 1ac8009173
commit 3ccc525313
3 changed files with 37 additions and 11 deletions

View File

@ -3,6 +3,7 @@
namespace App\Jobs;
use App\Models\PhotoJob;
use App\Models\Photoprofile;
use Illuminate\Contracts\Queue\ShouldQueue;
use Illuminate\Foundation\Queue\Queueable;
use Illuminate\Support\Facades\Process;
@ -20,12 +21,14 @@ class ConvertToComic implements ShouldQueue
{
$absolutePath = Storage::disk('public')->path($this->photoJob->image_path);
$command = 'gmic ' . escapeshellarg($absolutePath) .
' simplelocalcontrast_p 16,2,0,1,1,1,1,1,1,1,1,0' .
' -o ' . escapeshellarg($absolutePath) .
' && gmic ' . escapeshellarg($absolutePath) .
' cl_comic 4,1,0,0,1,15,15,1,10,20,6,2,0,0,0,0,0,0,50,50' .
' -o ' . escapeshellarg($absolutePath);
$photoprofile = Photoprofile::where('active', 1)->first();
$photocommands = [];
foreach (explode(PHP_EOL, $photoprofile->commands) as $command) {
if (count($photocommands) > 0) $photocommands[] = ' && gmic ' . escapeshellarg($absolutePath) . ' ' . $command . ' -o ' . escapeshellarg($absolutePath);
else $photocommands[] = 'gmic ' . escapeshellarg($absolutePath) . ' ' . $command . ' -o ' . escapeshellarg($absolutePath);
}
$command = implode($photocommands);
$result = Process::timeout(0)->run($command);
$this->photoJob->update([

View File

@ -2,7 +2,6 @@
namespace Database\Seeders;
use App\Models\User;
use Illuminate\Database\Console\Seeds\WithoutModelEvents;
use Illuminate\Database\Seeder;
@ -10,11 +9,10 @@ class DatabaseSeeder extends Seeder
{
use WithoutModelEvents;
/**
* Seed the application's database.
*/
public function run(): void
{
//
$this->call([
PhotoprofileSeeder::class,
]);
}
}

View File

@ -0,0 +1,25 @@
<?php
namespace Database\Seeders;
use App\Models\Photoprofile;
use Illuminate\Database\Seeder;
class PhotoprofileSeeder extends Seeder
{
public function run(): void
{
$profiles = [
[
'name' => 'Standard',
'active' => true,
'commands' => 'simplelocalcontrast_p 16,2,0,1,1,1,1,1,1,1,1,0
cl_comic 4,1,0,0,1,15,15,1,10,20,6,2,0,0,0,0,0,0,50,50',
]
];
foreach ($profiles as $profile) {
Photoprofile::firstOrCreate(['name' => $profile['name']], $profile);
}
}
}