2022-01-06 00:19:31 +01:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* Invoice Ninja (https://invoiceninja.com).
|
|
|
|
*
|
|
|
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
|
|
|
*
|
2022-04-27 05:20:41 +02:00
|
|
|
* @copyright Copyright (c) 2022. Invoice Ninja LLC (https://invoiceninja.com)
|
2022-01-06 00:19:31 +01:00
|
|
|
*
|
|
|
|
* @license https://www.elastic.co/licensing/elastic-license
|
|
|
|
*/
|
|
|
|
|
|
|
|
namespace App\Http\Controllers\ClientPortal;
|
|
|
|
|
|
|
|
use App\Http\Controllers\Controller;
|
|
|
|
use App\Libraries\MultiDB;
|
|
|
|
use App\Models\Company;
|
|
|
|
use App\Models\CompanyGateway;
|
|
|
|
use App\Utils\Ninja;
|
|
|
|
use Illuminate\Http\Request;
|
|
|
|
use Illuminate\Support\Facades\Storage;
|
|
|
|
|
|
|
|
class ApplePayDomainController extends Controller
|
|
|
|
{
|
|
|
|
private array $stripe_keys = ['d14dd26a47cecc30fdd65700bfb67b34', 'd14dd26a37cecc30fdd65700bfb55b23'];
|
|
|
|
|
|
|
|
public function showAppleMerchantId(Request $request)
|
|
|
|
{
|
|
|
|
|
|
|
|
/* Self Host */
|
|
|
|
|
2022-06-21 11:57:17 +02:00
|
|
|
if (Ninja::isSelfHost()) {
|
2022-01-06 00:19:31 +01:00
|
|
|
$cgs = CompanyGateway::whereIn('gateway_key', $this->stripe_keys)
|
|
|
|
->where('is_deleted', false)
|
|
|
|
->get();
|
|
|
|
|
2022-06-21 11:57:17 +02:00
|
|
|
foreach ($cgs as $cg) {
|
|
|
|
if ($cg->getConfigField('appleDomainVerification')) {
|
|
|
|
return response($cg->getConfigField('appleDomainVerification'), 200);
|
2022-01-06 00:19:31 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return response('', 400);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Hosted */
|
|
|
|
|
|
|
|
$domain_name = $request->getHost();
|
|
|
|
|
2022-06-21 11:57:17 +02:00
|
|
|
if (strpos($domain_name, 'invoicing.co') !== false) {
|
2022-01-06 00:19:31 +01:00
|
|
|
$subdomain = explode('.', $domain_name)[0];
|
2022-06-21 11:57:17 +02:00
|
|
|
|
2022-01-06 00:19:31 +01:00
|
|
|
$query = [
|
|
|
|
'subdomain' => $subdomain,
|
|
|
|
'portal_mode' => 'subdomain',
|
|
|
|
];
|
|
|
|
|
2022-06-21 11:57:17 +02:00
|
|
|
if ($company = MultiDB::findAndSetDbByDomain($query)) {
|
|
|
|
return $this->resolveAppleMerchantId($company);
|
2022-01-06 00:19:31 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-06-21 11:57:17 +02:00
|
|
|
$query = [
|
2022-01-06 00:19:31 +01:00
|
|
|
'portal_domain' => $request->getSchemeAndHttpHost(),
|
|
|
|
'portal_mode' => 'domain',
|
|
|
|
];
|
|
|
|
|
2022-06-21 11:57:17 +02:00
|
|
|
if ($company = MultiDB::findAndSetDbByDomain($query)) {
|
2022-01-06 00:19:31 +01:00
|
|
|
return $this->resolveAppleMerchantId($company);
|
|
|
|
}
|
|
|
|
|
|
|
|
return response('', 400);
|
|
|
|
}
|
|
|
|
|
|
|
|
private function resolveAppleMerchantId($company)
|
|
|
|
{
|
|
|
|
$cgs = $company->company_gateways()
|
|
|
|
->whereIn('gateway_key', $this->stripe_keys)
|
|
|
|
->where('is_deleted', false)
|
|
|
|
->get();
|
|
|
|
|
2022-06-21 11:57:17 +02:00
|
|
|
foreach ($cgs as $cg) {
|
|
|
|
if ($cg->getConfigField('appleDomainVerification')) {
|
|
|
|
return response($cg->getConfigField('appleDomainVerification'), 200);
|
2022-01-06 00:19:31 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return response('', 400);
|
|
|
|
}
|
|
|
|
}
|