-
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
1545639
commit afabcc8
Showing
3 changed files
with
136 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,99 @@ | ||
<?php | ||
|
||
namespace Bildvitta\IssSupernova\Observers\User; | ||
|
||
use App\Models\User; | ||
use Bildvitta\IssSupernova\IssSupernova; | ||
use Illuminate\Support\Facades\App; | ||
use Illuminate\Support\Facades\Config; | ||
use Illuminate\Support\Facades\Log; | ||
|
||
class UserObserver | ||
{ | ||
public function created($user) | ||
{ | ||
if (!Config::get('iss-supernova.base_uri')) { | ||
return; | ||
} | ||
|
||
$user->loadMissing( | ||
'company', | ||
'groups', | ||
); | ||
$data = $user->toArray(); | ||
$data['permissions'] = $user->getAllPermissions(); | ||
$data['supervisor_uuid'] = $this->getUserUuidByPermission('supervisor.brokers.' . $user->uuid); | ||
$data['manager_uuid'] = $data['supervisor_uuid'] ? $this->getUserUuidByPermission('manager.supervisors.' . $data['supervisor_uuid']) : null; | ||
$data['sync_to'] = 'sys'; | ||
|
||
try { | ||
$issSupernova = new IssSupernova(); | ||
$response = $issSupernova->users()->create($data); | ||
return $response; | ||
} catch (\Throwable $exception) { | ||
Log::error($exception->getMessage()); | ||
throw $exception; | ||
} | ||
} | ||
|
||
public function updated($user) | ||
{ | ||
if (!Config::get('iss-supernova.base_uri')) { | ||
return; | ||
} | ||
|
||
$user->loadMissing( | ||
'company', | ||
'groups', | ||
); | ||
$data = $user->toArray(); | ||
$data['permissions'] = $user->getAllPermissions(); | ||
$data['supervisor_uuid'] = $this->getUserUuidByPermission('supervisor.brokers.' . $user->uuid); | ||
$data['manager_uuid'] = $data['supervisor_uuid'] ? $this->getUserUuidByPermission('manager.supervisors.' . $data['supervisor_uuid']) : null; | ||
$data['sync_to'] = 'sys'; | ||
|
||
try { | ||
$issSupernova = new IssSupernova(); | ||
$response = $issSupernova->users()->update($data); | ||
return $response; | ||
} catch (\Throwable $exception) { | ||
Log::error($exception->getMessage()); | ||
throw $exception; | ||
} | ||
} | ||
|
||
public function deleted($user) | ||
{ | ||
// | ||
} | ||
|
||
protected function getUserUuidByPermission($permission, $projectSlug='modular') { | ||
$permission = is_array($permission) ? $permission : [$permission]; | ||
$user = User::where(function ($query) use ($permission, $projectSlug) { | ||
$query->whereHas('groups', function ($query) use ($permission, $projectSlug) { | ||
$query->whereHas('permissions', function ($query) use ($permission, $projectSlug) { | ||
$query->whereIn('name', $permission); | ||
|
||
$query->whereHas('project', function ($query) use ($projectSlug) { | ||
$query->where('slug', $projectSlug); | ||
}); | ||
}); | ||
})->orWhereHas('roles', function ($query) use ($permission, $projectSlug) { | ||
$query->whereHas('permissions', function ($query) use ($permission, $projectSlug) { | ||
$query->whereIn('name', $permission); | ||
|
||
$query->whereHas('project', function ($query) use ($projectSlug) { | ||
$query->where('slug', $projectSlug); | ||
}); | ||
}); | ||
})->orWhereHas('permissions', function ($query) use ($permission, $projectSlug) { | ||
$query->whereIn('name', $permission); | ||
|
||
$query->whereHas('project', function ($query) use ($projectSlug) { | ||
$query->where('slug', $projectSlug); | ||
}); | ||
}); | ||
})->first('uuid'); | ||
return $user ? $user->uuid : null; | ||
} | ||
} |
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 Users | ||
{ | ||
private IssSupernova $issSupernova; | ||
|
||
public function __construct(IssSupernova $issSupernova) | ||
{ | ||
$this->issSupernova = $issSupernova; | ||
} | ||
|
||
public function create($data) | ||
{ | ||
return $this->issSupernova->request->post( | ||
'/users', | ||
$data | ||
)->throw()->object(); | ||
} | ||
|
||
public function update($data) | ||
{ | ||
return $this->issSupernova->request->put( | ||
'/users', | ||
$data | ||
)->throw()->object(); | ||
} | ||
} |