main.js
Go to the documentation of this file.
1 // Make a namespace.
2 if (typeof ShoutcastRadio == 'undefined') {
3  var ShoutcastRadio = {};
4 }
5 
6 if (typeof Cc == 'undefined')
7  var Cc = Components.classes;
8 if (typeof Ci == 'undefined')
9  var Ci = Components.interfaces;
10 if (typeof Cu == 'undefined')
11  var Cu = Components.utils;
12 
13 Cu.import("resource://shoutcast-radio/Utils.jsm", ShoutcastRadio);
14 Cu.import("resource://app/jsmodules/SBDataRemoteUtils.jsm");
15 
16 if (typeof(gMM) == "undefined")
17  var gMM = Cc["@songbirdnest.com/Songbird/Mediacore/Manager;1"]
18  .getService(Ci.sbIMediacoreManager);
19 
20 #ifdef METRICS_ENABLED
21 if (typeof(gMetrics) == "undefined")
22  var gMetrics = Cc["@songbirdnest.com/Songbird/Metrics;1"]
23  .createInstance(Ci.sbIMetrics);
24 #endif
25 
26 if (typeof(FAVICON_PATH) == "undefined")
27  const FAVICON_PATH = "chrome://shoutcast-radio/skin/shoutcast_favicon.png";
28 
29 const shoutcastTempLibGuid = "extensions.shoutcast-radio.templib.guid";
30 
31 var mmListener = {
32  time : null,
33  playingTrack : null,
34  init: function() {
35  this._remoteShuffleDisabled =
36  SB_NewDataRemote( "playlist.shuffle.disabled", null );
37  this._remoteRepeatDisabled =
38  SB_NewDataRemote( "playlist.repeat.disabled", null );
39  this._remotePreviousDisabled =
40  SB_NewDataRemote( "playlist.previous.disabled", null );
41  this._remoteNextDisabled =
42  SB_NewDataRemote( "playlist.next.disabled", null );
43  },
44  deinit: function() {
45  if(this._remoteShuffleDisabled) {
46  this._remoteShuffleDisabled.unbind();
47  this._remoteShuffleDisabled = null;
48  }
49  if(this._remoteRepeatDisabled) {
50  this._remoteRepeatDisabled.unbind();
51  this._remoteRepeatDisabled = null;
52  }
53  if(this._remotePreviousDisabled) {
54  this._remotePreviousDisabled.unbind();
55  this._remotePreviousDisabled = null;
56  }
57  if(this._remoteNextDisabled) {
58  this._remoteNextDisabled.unbind();
59  this._remoteNextDisabled = null;
60  }
61  },
62  onMediacoreEvent : function(ev) {
63  var item = ev.data;
64  if (gMM.sequencer.view == null)
65  return;
66 
67  switch (ev.type) {
68  case Ci.sbIMediacoreEvent.STREAM_START:
69  // first we'll get the currently playing media item
70  var currentItem = gMM.sequencer.view.getItemByIndex(
71  gMM.sequencer.viewPosition);
72 
73  // check to see if we have an active timer
74  if (mmListener.time) {
75  var now = Date.now()/1000;
76  var diff = now - mmListener.time;
77 #ifdef METRICS_ENABLED
78  gMetrics.metricsAdd("shoutcast", "stream", "time", diff);
79 #endif
80  }
81 
82  // if our new stream we're playing isn't a shoutcast
83  // stream then cancel the timer
84  if (!currentItem.getProperty(SC_id)) {
85  mmListener.time = null;
86  mmListener.setPlayerState(false);
87  mmListener.playingTrack = null;
88  return;
89  }
90  // Ensure the playing buttons and SHOUTcast faceplate
91  // icon are in the right state
92  mmListener.playingTrack = item;
93  mmListener.setDataRemotes();
94  mmListener.setPlayerState(true);
95 
96  // if we're here then we're a shoutcast stream, and we should
97  // start a timer
98  mmListener.time = Date.now()/1000;
99  break;
100  case Ci.sbIMediacoreEvent.BEFORE_TRACK_CHANGE:
101  mmListener.setPlayerState(false);
102  break;
103  case Ci.sbIMediacoreEvent.STREAM_END:
104  case Ci.sbIMediacoreEvent.STREAM_STOP:
105  mmListener.setPlayerState(false);
106  mmListener.playingTrack = null;
107 
108  // check to see if we have an active timer
109  if (!mmListener.time) {
110  mmListener.time = null;
111  return;
112  }
113  var now = Date.now()/1000;
114  var diff = now - mmListener.time;
115 #ifdef METRICS_ENABLED
116  gMetrics.metricsAdd("shoutcast", "stream", "time", diff);
117 #endif
118  mmListener.time = null;
119  break;
120  case Ci.sbIMediacoreEvent.METADATA_CHANGE:
121  var currentItem = gMM.sequencer.currentItem;
122  if (currentItem.getProperty(SC_id) == -1 &&
123  currentItem.getProperty(SBProperties.bitRate) == null)
124  {
125  dump("Manually added stream!\n");
126  var props = ev.data;
127  for (var i=0; i<props.length; i++) {
128  var prop = props.getPropertyAt(i);
129  dump(prop.id + " == " + prop.value + "\n");
130  if (prop.id == SBProperties.bitRate) {
131  dump("bitrate!!!!!!!\n");
132  var libraryManager =
133  Cc['@songbirdnest.com/Songbird/library/Manager;1'].getService(Ci.sbILibraryManager);
134  var libGuid = Application.prefs.get(shoutcastTempLibGuid);
135  var l = libraryManager.getLibrary(libGuid.value);
136  var a = l.getItemsByProperty(
137  SBProperties.customType,
138  "radio_favouritesList");
139  var faves = a.queryElementAt(0, Ci.sbIMediaList);
140 
141  var item = faves.getItemByGuid(
142  currentItem.getProperty(
143  SBProperties.outerGUID));
144  dump("item: " + item.guid + "\n");
145  dump("outer; " + currentItem.getProperty(SBProperties.outerGUID));
146  item.setProperty(SBProperties.bitRate,
147  prop.value);
148  }
149  }
150  }
151  break;
152  default:
153  break;
154  }
155  },
156 
157  setPlayerState: function(scStream) {
158  var stationIcon = document.getElementById("shoutcast-station-icon");
159 
160  if (scStream) {
161  stationIcon.style.visibility = "visible";
162  } else {
163  stationIcon.style.visibility = "collapse";
164  }
165  },
166 
167  setDataRemotes: function() {
168  this._remoteShuffleDisabled.boolValue = true;
169 
170  this._remoteRepeatDisabled.boolValue = true;
171 
172  this._remotePreviousDisabled.boolValue = true;
173 
174  this._remoteNextDisabled.boolValue = true;
175  }
176 }
177 
181 ShoutcastRadio.Controller = {
182  SB_NS: "http://songbirdnest.com/data/1.0#",
183  SP_NS: "http://songbirdnest.com/rdf/servicepane#",
184 
185  onLoad: function() {
186  // initialization code
187  this._initialized = true;
188  this._strings = document.getElementById("shoutcast-radio-strings");
189 
190  // Create a service pane node for our chrome
191  var SPS = Cc['@songbirdnest.com/servicepane/service;1'].
192  getService(Ci.sbIServicePaneService);
193 
194  // Check whether the node already exists
195  if (SPS.getNode("SB:RadioStations:SHOUTcast"))
196  return;
197 
198  // Walk nodes to see if a "Radio" folder already exists
199  var radioFolder = SPS.getNode("SB:RadioStations");
200  if (!radioFolder) {
201  radioFolder = SPS.createNode();
202  radioFolder.id = "SB:RadioStations";
203  radioFolder.className = "folder radio";
204  radioFolder.name = this._strings.getString("radioFolderLabel");
205  radioFolder.setAttributeNS(this.SB_NS, "radioFolder", 1); // for backward-compat
206  radioFolder.setAttributeNS(this.SP_NS, "Weight", 2);
207  SPS.root.appendChild(radioFolder);
208  }
209  radioFolder.editable = false;
210  radioFolder.hidden = false;
211 
212  // Add SHOUTcast chrome to service pane
213  var node = SPS.createNode();
214  node.url = "chrome://shoutcast-radio/content/directory.xul";
215  node.id = "SB:RadioStations:SHOUTcast";
216  node.name = "SHOUTcast";
217  node.image = FAVICON_PATH;
218  radioFolder.appendChild(node);
219  node.editable = false;
220  node.hidden = false;
221 
222  // Add favorites node if necessary
223  ShoutcastRadio.Utils.ensureFavouritesNode();
224 
225  // Attach our listener for media core events
226  mmListener.init();
227  gMM.addListener(mmListener);
228 
229  // Attach our listener to the ShowCurrentTrack event issued by the
230  // faceplate
231  var faceplateManager = Cc['@songbirdnest.com/faceplate/manager;1']
232  .getService(Ci.sbIFaceplateManager);
233  var pane = faceplateManager.getPane("songbird-dashboard");
234  var sbWindow = Cc["@mozilla.org/appshell/window-mediator;1"]
235  .getService(Ci.nsIWindowMediator)
236  .getMostRecentWindow("Songbird:Main").window;
237  sbWindow.addEventListener("ShowCurrentTrack", curTrackListener, true);
238 
239  // Create our properties if they don't exist
240  var pMgr = Cc["@songbirdnest.com/Songbird/Properties/PropertyManager;1"]
241  .getService(Ci.sbIPropertyManager);
242  if (!pMgr.hasProperty(SC_streamName)) {
243  var pI = Cc["@songbirdnest.com/Songbird/Properties/Info/Text;1"]
244  .createInstance(Ci.sbITextPropertyInfo);
245  pI.id = SC_streamName;
246  pI.displayName = this._strings.getString("streamName");
247  pI.userEditable = false;
248  pI.userViewable = false;
249  pMgr.addPropertyInfo(pI);
250  }
251  if (!pMgr.hasProperty(SC_bitRate)) {
252  var pI = Cc["@songbirdnest.com/Songbird/Properties/Info/Number;1"]
253  .createInstance(Ci.sbINumberPropertyInfo);
254  pI.id = SC_bitRate;
255  pI.displayName = this._strings.getString("bitRate");
256  pI.userEditable = false;
257  pI.userViewable = false;
258  pMgr.addPropertyInfo(pI);
259  }
260  if (!pMgr.hasProperty(SC_comment)) {
261  var pI = Cc["@songbirdnest.com/Songbird/Properties/Info/Text;1"]
262  .createInstance(Ci.sbITextPropertyInfo);
263  pI.id = SC_comment;
264  pI.displayName = this._strings.getString("comment");
265  pI.userEditable = false;
266  pI.userViewable = false;
267  pMgr.addPropertyInfo(pI);
268  }
269  if (!pMgr.hasProperty(SC_listenerCount)) {
270  var pI = Cc["@songbirdnest.com/Songbird/Properties/Info/Number;1"]
271  .createInstance(Ci.sbINumberPropertyInfo);
272  pI.id = SC_listenerCount;
273  pI.displayName = this._strings.getString("listenerCount");
274  pI.userEditable = false;
275  pI.userViewable = false;
276  pMgr.addPropertyInfo(pI);
277  }
278  if (!pMgr.hasProperty(SC_bookmark)) {
279  var builder = Cc[
280  "@songbirdnest.com/Songbird/Properties/Builder/Image;1"]
281  .createInstance(Ci.sbIImagePropertyBuilder);
282  builder.propertyID = SC_bookmark;
283  builder.displayName = this._strings.getString("bookmark");
284  builder.userEditable = false;
285  builder.userViewable = false;
286  var pI = builder.get();
287  pMgr.addPropertyInfo(pI);
288  }
289  if (!pMgr.hasProperty(SC_id)) {
290  var pI = Cc["@songbirdnest.com/Songbird/Properties/Info/Number;1"]
291  .createInstance(Ci.sbINumberPropertyInfo);
292  pI.id = SC_id;
293  pI.displayName = "StreamID"; // shouldn't ever be user-visible
294  pI.userEditable = false;
295  pI.userViewable = false;
296  pMgr.addPropertyInfo(pI);
297  }
298 
299  // Register our observer for application shutdown
300  shoutcastUninstallObserver.register();
301 
302  // Bind our dataremote for track title change
303  /*
304  var SB_NewDataRemote = Components.Constructor(
305  "@songbirdnest.com/Songbird/DataRemote;1", Ci.sbIDataRemote,
306  "init");
307  ShoutcastRadio.Controller.titleDr =
308  SB_NewDataRemote("metadata.title", null);
309  ShoutcastRadio.Controller.titleDr.bindObserver(
310  ShoutcastRadio.Controller, true);
311  */
312  ShoutcastRadio.Controller._prefBranch =
313  Cc["@mozilla.org/preferences-service;1"]
314  .getService(Ci.nsIPrefService).getBranch("songbird.metadata.")
315  .QueryInterface(Ci.nsIPrefBranch2);
316  ShoutcastRadio.Controller._prefBranch.addObserver("title",
317  ShoutcastRadio.Controller.metadataObserver, false);
318 
319  // Reset the filter at startup
320  Application.prefs.setValue("extensions.shoutcast-radio.filter", "");
321  },
322 
323  onUnLoad: function() {
324  this._initialized = false;
325  gMM.removeListener(mmListener);
326  mmListener.deinit();
327  //ShoutcastRadio.Controller.titleDr.unbind();
328 
329  var sbWindow = Cc["@mozilla.org/appshell/window-mediator;1"]
330  .getService(Ci.nsIWindowMediator)
331  .getMostRecentWindow("Songbird:Main").window;
332  if (sbWindow) {
333  sbWindow.removeEventListener("ShowCurrentTrack", curTrackListener, true);
334  }
335  }
336 }
337 
338 ShoutcastRadio.Controller.metadataObserver = {
339  observe: function(subject, topic, data) {
340  var item;
341  try {
342  item = gMM.sequencer.currentItem;
343  } catch (e) {
344  return;
345  }
346 
347  if (subject instanceof Ci.nsIPrefBranch) {
348  if (data == "title" && item && item.getProperty(SC_streamName)) {
349  if (!Application.prefs.getValue(
350  "extensions.shoutcast-radio.title-parsing", true))
351  return;
352 
353  var title = subject.getCharPref(data);
354  if (title.indexOf(item.getProperty(SC_streamName)) >= 0) {
355  return;
356  }
357  var m = title.match(/^(.+) - ([^-]+)$/);
358  if (m) {
359  ShoutcastRadio.Controller.ts = Date.now();
360  item.setProperty(SBProperties.artistName, m[1]);
361  item.setProperty(SBProperties.trackName, m[2]);
362 
363  var ev = gMM.createEvent(Ci.sbIMediacoreEvent.TRACK_CHANGE,
364  gMM.primaryCore, item);
365  gMM.QueryInterface(Ci.sbIMediacoreEventTarget)
366  .dispatchEvent(ev);
367  }
368  }
369  }
370  }
371 };
372 
373 var curTrackListener = function(e) {
374  var list;
375  var gPPS;
376  if (typeof(Ci.sbIMediacoreManager) != "undefined") {
377  list = gMM.sequencer.view.mediaList;
378  } else {
379  gPPS = Cc['@songbirdnest.com/Songbird/PlaylistPlayback;1']
380  .getService(Ci.sbIPlaylistPlayback);
381  list = gPPS.playingView.mediaList;
382  }
383 
384  // get the list that owns this guid
385  if (list.getProperty(SBProperties.customType) == "radio_tempStreamList") {
386  var streamName;
387  if (typeof(Ci.sbIMediacoreManager) != "undefined") {
388  streamName = gMM.sequencer.view.getItemByIndex(
389  gMM.sequencer.viewPosition).getProperty(SC_streamName);
390  } else {
391  streamName = list.getItemByGuid(gPPS.currentGUID)
392  .getProperty(SC_streamName);
393  }
394 
395  // check to see if this tab is already loaded
396  var tabs = gBrowser.mTabs;
397  var found = -1;
398  var loadURL = "http://shoutcast.com/directory/?s=" + escape(streamName);
399  for (var i=0; i<tabs.length; i++) {
400  var curBrowser = gBrowser.getBrowserAtIndex(i);
401  var loadingURI = curBrowser.userTypedValue;
402  var compValue;
403  if (loadingURI != null)
404  compValue = loadingURI;
405  else
406  compValue = curBrowser.currentURI.spec;
407  if (compValue == loadURL) {
408  found = i;
409  break;
410  }
411  }
412  if (found != -1) {
413  // a tab already exists, so select it
414  gBrowser.selectedTab = tabs[found];
415  } else {
416  // otherwise load a new tab
417  gBrowser.loadOneTab(loadURL);
418  }
419 
420  // prevent the event from bubbling upwards
421  e.preventDefault();
422  }
423 }
424 
425 var shoutcastUninstallObserver = {
426  _uninstall : false,
427  _disable : false,
428  _tabs : null,
429 
430  observe : function(subject, topic, data) {
431  if (topic == "em-action-requested") {
432  // Extension has been flagged to be uninstalled
433  subject.QueryInterface(Ci.nsIUpdateItem);
434 
435  if (subject.id == "shoutcast-radio@getnightingale.com") {
436  if (data == "item-uninstalled") {
437  this._uninstall = true;
438  } else if (data == "item-cancel-action") {
439  this._uninstall = false;
440  }
441  }
442  } else if (topic == "quit-application-granted") {
443  // We're shutting down, so check to see if we were flagged
444  // for uninstall - if we were, then cleanup here
445  if (this._uninstall) {
446  var tempLibGuid;
447  var radioLibGuid;
448  var prefs = Cc["@mozilla.org/preferences-service;1"]
449  .getService(Components.interfaces.nsIPrefService);
450  var scPrefs = prefs.getBranch("extensions.shoutcast-radio.");
451 
452  // Things to cleanup:
453  // Remove preferences
454  if (scPrefs.prefHasUserValue("plsinit"))
455  scPrefs.clearUserPref("plsinit");
456  if (scPrefs.prefHasUserValue("filter"))
457  scPrefs.clearUserPref("filter");
458  if (scPrefs.prefHasUserValue("custom-genres"))
459  scPrefs.clearUserPref("custom-genres");
460  if (scPrefs.prefHasUserValue("library.guid")) {
461  radioLibGuid = scPrefs.getCharPref("library.guid");
462  scPrefs.clearUserPref("library.guid");
463  }
464  if (scPrefs.prefHasUserValue("templib.guid")) {
465  tempLibGuid = scPrefs.getCharPref("templib.guid");
466  scPrefs.clearUserPref("templib.guid");
467  }
468  scPrefs.deleteBranch("");
469 
470  // Unregister radioLib & favourites libraries
471  try {
472  var libMgr = Cc['@songbirdnest.com/Songbird/library/Manager;1']
473  .getService(Ci.sbILibraryManager);
474  var radioLib = libMgr.getLibrary(radioLibGuid);
475  var tempLib = libMgr.getLibrary(tempLibGuid);
476  radioLib.clear();
477  tempLib.clear();
478  libMgr.unregisterLibrary(radioLib);
479  libMgr.unregisterLibrary(tempLib);
480  dump("unregistered Shoutcast libraries\n");
481  } catch (e) {
482  // silently ignore exceptions
483  }
484  }
485  this.unregister();
486  }
487  },
488 
489  register : function() {
490  var observerService = Cc["@mozilla.org/observer-service;1"]
491  .getService(Ci.nsIObserverService);
492  observerService.addObserver(this, "em-action-requested", false);
493  observerService.addObserver(this, "quit-application-granted", false);
494  },
495 
496  unregister : function() {
497  var observerService = Cc["@mozilla.org/observer-service;1"]
498  .getService(Ci.nsIObserverService);
499  observerService.removeObserver(this, "em-action-requested");
500  observerService.removeObserver(this, "quit-application-granted");
501  }
502 }
503 
504 window.addEventListener("load",
505  function(e) { ShoutcastRadio.Controller.onLoad(e); }, false);
506 window.addEventListener("unload",
507  function(e) { ShoutcastRadio.Controller.onUnLoad(e); }, false);
const Cu
const Cc
var gMM
Definition: windowUtils.js:62
static nsCOMPtr< nsIObserverService > observerService
Definition: UnityProxy.cpp:6
var Application
Definition: sbAboutDRM.js:37
var mmListener
Definition: main.js:31
var faceplateManager
FaceplateManager test file.
const SC_bitRate
const SC_listenerCount
const SC_bookmark
getService(Ci.sbIFaceplateManager)
let window
const SB_NewDataRemote
const shoutcastTempLibGuid
Definition: main.js:29
_window init
Definition: FeedWriter.js:1144
var tabs
Lastfm onLoad
Definition: mini.js:36
var libraryManager
const SB_NS
return null
Definition: FeedWriter.js:1143
let node
const SC_id
var prefs
Definition: FeedWriter.js:1169
const SC_comment
observe topic
Definition: FeedWriter.js:1326
const Ci
function now()
observe data
Definition: FeedWriter.js:1329
_getSelectedPageStyle s i
const SC_streamName
var curTrackListener
Definition: main.js:373
sbDeviceFirmwareAutoCheckForUpdate prototype observe