2017-08-26 23:08:11 +00:00
|
|
|
<?php
|
2017-09-26 02:43:01 +00:00
|
|
|
/**
|
2017-08-26 23:08:11 +00:00
|
|
|
* Pterodactyl - Panel
|
|
|
|
* Copyright (c) 2015 - 2017 Dane Everitt <dane@daneeveritt.com>.
|
|
|
|
*
|
2017-09-26 02:43:01 +00:00
|
|
|
* This software is licensed under the terms of the MIT license.
|
|
|
|
* https://opensource.org/licenses/MIT
|
2017-08-26 23:08:11 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
namespace Pterodactyl\Services\Subusers;
|
|
|
|
|
2017-09-25 02:12:30 +00:00
|
|
|
use Webmozart\Assert\Assert;
|
2017-08-26 23:08:11 +00:00
|
|
|
use Pterodactyl\Models\Permission;
|
|
|
|
use Pterodactyl\Contracts\Repository\PermissionRepositoryInterface;
|
|
|
|
|
|
|
|
class PermissionCreationService
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* @var \Pterodactyl\Contracts\Repository\PermissionRepositoryInterface
|
|
|
|
*/
|
|
|
|
protected $repository;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* PermissionCreationService constructor.
|
|
|
|
*
|
|
|
|
* @param \Pterodactyl\Contracts\Repository\PermissionRepositoryInterface $repository
|
|
|
|
*/
|
|
|
|
public function __construct(PermissionRepositoryInterface $repository)
|
|
|
|
{
|
|
|
|
$this->repository = $repository;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Assign permissions to a given subuser.
|
|
|
|
*
|
|
|
|
* @param int $subuser
|
|
|
|
* @param array $permissions
|
|
|
|
*
|
|
|
|
* @throws \Pterodactyl\Exceptions\Model\DataValidationException
|
|
|
|
*/
|
|
|
|
public function handle($subuser, array $permissions)
|
|
|
|
{
|
2017-09-25 02:12:30 +00:00
|
|
|
Assert::integerish($subuser, 'First argument passed to handle must be an integer, received %s.');
|
|
|
|
|
2017-08-26 23:08:11 +00:00
|
|
|
$permissionMappings = Permission::getPermissions(true);
|
|
|
|
$insertPermissions = [];
|
|
|
|
|
|
|
|
foreach ($permissions as $permission) {
|
|
|
|
if (array_key_exists($permission, $permissionMappings)) {
|
2017-09-25 02:12:30 +00:00
|
|
|
Assert::stringNotEmpty($permission, 'Permission argument provided must be a non-empty string, received %s.');
|
2017-08-26 23:08:11 +00:00
|
|
|
|
|
|
|
array_push($insertPermissions, [
|
|
|
|
'subuser_id' => $subuser,
|
|
|
|
'permission' => $permission,
|
|
|
|
]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-07-01 01:25:46 +00:00
|
|
|
if (! empty($insertPermissions)) {
|
|
|
|
$this->repository->withoutFreshModel()->insert($insertPermissions);
|
|
|
|
}
|
2017-08-26 23:08:11 +00:00
|
|
|
}
|
|
|
|
}
|