2021-05-20 06:13:54 +02:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* Invoice Ninja (https://invoiceninja.com).
|
|
|
|
*
|
|
|
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
|
|
|
*
|
2023-01-28 23:21:40 +01:00
|
|
|
* @copyright Copyright (c) 2023. Invoice Ninja LLC (https://invoiceninja.com)
|
2021-05-20 06:13:54 +02:00
|
|
|
*
|
2021-06-16 08:58:16 +02:00
|
|
|
* @license https://www.elastic.co/licensing/elastic-license
|
2021-05-20 06:13:54 +02:00
|
|
|
*/
|
|
|
|
|
|
|
|
namespace App\Http\ValidationRules\Company;
|
|
|
|
|
|
|
|
use App\Libraries\MultiDB;
|
|
|
|
use Illuminate\Contracts\Validation\Rule;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Class ValidCompanyQuantity.
|
|
|
|
*/
|
|
|
|
class ValidSubdomain implements Rule
|
|
|
|
{
|
2023-06-07 03:21:26 +02:00
|
|
|
public function __construct()
|
2021-05-20 06:13:54 +02:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
public function passes($attribute, $value)
|
|
|
|
{
|
2023-06-07 03:21:26 +02:00
|
|
|
if (empty($value)) {
|
2021-05-20 06:13:54 +02:00
|
|
|
return true;
|
2022-06-21 11:57:17 +02:00
|
|
|
}
|
2021-05-20 06:13:54 +02:00
|
|
|
|
2023-06-07 03:21:26 +02:00
|
|
|
return MultiDB::checkDomainAvailable($value);
|
2021-05-20 06:13:54 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
public function message()
|
|
|
|
{
|
|
|
|
return ctrans('texts.subdomain_taken');
|
|
|
|
}
|
|
|
|
}
|