blob: 0c73dbcbaf3b09027cdc64cc9f277a9f691e87e3 (
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
|
<?php
/**
* LtiData.php - LTI consumer API for 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 Elmar Ludwig
* @license http://www.gnu.org/licenses/gpl-2.0.html GPL version 2
*
* @property int $id database column
* @property int $position database column
* @property string $course_id database column
* @property string $title database column
* @property string $description database column
* @property int $tool_id database column
* @property string $launch_url database column
* @property int $mkdate database column
* @property int $chdate database column
* @property JSONArrayObject|null $options database column
* @property SimpleORMapCollection|LtiGrade[] $grades has_many LtiGrade
* @property Course $course belongs_to Course
* @property LtiTool $tool belongs_to LtiTool
*/
class LtiData extends SimpleORMap
{
/**
* Configure the database mapping.
*/
protected static function configure($config = [])
{
$config['db_table'] = 'lti_data';
$config['serialized_fields']['options'] = JSONArrayObject::class;
$config['belongs_to']['course'] = [
'class_name' => Course::class,
'foreign_key' => 'course_id'
];
$config['belongs_to']['tool'] = [
'class_name' => LtiTool::class,
'foreign_key' => 'tool_id'
];
$config['has_many']['grades'] = [
'class_name' => LtiGrade::class,
'assoc_foreign_key' => 'link_id',
'on_delete' => 'delete'
];
parent::configure($config);
}
/**
* 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]);
}
/**
* Delete this entity.
*/
public function delete()
{
$db = DBManager::get();
$course_id = $this->course_id;
$position = $this->position;
if ($result = parent::delete()) {
$db->execute('UPDATE lti_data SET position = position - 1 WHERE course_id = ? AND position > ?', [$course_id, $position]);
}
return $result;
}
/**
* Get the launch_url of this entry.
*/
public function getLaunchURL()
{
if ($this->tool_id) {
if (!$this->tool->allow_custom_url && !$this->tool->deep_linking || !$this->launch_url) {
return $this->tool->launch_url;
}
}
return $this->launch_url;
}
/**
* Get the consumer_key of this entry.
*/
public function getConsumerKey()
{
if ($this->tool_id) {
return $this->tool->consumer_key;
}
return $this->options['consumer_key'];
}
/**
* Get the consumer_secret of this entry.
*/
public function getConsumerSecret()
{
if ($this->tool_id) {
return $this->tool->consumer_secret;
}
return $this->options['consumer_secret'];
}
/**
* Get the oauth_signature_method of this entry.
*/
public function getOauthSignatureMethod()
{
if ($this->tool_id) {
return $this->tool->oauth_signature_method;
}
return $this->options['oauth_signature_method'] ?? 'sha1';
}
/**
* Get the custom_parameters of this entry.
*/
public function getCustomParameters()
{
if ($this->tool_id) {
return $this->tool->custom_parameters . "\n" . $this->options['custom_parameters'];
}
return $this->options['custom_parameters'];
}
/**
* Get the send_lis_person attribute of this entry.
*/
public function getSendLisPerson()
{
if ($this->tool_id) {
return $this->tool->send_lis_person;
}
return $this->options['send_lis_person'];
}
}
|