-
Notifications
You must be signed in to change notification settings - Fork 135
/
Copy pathapi_methods.php
441 lines (439 loc) · 15.1 KB
/
api_methods.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
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
<?php
$sendNotificationActions = array (
'doPause' => array (
'desc' => 'Pauses media playback.',
'example' => '../modules/KalturaSupport/tests/PlayStopApi.qunit.html'
),
'doPlay' => array (
'desc' => 'Plays media. If in stopped state will initiate playback sequence.',
'example' => '../modules/KalturaSupport/tests/PlayStopApi.qunit.html'
),
'doStop' => array (
'desc' => 'Stops media playback. Will pause and move the playhead to 0.',
'example' => '../modules/KalturaSupport/tests/PlayStopApi.qunit.html'
),
'doSeek' => array (
'notificationDataType' => 'Float',
'notificationData' => 'Seconds of target seek position.',
'notificationDataValue' => '30',
'desc' => 'Issues a seek.',
'example' => '../modules/KalturaSupport/tests/SeekApi.qunit.html'
),
'changeMedia' => array (
'notificationDataType' => 'Object',
'notificationData' => 'Data object can specify an entryId or referenceId',
'desc' => 'Change the current media entry within the player.',
'notificationDataValue' => array(
'{ "entryId" : "0_wm82kqmm" }',
'{ "mediaProxy" : mediaProxyObject }'
),
'example' => '../modules/KalturaSupport/tests/ChangeMediaEntry.qunit.html'
),
'changeVolume' => array (
'notificationData' => 'Volume value from 0 to 1',
'notificationDataType' => 'Float',
'notificationDataValue' => '0.5',
'desc' => 'Change the audio volume',
'example' => '../modules/KalturaSupport/tests/SendNotificationWithAds.html'
),
'cleanMedia' => array (
'desc' => 'Cleans the media from the player.'
),
'doSwitch' => array (
'notificationData' => 'Switch to a target flavor index',
'notificationDataType' => 'Object',
'notificationDataValue' => '{ flavorIndex: 3 }',
'desc' => 'Command the player to manually switch between streams within the resource.'
),
'changePreferredBitrate' => array (
'notificationData' => 'The new preferred bitrate',
'desc' => 'Change the preferedFlavorBR on mediaProxy.vo object',
'availability' => 'kdp'
),
'doReplay' => array (
'desc' => 'Re-plays the video'
),
'alert' => array (
'notificationData' => 'message: alert message, title: alert title',
'desc' => 'Pop up an alert' ,
'example' => '../modules/KalturaSupport/tests/showAlert.html'
),
'showUiElement' => array (
'notificationData' => 'id: ID of the element, show: true / false',
'desc' => 'Show/hide an element from the layout',
'availability' => 'kdp'
),
'removeAlerts' => array (
'notificationData' => 'None',
'desc' => 'Fired when all alerts popped by the player need to be removed',
'availability' => 'kdp'
),
'enableGui' => array (
'notificationData' => '{ guiEnabled: true / false, enableType: full / controls }',
'desc' => 'Enable or Disable GUI',
'example' => '../modules/KalturaSupport/tests/EnableGui.html'
),
'cancelAlerts' => array (
'notificationData' => 'None',
'desc' => 'Hide Alerts at the Alerts Mediator',
'availability' => 'kdp'
),
'liveEntry' => array (
'notificationData' => 'The URL resource of the played entry',
'desc' => 'Call the LiveStream command which tests whether the stream is currently on air',
'availability' => 'kdp'
),
'showClosedCaptions' => array (
'notificationData' => 'None',
'desc' => 'Display closed captions',
'example' => '../modules/KalturaSupport/tests/ClosedCaptions.html'
),
'hideClosedCaptions' => array (
'notificationData' => 'None',
'desc' => 'Hide closed captions',
'example' => '../modules/KalturaSupport/tests/ClosedCaptions.html'
)
);
/* should ideally auto generate or be in a separate file */
$methodDocs = array (
'kWidget.embed' => array (
'desc' => 'Used to embed the Kaltura player against an element target in the DOM',
'params' => array (
'targetId' => array (
'type' => 'String', // assumed
'optional' => true,
'desc' => 'The DOM player target id attribute string. ( if not included, you must include targetId in "settings" object )'
),
'settings' => array (
'type' => 'kWidget.settingsObject',
'desc' => 'Object of settings to be used in embedding.'
)
),
'returns' => array (
'type' => 'boolean|null',
'desc' => 'Returns boolean false if id not found'
),
'examples' => array (
array (
// either doc name or path can be defined ( for feature listed files vs non-feature listed )
'type' => 'link',
'name' => 'kWidget.embed',
'docPath' => 'kwidget'
),
array (
'type' => 'link',
'name' => 'kWidget.embed playlist',
'docFullPath' => 'modules/KalturaSupport/tests/kWidget.embed.playlist.qunit.html '
)
)
),
'kWidget.thumbEmbed' => array (
'desc' => 'Used to embed a thumbnail player. When the user clicks on the thumbnail kWidget.embed will be called with the provided settings.',
'params' => array (
'targetId' => array (
'type' => 'String', // assumed
'optional' => true,
'desc' => 'The DOM player target id attribute string. ( if not included, you must include targetId in "settings" object'
),
'settings' => array (
'type' => 'kWidget.settingsObject',
'desc' => 'Object of settings to be used in embedding.'
)
),
'examples' => array (
array (
// either doc name or path can be defined ( for feature listed files vs non-feature listed )
'type' => 'link',
'name' => 'kWidget.thumbEmbed',
'docPath' => 'thumb'
)
)
),
'kWidget.getKalturaThumbUrl' => array (
'desc' => 'Get video thumbnail URL.',
'params' => array (
'settings' => array (
'type' => 'kWidget.settingsObject',
'desc' => 'Object of settings to be used in embedding.'
)
)
),
'kWidget.isMobileDevice' => array(
'desc' => 'If user agent identifies as mobile device ( android, iOS or windows phone )',
'returns' => array (
'type' => 'boolean',
'desc' => 'true|false'
),
),
'kWidget.supportsHTML5' => array(
'desc' => 'If the device or browser supports HTML5',
'returns' => array (
'type' => 'boolean',
'desc' => 'true|false'
),
),
'kWidget.supportsFlash' => array(
'desc' => 'If the device or browser supports Flash ( version 10 and above )',
'returns' => array (
'type' => 'boolean',
'desc' => 'true|false'
),
),
'kWidget.isIOS' => array (
'desc' => 'If user agent identifies as iOS device',
'returns' => array (
'type' => 'boolean',
'desc' => 'true|false'
),
),
'kWidget.isIE' => array(
'desc' => "If user agent identifies as Internet Explorer browser",
'returns' => array (
'type' => 'boolean',
'desc' => 'true|false'
),
),
'kWidget.isIE8' => array(
'desc' => "If user agent identifies as Internet Explorer 8 browser",
'returns' => array (
'type' => 'boolean',
'desc' => 'true|false'
),
),
'kWidget.isAndroid' => array(
'desc' => "If user agent identifies as Android device",
'returns' => array (
'type' => 'boolean',
'desc' => 'true|false'
),
),
'kWidget.isWindowsDevice' => array(
'desc' => "If user agent identifies as Windows Phone device",
'returns' => array (
'type' => 'boolean',
'desc' => 'true|false'
),
),
'kWidget.addReadyCallback' => array (
'desc' => 'Adds a ready callback to be called after the KDP or HTML5 player is ready.',
'params' => array (
'readyCallback' => array (
'type' => 'String',
'desc' => 'Function to call after a player or widget is ready on the page.'
)
),
'examples' => array (
array (
'type' => 'link',
'name' => 'kWidget.addReadyCallback',
'docFullPath' => 'modules/KalturaSupport/tests/ChangeMediaEntry.qunit.html '
)
)
),
'kWidget.destroy' => array (
'desc' => 'Removes the player from the DOM.',
'params' => array (
'target' => array (
'type' => 'String',
'desc' => 'The target element or element ID to destroy.'
)
),
'examples' => array (
array (
'type' => 'link',
'name' => 'kWidget.embed',
'docPath' => 'kwidget'
)
)
),
'kWidget.api' => array (
'desc' => 'The kWidget API object, used to create new instances of Kaltura API request.',
'params' => array (
'apiObject' => array (
'type' => 'kWidget.apiOptions',
'desc' => 'Object of API settings to be used in API requests.'
),
'callback' => array (
'type' => 'function',
'desc' => 'Callback of API response, with data as the first argument.'
)
),
'methods' => array (
'doRequest' => array (
'type' => 'function',
'desc' => "( RequestObject, callback ) Run the API request, issue callback with API response data."
)
),
'returns' => array (
'type' => 'kWidget.api',
'desc' => 'Returns an instance of the kWidget API object.'
),
'examples' => array (
array (
'name' => 'kWidget.api',
'docFullPath' => 'kWidget/tests/kWidget.api.html'
),
array (
'name' => 'kWidget.getSources',
'docFullPath' => 'modules/KalturaSupport/tests/kWidget.getSources.html'
)
)
),
'sendNotification' => array (
'desc' => 'Call a KDP notification (perform actions using this API, for example: play, pause, changeMedia, etc.)',
'params' => array (
'notificationName' => array (
'type' => 'String',
'desc' => 'The name of notification to call.'
),
'notificationData' => array (
'type' => 'Object',
'optional' => true,
'desc' => 'The custom data to pass with the notification.'
)
)
),
'kBind'=> array(
'desc' => 'Register a JavaScript handler function for a KDP notification',
'params' => array (
'eventName' => array (
'type' => 'String',
'desc' => 'The name of the notification to listen to. Can be namespaced for easy group event removal.'
),
'callback' => array (
'type' => 'String',
'desc' => 'A function to be called when the named event is triggered.'
),
),
'examples' => array (
array (
'type' => 'link',
'name' => 'kBind and kUBnind',
'docFullPath' => 'modules/KalturaSupport/tests/kBind_kUnbind.qunit.html'
)
)
),
'kUnbind' => array(
'desc' => 'Remove a JavaScript handler function by name or by setfor a KDP notification',
'params' => array (
'eventName' => array (
'type' => 'String',
'desc' => 'The name of the notification to remove, prefix with period for removal of a set of namespaced events.'
)
),
'examples' => array (
'type' => 'link',
'name' => 'kBind and kUBnind',
'docFullPath' => '../modules/KalturaSupport/tests/kBind_kUnbind.qunit.html'
)
),
'addJsListener' => array (
'desc' => 'Register a javascript handler function for a KDP notification',
'params' => array (
'listenerString' => array (
'type' => 'String',
'desc' => 'The name of the notification to listen to.'
),
'jsFunctionName' => array (
'type' => 'String',
'desc' => 'The name of the JavaScript handler function.'
)
)
),
'evaluate' => array (
'desc' => "Retrieves the value of a KDP model property or component's property, using the standard OOP dot notation inside curly braces",
'params' => array (
'object.property.properties' => array (
'type' => 'String',
'desc' => 'The reference to the component object with data that you want to extract. Enclose the reference in curly braces within single or double quotation marks.'
)
)
),
'setKDPAttribute' => array (
'desc' => "Change a value of a player configuration property or component's property using the standard OOP dot notation.",
'params' => array (
'object' => array (
'type' => 'String',
'desc' => 'A string that represents the object you want to modify. Use standard dot notation to specify sub-objects, for example, configProxy.flashvars'
),
'property' => array (
'type' => 'String',
'desc' => 'The player property that you want to modify.'
),
'value' => array (
'type' => 'String',
'desc' => 'The new value that you want to set for the player property.'
)
)
),
'jsCallbackReady' => array (
'desc' => "A JavaScript function on the hosting web page that is called by KDP when the setup of externalInterface APIs is completed.",
'params' => array (
'objectId' => array (
'type' => 'String',
'desc' => 'Represents the identifier of the player that is embedded.'
)
)
)
);
$objectDefinitions = array (
'kWidget.apiOptions' => array (
'wid' => array (
'desc' => "The partner id to be used in the API request."
),
'ks' => array (
'desc' => "The Kaltura secret to be used in the request, if not supplied an anonymous KS will be generated and used."
),
'serviceUrl' => array (
'desc' => 'Can be overwritten to target a different Kaltura server.',
'default' => 'http://cdnapi.kaltura.com'
),
'serviceBase' => array (
'desc' => "Can be overwritten to alternate Kaltura service path.",
'default' => '/api_v3/index.php?service='
),
'statsServiceUrl' => array (
'desc' => "Default supplied via Kaltura library include, can be overwritten to alternate URL for core analytics events.",
'default' => 'http://stats.kaltura.com'
),
'disableCache' => array (
'desc' => "Sends no-cache param to API, for a fresh result. Can hurt performance and CDN cachability should be used sparingly.",
'default' => 'false'
)
),
'kWidget.settingsObject' => array (
'targetId' => array (
'desc' => 'The DOM player target id attribute string if not defined as top level param.'
),
'wid' => array (
'desc' => 'Widget id, usually the partner id prefixed by underscore.'
),
'uiconf_id' => array (
'type' => 'Number',
'optional' => true,
'desc' => 'The player uiconf_id'
),
'entry_id' => array (
'desc' => 'The content entry id. Can be left empty for a JavaScript based entry id.'
),
'flashvars' => array (
'type' => 'Object',
'desc' => 'Runtime configuration object, can override arbitrary uiVars and plugin config.'
),
'params' => array (
'type' => 'Object',
'desc' => 'Runtime configuration object, can override arbitrary uiVars and plugin config.'
),
'cache_st' => array (
'optional' => true,
'desc' => 'String to burst player cache'
),
'readyCallback' => array (
'optional' => true,
'type' => 'Function',
'desc' => 'Local callback method to be called once player is ready for bindings. Player id is passes as an argument.
See <a target="_new" href="../modules/KalturaSupport/tests/kWidget.embed.qunit.html">live example</a>'
)
)
);
?>