mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-11-11 13:48:23 +02:00
173 lines
4.9 KiB
JavaScript
173 lines
4.9 KiB
JavaScript
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this file,
|
|
* You can obtain one at http://mozilla.org/MPL/2.0/. */
|
|
|
|
/* global loop:true */
|
|
|
|
var loop = loop || {};
|
|
loop.shared = loop.shared || {};
|
|
loop.shared.utils = (function(mozL10n) {
|
|
"use strict";
|
|
|
|
/**
|
|
* Call types used for determining if a call is audio/video or audio-only.
|
|
*/
|
|
var CALL_TYPES = {
|
|
AUDIO_VIDEO: "audio-video",
|
|
AUDIO_ONLY: "audio"
|
|
};
|
|
|
|
var REST_ERRNOS = {
|
|
INVALID_TOKEN: 105,
|
|
EXPIRED: 111,
|
|
USER_UNAVAILABLE: 122,
|
|
ROOM_FULL: 202
|
|
};
|
|
|
|
var WEBSOCKET_REASONS = {
|
|
ANSWERED_ELSEWHERE: "answered-elsewhere",
|
|
BUSY: "busy",
|
|
CANCEL: "cancel",
|
|
CLOSED: "closed",
|
|
MEDIA_FAIL: "media-fail",
|
|
REJECT: "reject",
|
|
TIMEOUT: "timeout"
|
|
};
|
|
|
|
var FAILURE_DETAILS = {
|
|
MEDIA_DENIED: "reason-media-denied",
|
|
COULD_NOT_CONNECT: "reason-could-not-connect",
|
|
NETWORK_DISCONNECTED: "reason-network-disconnected",
|
|
EXPIRED_OR_INVALID: "reason-expired-or-invalid",
|
|
UNKNOWN: "reason-unknown"
|
|
};
|
|
|
|
var STREAM_PROPERTIES = {
|
|
VIDEO_DIMENSIONS: "videoDimensions",
|
|
HAS_AUDIO: "hasAudio",
|
|
HAS_VIDEO: "hasVideo"
|
|
};
|
|
|
|
var SCREEN_SHARE_STATES = {
|
|
INACTIVE: "ss-inactive",
|
|
// Pending is when the user is being prompted, aka gUM in progress.
|
|
PENDING: "ss-pending",
|
|
ACTIVE: "ss-active"
|
|
};
|
|
|
|
/**
|
|
* Format a given date into an l10n-friendly string.
|
|
*
|
|
* @param {Integer} The timestamp in seconds to format.
|
|
* @return {String} The formatted string.
|
|
*/
|
|
function formatDate(timestamp) {
|
|
var date = (new Date(timestamp * 1000));
|
|
var options = {year: "numeric", month: "long", day: "numeric"};
|
|
return date.toLocaleDateString(navigator.language, options);
|
|
}
|
|
|
|
/**
|
|
* Used for getting a boolean preference. It will either use the browser preferences
|
|
* (if navigator.mozLoop is defined) or try to get them from localStorage.
|
|
*
|
|
* @param {String} prefName The name of the preference. Note that mozLoop adds
|
|
* 'loop.' to the start of the string.
|
|
*
|
|
* @return The value of the preference, or false if not available.
|
|
*/
|
|
function getBoolPreference(prefName) {
|
|
if (navigator.mozLoop) {
|
|
return !!navigator.mozLoop.getLoopPref(prefName);
|
|
}
|
|
|
|
return !!localStorage.getItem(prefName);
|
|
}
|
|
|
|
function isFirefox(platform) {
|
|
return platform.indexOf("Firefox") !== -1;
|
|
}
|
|
|
|
function isFirefoxOS(platform) {
|
|
// So far WebActivities are exposed only in FxOS, but they may be
|
|
// exposed in Firefox Desktop soon, so we check for its existence
|
|
// and also check if the UA belongs to a mobile platform.
|
|
// XXX WebActivities are also exposed in WebRT on Firefox for Android,
|
|
// so we need a better check. Bug 1065403.
|
|
return !!window.MozActivity && /mobi/i.test(platform);
|
|
}
|
|
|
|
/**
|
|
* Helper to get the platform if it is unsupported.
|
|
*
|
|
* @param {String} platform The platform this is running on.
|
|
* @return null for supported platforms, a string for unsupported platforms.
|
|
*/
|
|
function getUnsupportedPlatform(platform) {
|
|
if (/^(iPad|iPhone|iPod)/.test(platform)) {
|
|
return "ios";
|
|
}
|
|
|
|
if (/Windows Phone/i.test(platform)) {
|
|
return "windows_phone";
|
|
}
|
|
|
|
if (/BlackBerry/i.test(platform)) {
|
|
return "blackberry";
|
|
}
|
|
|
|
return null;
|
|
}
|
|
|
|
/**
|
|
* Helper to allow getting some of the location data in a way that's compatible
|
|
* with stubbing for unit tests.
|
|
*/
|
|
function locationData() {
|
|
return {
|
|
hash: window.location.hash,
|
|
pathname: window.location.pathname
|
|
};
|
|
}
|
|
|
|
/**
|
|
* Generates and opens a mailto: url with call URL information prefilled.
|
|
* Note: This only works for Desktop.
|
|
*
|
|
* @param {String} callUrl The call URL.
|
|
* @param {String} recipient The recipient email address (optional).
|
|
*/
|
|
function composeCallUrlEmail(callUrl, recipient) {
|
|
if (typeof navigator.mozLoop === "undefined") {
|
|
console.warn("composeCallUrlEmail isn't available for Loop standalone.");
|
|
return;
|
|
}
|
|
navigator.mozLoop.composeEmail(
|
|
mozL10n.get("share_email_subject4", {
|
|
clientShortname: mozL10n.get("clientShortname2")
|
|
}),
|
|
mozL10n.get("share_email_body4", {
|
|
callUrl: callUrl,
|
|
clientShortname: mozL10n.get("clientShortname2"),
|
|
learnMoreUrl: navigator.mozLoop.getLoopPref("learnMoreUrl")
|
|
}),
|
|
recipient
|
|
);
|
|
}
|
|
|
|
return {
|
|
CALL_TYPES: CALL_TYPES,
|
|
FAILURE_DETAILS: FAILURE_DETAILS,
|
|
REST_ERRNOS: REST_ERRNOS,
|
|
WEBSOCKET_REASONS: WEBSOCKET_REASONS,
|
|
STREAM_PROPERTIES: STREAM_PROPERTIES,
|
|
SCREEN_SHARE_STATES: SCREEN_SHARE_STATES,
|
|
composeCallUrlEmail: composeCallUrlEmail,
|
|
formatDate: formatDate,
|
|
getBoolPreference: getBoolPreference,
|
|
isFirefox: isFirefox,
|
|
isFirefoxOS: isFirefoxOS,
|
|
getUnsupportedPlatform: getUnsupportedPlatform,
|
|
locationData: locationData
|
|
};
|
|
})(document.mozL10n || navigator.mozL10n);
|