Skip to content

Commit

Permalink
[Vega] Allow image loading without CORS policy by changing the defaul…
Browse files Browse the repository at this point in the history
…t to crossOrigin=null (#91991)

* changing the default to crossOrigin=null in Vega

* Fix eslint

Co-authored-by: Kibana Machine <42973632+kibanamachine@users.noreply.github.com>
  • Loading branch information
VladLasitsa and kibanamachine authored Feb 26, 2021
1 parent 3d91390 commit 4192ea7
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions src/plugins/vis_type_vega/public/vega_view/vega_base_view.js
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,7 @@ export class VegaBaseView {
// Override URL sanitizer to prevent external data loading (if disabled)
const vegaLoader = loader();
const originalSanitize = vegaLoader.sanitize.bind(vegaLoader);
vegaLoader.sanitize = (uri, options) => {
vegaLoader.sanitize = async (uri, options) => {
if (uri.bypassToken === bypassToken) {
// If uri has a bypass token, the uri was encoded by bypassExternalUrlCheck() above.
// because user can only supply pure JSON data structure.
Expand All @@ -189,7 +189,11 @@ export class VegaBaseView {
})
);
}
return originalSanitize(uri, options);
const result = await originalSanitize(uri, options);
// This will allow Vega users to load images from any domain.
result.crossOrigin = null;

return result;
};
config.loader = vegaLoader;

Expand Down

0 comments on commit 4192ea7

Please sign in to comment.