-
-
Notifications
You must be signed in to change notification settings - Fork 73
/
Copy pathget_owner.php
38 lines (31 loc) · 842 Bytes
/
get_owner.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
<?php
declare(strict_types=1);
namespace Psl\Filesystem;
use Psl;
use Psl\Str;
use function fileowner;
/**
* Get the owner of $node.
*
* @param non-empty-string $node
*
* @throws Exception\NotFoundException If $node is not found.
* @throws Exception\RuntimeException In case of an error.
*
* @mago-expect best-practices/no-boolean-literal-comparison
*/
function get_owner(string $node): int
{
if (!namespace\exists($node)) {
throw Exception\NotFoundException::forNode($node);
}
[$result, $message] = Psl\Internal\box(static fn(): false|int => fileowner($node));
if (false === $result) {
throw new Exception\RuntimeException(Str\format(
'Failed to retrieve owner of file "%s": %s',
$node,
$message ?? 'internal error',
));
}
return $result;
}