ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.ilLTIConsumerServiceBase.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
30 {
31  public const LTI_VERSION2P0 = 'LTI-2p0';
32 
33  public const SERVICE_ENABLED = 1;
34 
36  private array $services;
37 
39  protected string $id;
40 
42  protected string $name;
43 
45  protected bool $unsigned;
46 
48  private ?stdClass $toolproxy;
49 
51  private ?stdClass $type;
52 
54  private ?array $typeconfig;
55 
57  protected ?array $resources;
58 
60  protected string $resourcePath;
61 
62  public function __construct()
63  {
64  $this->services = array(
65  'gradeservice'
66  );
67  $this->id = '';
68  $this->name = '';
69  $this->unsigned = false;
70  $this->toolproxy = null;
71  $this->type = null;
72  $this->typeconfig = null;
73  $this->resources = null;
74  $this->resourcePath = '';
75  }
76 
80  protected function parseValue(string $value): string
81  {
82  if (empty($this->resources)) {
83  $this->resources = $this->getResources();
84  }
85  if (!empty($this->resources)) {
86  foreach ($this->resources as $resource) {
87  $value = $resource->parseValue($value);
88  }
89  }
90  return $value;
91  }
92 
96  abstract public function getResources(): array;
97 
101  public function setResourcePath(string $resourcePath): void
102  {
103  $this->resourcePath = $resourcePath;
104  }
105 
109  public function getResourcePath(): string
110  {
111  return $this->resourcePath;
112  }
113 
117  public function checkTool(): ?object
118  {
120  }
121 
125  /*
126  public function getLtiServices(): array {
127  return array();
128  }
129  */
130 }
array $typeconfig
LTI type config array for the current service request.
parseValue(string $value)
Parse a string for custom substitution parameter variables supported by this service&#39;s resources...
stdClass $type
LTI type object for the current service request.
array $services
lti services (for further use)
stdClass $toolproxy
Tool proxy object for the current service request.
bool $unsigned
if requests for this service do not need to be signed.
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
string $name
Human readable name for the service.
string $resourcePath
cleaned requested resourcePath
checkTool()
Check that the request has been properly signed and is permitted.
getResourcePath()
Get cleaned resourcePath without service part.
getResources()
Get the resources for this service.
array $resources
Instances of the resources associated with this service.
setResourcePath(string $resourcePath)
Set the cleaned resourcePath without service part.