2015-12-16 00:30:14 -05:00
|
|
|
/*
|
|
|
|
* Decrypt key Loader
|
|
|
|
*/
|
|
|
|
|
|
|
|
import Event from '../events';
|
2016-01-18 14:07:26 -05:00
|
|
|
import EventHandler from '../event-handler';
|
2015-12-16 00:30:14 -05:00
|
|
|
import {ErrorTypes, ErrorDetails} from '../errors';
|
|
|
|
|
2016-01-18 14:07:26 -05:00
|
|
|
class KeyLoader extends EventHandler {
|
2015-12-16 00:30:14 -05:00
|
|
|
|
|
|
|
constructor(hls) {
|
2016-01-18 14:07:26 -05:00
|
|
|
super(hls, Event.KEY_LOADING);
|
2015-12-16 00:30:14 -05:00
|
|
|
this.decryptkey = null;
|
|
|
|
this.decrypturl = null;
|
|
|
|
}
|
|
|
|
|
|
|
|
destroy() {
|
|
|
|
if (this.loader) {
|
|
|
|
this.loader.destroy();
|
|
|
|
this.loader = null;
|
|
|
|
}
|
2016-01-18 14:07:26 -05:00
|
|
|
EventHandler.prototype.destroy.call(this);
|
2015-12-16 00:30:14 -05:00
|
|
|
}
|
|
|
|
|
2016-01-18 14:07:26 -05:00
|
|
|
onKeyLoading(data) {
|
2015-12-16 00:30:14 -05:00
|
|
|
var frag = this.frag = data.frag,
|
|
|
|
decryptdata = frag.decryptdata,
|
|
|
|
uri = decryptdata.uri;
|
|
|
|
// if uri is different from previous one or if decrypt key not retrieved yet
|
|
|
|
if (uri !== this.decrypturl || this.decryptkey === null) {
|
|
|
|
var config = this.hls.config;
|
|
|
|
frag.loader = this.loader = new config.loader(config);
|
|
|
|
this.decrypturl = uri;
|
|
|
|
this.decryptkey = null;
|
|
|
|
frag.loader.load(uri, 'arraybuffer', this.loadsuccess.bind(this), this.loaderror.bind(this), this.loadtimeout.bind(this), config.fragLoadingTimeOut, config.fragLoadingMaxRetry, config.fragLoadingRetryDelay, this.loadprogress.bind(this), frag);
|
|
|
|
} else if (this.decryptkey) {
|
|
|
|
// we already loaded this key, return it
|
|
|
|
decryptdata.key = this.decryptkey;
|
|
|
|
this.hls.trigger(Event.KEY_LOADED, {frag: frag});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
loadsuccess(event) {
|
|
|
|
var frag = this.frag;
|
|
|
|
this.decryptkey = frag.decryptdata.key = new Uint8Array(event.currentTarget.response);
|
|
|
|
// detach fragment loader on load success
|
|
|
|
frag.loader = undefined;
|
|
|
|
this.hls.trigger(Event.KEY_LOADED, {frag: frag});
|
|
|
|
}
|
|
|
|
|
|
|
|
loaderror(event) {
|
|
|
|
this.loader.abort();
|
|
|
|
this.hls.trigger(Event.ERROR, {type: ErrorTypes.NETWORK_ERROR, details: ErrorDetails.KEY_LOAD_ERROR, fatal: false, frag: this.frag, response: event});
|
|
|
|
}
|
|
|
|
|
|
|
|
loadtimeout() {
|
|
|
|
this.loader.abort();
|
|
|
|
this.hls.trigger(Event.ERROR, {type: ErrorTypes.NETWORK_ERROR, details: ErrorDetails.KEY_LOAD_TIMEOUT, fatal: false, frag: this.frag});
|
|
|
|
}
|
|
|
|
|
|
|
|
loadprogress() {
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
export default KeyLoader;
|