albumArtPane.js
Go to the documentation of this file.
1 /*
2  *=BEGIN SONGBIRD GPL
3  *
4  * This file is part of the Songbird web player.
5  *
6  * Copyright(c) 2005-2010 POTI, Inc.
7  * http://www.songbirdnest.com
8  *
9  * This file may be licensed under the terms of of the
10  * GNU General Public License Version 2 (the ``GPL'').
11  *
12  * Software distributed under the License is distributed
13  * on an ``AS IS'' basis, WITHOUT WARRANTY OF ANY KIND, either
14  * express or implied. See the GPL for the specific language
15  * governing rights and limitations.
16  *
17  * You should have received a copy of the GPL along with this
18  * program. If not, go to http://www.gnu.org/licenses/gpl.html
19  * or write to the Free Software Foundation, Inc.,
20  * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
21  *
22  *=END SONGBIRD GPL
23  */
24 
25 if (typeof(Ci) == "undefined")
26  var Ci = Components.interfaces;
27 if (typeof(Cc) == "undefined")
28  var Cc = Components.classes;
29 if (typeof(Cr) == "undefined")
30  var Cr = Components.results;
31 if (typeof(Cu) == "undefined")
32  var Cu = Components.utils;
33 
34 Cu.import("resource://app/jsmodules/ArrayConverter.jsm");
35 Cu.import("resource://app/jsmodules/sbCoverHelper.jsm");
36 Cu.import("resource://app/jsmodules/SBJobUtils.jsm");
37 Cu.import("resource://app/jsmodules/StringUtils.jsm");
38 Cu.import("resource://app/jsmodules/sbProperties.jsm");
39 Cu.import("resource://app/jsmodules/sbLibraryUtils.jsm");
40 Cu.import("resource://app/jsmodules/sbMetadataUtils.jsm");
41 Cu.import("resource://app/jsmodules/SBUtils.jsm");
42 Cu.import("resource://gre/modules/XPCOMUtils.jsm");
43 
44 // Display pane constants
45 const DISPLAY_PANE_CONTENTURL = "chrome://albumart/content/albumArtPane.xul";
46 const DISPLAY_PANE_ICON = "chrome://albumart/skin/icon-albumart.png";
47 
48 // Default cover for items missing the cover
49 const DROP_TARGET_IMAGE = "chrome://songbird/skin/album-art/drop-target.png";
50 
51 // Constants for toggling between Selected and Playing states
52 // These releate to the deck
53 const STATE_SELECTED = 0;
54 const STATE_PLAYING = 1;
55 
56 // Preferences
57 const PREF_STATE = "songbird.albumart.displaypane.view";
58 
59 // Namespace defs.
60 if (typeof(XLINK_NS) == "undefined")
61  const XLINK_NS = "http://www.w3.org/1999/xlink";
62 
63 /*
64  * Function invoked by the display pane manager to populate the display pane
65  * menu.
66  */
67 function onDisplayPaneMenuPopup(command, menupopup, doc) {
68  switch (command) {
69  case "create":
70  AlbumArt._populateMenuControl(menupopup, doc);
71  break;
72  case "destroy":
73  AlbumArt._destroyMenuControl();
74  break;
75  default:
76  dump("AlbumArt displaypane menu: unknown command: " + command + "\n");
77  }
78 }
79 
80 /******************************************************************************
81  *
82  * \class AlbumArt
83  * \brief Controller for the Album Art Pane.
84  *
85  *****************************************************************************/
86 var AlbumArt = {
87  _coverBind: null, // Data remote for the now playing image.
88  _mediacoreManager: null, // Get notifications of track changes.
89  _mediaListView: null, // Current active mediaListView.
90  _browser: null, // Handle to browser for tab changes.
91  _displayPane: null, // Display pane we are in.
92  _nowSelectedMediaItem: null, // Now selected media item.
93  _nowSelectedMediaItemWatcher: null, // Now selected media item watcher.
94  _prevAutoFetchArtworkItem: null, // Previous item for which auto artwork
95  // fetch was attempted.
96  _autoFetchTimeoutID: null, // ID of auto-fetch timeout.
97 
98  // Array of state information for each display (selected/playing/etc)
99  _stateInfo: [ { imageID: "sb-albumart-selected",
100  titleID: "selected",
101  menuID: "selected",
102  defaultTitle: "Now Selected"
103  },
104  { imageID: "sb-albumart-playing",
105  titleID: "playing",
106  menuID: "playing",
107  defaultTitle: "Now Playing"
108  }
109  ],
110  _currentState: STATE_SELECTED, // Default to now selected state (display)
111 
112  _switchToNowPlaying: function() {
113  AlbumArt.switchState(STATE_PLAYING);
114  },
115  _switchToNowSelected: function() {
116  AlbumArt.switchState(STATE_SELECTED);
117  },
118  _populateMenuControl: function AlbumArt_populateMenuControl(menupopup, doc) {
119  // now playing
120  var nowPlayingMenu = doc.createElement("menuitem");
121  var titleInfo = AlbumArt._stateInfo[STATE_PLAYING];
122  var npString = SBString("albumart.displaypane.menu.show" +
123  titleInfo.titleID, titleInfo.defaultTitle);
124  nowPlayingMenu.setAttribute("label", npString);
125  nowPlayingMenu.setAttribute("type", "radio");
126  nowPlayingMenu.addEventListener("command", AlbumArt._switchToNowPlaying,
127  false);
128  menupopup.appendChild(nowPlayingMenu);
129 
130  // now selected
131  var nowSelectedMenu = doc.createElement("menuitem");
132  titleInfo = AlbumArt._stateInfo[STATE_SELECTED];
133  var nsString = SBString("albumart.displaypane.menu.show" +
134  titleInfo.titleID, titleInfo.defaultTitle);
135  nowSelectedMenu.setAttribute("label", nsString);
136  nowSelectedMenu.setAttribute("type", "radio");
137  nowSelectedMenu.addEventListener("command",
138  AlbumArt._switchToNowSelected,
139  false);
140  menupopup.appendChild(nowSelectedMenu);
141 
142  if (AlbumArt._currentState == STATE_PLAYING)
143  nowPlayingMenu.setAttribute("selected", "true");
144  else
145  nowSelectedMenu.setAttribute("selected", "true");
146 
147  AlbumArt._menuPopup = menupopup;
148  },
149 
150  _destroyMenuControl: function AlbumArt_destroyMenuControl() {
151  while (AlbumArt._menuPopup.firstChild) {
152  AlbumArt._menuPopup.removeChild(AlbumArt._menuPopup.firstChild);
153  }
154  },
155 
161  onImageDblClick: function AlbumArt_onImageDblClick(aEvent) {
162  // Only respond to primary button double clicks.
163  var passImageParam = null;
164  if (aEvent.button == 0) {
165  // If the user is clicking on the "Now Selected" image we are going to
166  // display that one, otherwise the window will display the currently
167  // playing image.
168  if (aEvent.target.id == 'sb-albumart-selected') {
169  passImageParam = this.getCurrentStateItemImage();
170  }
171 
172  var winMediator = Cc["@mozilla.org/appshell/window-mediator;1"]
173  .getService(Ci.nsIWindowMediator);
174  var mainWin = winMediator.getMostRecentWindow("Songbird:Main");
175  if (mainWin && mainWin.window) {
176  mainWin.openDialog("chrome://albumart/content/coverPreview.xul",
177  "coverPreview",
178  "chrome,centerscreen,resizeable=no",
179  passImageParam);
180  }
181  }
182  },
183 
188  setPaneTitle: function AlbumArt_setPaneTitle() {
189  // Sanity check
190  if (AlbumArt._currentState >= AlbumArt._stateInfo.length ||
191  AlbumArt._currentState < 0) {
192  return;
193  }
194 
195  var titleInfo = AlbumArt._stateInfo[AlbumArt._currentState];
196  var titleString = SBString("albumart.displaypane.title." + titleInfo.titleID,
197  titleInfo.defaultTitle);
198 
199  // We set the title with contentTitle instead of using the paneMgr because
200  // we do not want to change the name for this display pane anywhere else.
201  if (AlbumArt._displayPane) {
202  AlbumArt._displayPane.contentTitle = titleString;
203  }
204  },
205 
212  switchState: function AlbumArt_switchState(aNewState) {
213  AlbumArt._currentState = aNewState;
214  var albumArtDeck = document.getElementById('sb-albumart-deck');
215  albumArtDeck.selectedIndex = AlbumArt._currentState;
216  AlbumArt.setPaneTitle();
217 
218  if (AlbumArt._currentState == STATE_PLAYING) {
219  document.getElementById("showNowSelectedMenuItem")
220  .setAttribute("checked", "false");
221  document.getElementById("showNowPlayingMenuItem")
222  .setAttribute("checked", "true");
223  } else {
224  document.getElementById("showNowPlayingMenuItem")
225  .setAttribute("checked", "false");
226  document.getElementById("showNowSelectedMenuItem")
227  .setAttribute("checked", "true");
228  }
229  },
230 
238  canEditItems: function AlbumArt_canEditItems(aItemArray) {
239  for each (var item in aItemArray) {
240  if (!LibraryUtils.canEditMetadata(item)) {
241  return false;
242  }
243  }
244  return true;
245  },
246 
256  changeImage: function AlbumArt_changeImage(aNewURL,
257  aImageElement,
258  aNotBox,
259  aDragBox,
260  aStack,
261  isPlayingOrSelected) {
262  // Determine what to display
263  if (!isPlayingOrSelected) {
264  // No currently playing or selected items
265 
266  // Show the not selected/playing message.
267  aNotBox.hidden = false;
268 
269  // Hide the Drag Here box
270  aDragBox.hidden = true;
271 
272  // Set the image to the default cover
273  aNewURL = DROP_TARGET_IMAGE;
274 
275  aStack.className = "artwork-none";
276  } else if (!aNewURL) {
277  // We are playing or have selected items, but the image is not available
278 
279  // Show the Drag Here box
280  aDragBox.hidden = false;
281 
282  // Hide the not selected message.
283  aNotBox.hidden = true;
284 
285  // Set the image to the default cover
286  aNewURL = DROP_TARGET_IMAGE;
287 
288  aStack.className = "artwork-none";
289  } else {
290  // We are playing or have selected items, and we have a valid image
291 
292  // Hide the not selected/playing message.
293  aNotBox.hidden = true;
294 
295  // Hide the Drag Here box
296  aDragBox.hidden = true;
297 
298  aStack.className = "artwork-found";
299  }
300 
301  if (!Application.prefs.getValue("songbird.albumart.autofetch.disabled",
302  false)) {
303  // Auto-fetch artwork.
304  AlbumArt.autoFetchArtwork();
305  }
306 
307  var princely = Application.prefs.getValue("songbird.purplerain.prince",
308  false);
309  if ((princely == "1") && aNotBox.hidden)
310  aNewURL = "chrome://songbird/skin/album-art/princeaa.jpg";
311 
312  /* Set the image element URL */
313  if (aNewURL) {
314  aImageElement.setAttributeNS(XLINK_NS, "href", aNewURL);
315 
316  // Attempt to determine the image's height & width so we can use it
317  // for aspect ratio scaling calculations later (to adjust the display
318  // pane height)
319  var img = new Image();
320  img.addEventListener("load", function(e) {
321  AlbumArt.imageDimensions = {
322  width: img.width,
323  height: img.height,
324  aspectRatio: (img.height/img.width)
325  }
326  AlbumArt.onServicepaneResize();
327  img.removeEventListener("load", arguments.callee, false);
328  delete img;
329  }, false);
330  img.src = aNewURL;
331  } else {
332  aImageElement.removeAttributeNS(XLINK_NS, "href");
333  }
334  },
335 
340  changeNowSelected: function AlbumArt_changeNowSelected(aNewURL) {
341  // Load up our elements
342  var albumArtSelectedImage = document.getElementById('sb-albumart-selected');
343  var albumArtNotSelectedBox = document.getElementById('sb-albumart-not-selected');
344  var albumArtSelectedDragBox = document.getElementById('sb-albumart-select-drag');
345  var stack = document.getElementById('sb-albumart-nowselected-stack');
346 
347  var isSelected = false;
348  if (AlbumArt._mediaListView)
349  isSelected = AlbumArt._mediaListView.selection.count > 0;
350  this.changeImage(aNewURL,
351  albumArtSelectedImage,
352  albumArtNotSelectedBox,
353  albumArtSelectedDragBox,
354  stack,
355  isSelected);
356  },
357 
362  changeNowPlaying: function AlbumArt_changeNowPlaying(aNewURL) {
363  // Load up our elements
364  var albumArtPlayingImage = document.getElementById('sb-albumart-playing');
365  var albumArtNotPlayingBox = document.getElementById('sb-albumart-not-playing');
366  var albumArtPlayingDragBox = document.getElementById('sb-albumart-playing-drag');
367  var stack = document.getElementById('sb-albumart-nowplaying-stack');
368 
369  this.changeImage(aNewURL,
370  albumArtPlayingImage,
371  albumArtNotPlayingBox,
372  albumArtPlayingDragBox,
373  stack,
374  (this.getNowPlayingItem() != null));
375  },
376 
385  observe: function AlbumArt_observe(aSubject, aTopic, aData) {
386  // Ignore any other topics (we should not normally get anything else)
387  if (aTopic != "metadata.imageURL") {
388  return;
389  }
390 
391  if (aData == DROP_TARGET_IMAGE) {
392  aData = "";
393  }
394  AlbumArt.changeNowPlaying(aData);
395  },
396 
401  toggleView: function AlbumArt_toggleView() {
402  var newState = (AlbumArt._currentState + 1);
403  if (newState >= AlbumArt._stateInfo.length) {
404  // Wrap around
405  newState = 0;
406  }
407  AlbumArt.switchState(newState);
408  },
409 
413  dpStateListener: function AlbumArt_onDisplayPaneStateListener(e) {
414  if (!AlbumArt._displayPane)
415  return;
416 
417  // the state is the state *before* it's changed
418  if (e.target.getAttribute("state") == "open") {
419  // it's collapsing, reset the contentTitle
420  AlbumArt._displayPane.contentTitle = "";
421  } else {
422  AlbumArt.setPaneTitle();
423  }
424  },
425 
429  onServicepaneResize: function AlbumArt_onServicepaneResize(e) {
430  var imgEl;
431  if (AlbumArt._currentState == STATE_PLAYING) {
432  imgEl = AlbumArt._albumArtPlayingImage;
433  } else {
434  imgEl = AlbumArt._albumArtSelectedImage;
435  }
436 
437  // Determine the new actual image dimensions
438  var svgWidth = imgEl.width.baseVal.value;
439  var svgHeight = parseInt(AlbumArt.imageDimensions.aspectRatio * svgWidth);
440  if (Math.abs(svgHeight - AlbumArt._displayPane.height) > 10) {
441  AlbumArt._animating = true;
442  AlbumArt._finalAnimatedHeight = svgHeight;
443  AlbumArt.animateHeight(AlbumArt._displayPane.height);
444  } else {
445  if (!AlbumArt._animating)
446  AlbumArt._displayPane.height = svgHeight;
447  else
448  AlbumArt._finalAnimatedHeight = svgHeight;
449  }
450  },
451 
452  animateHeight: function AlbumArt_animateHeight(destHeight) {
453  destHeight = parseInt(destHeight);
454  AlbumArt._displayPane.height = destHeight;
455 
456  if (destHeight == AlbumArt._finalAnimatedHeight) {
457  AlbumArt._animating = false;
458  } else {
459  var newHeight;
460  var delta = Math.abs(AlbumArt._finalAnimatedHeight - destHeight) / 2;
461  if (delta < 5)
462  newHeight = AlbumArt._finalAnimatedHeight;
463  else {
464  if (AlbumArt._finalAnimatedHeight > destHeight)
465  newHeight = destHeight + delta;
466  else
467  newHeight = destHeight - delta;
468  }
469  setTimeout(AlbumArt.animateHeight, 0, newHeight);
470  }
471  },
476  onLoad: function AlbumArt_onLoad() {
477  // Remove our loaded listener so we do not leak
478  window.removeEventListener("DOMContentLoaded", AlbumArt.onLoad, false);
479 
480  // Get our displayPane
481  var displayPaneManager = Cc["@songbirdnest.com/Songbird/DisplayPane/Manager;1"]
482  .getService(Ci.sbIDisplayPaneManager);
483  var dpInstantiator = displayPaneManager.getInstantiatorForWindow(window);
484 
485  if (dpInstantiator) {
486  AlbumArt._displayPane = dpInstantiator.displayPane;
487  }
488  var splitter = AlbumArt._displayPane._splitter;
489  // Also remove the ability for this slider to be manually resized
490  splitter.setAttribute("disabled", "true");
491  splitter.addEventListener("displaypane-state", AlbumArt.dpStateListener,
492  false);
493 
494  // Get the mediacoreManager.
495  AlbumArt._mediacoreManager =
496  Cc["@songbirdnest.com/Songbird/Mediacore/Manager;1"]
497  .getService(Ci.sbIMediacoreManager);
498 
499  // Load the previous selected display the user shutdown with
500  AlbumArt._currentState = Application.prefs.getValue(PREF_STATE,
501  AlbumArt._currentState);
502  if (AlbumArt._currentState == STATE_PLAYING) {
503  document.getElementById("showNowPlayingMenuItem")
504  .setAttribute("checked", "true");
505  } else {
506  document.getElementById("showNowSelectedMenuItem")
507  .setAttribute("checked", "true");
508  }
509 
510  // Ensure we have the correct title and deck displayed.
511  AlbumArt.switchState(AlbumArt._currentState);
512 
513  // Setup the dataremote for the now playing image.
514  var createDataRemote = new Components.Constructor(
515  "@songbirdnest.com/Songbird/DataRemote;1",
516  Components.interfaces.sbIDataRemote,
517  "init");
518  AlbumArt._coverBind = createDataRemote("metadata.imageURL", null);
519  AlbumArt._coverBind.bindObserver(AlbumArt, false);
520 
521  // Set the drag description contents
522  document.getElementById('sb-albumart-select-drag').firstChild
523  .textContent = SBString("albumart.displaypane.drag_artwork_here");
524  document.getElementById('sb-albumart-playing-drag').firstChild
525  .textContent = SBString("albumart.displaypane.drag_artwork_here");
526 
527  // Monitor track changes for faster image changing.
528  AlbumArt._mediacoreManager.addListener(AlbumArt);
529 
530  var currentStatus = AlbumArt._mediacoreManager.status;
531  var stopped = (currentStatus.state == currentStatus.STATUS_STOPPED ||
532  currentStatus.state == currentStatus.STATUS_UNKNOWN);
533  if (stopped) {
534  AlbumArt.changeNowPlaying(null);
535  }
536 
537  AlbumArt.changeNowSelected(null);
538 
539  // Setup the Now Selected display
540  AlbumArt.onTabContentChange();
541 
542  AlbumArt._albumArtSelectedImage =
543  document.getElementById('sb-albumart-selected');
544  AlbumArt._albumArtPlayingImage =
545  document.getElementById('sb-albumart-playing');
546  var mainWindow = window.QueryInterface(Ci.nsIInterfaceRequestor)
547  .getInterface(Ci.nsIWebNavigation)
548  .QueryInterface(Ci.nsIDocShellTreeItem)
549  .rootTreeItem
550  .QueryInterface(Ci.nsIInterfaceRequestor)
551  .getInterface(Ci.nsIDOMWindow);
552 
553  AlbumArt._servicePaneSplitter =
554  mainWindow.document.getElementById("servicepane_splitter");
555  AlbumArt._servicePaneSplitter.addEventListener("dragging",
556  AlbumArt.onServicepaneResize,
557  false);
558  },
559 
564  onUnload: function AlbumArt_onUnload() {
565  // Remove our unload event listener so we do not leak
566  window.removeEventListener("unload", AlbumArt.onUnload, false);
567  AlbumArt._displayPane._splitter.removeEventListener("displaypane-state",
568  AlbumArt.dpStateListener, false);
569 
570  // Remove servicepane resize listener
571  AlbumArt._servicePaneSplitter.removeEventListener("dragging",
572  AlbumArt.onServicepaneResize,
573  false);
574 
575  // Undo our modifications to the spitter
576  var splitter = AlbumArt._displayPane._splitter;
577  splitter.removeAttribute("hovergrippy");
578  splitter.removeAttribute("disabled");
579 
580  // Clear any auto-fetch timeouts.
581  if (this._autoFetchTimeoutID) {
582  clearTimeout(this._autoFetchTimeoutID)
583  this._autoFetchTimeoutID = null;
584  }
585 
586  // Clear the now selected media item
587  AlbumArt.clearNowSelectedMediaItem();
588 
589  // Save the current display state for when the user starts again
590  Application.prefs.setValue(PREF_STATE, AlbumArt._currentState);
591 
592  AlbumArt._mediacoreManager.removeListener(AlbumArt);
593  AlbumArt._mediacoreManager = null;
594 
595  AlbumArt._coverBind.unbind();
596  AlbumArt._coverBind = null;
597 
598  // Remove selection listeners
599  if(AlbumArt._mediaListView) {
600  AlbumArt._mediaListView.selection.removeListener(AlbumArt);
601  }
602  if (AlbumArt._browser) {
603  AlbumArt._browser.removeEventListener("TabContentChange",
604  AlbumArt.onTabContentChange,
605  false);
606  }
607  },
608 
615  getMainBrowser: function AlbumArt_getMainBrowser() {
616  // Get the main window, we have to do this because we are in a display pane
617  // and our window is the content of the display pane.
618  var windowMediator = Components.classes["@mozilla.org/appshell/window-mediator;1"]
619  .getService(Components.interfaces.nsIWindowMediator);
620 
621  var songbirdWindow = windowMediator.getMostRecentWindow("Songbird:Main");
622  // Store this so we don't have to get it every time.
623  AlbumArt._browser = songbirdWindow.gBrowser;
624  if (AlbumArt._browser) {
625  AlbumArt._browser.addEventListener("TabContentChange",
626  AlbumArt.onTabContentChange,
627  false);
628  }
629  },
630 
637  onTabContentChange: function AlbumArt_onTabContentChange() {
638  // Remove any existing listeners
639  if(AlbumArt._mediaListView) {
640  AlbumArt._mediaListView.selection.removeListener(AlbumArt);
641  }
642 
643  // Make sure we have the browser
644  if (!AlbumArt._browser) {
645  AlbumArt.getMainBrowser();
646  }
647  AlbumArt._mediaListView = AlbumArt._browser.currentMediaListView;
648 
649  // Now attach a new listener for the selection changes
650  if (AlbumArt._mediaListView) {
651  AlbumArt._mediaListView.selection.addListener(AlbumArt);
652  // Make an initial call so we can change our image based on selection
653  // (but wait for the tab to stabilize)
654  setTimeout(function() {
655  AlbumArt.onSelectionChanged();
656  }, 0);
657  }
658  },
659 
665  checkIsLocal: function AlbumArt_checkIsLocal(aMediaItem) {
666  var contentURL = aMediaItem.getProperty(SBProperties.contentURL);
667  var ioService = Cc["@mozilla.org/network/io-service;1"]
668  .getService(Ci.nsIIOService);
669  var uri = null;
670  try {
671  uri = ioService.newURI(contentURL, null, null);
672  } catch (err) {
673  Cu.reportError("AlbumArt: Unable to convert to URI: [" +
674  contentURL + "] " + err);
675  return false;
676  }
677 
678  return (uri instanceof Ci.nsIFileURL);
679  },
680 
685  setNowPlayingCover: function AlbumArt_setNowPlayingCover(aNewImageUrl) {
686  var aMediaItem = AlbumArt.getNowPlayingItem();
687  if (!aMediaItem)
688  return;
689 
690  aMediaItem.setProperty(SBProperties.primaryImageURL, aNewImageUrl);
691  AlbumArt.changeNowPlaying(aNewImageUrl);
692 
693  // Only write the image if it is local
694  if (this.checkIsLocal(aMediaItem)) {
695  sbMetadataUtils.writeMetadata([aMediaItem],
696  [SBProperties.primaryImageURL],
697  window);
698  }
699  },
700 
705  setSelectionsCover: function AlbumArt_setSelectionsCover(aNewImageUrl) {
706  var selection = AlbumArt._mediaListView.selection;
707  var multipleItems = false;
708 
709  // First check through all the items to see if they are the same or not
710  // We determine that items are the same if they belong to the same album
711  // and have the same AlbumArtist or ArtistName.
712  var itemEnum = selection.selectedMediaItems;
713  var oldAlbumName = null;
714  var oldAlbumArtist = null;
715  while (itemEnum.hasMoreElements()) {
716  var item = itemEnum.getNext();
717  var albumName = item.getProperty(SBProperties.albumName);
718  var albumArtist = item.getProperty(SBProperties.albumArtistName);
719  if (!albumArtist || albumArtist == "") {
720  albumArtist = item.getProperty(SBProperties.artistName);
721  }
722 
723  if (oldAlbumArtist == null &&
724  oldAlbumName == null) {
725  oldAlbumName = albumName;
726  oldAlbumArtist = albumArtist;
727  } else if (albumName != oldAlbumName ||
728  albumArtist != oldAlbumArtist) {
729  // Not the same so flag and break
730  multipleItems = true;
731  break;
732  }
733  }
734 
735  if (multipleItems) {
736  // Ask the user if they are sure they want to change the items selected
737  // since they are different.
738  const BYPASSKEY = "albumart.multiplewarning.bypass";
739  const STRINGROOT = "albumart.multiplewarning.";
740  if (!Application.prefs.getValue(BYPASSKEY, false)) {
741  var promptService = Cc["@mozilla.org/embedcomp/prompt-service;1"]
742  .getService(Ci.nsIPromptService);
743  var check = { value: false };
744 
745  var strTitle = SBString(STRINGROOT + "title");
746  var strMsg = SBString(STRINGROOT + "message");
747  var strCheck = SBString(STRINGROOT + "check");
748 
749  var confirmOk = promptService.confirmCheck(window,
750  strTitle,
751  strMsg,
752  strCheck,
753  check);
754  if (!confirmOk) {
755  return;
756  }
757  if (check.value == true) {
758  Application.prefs.setValue(BYPASSKEY, true);
759  }
760  }
761  }
762 
763  // Now actually set the properties. This will trigger a notification that
764  // will update the currently selected display.
765  var mediaItemArray = [];
766  itemEnum = selection.selectedMediaItems;
767  while (itemEnum.hasMoreElements()) {
768  var item = itemEnum.getNext();
769  var oldImage = item.getProperty(SBProperties.primaryImageURL);
770  if (oldImage != aNewImageUrl) {
771  item.setProperty(SBProperties.primaryImageURL, aNewImageUrl);
772  if (this.checkIsLocal(item)) {
773  mediaItemArray.push(item);
774  }
775  }
776  }
777 
778  // Write the images to metadata
779  if (mediaItemArray.length > 0) {
780  sbMetadataUtils.writeMetadata(mediaItemArray,
781  [SBProperties.primaryImageURL],
782  window);
783  }
784  },
785 
790  setCurrentStateItemImage: function AlbumArt_setCurrentSateItemImage(aNewImageUrl) {
791  if (AlbumArt._currentState == STATE_SELECTED) {
792  AlbumArt.setSelectionsCover(aNewImageUrl);
793  } else {
794  AlbumArt.setNowPlayingCover(aNewImageUrl);
795  }
796  },
797 
802  getCurrentStateItemImage: function AlbumArt_getCurrentStateItemImage() {
803  var imageNode;
804  if (AlbumArt._currentState == STATE_SELECTED) {
805  imageNode = document.getElementById("sb-albumart-selected");
806  } else {
807  imageNode = document.getElementById("sb-albumart-playing");
808  }
809  return imageNode.getAttributeNS(XLINK_NS, "href");
810  },
811 
816  clearNowSelectedMediaItem: function AlbumArt_clearNowSelectedMediaItem() {
817  // Stop watching the now selected media item
818  if (AlbumArt._nowSelectedMediaItemWatcher) {
819  AlbumArt._nowSelectedMediaItemWatcher.cancel();
820  AlbumArt._nowSelectedMediaItemWatcher = null;
821  }
822 
823  // Clear the now selected media item.
824  AlbumArt._nowSelectedMediaItem = null;
825  },
826 
831  getNowPlayingItem: function AlbumArt_getNowPlayingItem() {
832  // No playing item if the media core is stopped.
833  var currentStatus = AlbumArt._mediacoreManager.status;
834  var stopped = (currentStatus.state == currentStatus.STATUS_STOPPED ||
835  currentStatus.state == currentStatus.STATUS_UNKNOWN);
836  if (stopped)
837  return null;
838 
839  // Return the currently playing item.
840  return AlbumArt._mediacoreManager.sequencer.currentItem;
841  },
842 
852  getClipboardAlbumArt:
853  function AlbumArt_getClipboardAlbumArt(aMimeType,
854  aImageData,
855  aIsValidAlbumArt) {
856  // Get the clipboard image.
857  var sbClipboard = Cc["@songbirdnest.com/moz/clipboard/helper;1"]
858  .createInstance(Ci.sbIClipboardHelper);
859  var mimeType = {};
860  var imageData = null;
861  try {
862  imageData = sbClipboard.copyImageFromClipboard(mimeType, {});
863  } catch (err) {
864  Cu.reportError("Error checking for image data on the clipboard: " + err);
865  aMimeType.value = null;
866  aImageData.value = null;
867  aIsValidAlbumArt.value = false;
868  return;
869  }
870  mimeType = mimeType.value;
871 
872  // Validate image as valid album art.
873  var isValidAlbumArt = false;
874  if (imageData && (imageData.length > 0)) {
875  var artService = Cc["@songbirdnest.com/Songbird/album-art-service;1"]
876  .getService(Ci.sbIAlbumArtService);
877  isValidAlbumArt = artService.imageIsValidAlbumArt(mimeType,
878  imageData,
879  imageData.length);
880  }
881  if (!isValidAlbumArt) {
882  mimeType = null;
883  imageData = null;
884  }
885 
886  // Return results.
887  aMimeType.value = mimeType;
888  aImageData.value = imageData;
889  aIsValidAlbumArt.value = isValidAlbumArt;
890  },
891 
895  onPopupShowing: function AlbumArt_onPopupShowing() {
896  // Get the current state item image.
897  var curImageUrl = AlbumArt.getCurrentStateItemImage();
898 
899  // Update the popup menu for the current state item image.
900  var cutElem = document.getElementById("cutMenuItem");
901  var copyElem = document.getElementById("copyMenuItem");
902  var clearElem = document.getElementById("clearMenuItem");
903  var pasteElem = document.getElementById("pasteMenuItem");
904  var getArtworkElem = document.getElementById("getArtworkMenuItem");
905  var getArtworkSeparatorElem = document.getElementById("getArtworkSeparator");
906 
907  // Hide the Get Artwork command if no "audio" is selected.
908  var shouldHideGetArtwork = AlbumArt.shouldHideGetArtworkCommand();
909  getArtworkSeparatorElem.hidden = shouldHideGetArtwork;
910  getArtworkElem.hidden = shouldHideGetArtwork;
911 
912  // Always enable get artwork
913  getArtworkElem.disabled = false;
914 
915  // Check if the clipboard contains valid album art.
916  var validAlbumArt = {};
917  AlbumArt.getClipboardAlbumArt({}, {}, validAlbumArt);
918  validAlbumArt = validAlbumArt.value;
919 
920  // Do not allow copying the drop target image
921  if (curImageUrl == DROP_TARGET_IMAGE) {
922  cutElem.disabled = true;
923  copyElem.disabled = true
924  clearElem.disabled = true;
925  } else {
926  // Only allow valid images to be modified.
927  cutElem.disabled = !curImageUrl;
928  copyElem.disabled = !curImageUrl;
929  clearElem.disabled = !curImageUrl;
930  }
931 
932  // Enable the paste if a valid image is on the clipboard
933  // Disable the paste if no "audio" is selected.
934  pasteElem.disabled = !validAlbumArt || shouldHideGetArtwork;
935 
936  },
937 
938  shouldHideGetArtworkCommand: function AlbumArt_shouldHideGetArtworkCommand() {
939  if (AlbumArt._currentState == STATE_SELECTED) {
940  // Now Selected
941  var items = AlbumArt._mediaListView.selection.selectedMediaItems;
942  while (items.hasMoreElements()) {
943  var item = items.getNext().QueryInterface(Ci.sbIMediaItem);
944  if (item.getProperty(SBProperties.contentType) == "audio") {
945  return false;
946  }
947  }
948  return true;
949  }
950  else {
951  // Now playing
952  var item = AlbumArt.getNowPlayingItem();
953  if (item && item.getProperty(SBProperties.contentType) == "audio") {
954  return false;
955  }
956  return true;
957  }
958  },
959 
964  autoFetchArtwork: function AlbumArt_autoFetchArtwork() {
965  // Ensure no auto-fetch timeout is pending.
966  if (this._autoFetchTimeoutID) {
967  clearTimeout(this._autoFetchTimeoutID)
968  this._autoFetchTimeoutID = null;
969  }
970 
971  // Delay the start of auto-fetching for a second.
972  var _this = this;
973  var func = function() {
974  _this._autoFetchTimeoutID = null;
975  _this._autoFetchArtwork();
976  }
977  this._autoFetchTimeoutID = setTimeout(func, 1000);
978  },
979 
980  _autoFetchArtwork: function AlbumArt__autoFetchArtwork() {
981  // Determine the item for which artwork should be fetched.
982  var item = null;
983  if (AlbumArt._currentState == STATE_PLAYING) {
984  item = this.getNowPlayingItem();
985  }
986  else {
987  if (AlbumArt._mediaListView)
988  item = AlbumArt._mediaListView.selection.currentMediaItem;
989  }
990 
991  // Do nothing if item has not changed.
992  if (item == AlbumArt._prevAutoFetchArtworkItem)
993  return;
994  AlbumArt.prevAutoFetchArtworkItem = item;
995 
996  // Do nothing more if no item.
997  if (!item)
998  return;
999 
1000  // Auto-fetch if item does not have an image and a remote artwork fetch has
1001  // not yet been attempted.
1002  var primaryImageURL = item.getProperty(SBProperties.primaryImageURL);
1003  var attemptedRemoteArtFetch =
1004  item.getProperty(SBProperties.attemptedRemoteArtFetch);
1005  if (!primaryImageURL && !attemptedRemoteArtFetch) {
1006  var sip = Cc["@mozilla.org/supports-interface-pointer;1"]
1007  .createInstance(Ci.nsISupportsInterfacePointer);
1008  sip.data = ArrayConverter.nsIArray([item]);
1009  sbCoverHelper.getArtworkForItems(sip.data, window, item.library, true);
1010  }
1011  },
1012 
1013  /*********************************
1014  * Drag and Drop
1015  ********************************/
1021  getSupportedFlavours : function AlbumArt_getSupportedFlavours() {
1022  // Disable drag and drop if artwork is not supported
1023  var shouldHideGetArtwork = AlbumArt.shouldHideGetArtworkCommand();
1024  if (shouldHideGetArtwork)
1025  return null;
1026 
1027  var flavours = new FlavourSet();
1028  return sbCoverHelper.getFlavours(flavours);
1029  },
1030 
1037  onDrop: function AlbumArt_onDrop(aEvent, aDropData, aSession) {
1038  var self = this;
1039  sbCoverHelper.handleDrop(function (newFile) {
1040  if (newFile) {
1041  self.setCurrentStateItemImage(newFile);
1042  }
1043  }, aDropData);
1044  },
1045 
1052  onDragOver: function AlbumArt_onDragOver(aEvent, aFlavour, aSesssion) {
1053  // No need to do anything here, for UI we should set the
1054  // #sb-albumart-selected:-moz-drag-over style.
1055  },
1056 
1063  onDragStart: function AlbumArt_onDragStart(aEvent, aTransferData, aAction) {
1064  var imageURL = AlbumArt.getCurrentStateItemImage();
1065  aTransferData.data = new TransferData();
1066  sbCoverHelper.setupDragTransferData(aTransferData, imageURL);
1067  },
1068 
1069 
1070  /*********************************
1071  * Copy, Cut, Paste, Clear menu
1072  ********************************/
1076  onPaste: function AlbumArt_onPaste() {
1077  var mimeType = {};
1078  var imageData = {};
1079  AlbumArt.getClipboardAlbumArt(mimeType, imageData, {});
1080  mimeType = mimeType.value;
1081  imageData = imageData.value;
1082  if (imageData && sbCoverHelper.isImageSizeValid(null, imageData.length)) {
1083  var artService = Cc["@songbirdnest.com/Songbird/album-art-service;1"]
1084  .getService(Ci.sbIAlbumArtService);
1085 
1086  var newURI = artService.cacheImage(mimeType,
1087  imageData,
1088  imageData.length);
1089  if (newURI) {
1090  AlbumArt.setCurrentStateItemImage(newURI.spec);
1091  }
1092  }
1093  },
1094 
1098  onCopy: function AlbumArt_onCopy() {
1099  var sbClipboard = Cc["@songbirdnest.com/moz/clipboard/helper;1"]
1100  .createInstance(Ci.sbIClipboardHelper);
1101  var aImageURL = AlbumArt.getCurrentStateItemImage();
1102  var ioService = Cc["@mozilla.org/network/io-service;1"]
1103  .getService(Ci.nsIIOService);
1104  var imageURI = null;
1105  try {
1106  imageURI = ioService.newURI(aImageURL, null, null);
1107  } catch (err) {
1108  Cu.reportError("albumArtPane: Unable to convert to URI: [" + aImageURL +
1109  "] " + err);
1110  return false;
1111  }
1112 
1113  var copyOk = false;
1114  if (imageURI instanceof Ci.nsIFileURL) {
1115  var imageFile = imageURI.file.QueryInterface(Ci.nsILocalFile);
1116  var imageData, mimeType;
1117  [imageData, mimeType] = sbCoverHelper.readImageData(imageFile);
1118 
1119  try {
1120  sbClipboard.pasteImageToClipboard(mimeType, imageData, imageData.length);
1121  copyOk = true;
1122  } catch (err) {
1123  Cu.reportError("albumArtPane: Unable to paste to the clipboard " + err);
1124  }
1125  }
1126 
1127  return copyOk;
1128  },
1129 
1134  onCut: function AlbumArt_onCut() {
1135  if (this.onCopy()) {
1136  this.onClear();
1137  }
1138  },
1139 
1143  onGetArtwork: function AlbumArt_onGetArtwork() {
1144  if (AlbumArt._currentState == STATE_SELECTED) {
1145  // Now Selected
1146  var library = AlbumArt._mediaListView.mediaList.library;
1147 
1148  // Only look up artwork for audio items.
1149  var isAudioItem = function(aElement) {
1150  return aElement.getProperty(SBProperties.contentType) == "audio";
1151  };
1152  var selectedAudioItems = new SBFilteredEnumerator(
1153  AlbumArt._mediaListView.selection.selectedMediaItems,
1154  isAudioItem);
1155 
1156  // We need to convert our JS object into an XPCOM object.
1157  // Mook claims this is actually the best way to do this.
1158  var sip = Cc["@mozilla.org/supports-interface-pointer;1"]
1159  .createInstance(Ci.nsISupportsInterfacePointer);
1160  sip.data = selectedAudioItems;
1161  selectedAudioItems = sip.data;
1162 
1163  sbCoverHelper.getArtworkForItems(selectedAudioItems,
1164  window,
1165  library);
1166  } else {
1167  // Now playing
1168  var item = AlbumArt.getNowPlayingItem();
1169  if (item.getProperty(SBProperties.contentType != "audio")) {
1170  Components.utils.reportError("albumArtPane.js::onGetArtwork: \n"+
1171  "shouldn't try to get album art for non-audio items.");
1172  return;
1173  }
1174  if (item) {
1175  // damn it I hate this whole stupid thing where each JS global gets a
1176  // completely _different_ set of global classes
1177  var sip = Cc["@mozilla.org/supports-interface-pointer;1"]
1178  .createInstance(Ci.nsISupportsInterfacePointer);
1179  sip.data = ArrayConverter.nsIArray([item]);
1180  sbCoverHelper.getArtworkForItems(sip.data, window, item.library);
1181  }
1182  }
1183  },
1184 
1185 
1189  onClear: function AlbumArt_onClear() {
1190  AlbumArt.setCurrentStateItemImage("");
1191  },
1192 
1193  /*********************************
1194  * sbIMediaListViewSelectionListener
1195  ********************************/
1200  onSelectionChanged: function AlbumArt_onSelectionChanged() {
1201  // Get the new now selected media item
1202  var selection = AlbumArt._mediaListView.selection;
1203  var curImageUrl = null;
1204  var item = selection.currentMediaItem;
1205 
1206  // Clear the old now selected media item
1207  AlbumArt.clearNowSelectedMediaItem();
1208 
1209  // Watch new now selected media item for primary image URL changes
1210  if (item) {
1211  AlbumArt._nowSelectedMediaItem = item;
1212  AlbumArt._nowSelectedMediaItemWatcher =
1213  Cc["@songbirdnest.com/Songbird/Library/MediaItemWatcher;1"]
1214  .createInstance(Ci.sbIMediaItemWatcher);
1215  var filter = SBProperties.createArray([ [ SBProperties.primaryImageURL,
1216  null ] ]);
1217  AlbumArt._nowSelectedMediaItemWatcher.watch(item, this, filter);
1218  }
1219 
1220  // Get the now selected media item image. Do this after adding watcher to
1221  // ensure changes are always picked up.
1222  if (item) {
1223  curImageUrl = item.getProperty(SBProperties.primaryImageURL);
1224  }
1225 
1226  AlbumArt.changeNowSelected(curImageUrl);
1227  },
1228 
1233  onCurrentIndexChanged: function AlbumArt_onCurrentIndexChanged() {
1234  },
1235 
1236  /*********************************
1237  * sbIMediaItemListener
1238  ********************************/
1243  onItemRemoved: function AlbumArt_onItemRemoved(aMediaItem) {
1244  },
1245 
1250  onItemUpdated: function AlbumArt_onItemUpdated(aMediaItem) {
1251  // Update now selected media item image
1252  var curImageUrl =
1253  this._nowSelectedMediaItem.getProperty(SBProperties.primaryImageURL);
1254  AlbumArt.changeNowSelected(curImageUrl);
1255  },
1256 
1257  /*********************************
1258  * sbIMediacoreEventListener and Event Handlers
1259  ********************************/
1260  onMediacoreEvent: function AlbumArt_onMediacoreEvent(aEvent) {
1261  switch(aEvent.type) {
1262  case Ci.sbIMediacoreEvent.STREAM_END:
1263  case Ci.sbIMediacoreEvent.STREAM_STOP:
1264  AlbumArt.onStop();
1265  break;
1266 
1267  case Ci.sbIMediacoreEvent.TRACK_CHANGE:
1268  AlbumArt.onBeforeTrackChange(aEvent.data);
1269  break;
1270  }
1271  },
1275  onStop: function AlbumArt_onStop() {
1276  // Basicly clear the now playing image
1277  AlbumArt.changeNowPlaying(null);
1278  },
1283  onBeforeTrackChange: function AlbumArt_onBeforeTrackChange(aItem) {
1284  var newImageURL = aItem.getProperty(SBProperties.primaryImageURL);
1285  AlbumArt.changeNowPlaying(newImageURL);
1286  },
1290  onTrackIndexChange: function AlbumArt_onTrackIndexChange(aItem, aView, aIndex) { },
1294  onBeforeViewChange: function AlbumArt_onBeforeViewChange(aView) { },
1298  onViewChange: function AlbumArt_onViewChange(aView) { },
1302  onTrackChange: function AlbumArt_onTrackChange(aItem, aView, aIndex) { },
1303 
1304  /*********************************
1305  * nsISupports
1306  ********************************/
1307  QueryInterface: XPCOMUtils.generateQI([Ci.sbIMediacoreEventListener,
1308  Ci.sbIMediaListViewSelectionListener])
1309 };
1310 
1311 // We need to use DOMContentLoaded instead of load here because of the
1312 // Mozilla Bug #420815
1313 window.addEventListener("DOMContentLoaded", AlbumArt.onLoad, false);
1314 window.addEventListener("unload", AlbumArt.onUnload, false);
const Cu
const Cc
function SBFilteredEnumerator(aEnumerator, aFilterFunc)
Definition: SBUtils.jsm:163
function onDisplayPaneMenuPopup(command, menupopup, doc)
Definition: albumArtPane.js:67
var Application
Definition: sbAboutDRM.js:37
function doc() browser.contentDocument
dndDefaultHandler_module onDragOver
const PREF_STATE
Definition: albumArtPane.js:57
sbOSDControlService prototype QueryInterface
const STATE_PLAYING
Definition: albumArtPane.js:54
var ioService
const DISPLAY_PANE_CONTENTURL
Definition: albumArtPane.js:45
function SBString(aKey, aDefault, aStringBundle)
Definition: StringUtils.jsm:93
function width(ele) rect(ele).width
let window
function onStop(ch, cx, status, data)
const STATE_SELECTED
Definition: albumArtPane.js:53
var AlbumArt
Definition: albumArtPane.js:86
Lastfm onLoad
Definition: mini.js:36
var _this
aWindow setTimeout(function(){_this.restoreHistory(aWindow, aTabs, aTabData, aIdMap);}, 0)
var createDataRemote
return null
Definition: FeedWriter.js:1143
var sbMetadataUtils
const DROP_TARGET_IMAGE
Definition: albumArtPane.js:49
function check(ch, cx)
_updateDatepicker height
function newURI(aURLString)
return!aWindow arguments!aWindow arguments[0]
var uri
Definition: FeedWriter.js:1135
countRef value
Definition: FeedWriter.js:1423
const Cr
let promptService
const DISPLAY_PANE_ICON
Definition: albumArtPane.js:46
const Ci
Javascript wrappers for common library tasks.
function onUnload()
onUnload - called when the cover preview window unloads.
Definition: coverPreview.js:36
var _browser
Array filter(tab.attributes, function(aAttr){return(_this.xulAttributes.indexOf(aAttr.name) >-1);}).forEach(tab.removeAttribute
_updateTextAndScrollDataForFrame aData
sbDeviceFirmwareAutoCheckForUpdate prototype observe
var stopped