-
-
Notifications
You must be signed in to change notification settings - Fork 108
Expand file tree
/
Copy pathClass_.php
More file actions
75 lines (58 loc) · 1.85 KB
/
Class_.php
File metadata and controls
75 lines (58 loc) · 1.85 KB
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
<?php
/*
* This file is part of the API Platform project.
*
* (c) Kévin Dunglas <dunglas@gmail.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
declare(strict_types=1);
namespace ApiPlatform\SchemaGenerator\Schema\Model;
use ApiPlatform\SchemaGenerator\Model\Class_ as BaseClass_;
use ApiPlatform\SchemaGenerator\Schema\Rdf\RdfResource;
final class Class_ extends BaseClass_
{
private RdfResource $resource;
private const SCHEMA_ORG_ENUMERATION = 'https://schema.org/Enumeration';
/**
* @param false|string|null $parent
*/
public function __construct(string $name, RdfResource $resource, $parent = null)
{
parent::__construct($name, $parent);
$this->resource = $resource;
}
public function resource(): RdfResource
{
return $this->resource;
}
public function rdfType(): string
{
return $this->resource->getUri();
}
public function description(): ?string
{
$comment = $this->resource->get('rdfs:comment');
return $comment ? (string) $comment : null;
}
public function shortName(): string
{
if (\is_string($shortName = $this->resource->localName())) {
return $shortName;
}
return $this->name();
}
/**
* @return RdfResource[]
*/
public function getSubClassOf(): array
{
return array_filter($this->resource->all('rdfs:subClassOf', 'resource'), static fn (RdfResource $resource) => !$resource->isBNode());
}
public function isEnum(RdfResource $resource = null): bool
{
$parentClass = ($resource ?? $this->resource)->get('rdfs:subClassOf');
return $parentClass && (self::SCHEMA_ORG_ENUMERATION === $parentClass->getUri() || $this->isEnum($parentClass));
}
}