mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-06 03:02:34 +01:00
43e57d0117
* minor fix for payment notifications * styleci * Limit Self updating to self hosters only : * Fixes for designs * Minor fixes for self-update
93 lines
2.0 KiB
PHP
93 lines
2.0 KiB
PHP
<?php
|
|
/**
|
|
* Invoice Ninja (https://invoiceninja.com)
|
|
*
|
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
|
*
|
|
* @copyright Copyright (c) 2020. Invoice Ninja LLC (https://invoiceninja.com)
|
|
*
|
|
* @license https://opensource.org/licenses/AAL
|
|
*/
|
|
|
|
namespace App\Http\ValidationRules\Payment;
|
|
|
|
use App\Libraries\MultiDB;
|
|
use App\Models\Credit;
|
|
use App\Models\Invoice;
|
|
use App\Models\Payment;
|
|
use App\Models\User;
|
|
use App\Utils\Traits\MakesHash;
|
|
use Illuminate\Contracts\Validation\Rule;
|
|
|
|
/**
|
|
* Class ValidInvoicesRules
|
|
* @package App\Http\ValidationRules\Payment
|
|
*/
|
|
class ValidInvoicesRules implements Rule
|
|
{
|
|
use MakesHash;
|
|
|
|
/**
|
|
* @param string $attribute
|
|
* @param mixed $value
|
|
* @return bool
|
|
*/
|
|
private $error_msg;
|
|
|
|
private $input;
|
|
|
|
|
|
public function __construct($input)
|
|
{
|
|
$this->input = $input;
|
|
}
|
|
|
|
public function passes($attribute, $value)
|
|
{
|
|
return $this->checkInvoicesAreHomogenous();
|
|
}
|
|
|
|
private function checkInvoicesAreHomogenous()
|
|
{
|
|
if (!array_key_exists('client_id', $this->input)) {
|
|
$this->error_msg = "Client id is required";
|
|
return false;
|
|
}
|
|
|
|
$unique_array = [];
|
|
|
|
foreach ($this->input['invoices'] as $invoice) {
|
|
$unique_array[] = $invoice['invoice_id'];
|
|
|
|
$inv = Invoice::whereId($invoice['invoice_id'])->first();
|
|
|
|
if (!$inv) {
|
|
$this->error_msg = "Invoice not found ";
|
|
return false;
|
|
}
|
|
|
|
if ($inv->client_id != $this->input['client_id']) {
|
|
$this->error_msg = "Selected invoices are not from a single client";
|
|
return false;
|
|
}
|
|
}
|
|
|
|
if (!(array_unique($unique_array) == $unique_array)) {
|
|
$this->error_msg = "Duplicate invoices submitted.";
|
|
return false;
|
|
}
|
|
|
|
|
|
return true;
|
|
}
|
|
|
|
|
|
/**
|
|
* @return string
|
|
*/
|
|
public function message()
|
|
{
|
|
return $this->error_msg;
|
|
}
|
|
}
|