-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathScormEngineService.php
273 lines (243 loc) · 7.82 KB
/
ScormEngineService.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
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
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
<?php
/* Software License Agreement (BSD License)
*
* Copyright (c) 2010-2014, Rustici Software, LLC
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
* * Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* * Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* * Neither the name of the <organization> nor the
* names of its contributors may be used to endorse or promote products
* derived from this software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
* WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
* DISCLAIMED. IN NO EVENT SHALL Rustici Software, LLC BE LIABLE FOR ANY
* DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
* (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
* LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
* ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
/**
* @version $Id$
* @author Brian Rogers <[email protected]>
* @license http://opensource.org/licenses/lgpl-license.php
* GNU Lesser General Public License, Version 2.1
* @package RusticiSoftware.ScormEngine.Cloud
*/
require_once 'Configuration.php';
require_once 'ServiceRequest.php';
require_once 'CourseService.php';
require_once 'InvitationService.php';
require_once 'RegistrationService.php';
require_once 'UploadService.php';
require_once 'ReportingService.php';
require_once 'TaggingService.php';
require_once 'AccountService.php';
require_once 'DebugService.php';
require_once 'DispatchService.php';
require_once 'LrsAccountService.php';
require_once 'ApplicationService.php';
require_once 'DebugLogger.php';
class ScormEngineService{
private $_configuration = null;
private $_courseService = null;
private $_registrationService = null;
private $_uploadService = null;
private $_ftpService = null;
private $_serviceRequest = null;
private $_taggingService = null;
private $_accountService = null;
private $_debugService = null;
private $_dispatchService = null;
private $_invitationService = null;
private $_lrsAccountService = null;
private $_applicationService = null;
public function __construct($scormEngineServiceUrl, $appId, $securityKey, $originString, $proxy=null, $appManager=null, $managerKey=null) {
$this->_configuration = new Configuration($scormEngineServiceUrl, $appId, $securityKey, $appManager, $managerKey, $originString);
$this->_configuration->setProxy($proxy);
$this->_serviceRequest = new ServiceRequest($this->_configuration);
$this->_courseService = new CourseService($this->_configuration);
$this->_registrationService = new RegistrationService($this->_configuration);
$this->_uploadService = new UploadService($this->_configuration);
$this->_reportingService = new ReportingService($this->_configuration);
$this->_taggingService = new TaggingService($this->_configuration);
$this->_accountService = new AccountService($this->_configuration);
$this->_debugService = new DebugService($this->_configuration);
$this->_dispatchService = new DispatchService($this->_configuration);
$this->_invitationService = new InvitationService($this->_configuration);
$this->_lrsAccountService = new LrsAccountService($this->_configuration);
$this->_applicationService = new ApplicationService($this->_configuration);
//$_ftpService = new FtpService(configuration);
}
public function isValidAccount() {
$appId = $this->getAppId();
$key = $this->getSecurityKey();
$url = $this->getScormEngineServiceUrl();
$origin = $this->getOriginString();
if (empty($appId) || empty($key) || empty($url) || empty($origin)) {
return false;
}
return $this->_debugService->CloudAuthPing();
}
public function isValidUrl(){
return $this->_debugService->CloudPing();
}
/**
* <summary>
* Contains all SCORM Engine Package-level (i.e., course) functionality.
* </summary>
*/
public function getCourseService()
{
return $this->_courseService;
}
/**
* <summary>
* Contains all SCORM Engine Package-level (i.e., course) functionality.
* </summary>
*/
public function getRegistrationService()
{
return $this->_registrationService;
}
/**
* <summary>
* Contains all SCORM Engine Upload/File Management functionality.
* </summary>
*/
public function getUploadService()
{
return $this->_uploadService;
}
/**
* <summary>
* Contains all SCORM Engine Reportage functionality.
* </summary>
*/
public function getReportingService()
{
return $this->_reportingService;
}
/**
* <summary>
* Contains all SCORM Engine FTP Management functionality.
* </summary>
*/
public function getFtpService()
{
return $this->_ftpService;
}
/**
* <summary>
* Contains SCORM Engine tagging functionality.
* </summary>
*/
public function getTaggingService()
{
return $this->_taggingService;
}
/**
* <summary>
* Contains SCORM Engine account info retrieval functionality.
* </summary>
*/
public function getAccountService()
{
return $this->_accountService;
}
/**
* <summary>
* Contains SCORM Engine debug functionality.
* </summary>
*/
public function getDebugService()
{
return $this->_debugService;
}
/**
* <summary>
* Contains SCORM Engine dispatch functionality.
* </summary>
*/
public function getDispatchService()
{
return $this->_dispatchService;
}
/**
* <summary>
* Contains SCORM Engine Invitation functionality.
* </summary>
*/
public function getInvitationService()
{
return $this->_invitationService;
}
/**
* <summary>
* Contains SCORM Engine Activity provider functionality.
* </summary>
*/
public function getLrsAccountService()
{
return $this->_lrsAccountService;
}
/**
* <summary>
* Contains SCORM Engine Activity provider functionality.
* </summary>
*/
public function getApplicationService()
{
return $this->_applicationService;
}
/**
* <summary>
* The Application ID obtained by registering with the SCORM Engine Service
* </summary>
*/
public function getAppId()
{
return $this->_configuration->getAppId();
}
/**
* <summary>
* The security key (password) linked to the Application ID
* </summary>
*/
public function getSecurityKey()
{
return $this->_configuration->getSecurityKey();
}
/**
* <summary>
* URL to the service, ex: http://services.scorm.com/EngineWebServices
* </summary>
*/
public function getScormEngineServiceUrl()
{
return $this->_configuration->getScormEngineServiceUrl();
}
public function getOriginString()
{
return $this->_configuration->getOriginString();
}
/**
* <summary>
* CreateNewRequest
* </summary>
*/
public function CreateNewRequest()
{
return new ServiceRequest($this->_configuration);
}
}
?>