mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-05 18:52:44 +01:00
82 lines
2.3 KiB
PHP
82 lines
2.3 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\Controllers\Shop;
|
|
|
|
use App\Events\Client\ClientWasCreated;
|
|
use App\Factory\ClientFactory;
|
|
use App\Http\Controllers\BaseController;
|
|
use App\Http\Requests\Client\StoreClientRequest;
|
|
use App\Models\Client;
|
|
use App\Models\ClientContact;
|
|
use App\Models\CompanyToken;
|
|
use App\Repositories\ClientRepository;
|
|
use App\Transformers\ClientTransformer;
|
|
use App\Utils\Ninja;
|
|
use App\Utils\Traits\MakesHash;
|
|
use Illuminate\Http\Request;
|
|
|
|
class ClientController extends BaseController
|
|
{
|
|
use MakesHash;
|
|
|
|
protected $entity_type = Client::class;
|
|
|
|
protected $entity_transformer = ClientTransformer::class;
|
|
|
|
/**
|
|
* @var ClientRepository
|
|
*/
|
|
protected $client_repo;
|
|
|
|
/**
|
|
* ClientController constructor.
|
|
* @param ClientRepository $clientRepo
|
|
*/
|
|
public function __construct(ClientRepository $client_repo)
|
|
{
|
|
parent::__construct();
|
|
|
|
$this->client_repo = $client_repo;
|
|
}
|
|
|
|
public function show(string $contact_key)
|
|
{
|
|
$company = Company::where('company_key', $request->header('X-API-COMPANY_KEY'))->first();
|
|
|
|
$contact = ClientContact::with('client')
|
|
->where('company_id', $company->id)
|
|
->where('contact_key', $contact_key)
|
|
->firstOrFail();
|
|
|
|
return $this->itemResponse($contact->client);
|
|
}
|
|
|
|
public function store(StoreClientRequest $request)
|
|
{
|
|
$company = Company::where('company_key', $request->header('X-API-COMPANY_KEY'))->first();
|
|
|
|
app('queue')->createPayloadUsing(function () use ($company) {
|
|
return ['db' => $company->db];
|
|
});
|
|
|
|
$client = $this->client_repo->save($request->all(), ClientFactory::create($company->id, $company->owner()->id));
|
|
|
|
$client->load('contacts', 'primary_contact');
|
|
|
|
$this->uploadLogo($request->file('company_logo'), $company, $client);
|
|
|
|
event(new ClientWasCreated($client, $company, Ninja::eventVars()));
|
|
|
|
return $this->itemResponse($client);
|
|
}
|
|
}
|