2015-05-02 00:16:42 +03:00
/ *
* LICENSE
*
* POCKET MARKS
*
* Notwithstanding the permitted uses of the Software ( as defined below ) pursuant to the license set forth below , "Pocket," "Read It Later" and the Pocket icon and logos ( collectively , the “ Pocket Marks ” ) are registered and common law trademarks of Read It Later , Inc . This means that , while you have considerable freedom to redistribute and modify the Software , there are tight restrictions on your ability to use the Pocket Marks . This license does not grant you any rights to use the Pocket Marks except as they are embodied in the Software .
*
* -- -
*
* SOFTWARE
*
* Permission is hereby granted , free of charge , to any person obtaining a copy
* of this software and associated documentation files ( the "Software" ) , to deal
* in the Software without restriction , including without limitation the rights
* to use , copy , modify , merge , publish , distribute , sublicense , and / or sell
* copies of the Software , and to permit persons to whom the Software is
* furnished to do so , subject to the following conditions :
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software .
*
* THE SOFTWARE IS PROVIDED "AS IS" , WITHOUT WARRANTY OF ANY KIND , EXPRESS OR
* IMPLIED , INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY ,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT . IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM , DAMAGES OR OTHER
* LIABILITY , WHETHER IN AN ACTION OF CONTRACT , TORT OR OTHERWISE , ARISING FROM ,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
* THE SOFTWARE .
* /
/ *
* Pocket UI module
*
* Handles interactions with Pocket buttons , panels and menus .
*
* /
// TODO : Get the toolbar icons from Firefox's build (Nikki needs to give us a red saved icon)
// TODO : [needs clarificaiton from Fx] Firefox's plan was to hide Pocket from context menus until the user logs in. Now that it's an extension I'm wondering if we still need to do this.
// TODO : [needs clarificaiton from Fx] Reader mode (might be a something they need to do since it's in html, need to investigate their code)
// TODO : [needs clarificaiton from Fx] Move prefs within pktApi.s to sqlite or a local file so it's not editable (and is safer)
// TODO : [nice to have] - Immediately save, buffer the actions in a local queue and send (so it works offline, works like our native extensions)
// TODO : Remove console.log entries
2015-05-06 00:55:29 +03:00
Cu . import ( "resource://gre/modules/XPCOMUtils.jsm" ) ;
XPCOMUtils . defineLazyModuleGetter ( this , "ReaderMode" , "resource://gre/modules/ReaderMode.jsm" ) ;
2015-05-02 00:16:42 +03:00
var pktUI = ( function ( ) {
// -- Initialization (on startup and new windows) -- //
var inited = false ;
2015-05-08 23:47:41 +03:00
var _currentPanelDidShow ;
var _currentPanelDidHide ;
2015-05-02 00:16:42 +03:00
var _isHidden = false ;
var _notificationTimeout ;
2015-05-08 23:47:41 +03:00
// Init panel id at 0. The first actual panel id will have the number 1 so
// in case at some point any panel has the id 0 we know there is something
// wrong
var _panelId = 0 ;
var prefBranch = Services . prefs . getBranch ( "browser.pocket.settings." ) ;
var savePanelWidth = 350 ;
var savePanelHeights = { collapsed : 153 , expanded : 272 } ;
2015-05-02 00:16:42 +03:00
/ * *
* Initalizes Pocket UI and panels
* /
function onLoad ( ) {
if ( inited )
return ;
// Install the button (Only on first run, if a user removes the button, you do not want to restore it)
// TODO, only do this if in a certain language
// TODO - Ask Mozilla what the best way is to have this update when a user restores browser defaults
// TODO - this needs to run only on a main window - if the first run happens on a window without the toolbar, then it will never try to run it again
if ( ! prefBranch . prefHasUserValue ( 'installed' ) ) {
// If user has social add-on installed, uninstall it
if ( Social . getManifestByOrigin ( "https://getpocket.com" ) ) {
Social . uninstallProvider ( "https://getpocket.com" , function ( ) { /* callback */ } ) ;
}
// if user has legacy pkt add-on installed, flag it so we can handle it correctly
prefBranch . setBoolPref ( 'hasLegacyExtension' , hasLegacyExtension ( ) ) ;
var id = "pocket-menu-button" ;
var toolbar = document . getElementById ( "nav-bar" ) ;
var before = null ;
// Is the bookmarks button in the toolbar?
if ( toolbar . currentSet . match ( "bookmarks-menu-button" ) ) {
var elem = document . getElementById ( "bookmarks-menu-button" ) ;
if ( elem )
before = elem . nextElementSibling ;
}
// Otherwise, just add it to the end of the toolbar (because before is null)
toolbar . insertItem ( id , before ) ;
toolbar . setAttribute ( "currentset" , toolbar . currentSet ) ;
document . persist ( toolbar . id , "currentset" ) ;
prefBranch . setBoolPref ( 'installed' , true ) ;
}
// Context Menu Event
document . getElementById ( 'contentAreaContextMenu' ) . addEventListener ( "popupshowing" , contextOnPopupShowing , false ) ;
// Hide the extension based on certain criteria
hideIntegrationIfNeeded ( ) ;
inited = true ;
}
/ * *
* Called when window / chrome is unloaded
* /
function onUnload ( ) {
}
/ * *
* Mark all Pocket integration chrome elements as hidden if certain criteria apply ( ex : legacy Pocket extension users or unsupported languages )
* /
function hideIntegrationIfNeeded ( ) {
var hideIntegration = false ;
// Check if the user had the legacy extension the last time we looked
if ( prefBranch . getBoolPref ( 'hasLegacyExtension' ) ) {
if ( hasLegacyExtension ( ) ) {
hideIntegration = true ; // they still have it, hide new native integration
}
else {
// if they originally had it, but no longer do, then we should remove the pref so we no longer have to check
prefBranch . setBoolPref ( 'hasLegacyExtension' , false ) ;
}
}
// TODO
// If language other than launch languages (en-US currently) {
// hideIntegration = true;
//}
// Hide the integration if needed
if ( hideIntegration ) {
// Note, we don't hide the context menus here, that's handled in contextOnPopupShowing
var elements = [ 'pocket-menu-button' , 'BMB_openPocketWebapp' ] ;
for ( var i = 0 ; i < elements . length ; i ++ ) {
document . getElementById ( elements [ i ] ) . setAttribute ( 'hidden' , true ) ;
}
_isHidden = true ;
}
else
_isHidden = false
}
// -- Event Handling -- //
/ * *
* Event handler when Pocket toolbar button is pressed
* /
function pocketButtonOnCommand ( event ) {
tryToSaveCurrentPage ( ) ;
}
function pocketPanelDidShow ( event ) {
2015-05-08 23:47:41 +03:00
if ( _currentPanelDidShow ) {
_currentPanelDidShow ( event ) ;
2015-05-02 00:16:42 +03:00
}
}
function pocketPanelDidHide ( event ) {
2015-05-08 23:47:41 +03:00
if ( _currentPanelDidHide ) {
_currentPanelDidHide ( event ) ;
2015-05-02 00:16:42 +03:00
}
// clear the panel
getPanelFrame ( ) . setAttribute ( 'src' , 'about:blank' ) ;
}
/ * *
* Event handler when Pocket bookmark bar entry is pressed
* /
function pocketBookmarkBarOpenPocketCommand ( event ) {
openTabWithUrl ( 'https://getpocket.com/a/' , true ) ;
}
/ * *
* Event handler when Pocket context menu button is presed
* /
// Determine which context menus to show before it's shown
function contextOnPopupShowing ( ) {
var saveLinkId = "PKT_context_saveLink" ;
var savePageId = "PKT_context_savePage" ;
if ( isHidden ( ) ) {
gContextMenu . showItem ( saveLinkId , false ) ;
gContextMenu . showItem ( savePageId , false ) ;
} else if ( ( gContextMenu . onSaveableLink || ( gContextMenu . inDirList && gContextMenu . onLink ) ) ) {
gContextMenu . showItem ( saveLinkId , true ) ;
gContextMenu . showItem ( savePageId , false ) ;
} else if ( gContextMenu . isTextSelected ) {
gContextMenu . showItem ( saveLinkId , false ) ;
gContextMenu . showItem ( savePageId , false ) ;
} else if ( ! gContextMenu . onTextInput ) {
gContextMenu . showItem ( saveLinkId , false ) ;
gContextMenu . showItem ( savePageId , true ) ;
} else {
gContextMenu . showItem ( saveLinkId , false ) ;
gContextMenu . showItem ( savePageId , false ) ;
}
}
function pocketContextSaveLinkOnCommand ( event ) {
// TODO : Unsafe CPOW Usage when saving with Page context menu (Ask Mozilla for help with this one)
var linkNode = gContextMenu . target || document . popupNode ;
// Get parent node in case of text nodes (old safari versions)
if ( linkNode . nodeType == Node . TEXT _NODE ) {
linkNode = linkNode . parentNode ;
}
// If for some reason, it's not an element node, abort
if ( linkNode . nodeType != Node . ELEMENT _NODE ) {
return ;
}
// Try to get a link element in the parent chain as we can be in the
// last child element
var currentElement = linkNode ;
while ( currentElement !== null ) {
if ( currentElement . nodeType == Node . ELEMENT _NODE &&
currentElement . nodeName . toLowerCase ( ) == 'a' )
{
// We have a link element try to save it
linkNode = currentElement ;
break ;
}
currentElement = currentElement . parentNode ;
}
var link = linkNode . href ;
tryToSaveUrl ( link ) ;
event . stopPropagation ( ) ;
}
function pocketContextSavePageOnCommand ( event ) {
tryToSaveCurrentPage ( ) ;
}
// -- Communication to API -- //
/ * *
* Either save or attempt to log the user in
* /
function tryToSaveCurrentPage ( ) {
tryToSaveUrl ( getCurrentUrl ( ) , getCurrentTitle ( ) ) ;
}
function tryToSaveUrl ( url , title ) {
// If the user is logged in, go ahead and save the current page
if ( pktApi . isUserLoggedIn ( ) ) {
saveAndShowConfirmation ( url , title ) ;
return ;
}
// If the user is not logged in, show the logged-out state to prompt them to authenticate
showSignUp ( ) ;
}
// -- Panel UI -- //
/ * *
* Show the sign - up panel
* /
function showSignUp ( ) {
2015-05-06 00:55:29 +03:00
getFirefoxAccountSignedInUser ( function ( userdata )
{
var fxasignedin = ( typeof userdata == 'object' && userdata !== null ) ? '1' : '0' ;
var startheight = 490 ;
if ( pktApi . getSignupAB ( ) == 'storyboard' )
{
startheight = 460 ;
if ( fxasignedin == '1' )
{
startheight = 406 ;
}
}
else
{
if ( fxasignedin == '1' )
{
startheight = 436 ;
}
}
2015-05-08 23:47:41 +03:00
var panelId = showPanel ( "chrome://browser/content/pocket/panels/signup.html?pockethost=" + Services . prefs . getCharPref ( "browser.pocket.site" ) + "&fxasignedin=" + fxasignedin + "&variant=" + pktApi . getSignupAB ( ) , {
2015-05-06 00:55:29 +03:00
onShow : function ( ) {
} ,
onHide : panelDidHide ,
2015-05-08 00:55:21 +03:00
width : 300 ,
height : startheight
2015-05-06 00:55:29 +03:00
} ) ;
} ) ;
2015-05-02 00:16:42 +03:00
}
/ * *
* Show the logged - out state / sign - up panel
* /
function saveAndShowConfirmation ( url , title ) {
2015-05-06 00:55:29 +03:00
// Validate input parameter
if ( typeof url !== 'undefined' && url . startsWith ( "about:reader?url=" ) ) {
url = ReaderMode . getOriginalUrl ( url ) ;
}
var isValidURL = ( typeof url !== 'undefined' && ( url . startsWith ( "http" ) || url . startsWith ( 'https' ) ) ) ;
2015-05-02 00:16:42 +03:00
2015-05-08 23:47:41 +03:00
var panelId = showPanel ( "chrome://browser/content/pocket/panels/saved.html?pockethost=" + Services . prefs . getCharPref ( "browser.pocket.site" ) + "&premiumStatus=" + ( pktApi . isPremiumUser ( ) ? '1' : '0' ) , {
2015-05-02 00:16:42 +03:00
onShow : function ( ) {
2015-05-08 23:47:41 +03:00
var saveLinkMessageId = 'saveLink' ;
2015-05-06 00:55:29 +03:00
// Send error message for invalid url
if ( ! isValidURL ) {
2015-05-08 23:47:41 +03:00
// TODO: Pass key for localized error in error object
var error = {
message : 'Only links can be saved' ,
localizedKey : "onlylinkssaved"
} ;
pktUIMessaging . sendErrorMessageToPanel ( panelId , saveLinkMessageId , error ) ;
2015-05-06 00:55:29 +03:00
return ;
}
2015-05-02 00:16:42 +03:00
2015-05-08 23:47:41 +03:00
// Check online state
if ( ! navigator . onLine ) {
// TODO: Pass key for localized error in error object
var error = {
message : 'You must be connected to the Internet in order to save to Pocket. Please connect to the Internet and try again.'
} ;
pktUIMessaging . sendErrorMessageToPanel ( panelId , saveLinkMessageId , error ) ; return ;
}
2015-05-06 00:55:29 +03:00
// Add url
var options = {
success : function ( data , request ) {
2015-05-02 00:16:42 +03:00
var item = data . item ;
var successResponse = {
status : "success" ,
item : item
} ;
2015-05-08 23:47:41 +03:00
pktUIMessaging . sendMessageToPanel ( panelId , saveLinkMessageId , successResponse ) ;
2015-05-02 00:16:42 +03:00
} ,
2015-05-06 00:55:29 +03:00
error : function ( error , request ) {
// If user is not authorized show singup page
if ( request . status === 401 ) {
showSignUp ( ) ;
return ;
}
2015-05-08 23:47:41 +03:00
// If there is no error message in the error use a
// complete catch-all
var errorMessage = error . message || "There was an error when trying to save to Pocket." ;
var panelError = { message : errorMessage }
// Send error message to panel
pktUIMessaging . sendErrorMessageToPanel ( panelId , saveLinkMessageId , panelError ) ;
2015-05-02 00:16:42 +03:00
}
}
// Add title if given
if ( typeof title !== "undefined" ) {
options . title = title ;
}
// Send the link
pktApi . addLink ( url , options ) ;
} ,
onHide : panelDidHide ,
2015-05-08 23:47:41 +03:00
width : savePanelWidth ,
height : pktApi . isPremiumUser ( ) && isValidURL ? savePanelHeights . expanded : savePanelHeights . collapsed
2015-05-02 00:16:42 +03:00
} ) ;
}
/ * *
* Open a generic panel
* /
function showPanel ( url , options ) {
2015-05-08 23:47:41 +03:00
// Add new panel id
_panelId += 1 ;
url += ( "&panelId=" + _panelId ) ;
2015-05-02 00:16:42 +03:00
// We don't have to hide and show the panel again if it's already shown
// as if the user tries to click again on the toolbar button the overlay
// will close instead of the button will be clicked
var iframe = getPanelFrame ( ) ;
// Register event handlers
registerEventMessages ( ) ;
// Load the iframe
iframe . setAttribute ( 'src' , url ) ;
// Uncomment to leave panel open -- for debugging
// panel.setAttribute('noautohide', true);
// panel.setAttribute('consumeoutsideclicks', false);
//
// For some reason setting onpopupshown and onpopuphidden on the panel directly didn't work, so
// do it this hacky way for now
2015-05-08 23:47:41 +03:00
_currentPanelDidShow = options . onShow ;
_currentPanelDidHide = options . onHide ;
2015-05-08 00:55:21 +03:00
resizePanel ( {
width : options . width ,
height : options . height
} ) ;
2015-05-08 23:47:41 +03:00
return _panelId ;
2015-05-02 00:16:42 +03:00
}
/ * *
* Resize the panel
* options = {
* width : ,
* height : ,
* animate [ default false ]
* }
* /
function resizePanel ( options ) {
var iframe = getPanelFrame ( ) ;
iframe . width = options . width ;
iframe . height = options . height ;
// TODO : Animate the change if given options.animate = true
getPanel ( ) . sizeTo ( options . width , options . height ) ;
}
/ * *
* Called when the signup and saved panel was hidden
* /
function panelDidHide ( ) {
}
/ * *
* Register all of the messages needed for the panels
* /
function registerEventMessages ( ) {
var iframe = getPanelFrame ( ) ;
// Only register the messages once
2015-05-08 23:47:41 +03:00
var didInitAttributeKey = 'did_init' ;
var didInitMessageListener = iframe . getAttribute ( didInitAttributeKey ) ;
if ( typeof didInitMessageListener !== "undefined" && didInitMessageListener == 1 ) {
return ;
2015-05-02 00:16:42 +03:00
}
2015-05-08 23:47:41 +03:00
iframe . setAttribute ( didInitAttributeKey , 1 ) ;
2015-05-02 00:16:42 +03:00
// When the panel is displayed it generated an event called
// "show": we will listen for that event and when it happens,
// send our own "show" event to the panel's script, so the
// script can prepare the panel for display.
2015-05-08 23:47:41 +03:00
var _showMessageId = "show" ;
pktUIMessaging . addMessageListener ( _showMessageId , function ( panelId , data ) {
2015-05-02 00:16:42 +03:00
// Let panel know that it is ready
2015-05-08 23:47:41 +03:00
pktUIMessaging . sendMessageToPanel ( panelId , _showMessageId ) ;
2015-05-02 00:16:42 +03:00
} ) ;
2015-05-08 23:47:41 +03:00
// Open a new tab with a given url and activate if
var _openTabWithUrlMessageId = "openTabWithUrl" ;
pktUIMessaging . addMessageListener ( _openTabWithUrlMessageId , function ( panelId , data ) {
// Check if the tab should become active after opening
2015-05-02 00:16:42 +03:00
var activate = true ;
2015-05-08 23:47:41 +03:00
if ( typeof data . activate !== "undefined" ) {
activate = data . activate ;
2015-05-02 00:16:42 +03:00
}
2015-05-08 23:47:41 +03:00
var url = data . url ;
openTabWithUrl ( url , activate ) ;
pktUIMessaging . sendResponseMessageToPanel ( panelId , _openTabWithUrlMessageId , url ) ;
2015-05-02 00:16:42 +03:00
} ) ;
// Close the panel
2015-05-08 23:47:41 +03:00
var _closeMessageId = "close" ;
pktUIMessaging . addMessageListener ( _closeMessageId , function ( panelId , data ) {
2015-05-02 00:16:42 +03:00
getPanel ( ) . hidePopup ( ) ;
} ) ;
// Send the current url to the panel
2015-05-08 23:47:41 +03:00
var _getCurrentURLMessageId = "getCurrentURL" ;
pktUIMessaging . addMessageListener ( _getCurrentURLMessageId , function ( panelId , data ) {
pktUIMessaging . sendResponseMessageToPanel ( panelId , _getCurrentURLMessageId , getCurrentUrl ( ) ) ;
2015-05-02 00:16:42 +03:00
} ) ;
2015-05-08 23:47:41 +03:00
var _resizePanelMessageId = "resizePanel" ;
pktUIMessaging . addMessageListener ( _resizePanelMessageId , function ( panelId , data ) {
resizePanel ( data ) ;
} ) ;
2015-05-02 00:16:42 +03:00
// Callback post initialization to tell background script that panel is "ready" for communication.
2015-05-08 23:47:41 +03:00
pktUIMessaging . addMessageListener ( "listenerReady" , function ( panelId , data ) {
} ) ;
pktUIMessaging . addMessageListener ( "collapseSavePanel" , function ( panelId , data ) {
if ( ! pktApi . isPremiumUser ( ) )
resizePanel ( { width : savePanelWidth , height : savePanelHeights . collapsed } ) ;
2015-05-02 00:16:42 +03:00
} ) ;
2015-05-08 23:47:41 +03:00
pktUIMessaging . addMessageListener ( "expandSavePanel" , function ( panelId , data ) {
resizePanel ( { width : savePanelWidth , height : savePanelHeights . expanded } ) ;
2015-05-02 00:16:42 +03:00
} ) ;
// Ask for recently accessed/used tags for auto complete
2015-05-08 23:47:41 +03:00
var _getTagsMessageId = "getTags" ;
pktUIMessaging . addMessageListener ( _getTagsMessageId , function ( panelId , data ) {
2015-05-02 00:16:42 +03:00
pktApi . getTags ( function ( tags , usedTags ) {
2015-05-08 23:47:41 +03:00
pktUIMessaging . sendResponseMessageToPanel ( panelId , _getTagsMessageId , {
tags : tags ,
usedTags : usedTags
} ) ;
2015-05-02 00:16:42 +03:00
} ) ;
} ) ;
// Ask for suggested tags based on passed url
2015-05-08 23:47:41 +03:00
var _getSuggestedTagsMessageId = "getSuggestedTags" ;
pktUIMessaging . addMessageListener ( _getSuggestedTagsMessageId , function ( panelId , data ) {
pktApi . getSuggestedTagsForURL ( data . url , {
2015-05-02 00:16:42 +03:00
success : function ( data , response ) {
var suggestedTags = data . suggested _tags ;
var successResponse = {
status : "success" ,
value : {
2015-05-08 23:47:41 +03:00
suggestedTags : suggestedTags
2015-05-02 00:16:42 +03:00
}
}
2015-05-08 23:47:41 +03:00
pktUIMessaging . sendResponseMessageToPanel ( panelId , _getSuggestedTagsMessageId , successResponse ) ;
2015-05-02 00:16:42 +03:00
} ,
error : function ( error , response ) {
2015-05-08 23:47:41 +03:00
pktUIMessaging . sendErrorResponseMessageToPanel ( panelId , _getSuggestedTagsMessageId , error ) ;
2015-05-02 00:16:42 +03:00
}
} )
} ) ;
// Pass url and array list of tags, add to existing save item accordingly
2015-05-08 23:47:41 +03:00
var _addTagsMessageId = "addTags" ;
pktUIMessaging . addMessageListener ( _addTagsMessageId , function ( panelId , data ) {
pktApi . addTagsToURL ( data . url , data . tags , {
2015-05-02 00:16:42 +03:00
success : function ( data , response ) {
2015-05-08 23:47:41 +03:00
var successResponse = { status : "success" } ;
pktUIMessaging . sendResponseMessageToPanel ( panelId , _addTagsMessageId , successResponse ) ;
2015-05-02 00:16:42 +03:00
} ,
error : function ( error , response ) {
2015-05-08 23:47:41 +03:00
pktUIMessaging . sendErrorResponseMessageToPanel ( panelId , _addTagsMessageId , error ) ;
2015-05-02 00:16:42 +03:00
}
} ) ;
} ) ;
// Based on clicking "remove page" CTA, and passed unique item id, remove the item
2015-05-08 23:47:41 +03:00
var _deleteItemMessageId = "deleteItem" ;
pktUIMessaging . addMessageListener ( _deleteItemMessageId , function ( panelId , data ) {
pktApi . deleteItem ( data . itemId , {
2015-05-02 00:16:42 +03:00
success : function ( data , response ) {
2015-05-08 23:47:41 +03:00
var successResponse = { status : "success" } ;
pktUIMessaging . sendResponseMessageToPanel ( panelId , _deleteItemMessageId , successResponse ) ;
2015-05-02 00:16:42 +03:00
} ,
error : function ( error , response ) {
2015-05-08 23:47:41 +03:00
pktUIMessaging . sendErrorResponseMessageToPanel ( panelId , _deleteItemMessageId , error ) ;
2015-05-02 00:16:42 +03:00
}
} )
} ) ;
}
// -- Browser Navigation -- //
/ * *
* Open a new tab with a given url and notify the iframe panel that it was opened
* /
function openTabWithUrl ( url , activate ) {
var tab = gBrowser . addTab ( url ) ;
if ( activate ) {
gBrowser . selectedTab = tab ;
}
}
// -- Helper Functions -- //
function getCurrentUrl ( ) {
return getBrowser ( ) . currentURI . spec ;
}
function getCurrentTitle ( ) {
return getBrowser ( ) . contentTitle ;
}
function getPanel ( ) {
var frame = getPanelFrame ( ) ;
var panel = frame ;
while ( panel && panel . localName != "panel" ) {
panel = panel . parentNode ;
}
return panel ;
}
function getPanelFrame ( ) {
return document . getElementById ( 'pocket-panel-iframe' ) ;
}
function hasLegacyExtension ( ) {
return ! ! document . getElementById ( 'RIL_urlbar_add' ) ;
}
function isHidden ( ) {
return _isHidden ;
}
2015-05-06 00:55:29 +03:00
function getFirefoxAccountSignedInUser ( callback ) {
fxAccounts . getSignedInUser ( ) . then ( userData => {
callback ( userData ) ;
} ) . then ( null , error => {
callback ( ) ;
} ) ;
2015-05-02 00:16:42 +03:00
}
/ * *
* Toolbar animations
* /
function showPocketAnimation ( ) {
// Borrowed from bookmark star animation:
// https://dxr.mozilla.org/mozilla-central/source/browser/base/content/browser-places.js#1568
// TODO : Clean-up : Probably don't need all of this since the css animation does most of the heavy lifting
// TODO : Do not show when saving from context menu -- or get really fancy and launch the icon from the link that was saved into the bookmark menu
function getCenteringTransformForRects ( rectToPosition , referenceRect ) {
let topDiff = referenceRect . top - rectToPosition . top ;
let leftDiff = referenceRect . left - rectToPosition . left ;
let heightDiff = referenceRect . height - rectToPosition . height ;
let widthDiff = referenceRect . width - rectToPosition . width ;
return [ ( leftDiff + . 5 * widthDiff ) + "px" , ( topDiff + . 5 * heightDiff ) + "px" ] ;
}
if ( _notificationTimeout ) {
clearTimeout ( this . _notificationTimeout ) ;
}
var button = document . getElementById ( 'pocket-menu-button' ) ;
var bookmarksButton = document . getElementById ( 'bookmarks-menu-button' ) ;
var notifier = document . getElementById ( "pocketed-notification-anchor" ) ;
var dropmarkerNotifier = document . getElementById ( "bookmarked-notification-dropmarker-anchor" ) ;
// If the Pocket button is not immediately after the bookmark button, then do not do the animation
// (because it's hard-coded for the positions right now)
// TODO - double check this in small and large toolbar button sizes
if ( bookmarksButton . nextElementSibling != button )
return ;
if ( notifier . style . transform == '' ) {
// Get all the relevant nodes and computed style objects
let dropmarker = document . getAnonymousElementByAttribute ( bookmarksButton , "anonid" , "dropmarker" ) ;
let dropmarkerIcon = document . getAnonymousElementByAttribute ( dropmarker , "class" , "dropmarker-icon" ) ;
let dropmarkerStyle = getComputedStyle ( dropmarkerIcon ) ;
// Check for RTL and get bounds
let isRTL = getComputedStyle ( button ) . direction == "rtl" ; // need this?
let buttonRect = button . getBoundingClientRect ( ) ;
let notifierRect = notifier . getBoundingClientRect ( ) ;
let dropmarkerRect = dropmarkerIcon . getBoundingClientRect ( ) ;
let dropmarkerNotifierRect = dropmarkerNotifier . getBoundingClientRect ( ) ;
// Compute, but do not set, transform for pocket icon
let [ translateX , translateY ] = getCenteringTransformForRects ( notifierRect , buttonRect ) ;
let starIconTransform = "translate(" + ( translateX ) + ", " + translateY + ")" ;
if ( isRTL ) {
starIconTransform += " scaleX(-1)" ;
}
// Compute, but do not set, transform for dropmarker
[ translateX , translateY ] = getCenteringTransformForRects ( dropmarkerNotifierRect , dropmarkerRect ) ;
let dropmarkerTransform = "translate(" + translateX + ", " + translateY + ")" ;
// Do all layout invalidation in one go:
notifier . style . transform = starIconTransform ;
dropmarkerNotifier . style . transform = dropmarkerTransform ;
let dropmarkerAnimationNode = dropmarkerNotifier . firstChild ;
dropmarkerAnimationNode . style . MozImageRegion = dropmarkerStyle . MozImageRegion ;
dropmarkerAnimationNode . style . listStyleImage = dropmarkerStyle . listStyleImage ;
}
let isInOverflowPanel = button . getAttribute ( "overflowedItem" ) == "true" ;
if ( ! isInOverflowPanel ) {
notifier . setAttribute ( "notification" , "finish" ) ;
button . setAttribute ( "notification" , "finish" ) ;
dropmarkerNotifier . setAttribute ( "notification" , "finish" ) ;
}
_notificationTimeout = setTimeout ( ( ) => {
notifier . removeAttribute ( "notification" ) ;
dropmarkerNotifier . removeAttribute ( "notification" ) ;
button . removeAttribute ( "notification" ) ;
dropmarkerNotifier . style . transform = '' ;
notifier . style . transform = '' ;
} , 1000 ) ;
}
/ * *
* Public functions
* /
return {
onLoad : onLoad ,
pocketButtonOnCommand : pocketButtonOnCommand ,
pocketPanelDidShow : pocketPanelDidShow ,
pocketPanelDidHide : pocketPanelDidHide ,
pocketContextSaveLinkOnCommand ,
pocketContextSavePageOnCommand ,
pocketBookmarkBarOpenPocketCommand ,
tryToSaveUrl : tryToSaveUrl ,
isHidden
} ;
} ( ) ) ;
2015-05-08 23:47:41 +03:00
// -- Communication to Background -- //
// https://developer.mozilla.org/en-US/Add-ons/Code_snippets/Interaction_between_privileged_and_non-privileged_pages
var pktUIMessaging = ( function ( ) {
/ * *
* Prefix message id for message listening
* /
function prefixedMessageId ( messageId ) {
return 'PKT_' + messageId ;
}
/ * *
* Register a listener and callback for a specific messageId
* /
function addMessageListener ( messageId , callback ) {
document . addEventListener ( prefixedMessageId ( messageId ) , function ( e ) {
// ignore to ensure we do not pick up other events in the browser
if ( e . target . tagName !== 'PKTMESSAGEFROMPANELELEMENT' ) {
return ;
}
// Pass in information to callback
var payload = JSON . parse ( e . target . getAttribute ( "payload" ) ) [ 0 ] ;
var panelId = payload . panelId ;
var data = payload . data ;
callback ( panelId , data ) ;
// Cleanup the element
e . target . parentNode . removeChild ( e . target ) ;
} , false , true ) ;
}
/ * *
* Remove a message listener
* /
function removeMessageListener ( messageId , callback ) {
document . removeEventListener ( prefixedMessageId ( messageId ) , callback ) ;
}
/ * *
* Send a message to the panel ' s iframe
* /
function sendMessageToPanel ( panelId , messageId , payload ) {
if ( ! isPanelIdValid ( panelId ) ) { return ; } ;
var panelFrame = document . getElementById ( 'pocket-panel-iframe' ) ;
if ( ! isPocketPanelFrameValid ( panelFrame ) ) { return ; }
var doc = panelFrame . contentWindow . document ;
var documentElement = doc . documentElement ;
// Send message to panel
var panelMessageId = prefixedMessageId ( panelId + '_' + messageId ) ;
var AnswerEvt = doc . createElement ( "PKTMessage" ) ;
AnswerEvt . setAttribute ( "payload" , JSON . stringify ( [ payload ] ) ) ;
documentElement . appendChild ( AnswerEvt ) ;
var event = doc . createEvent ( "HTMLEvents" ) ;
event . initEvent ( panelMessageId , true , false ) ;
AnswerEvt . dispatchEvent ( event ) ;
}
function sendResponseMessageToPanel ( panelId , messageId , payload ) {
var responseMessageId = messageId + "Response" ;
sendMessageToPanel ( panelId , responseMessageId , payload ) ;
}
/ * *
* Helper function to package an error object and send it to the panel
* iframe as a message response
* /
function sendErrorMessageToPanel ( panelId , messageId , error ) {
var errorResponse = { status : "error" , error : error } ;
sendMessageToPanel ( panelId , messageId , errorResponse ) ;
}
function sendErrorResponseMessageToPanel ( panelId , messageId , error ) {
var errorResponse = { status : "error" , error : error } ;
sendResponseMessageToPanel ( panelId , messageId , errorResponse ) ;
}
/ * *
* Validation
* /
function isPanelIdValid ( panelId ) {
// First check if panelId has a valid value > 0. We set the panelId to
// 0 to start. But if for some reason the message is attempted to be
// sent before the panel has a panelId, then it's going to send out
// a message with panelId 0, which is never going to be heard. If this
// happens, it means some race condition occurred where the panel was
// trying to communicate before it should.
if ( panelId === 0 ) {
console . warn ( "Tried to send message to panel with id 0." )
return false ;
}
return true
}
function isPocketPanelFrameValid ( panelFrame ) {
// Check if panel is available if not throw a warning and bailout.
// We likely try to send to a panel that is not visible anymore
if ( typeof panelFrame === "undefined" ) {
console . warn ( "Pocket panel frame is undefined" ) ;
return false ;
}
var contentWindow = panelFrame . contentWindow ;
if ( typeof contentWindow == "undefined" ) {
console . warn ( "Pocket panel frame content window is undefined" ) ;
return false ;
}
var doc = contentWindow . document ;
if ( typeof doc === "undefined" ) {
console . warn ( "Pocket panel frame content window document is undefined" ) ;
return false ;
}
var documentElement = doc . documentElement ;
if ( typeof documentElement === "undefined" ) {
console . warn ( "Pocket panel frame content window document document element is undefined" ) ;
return false ;
}
return true ;
}
/ * *
* Public
* /
return {
addMessageListener : addMessageListener ,
removeMessageListener : removeMessageListener ,
sendMessageToPanel : sendMessageToPanel ,
sendResponseMessageToPanel : sendResponseMessageToPanel ,
sendErrorMessageToPanel : sendErrorMessageToPanel ,
sendErrorResponseMessageToPanel : sendErrorResponseMessageToPanel
}
} ( ) ) ;