2FAuth/app/Services/GroupService.php
2022-03-31 11:24:01 +02:00

152 lines
3.4 KiB
PHP

<?php
namespace App\Services;
use App\Group;
use App\TwoFAccount;
use App\Services\SettingServiceInterface;
use Illuminate\Database\Eloquent\Collection;
class GroupService
{
/**
* The Settings Service instance.
*/
protected SettingServiceInterface $settingService;
/**
* Create a new controller instance.
*
*/
public function __construct(SettingServiceInterface $SettingServiceInterface)
{
$this->settingService = $SettingServiceInterface;
}
/**
* Returns all existing groups
*
* @return Collection
*/
public function getAll() : Collection
{
// We return the complete collection of groups
// stored in db plus a pseudo group corresponding to 'All'
//
// This pseudo group contains all twofaccounts regardless
// of the user created group they belong to.
// Get the user created groups
$groups = Group::withCount('twofaccounts')->get();
// Create the pseudo group
$allGroup = new Group([
'name' => __('commons.all')
]);
$allGroup->id = 0;
$allGroup->twofaccounts_count = TwoFAccount::count();
return $groups->prepend($allGroup);
}
/**
* Creates a group
*
* @param array $data
* @return Group The created group
*/
public function create(array $data) : Group
{
$group = Group::create([
'name' => $data['name'],
]);
$group->save();
return $group;
}
/**
* Updates a group using a list of parameters
*
* @param Group $group The group
* @param array $data The parameters
* @return Group The updated group
*/
public function update(Group $group, array $data) : Group
{
$group->update([
'name' => $data['name'],
]);
return $group;
}
/**
* Deletes one or more groups
*
* @param int|array $ids group ids to delete
* @return int The number of deleted
*/
public function delete($ids) : int
{
$deleted = Group::destroy($ids);
return $deleted;
}
/**
* Assign one or more accounts to a group
*
* @param array|int $ids accounts ids to assign
* @param Group $group The target group
* @return Group The updated group
*/
public function assign($ids, Group $group = null) : Group
{
if (!$group) {
$group = $this->destinationGroup();
}
$twofaccounts = TwoFAccount::find($ids);
$group->twofaccounts()->saveMany($twofaccounts);
$group->loadCount('twofaccounts');
return $group;
}
/**
* Finds twofaccounts assigned to the group
*
* @param Group $group The group
* @return Collection The assigned accounts
*/
public function getAccounts(Group $group) : Collection
{
$twofaccounts = $group->twofaccounts()->where('group_id', $group->id)->get();
return $twofaccounts;
}
/**
* Determines the destination group
*
* @return Group The group
*/
private function destinationGroup() : Group
{
$id = $this->settingService->get('defaultGroup') === '-1' ? (int) $this->settingService->get('activeGroup') : (int) $this->settingService->get('defaultGroup');
return Group::find($id);
}
}