QR_code_generator/app/Services/Registries/CleanerService.php

40 lines
1.0 KiB
PHP

<?php
namespace App\Services\Registries;
use App\Models\Publications\Publication;
use App\Models\Registries\Entry;
use Illuminate\Support\Str;
class CleanerService {
public function __construct() {
}
public function clean() {
$this->cleanPublications();
$this->cleanRegistryEntries();
}
public function cleanPublications() {
$items = Publication::all();
foreach ($items as $item) {
$item->update(['name' => $this->cleanString($item->name), 'excerpt' => $this->cleanString($item->excerpt)]);
}
}
public function cleanRegistryEntries() {
$items = Entry::all();
foreach ($items as $item) {
$item->update(['name' => $this->cleanString($item->name)]);
}
}
public function cleanString(string $string): string {
$string = Str::replace('&quot;', '"', $string);
$string = Str::replace('&#40', '«', $string);
$string = Str::replace('&#41', '»', $string);
return trim(Str::replace('(***)', '', $string));
}
}