-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
febe2bd
commit 5e81b12
Showing
3 changed files
with
111 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,74 @@ | ||
<?php | ||
|
||
namespace Bildvitta\IssSupernova\Observers; | ||
|
||
use Bildvitta\IssSupernova\IssSupernova; | ||
use Illuminate\Support\Facades\App; | ||
use Illuminate\Support\Facades\Config; | ||
use Illuminate\Support\Facades\Log; | ||
|
||
class CompanyObserver | ||
{ | ||
public function created($company) | ||
{ | ||
if (!Config::get('iss-supernova.base_uri')) { | ||
return; | ||
} | ||
|
||
$company->loadMissing( | ||
'domains', | ||
'main_company' | ||
); | ||
if ($company->main_company) { | ||
$company->main_company->loadMissing( | ||
'domains' | ||
); | ||
} | ||
$data = $company->toArray(); | ||
$data['sync_to'] = 'sys'; | ||
|
||
try { | ||
$issSupernova = new IssSupernova(); | ||
$response = $issSupernova->companies()->create($data); | ||
} catch (\Throwable $exception) { | ||
Log::error($exception->getMessage()); | ||
throw $exception; | ||
} | ||
|
||
return $response; | ||
} | ||
|
||
public function updated($company) | ||
{ | ||
if (!Config::get('iss-supernova.base_uri')) { | ||
return; | ||
} | ||
|
||
$company->loadMissing( | ||
'domains', | ||
'main_company' | ||
); | ||
if ($company->main_company) { | ||
$company->main_company->loadMissing( | ||
'domains' | ||
); | ||
} | ||
$data = $company->toArray(); | ||
$data['sync_to'] = 'sys'; | ||
|
||
try { | ||
$issSupernova = new IssSupernova(); | ||
$response = $issSupernova->companies()->update($data); | ||
} catch (\Throwable $exception) { | ||
Log::error($exception->getMessage()); | ||
throw $exception; | ||
} | ||
|
||
return $response; | ||
} | ||
|
||
public function deleted($company) | ||
{ | ||
$this->updated($company); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
<?php | ||
|
||
namespace Bildvitta\IssSupernova\Resources; | ||
|
||
use Bildvitta\IssSupernova\IssSupernova; | ||
|
||
class Companies | ||
{ | ||
private IssSupernova $issSupernova; | ||
|
||
public function __construct(IssSupernova $issSupernova) | ||
{ | ||
$this->issSupernova = $issSupernova; | ||
} | ||
|
||
public function create($data) | ||
{ | ||
return $this->issSupernova->request->post( | ||
'/companies', | ||
$data | ||
)->throw()->object(); | ||
} | ||
|
||
public function update($data) | ||
{ | ||
return $this->issSupernova->request->put( | ||
'/companies', | ||
$data | ||
)->throw()->object(); | ||
} | ||
} |