mirror of
				https://github.com/invoiceninja/invoiceninja.git
				synced 2025-11-04 06:47:30 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			55 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			55 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?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://www.elastic.co/licensing/elastic-license
 | 
						|
 */
 | 
						|
 | 
						|
namespace App\Http\Controllers;
 | 
						|
 | 
						|
use App\Libraries\MultiDB;
 | 
						|
 | 
						|
class SubdomainController extends BaseController
 | 
						|
{
 | 
						|
    private $protected = [
 | 
						|
        'www',
 | 
						|
        'app',
 | 
						|
        'ninja',
 | 
						|
        'sentry',
 | 
						|
        'staging',
 | 
						|
        'pdf',
 | 
						|
        'demo',
 | 
						|
        'docs',
 | 
						|
        'client_domain',
 | 
						|
        'custom_domain',
 | 
						|
        'preview',
 | 
						|
        'invoiceninja',
 | 
						|
        'cname',
 | 
						|
        'sandbox',
 | 
						|
    ];
 | 
						|
 | 
						|
    public function __construct()
 | 
						|
    {
 | 
						|
 | 
						|
    }
 | 
						|
 | 
						|
    /**
 | 
						|
     * Display a listing of the resource.
 | 
						|
     *
 | 
						|
     * @return void
 | 
						|
     */
 | 
						|
    public function index()
 | 
						|
    {
 | 
						|
 | 
						|
        if(in_array(request()->input('subdomain'), $this->protected) || MultiDB::findAndSetDbByDomain(['subdomain' => request()->input('subdomain')]))
 | 
						|
            return response()->json(['message' => 'Domain not available'] , 401);
 | 
						|
 | 
						|
        return response()->json(['message' => 'Domain available'], 200);
 | 
						|
    }
 | 
						|
 | 
						|
}
 |