blob: 785c35077c271ac1f788eb3a54b54f2af11671c9 (
plain)
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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
|
<?php
/*
* LtiResourceLink.php
* This file is part of Stud.IP.
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License as
* published by the Free Software Foundation; either version 2 of
* the License, or (at your option) any later version.
*
* @author Moritz Strohm
* @license http://www.gnu.org/licenses/gpl-2.0.html GPL version 2
*/
use OAT\Library\Lti1p3Core\Resource\LtiResourceLink\LtiResourceLinkInterface;
use OAT\Library\Lti1p3Core\Util\Collection\Collection;
use OAT\Library\Lti1p3Core\Util\Collection\CollectionInterface;
/**
* The LtiResourceLink class is a model for the lti_resource_links table.
*
* @property int $id database column
* @property int $deployment_id database column
* @property string $course_id database column
* @property int $position database column
* @property int $mkdate database column
* @property int $chdate database column
* @property ?LtiDeployment $deployment related object
* @property ?Course $course related object
*/
class LtiResourceLink extends \SimpleORMap implements LtiResourceLinkInterface
{
protected static function configure($config = [])
{
$config['db_table'] = 'lti_resource_links';
$config['belongs_to']['course'] = [
'class_name' => Course::class,
'foreign_key' => 'course_id'
];
$config['belongs_to']['deployment'] = [
'class_name' => LtiDeployment::class,
'foreign_key' => 'deployment_id'
];
$config['registered_callbacks']['before_create'] = ['cbCalculatePosition'];
parent::configure($config);
}
/**
* Calculates the position for a new LTI resource link in the course.
*/
public function cbCalculatePosition() : void
{
$this->position = self::countByCourse_id($this->course_id);
}
/**
* Delete this entity.
*/
public function delete()
{
$course_id = $this->course_id;
$position = $this->position;
if ($result = parent::delete()) {
DBManager::get()->execute(
"UPDATE `lti_resource_links`
SET `position` = position - 1
WHERE `course_id` = :course_id AND `position` > :position",
[
'course_id' => $course_id,
'position' => $position
]
);
}
return $result;
}
/**
* Find a single entry by course_id and position.
*
* @return static|null
*/
public static function findByCourseAndPosition($course_id, $position)
{
return self::findOneBySQL('course_id = ? AND position = ?', [$course_id, $position]);
}
//OAT library LtiResourceLinkInterface and ResourceInterface implementation:
public function getUrl(): ?string
{
if ($this->deployment) {
return $this->deployment->getLaunchURL();
}
return null;
}
public function getIcon(): ?array
{
return null;
}
public function getThumbnail(): ?array
{
if ($this->course) {
return [$this->course->getItemAvatarURL()];
}
return null;
}
public function getIframe(): ?array
{
//Not supported.
return null;
}
public function getCustom(): ?array
{
//Not supported.
return null;
}
public function getLineItem(): ?array
{
// TODO: Implement getLineItem() method.
return null;
}
public function getAvailability(): ?array
{
// TODO: Implement getAvailability() method.
return null;
}
public function getSubmission(): ?array
{
// TODO: Implement getSubmission() method.
return null;
}
public function getIdentifier(): string
{
return strval($this->id);
}
public function getType(): string
{
return 'ltiResourceLink';
}
public function getTitle(): ?string
{
if ($this->deployment) {
return $this->deployment->title;
}
return null;
}
public function getText(): ?string
{
return null;
}
public function getProperties(): CollectionInterface
{
$collection = new Collection();
$collection->add([
'url' => $this->getUrl(),
'title' => $this->getTitle()
]);
return $collection;
}
public function normalize(): array
{
return array_filter(
array_merge(
$this->getProperties()->all(),
['type' => $this->getType()]
)
);
}
}
|