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
|
// Copyright 2015 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
/**
* Custom bindings for the mime handler API.
*/
var binding = require('binding').Binding.create('mimeHandlerPrivate');
var NO_STREAM_ERROR =
'Streams are only available from a mime handler view guest.';
var STREAM_ABORTED_ERROR = 'Stream has been aborted.';
var servicePromise = Promise.all([
requireAsync('content/public/renderer/service_provider'),
requireAsync('extensions/common/api/mime_handler.mojom'),
requireAsync('mojo/public/js/router'),
]).then(function(modules) {
var serviceProvider = modules[0];
var mojom = modules[1];
var routerModule = modules[2];
return new mojom.MimeHandlerService.proxyClass(new routerModule.Router(
serviceProvider.connectToService(mojom.MimeHandlerService.name)));
});
// Stores a promise to the GetStreamInfo() result to avoid making additional
// calls in response to getStreamInfo() calls.
var streamInfoPromise;
function throwNoStreamError() {
throw new Error(NO_STREAM_ERROR);
}
function createStreamInfoPromise() {
return servicePromise.then(function(service) {
return service.getStreamInfo();
}).then(function(result) {
if (!result.stream_info)
throw new Error(STREAM_ABORTED_ERROR);
return result.stream_info;
}, throwNoStreamError);
}
function constructStreamInfoDict(streamInfo) {
var headers = {};
for (var header of streamInfo.response_headers) {
headers[header[0]] = header[1];
}
return {
mimeType: streamInfo.mime_type,
originalUrl: streamInfo.original_url,
streamUrl: streamInfo.stream_url,
tabId: streamInfo.tab_id,
embedded: !!streamInfo.embedded,
responseHeaders: headers,
};
}
binding.registerCustomHook(function(bindingsAPI) {
var apiFunctions = bindingsAPI.apiFunctions;
apiFunctions.setHandleRequestWithPromise('getStreamInfo', function() {
if (!streamInfoPromise)
streamInfoPromise = createStreamInfoPromise();
return streamInfoPromise.then(constructStreamInfoDict);
});
apiFunctions.setHandleRequestWithPromise('abortStream', function() {
return servicePromise.then(function(service) {
return service.abortStream().then(function() {});
}).catch(throwNoStreamError);
});
});
exports.$set('binding', binding.generate());
|