mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2025-07-09 03:14:30 -04:00
Merge pull request #6011 from turbo124/v5-develop
Tests for clean up S3 orphans
This commit is contained in:
commit
9ffa092fb1
71
app/Console/Commands/S3Cleanup.php
Normal file
71
app/Console/Commands/S3Cleanup.php
Normal file
@ -0,0 +1,71 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
namespace App\Console\Commands;
|
||||||
|
|
||||||
|
use App\Models\Company;
|
||||||
|
use Illuminate\Console\Command;
|
||||||
|
use Illuminate\Support\Facades\Storage;
|
||||||
|
|
||||||
|
class S3Cleanup extends Command
|
||||||
|
{
|
||||||
|
/**
|
||||||
|
* The name and signature of the console command.
|
||||||
|
*
|
||||||
|
* @var string
|
||||||
|
*/
|
||||||
|
protected $signature = 'ninja:s3-cleanup';
|
||||||
|
|
||||||
|
/**
|
||||||
|
* The console command description.
|
||||||
|
*
|
||||||
|
* @var string
|
||||||
|
*/
|
||||||
|
protected $description = 'Remove orphan folders';
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create a new command instance.
|
||||||
|
*
|
||||||
|
* @return void
|
||||||
|
*/
|
||||||
|
public function __construct()
|
||||||
|
{
|
||||||
|
parent::__construct();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Execute the console command.
|
||||||
|
*
|
||||||
|
* @return int
|
||||||
|
*/
|
||||||
|
public function handle()
|
||||||
|
{
|
||||||
|
|
||||||
|
$c1 = Company::on('db-ninja-01')->pluck('company_key');
|
||||||
|
$c2 = Company::on('db-ninja-02')->pluck('company_key');
|
||||||
|
|
||||||
|
$merged = $c1->merge($c2)->toArray();
|
||||||
|
|
||||||
|
$directories = Storage::disk(config('filesystems.default'))->directories();
|
||||||
|
|
||||||
|
$this->LogMessage("Disk Cleanup");
|
||||||
|
|
||||||
|
foreach($directories as $dir)
|
||||||
|
{
|
||||||
|
if(!in_array($dir, $merged))
|
||||||
|
{
|
||||||
|
$this->logMessage("Deleting $dir");
|
||||||
|
Storage::disk(config('filesystems.default'))->deleteDirectory($dir);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
$this->logMessage("exiting");
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
private function logMessage($str)
|
||||||
|
{
|
||||||
|
$str = date('Y-m-d h:i:s').' '.$str;
|
||||||
|
$this->info($str);
|
||||||
|
$this->log .= $str."\n";
|
||||||
|
}
|
||||||
|
}
|
@ -49,7 +49,7 @@ class StoreCompanyRequest extends Request
|
|||||||
} else {
|
} else {
|
||||||
|
|
||||||
if(Ninja::isHosted()){
|
if(Ninja::isHosted()){
|
||||||
$rules['subdomain'] = ['nullable', 'alpha_num', new ValidSubdomain($this->all())];
|
$rules['subdomain'] = ['nullable', 'regex:/^[a-zA-Z0-9][a-zA-Z0-9.-]+[a-zA-Z0-9]$/', new ValidSubdomain($this->all())];
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
$rules['subdomain'] = 'nullable|alpha_num';
|
$rules['subdomain'] = 'nullable|alpha_num';
|
||||||
|
@ -50,7 +50,7 @@ class UpdateCompanyRequest extends Request
|
|||||||
} else {
|
} else {
|
||||||
|
|
||||||
if(Ninja::isHosted()){
|
if(Ninja::isHosted()){
|
||||||
$rules['subdomain'] = ['nullable', 'alpha_num', new ValidSubdomain($this->all())];
|
$rules['subdomain'] = ['nullable', 'regex:/^[a-zA-Z0-9][a-zA-Z0-9.-]+[a-zA-Z0-9]$/', new ValidSubdomain($this->all())];
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
$rules['subdomain'] = 'nullable|alpha_num';
|
$rules['subdomain'] = 'nullable|alpha_num';
|
||||||
|
@ -105,6 +105,7 @@ class CreateEntityPdf implements ShouldQueue
|
|||||||
/* Set customized translations _NOW_ */
|
/* Set customized translations _NOW_ */
|
||||||
$t->replace(Ninja::transformTranslations($this->entity->client->getMergedSettings()));
|
$t->replace(Ninja::transformTranslations($this->entity->client->getMergedSettings()));
|
||||||
|
|
||||||
|
/*This line of code hurts... it deletes ALL $entity PDFs... this causes a race condition when trying to send an email*/
|
||||||
// $this->entity->service()->deletePdf();
|
// $this->entity->service()->deletePdf();
|
||||||
|
|
||||||
if (config('ninja.phantomjs_pdf_generation') || config('ninja.pdf_generator') == 'phantom') {
|
if (config('ninja.phantomjs_pdf_generation') || config('ninja.pdf_generator') == 'phantom') {
|
||||||
|
39
tests/Unit/S3CleanupTest.php
Normal file
39
tests/Unit/S3CleanupTest.php
Normal file
@ -0,0 +1,39 @@
|
|||||||
|
<?php
|
||||||
|
/**
|
||||||
|
* Invoice Ninja (https://invoiceninja.com).
|
||||||
|
*
|
||||||
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
||||||
|
*
|
||||||
|
* @copyright Copyright (c) 2021. Invoice Ninja LLC (https://invoiceninja.com)
|
||||||
|
*
|
||||||
|
* @license https://opensource.org/licenses/AAL
|
||||||
|
*/
|
||||||
|
namespace Tests\Unit;
|
||||||
|
|
||||||
|
use App\DataMapper\ClientSettings;
|
||||||
|
use Tests\TestCase;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @test
|
||||||
|
*/
|
||||||
|
class S3CleanupTest extends TestCase
|
||||||
|
{
|
||||||
|
public function setUp() :void
|
||||||
|
{
|
||||||
|
parent::setUp();
|
||||||
|
}
|
||||||
|
|
||||||
|
public function testMergeCollections()
|
||||||
|
{
|
||||||
|
$c1 = collect(["1","2","3","4"]);
|
||||||
|
$c2 = collect(["5","6","7","8"]);
|
||||||
|
|
||||||
|
$c3 = collect(["1","2","10"]);
|
||||||
|
|
||||||
|
$merged = $c1->merge($c2)->toArray();
|
||||||
|
|
||||||
|
$this->assertTrue(in_array("1", $merged));
|
||||||
|
$this->assertFalse(in_array("10", $merged));
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
Loading…
x
Reference in New Issue
Block a user