/* global $, window, MutationObserver */ // // marketplacesInject.js // // Created by David Rowe on 12 Nov 2016. // Copyright 2016 High Fidelity, Inc. // // Injected into marketplace Web pages. // // Distributed under the Apache License, Version 2.0. // See the accompanying file LICENSE or http://www.apache.org/licenses/LICENSE-2.0.html // (function () { // Event bridge messages. var CLARA_IO_DOWNLOAD = "CLARA.IO DOWNLOAD"; var CLARA_IO_STATUS = "CLARA.IO STATUS"; var CLARA_IO_CANCEL_DOWNLOAD = "CLARA.IO CANCEL DOWNLOAD"; var CLARA_IO_CANCELLED_DOWNLOAD = "CLARA.IO CANCELLED DOWNLOAD"; var GOTO_DIRECTORY = "GOTO_DIRECTORY"; var GOTO_MARKETPLACE = "GOTO_MARKETPLACE"; var QUERY_CAN_WRITE_ASSETS = "QUERY_CAN_WRITE_ASSETS"; var CAN_WRITE_ASSETS = "CAN_WRITE_ASSETS"; var WARN_USER_NO_PERMISSIONS = "WARN_USER_NO_PERMISSIONS"; var canWriteAssets = false; var xmlHttpRequest = null; var isPreparing = false; // Explicitly track download request status. var marketplaceBaseURL = "https://highfidelity.com"; var messagesWaiting = false; function injectCommonCode(isDirectoryPage) { // Supporting styles from marketplaces.css. // Glyph font family, size, and spacing adjusted because HiFi-Glyphs cannot be used cross-domain. $("head").append( '' ); // Supporting styles from edit-style.css. // Font family, size, and position adjusted because Raleway-Bold cannot be used cross-domain. $("head").append( '' ); // Footer. var isInitialHiFiPage = location.href === (marketplaceBaseURL + "/marketplace?"); $("body").append( '
' + (!isInitialHiFiPage ? '' : '') + (isInitialHiFiPage ? '🛈 Get items from Clara.io!' : '') + (!isDirectoryPage ? '' : '') + (isDirectoryPage ? '🛈 Select a marketplace to explore.' : '') + '
' ); // Footer actions. $("#back-button").on("click", function () { if (document.referrer !== "") { window.history.back(); } else { var params = { type: GOTO_MARKETPLACE }; var itemIdMatch = location.search.match(/itemId=([^&]*)/); if (itemIdMatch && itemIdMatch.length === 2) { params.itemId = itemIdMatch[1]; } EventBridge.emitWebEvent(JSON.stringify(params)); } }); $("#all-markets").on("click", function () { EventBridge.emitWebEvent(JSON.stringify({ type: GOTO_DIRECTORY })); }); } function injectDirectoryCode() { // Remove e-mail hyperlink. var letUsKnow = $("#letUsKnow"); letUsKnow.replaceWith(letUsKnow.html()); // Add button links. $('#exploreClaraMarketplace').on('click', function () { window.location = "https://clara.io/library?gameCheck=true&public=true"; }); $('#exploreHifiMarketplace').on('click', function () { EventBridge.emitWebEvent(JSON.stringify({ type: GOTO_MARKETPLACE })); }); } function updateClaraCode() { // Have to repeatedly update Clara page because its content can change dynamically without location.href changing. // Clara library page. if (location.href.indexOf("clara.io/library") !== -1) { // Make entries navigate to "Image" view instead of default "Real Time" view. var elements = $("a.thumbnail"); for (var i = 0, length = elements.length; i < length; i++) { var value = elements[i].getAttribute("href"); if (value.slice(-6) !== "/image") { elements[i].setAttribute("href", value + "/image"); } } } // Clara item page. if (location.href.indexOf("clara.io/view/") !== -1) { // Make site navigation links retain gameCheck etc. parameters. var element = $("a[href^=\'/library\']")[0]; var parameters = "?gameCheck=true&public=true"; var href = element.getAttribute("href"); if (href.slice(-parameters.length) !== parameters) { element.setAttribute("href", href + parameters); } // Remove unwanted buttons and replace download options with a single "Download to High Fidelity" button. var buttons = $("a.embed-button").parent("div"); var downloadFBX; if (buttons.find("div.btn-group").length > 0) { buttons.children(".btn-primary, .btn-group , .embed-button").each(function () { this.remove(); }); if ($("#hifi-download-container").length === 0) { // Button hasn't been moved already. downloadFBX = $(' Download to High Fidelity'); buttons.prepend(downloadFBX); downloadFBX[0].addEventListener("click", startAutoDownload); } } // Move the "Download to High Fidelity" button to be more visible on tablet. if ($("#hifi-download-container").length === 0 && window.innerWidth < 700) { var downloadContainer = $('
'); $(".top-title .col-sm-4").append(downloadContainer); downloadContainer.append(downloadFBX); } } } // Automatic download to High Fidelity. function startAutoDownload() { // One file request at a time. if (isPreparing) { console.log("WARNING: Clara.io FBX: Prepare only one download at a time"); return; } // User must be able to write to Asset Server. if (!canWriteAssets) { console.log("ERROR: Clara.io FBX: File download cancelled because no permissions to write to Asset Server"); EventBridge.emitWebEvent(JSON.stringify({ type: WARN_USER_NO_PERMISSIONS })); return; } // User must be logged in. var loginButton = $("#topnav a[href='/signup']"); if (loginButton.length > 0) { loginButton[0].click(); return; } // Obtain zip file to download for requested asset. // Reference: https://clara.io/learn/sdk/api/export //var XMLHTTPREQUEST_URL = "https://clara.io/api/scenes/{uuid}/export/fbx?zip=true¢erScene=true&alignSceneGround=true&fbxUnit=Meter&fbxVersion=7&fbxEmbedTextures=true&imageFormat=WebGL"; // 13 Jan 2017: Specify FBX version 5 and remove some options in order to make Clara.io site more likely to // be successful in generating zip files. var XMLHTTPREQUEST_URL = "https://clara.io/api/scenes/{uuid}/export/fbx?fbxUnit=Meter&fbxVersion=5&fbxEmbedTextures=true&imageFormat=WebGL"; var uuid = location.href.match(/\/view\/([a-z0-9\-]*)/)[1]; var url = XMLHTTPREQUEST_URL.replace("{uuid}", uuid); xmlHttpRequest = new XMLHttpRequest(); var responseTextIndex = 0; var zipFileURL = ""; xmlHttpRequest.onreadystatechange = function () { // Messages are appended to responseText; process the new ones. var message = this.responseText.slice(responseTextIndex); var statusMessage = ""; if (isPreparing) { // Ignore messages in flight after finished/cancelled. var lines = message.split(/[\n\r]+/); for (var i = 0, length = lines.length; i < length; i++) { if (lines[i].slice(0, 5) === "data:") { // Parse line. var data; try { data = JSON.parse(lines[i].slice(5)); } catch (e) { data = {}; } // Extract zip file URL. if (data.hasOwnProperty("files") && data.files.length > 0) { zipFileURL = data.files[0].url; } } } if (statusMessage !== "") { // Update the UI with the most recent status message. EventBridge.emitWebEvent(JSON.stringify({ type: CLARA_IO_STATUS, status: statusMessage })); } } responseTextIndex = this.responseText.length; }; // Note: onprogress doesn't have computable total length so can't use it to determine % complete. xmlHttpRequest.onload = function () { var statusMessage = ""; if (!isPreparing) { return; } isPreparing = false; var HTTP_OK = 200; if (this.status !== HTTP_OK) { EventBridge.emitWebEvent(JSON.stringify({ type: CLARA_IO_STATUS, status: statusMessage })); } else if (zipFileURL.slice(-4) !== ".zip") { EventBridge.emitWebEvent(JSON.stringify({ type: CLARA_IO_STATUS, status: (statusMessage + ": " + zipFileURL) })); } else { EventBridge.emitWebEvent(JSON.stringify({ type: CLARA_IO_DOWNLOAD })); } xmlHttpRequest = null; } isPreparing = true; EventBridge.emitWebEvent(JSON.stringify({ type: CLARA_IO_STATUS, status: "Initiating download" })); xmlHttpRequest.open("POST", url, true); xmlHttpRequest.setRequestHeader("Accept", "text/event-stream"); xmlHttpRequest.send(); } function injectClaraCode() { // Make space for marketplaces footer in Clara pages. $("head").append( '' ); // Condense space. $("head").append( '' ); // Move "Download to High Fidelity" button. $("head").append( '' ); // Update code injected per page displayed. var updateClaraCodeInterval = undefined; updateClaraCode(); updateClaraCodeInterval = setInterval(function () { updateClaraCode(); }, 1000); window.addEventListener("unload", function () { clearInterval(updateClaraCodeInterval); updateClaraCodeInterval = undefined; }); EventBridge.emitWebEvent(JSON.stringify({ type: QUERY_CAN_WRITE_ASSETS })); } function cancelClaraDownload() { isPreparing = false; if (xmlHttpRequest) { xmlHttpRequest.abort(); xmlHttpRequest = null; console.log("Clara.io FBX: File download cancelled"); EventBridge.emitWebEvent(JSON.stringify({ type: CLARA_IO_CANCELLED_DOWNLOAD })); } } function injectCode() { var DIRECTORY = 0; var HIFI = 1; var CLARA = 2; var HIFI_ITEM_PAGE = 3; var pageType = DIRECTORY; if (location.href.indexOf(marketplaceBaseURL + "/") !== -1) { pageType = HIFI; } if (location.href.indexOf("clara.io/") !== -1) { pageType = CLARA; } if (location.href.indexOf(marketplaceBaseURL + "/marketplace/items/") !== -1) { pageType = HIFI_ITEM_PAGE; } injectCommonCode(pageType === DIRECTORY); switch (pageType) { case DIRECTORY: injectDirectoryCode(); break; case CLARA: injectClaraCode(); break; } } function onLoad() { EventBridge.scriptEventReceived.connect(function (message) { message = JSON.parse(message); if (message.type === CAN_WRITE_ASSETS) { canWriteAssets = message.canWriteAssets; } else if (message.type === CLARA_IO_CANCEL_DOWNLOAD) { cancelClaraDownload(); } else if (message.type === "marketplaces") { if (message.action === "commerceSetting") { marketplaceBaseURL = message.data.metaverseServerURL; if (marketplaceBaseURL.indexOf('metaverse.') !== -1) { marketplaceBaseURL = marketplaceBaseURL.replace('metaverse.', ''); } messagesWaiting = message.data.messagesWaiting; injectCode(); } } }); // Request commerce setting // Code is injected into the webpage after the setting comes back. EventBridge.emitWebEvent(JSON.stringify({ type: "REQUEST_SETTING" })); } // Load / unload. window.addEventListener("load", onLoad); // More robust to Web site issues than using $(document).ready(). window.addEventListener("page:change", onLoad); // Triggered after Marketplace HTML is changed }());