forked from elan-ev/studip-opencast-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathembed.js
281 lines (226 loc) · 10.5 KB
/
embed.js
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
(function() {
var $, dialog, dialog_template, openLinkDialog, iconurl;
$ = jQuery;
var area;
openLinkDialog = function(selection, textarea, button) {
area = function() {
return textarea
};
iconurl = STUDIP.ASSETS_URL + 'images/icons/16/blue/refresh.png';
dialog_template = _.template('<div class="matterhorn"><div id="dialog" title="Opencast Video"><div class="ui-widget"><label for="tags"></label><input id="tags" placeholder="Veranstaltung suchen ..." title="Suche hier eine Veranstaltung und dannach eine Aufzeichnung. Reset mit ESC"><img id="reset_series" src="' + iconurl +'"></div><div id="oc_embed_content"><div id="series_container"><h2>Veranstaltung</h2><br/></div><div id="vertical_border_wrapper"><div id="vertical_border"></div></div><div id="episodes_container"><h2>Aufzeichnung</h2><br/></div></div></div></div>');
dialog = $(dialog_template()).dialog({
buttons: {
"Close": function() {
emptyContainer();
$(this).dialog("close");
},
},
height: ($(window).height() * 0.8),
width: '70%',
close: function() {
emptyContainer();
},
});
loadSeries();
};
var loadSeries = function() {
emptyEpisodes();
$.get(STUDIP.ABSOLUTE_URI_STUDIP+ "plugins.php/opencast/ajax/getseries").done(function(data) {
var series = jQuery.parseJSON(data);
var series_array = [];
var series_id_array = [];
$('input#tags').focus();
// place a instructionale note
if($.isEmptyObject(series)){
$('#oc_embed_content').empty().append('<div class="messagebox messagebox_info "><div class="messagebox_buttons"><a class="close" href="#" title="Nachrichtenbox schliessen"><span>Nachrichtenbox schliessen</span></a></div>Es gibt momentan leider keine Inhalte in Opencast Matterhorn, die Sie einbetten d�rfen.</div>');
$('#tags').attr('disabled', 'disabled');
} else {
$('div#episodes_container').append('<div class="messagebox messagebox_info "><div class="messagebox_buttons"><a class="close" href="#" title="Nachrichtenbox schliessen"><span>Nachrichtenbox schliessen</span></a></div>Bitte w�hlen Sie zuerst auf der linken Seite eine Veranstaltung, aus der Sie Inhalte einbetten m�chten.</div>');
}
$("div#series_container").append("<ul id='loaded_series'>");
// Die Serien an die Liste haengen und Arrays befuellen
for (var i = 0; i < series.length; i++) {
var contributor = series[i].contributor;
var publisher = series[i].publisher;
if (publisher == null) {
publisher = "";
} else {
publisher += "<br/>";
};
if (contributor == null) {
contributor = "";
} else {
contributor += "<br/>";
};
$("ul#loaded_series").append("<li title='" + series[i].title + "' id=" + series[i].identifier + "><b>" + series[i].title + "</b><br/>" + contributor + publisher + "</li>");
series_array[i] = series[i].title;
series_id_array[i] = series[i].identifier;
};
var border_height = $('div#series_container li').outerHeight(true) * series.length;
$('div#vertical_border_wrapper').css("height", border_height);
$("div#series_container").append("</ul>");
$('#reset_series').click(function() {
emptyEpisodes();
setSearch(series_array, series_id_array);
setInfoText("Veranstaltung w�hlen ...");
setTag("Veranstaltung suchen ...");
$('input#tags').focus();
});
$(document).keyup(function(e) {
if (e.keyCode == 27) {
emptyEpisodes();
setSearch(series_array, series_id_array);
setInfoText("Veranstaltung w�hlen ...");
setTag("Aufzeichnung suchen ...");
$('input#tags').focus();
}
});
setSearch(series_array, series_id_array);
$('div#series_container li').click(function() {
emptyEpisodes();
loadEpisodes($(this).attr('id'), $(this).attr("title"));
});
});
};
var loadEpisodes = function(ser_id, ser_title) {
$.get(STUDIP.ABSOLUTE_URI_STUDIP + "plugins.php/opencast/ajax/getepisodes/" + ser_id).done(function(data) {
var episode = jQuery.parseJSON(data);
$('div#episodes_container').append("<p class='embed_episode_title'>Veranstaltung: " + ser_title + "</p>");
if ($.isEmptyObject(episode)) {
setInfoText("Diese Veranstaltung enth�lt keine Aufzeichnungen, bitte w�hlen Sie eine andere.");
$('div#dialog').animate({
scrollTop: 0
}, 0);
$('html body').animate({
scrollTop: 0
}, 0);
$('input#tags').focus();
return;
};
setTag("Auchzeichnung suche ... ");
var episodes_list = [];
var episodes_id_list = [];
var series_title = "";
$('input#tags').focus();
$('div#episodes_container').append("<ul id='loaded_episodes'>");
for (var i = 0; i < episode.length; i++) {
//foreach($episode->mediapackage->attachments->attachment as $attachment) {
// if($attachment->type === 'presenter/search+preview') $preview = $attachment->url;
//}
var img_url = "";
if ('attachments' in episode[i].mediapackage) {
var attachments = episode[i].mediapackage.attachments;
$(attachments.attachment).each(function(index, val) {
if (val.type == 'presenter/search+preview' && val.mimetype == 'image/jpeg') {
img_url = val.url;
}
});
}
// Versuche Duration zu holen und umrechnen
try {
var ep_dur = episode[i].mediapackage.duration;
ep_dur /= 1000;
var time = parseInt(ep_dur, 10);
time = time < 0 ? 0 : time;
var minutes = Math.floor(time / 60);
var seconds = time % 60;
minutes = minutes <= 9 ? "0" + minutes : minutes;
seconds = seconds <= 9 ? "0" + seconds : seconds;
var duration = "<i> L�nge: </i>" + minutes + ":" + seconds + " Minuten";
} catch (err) {
duration = "";
}
var ep_title = episode[i].dcTitle;
var ep_cont = episode[i].dcContributor;
if (ep_title == null) {
ep_title = "";
} else {
ep_title += "<br/>";
};
if (ep_cont == null) {
ep_cont = "";
} else {
ep_cont += "";
};
$('ul#loaded_episodes').append("<li id='" + episode[i].id + "'><img height='45px' width='80px' align=middle style='float:left; margin-right: 5px;' src=" + img_url + "><b>" + ep_title + "</b>" + ep_cont + "" + duration + "</li>");
episodes_list[i] = episode[i].dcTitle;
episodes_id_list[i] = episode[i].id;
}
$('input#tags').autocomplete({
source: episodes_list,
select: function(event, ui) {
matchEpisode(episodes_list, episodes_id_list, ui.item.value);
$(this).val('');
return false;
},
});
$('div#episodes_container').append("</ul>");
// An den Anfang der Dialogbox springen
$('div#dialog').animate({
scrollTop: 0
}, 0);
$('html body').animate({
scrollTop: 0
}, 0);
$('div#episodes_container li').click(function() {
appendPlayer($(this).attr('id'));
});
});
};
var appendPlayer = function(id) {
area().replaceSelection('[opencast]' + id + '[/opencast]');
dialog.dialog("close");
};
var matchEpisode = function(ep_array, ep_id_array, match_ep) {
$.each(ep_array, function(index, value) {
if (match_ep == value) {
var id = ep_id_array[index];
appendPlayer(id);
};
return;
});
};
var matchSeries = function(series_array, series_id_array, match_series) {
$.each(series_array, function(index, value) {
if (match_series == value) {
var id = series_id_array[index];
loadEpisodes(id, match_series);
};
return;
});
};
var setTag = function(text) {
$('input#tags').attr('placeholder', text);
};
var emptyEpisodes = function() {
$('div#episodes_container').empty();
$('div#episodes_container').append('<h2 align=center> Aufzeichnungen </h2> <br/>');
};
var emptyContainer = function() {
$('div#series_container').empty();;
$("div#episodes_container").empty();
$('div#series_container').append('<h2 align=center> Veranstaltungen </h2> <br/>');
$('div#episodes_container').append('<h2 align=center> Aufzeichnungen </h2> <br/>');
};
var setSearch = function(series_array, series_id_array) {
$('input#tags').autocomplete({
source: series_array,
autoFocus: true,
select: function(event, ui) {
matchSeries(series_array, series_id_array, ui.item.value);
$(this).val('');
return false;
},
});
};
var setInfoText = function(text) {
$('#episodes_container').append('<i>' + text + '</i>');
};
embed = {
label: "Opencast Video",
evaluate: openLinkDialog
};
STUDIP.Toolbar.buttonSet.right = _.extend({
embed: embed
}, STUDIP.Toolbar.buttonSet.right);
}).call(this);