This file is indexed.

/usr/share/xul-ext/lightbeam/data/ui.js is in xul-ext-lightbeam 1.3.1+dfsg-1ubuntu1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
/* 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/. */
(function (global) {

// Bunch of utilities related to UI elements.
const graphNodeRadius = {
  "graph": 12
};

var g = global;
global.graphNodeRadius = graphNodeRadius;

/* Convert a NodeList to Array */
global.toArray = function toArray(nl) {
  return Array.prototype.slice.call(nl, 0);
};

/**************************************************
 *   For accessibility:
 *       if the current focused element is an anchor, press Enter will mimic mouse click on that element
 */
document.addEventListener("keypress", function (event) {
  var focusedElm = document.activeElement;
  if (event.keyCode == "13" && focusedElm.mozMatchesSelector("a") && !focusedElm.getAttribute("href")) {
    focusedElm.click();
  }
});

/* Lightbeam Logo Click handler ====================== */
document.querySelector(".main header").addEventListener("click", function () {
  location.reload();
});


/**************************************************
 *   Buttons
 */

function dropdownGroup(btnGroup, callback) {
  callback = callback || function () {};
  var allOptions = btnGroup.querySelectorAll(".dropdown_options a");
  toArray(allOptions).forEach(function (option) {
    option.addEventListener("click", function (e) {
      btnGroup.querySelector("[data-selected]").removeAttribute("data-selected");
      e.target.setAttribute("data-selected", true);
      callback(e.target.getAttribute("data-value"));
    });
  });
}

/* Bind click event listener to each of the btn_group memebers */
var btnGroupArray = toArray(document.querySelectorAll(".btn_group"));
btnGroupArray.forEach(function (btnGroup) {
  dropdownGroup(btnGroup, function (val) {
    val = val.toLowerCase();
    switch (val) {
    case 'graph':
    case 'list':
      switchVisualization(val);
      break;
    case 'recent':
    case 'last10sites':
    case 'daily':
    case 'weekly':
      aggregate.switchFilter(val);
      document.querySelector(".filter-display header").textContent = btnGroup.querySelector("[data-selected]").textContent;
      break;
    default:
      console.log("selected val=" + val);
    }
  });
});

document.querySelector(".toggle-btn.tracking-btn").addEventListener("click",
  function (event) {
    var elmClicked = event.target;
    if (elmClicked.mozMatchesSelector("input")) {
      var toggleBtn = document.querySelector(".tracking-btn");
      if (elmClicked.checked) {
        confirmTrackingProtectionDialog(function (confirmed) {
          if (confirmed) {
            elmClicked.checked = true;
            toggleBtnOnEffect(toggleBtn);
            global.self.port.emit("browserPrefChanged", {
              "trackingProtection": true
            });
          } else {
            elmClicked.checked = false;
          }
        });
      } else {
        elmClicked.checked = false;
        toggleBtnOffEffect(toggleBtn);
        global.self.port.emit("browserPrefChanged", {
          "trackingProtection": false
        });
      }
    }
  });

function toggleBtnOnEffect(toggleBtn) {
  toggleBtn.querySelector(".toggle-btn-innner").classList.add("checked");
  toggleBtn.querySelector(".switch").classList.add("checked");
  toggleBtn.querySelector(".on-off-text").classList.add("checked");
  toggleBtn.querySelector(".on-off-text").textContent = "ON";
}

function toggleBtnOffEffect(toggleBtn) {
  toggleBtn.querySelector(".toggle-btn-innner").classList.remove("checked");
  toggleBtn.querySelector(".switch").classList.remove("checked");
  toggleBtn.querySelector(".on-off-text").classList.remove("checked");
  toggleBtn.querySelector(".on-off-text").textContent = "OFF";
}

function downloadAsJson(data, defaultFilename) {
  var file = new Blob([data], {
    type: 'application/json'
  });
  var reader = new FileReader();
  var a = document.createElement('a');
  reader.onloadend = function () {
    a.href = reader.result;
    a.download = defaultFilename;
    a.target = '_blank';
    document.body.appendChild(a);
    a.click();
  };
  reader.readAsDataURL(file);
}


document.querySelector(".download").addEventListener('click', function (evt) {
  // console.log('received export data');
  downloadAsJson([JSON.stringify(allConnections)], 'lightbeamData.json');
  evt.preventDefault();
  // window.open('data:application/json,' + exportFormat(allConnections));
});



document.querySelector('.reset-data').addEventListener('click', function () {
  confirmResetDataDialog(function (confirmed) {
    if (confirmed) {
      // currentVisualization.emit('remove');
      allConnections = [];
      global.self.port.emit('reset');
      aggregate.emit('reset');
      // WARNING: this is a race condition. Since the event emitters are
      // async, we were running into the situation where the page was reloaded
      // before aggregate::resetData was finished, resulting in #506
      //
      // TODO: using a short timeout for now, would be better to use a Promise
      setTimeout(500, function () { location.reload(); /* reload page */ });
    }
  });
});

global.getZoom = function getZoom(canvas) {
  try {
    var box = canvas.getAttribute('viewBox')
      .split(/\s/)
      .map(function (i) {
        return parseInt(i, 10);
      });
    return {
      x: box[0],
      y: box[1],
      w: box[2],
      h: box[3]
    };
  } catch (e) {
    console.log('error in getZoom, called with %o instead of an element');
    console.log('Caller: %o', caller);
    return null;
  }
};

global.setZoom = function setZoom(box, canvas) {
  // TODO: code cleanup if both cases use basically the same code
  canvas.setAttribute('viewBox', [box.x, box.y, box.w, box.h].join(' '));
};


/* Scroll over visualization to zoom in/out ========================= */

/* define viewBox limits
 *  graph view default viewBox = " 0 0 750 750 "
 *  map                        = " 0 0 2711.3 1196.7 "
 */
const graphZoomInLimit = {
  w: 250,
  h: 250
};
const graphZoomOutLimit = {
  w: 4000,
  h: 4000
};
const mapZoomInLimit = {
  w: (2711.3 / 5),
  h: (1196.7 / 5)
};
const mapZoomOutLimit = {
  w: 2711.3,
  h: 1196.7
};
const svgZoomingRatio = 1.1;

document.querySelector(".stage").addEventListener("wheel", function (event) {
  if (event.target.mozMatchesSelector(".vizcanvas, .vizcanvas *") && g.currentVisualization.name != "list") {
    if (g.currentVisualization.name == "graph") {
      zoomWithinLimit(event.deltaY, vizcanvas, graphZoomInLimit, graphZoomOutLimit);
    }
  }
}, false);


// check to see if the viewBox of the targeting svg is within the limit we define
function checkWithinZoomLimit(targetSvg, zoomType, zoomLimit) {
  var currentViewBox = getZoom(targetSvg);
  if (zoomType == "in") {
    var withinZoomInLimit = (currentViewBox.w > zoomLimit.w && currentViewBox.h > zoomLimit.h);
    if (zoomLimit.x && zoomLimit.y) {
      withinZoomInLimit =
        withinZoomInLimit && (currentViewBox.x < zoomLimit.x && currentViewBox.y < zoomLimit.y);
    }
    return withinZoomInLimit;
  } else {
    var withinZoomOutLimit = (currentViewBox.w <= zoomLimit.w && currentViewBox.h <= zoomLimit.h);
    return withinZoomOutLimit;
  }
}

// Check to see if the viewBox of the targeting svg is within the limit we define
// if yes, zoom
function zoomWithinLimit(scrollDist, targetSvg, zoomInLimit, zoomOutLimit) {
  var i;
  if (scrollDist >= 1) { // scroll up to zoom out
    for (i = 1; i <= scrollDist; i++) {
      if (checkWithinZoomLimit(targetSvg, "out", zoomOutLimit)) {
        svgZooming(targetSvg, (1 / svgZoomingRatio));
      }
    }
  }
  if (scrollDist <= -1) { // scroll down to zoom in
    for (i = scrollDist; i <= -1; i++) {
      if (checkWithinZoomLimit(targetSvg, "in", zoomInLimit)) {
        svgZooming(targetSvg, svgZoomingRatio);
      }
    }
  }
}

// Apply zoom level
function svgZooming(target, ratio) {
  var box = getZoom(target);
  var newViewBox = generateNewViewBox(target, box, ratio);
  setZoom(newViewBox, target);
}

function generateNewViewBox(target, box, ratio) {
  var oldWidth = box.w;
  var newWidth = oldWidth / ratio;
  var offsetX = (newWidth - oldWidth) / 2;

  var oldHeight = box.h;
  var newHeight = oldHeight / ratio;
  var offsetY = (newHeight - oldHeight) / 2;

  box.w = box.w / ratio;
  box.h = box.h / ratio;
  box.x = box.x - offsetX;
  box.y = box.y - offsetY;

  return box;
}




/* Pan by dragging ======================================== */

var onDragGraph = false;
var graphDragStart = {};

/* vizcanvas */
document.querySelector(".stage").addEventListener("mousedown", function (event) {
  if (event.target.mozMatchesSelector(".vizcanvas, .vizcanvas *") && !event.target.mozMatchesSelector(".node, .node *")) {
    onDragGraph = true;
    graphDragStart.x = event.clientX;
    graphDragStart.y = event.clientY;
  }

}, false);

document.querySelector(".stage").addEventListener("mousemove", function (event) {
  if (event.target.mozMatchesSelector(".vizcanvas") && !event.target.mozMatchesSelector(".node, .node *") && onDragGraph) {
    vizcanvas.style.cursor = "-moz-grab";
    var offsetX = (Math.ceil(event.clientX) - graphDragStart.x);
    var offsetY = (Math.ceil(event.clientY) - graphDragStart.y);
    var box = getZoom(vizcanvas);
    box.x -= (offsetX * box.w / 700);
    box.y -= (offsetY * box.h / 700);
    graphDragStart.x += offsetX;
    graphDragStart.y += offsetY;
    setZoom(box, vizcanvas);
  }

}, false);

document.querySelector(".stage").addEventListener("mouseup", function (event) {
  onDragGraph = false;
  vizcanvas.style.cursor = "default";
}, false);

document.querySelector(".stage").addEventListener("mouseleave", function (event) {
  onDragGraph = false;
  vizcanvas.style.cursor = "default";
}, false);


/* Legend & Controls ===================================== */

global.toggleLegendSection = function toggleLegendSection(eventTarget, legendElm) {
  var elmToToggle = legendElm.querySelector(".legend-controls");
  if (elmToToggle.classList.contains("hidden")) {
    elmToToggle.classList.remove("hidden");
    eventTarget.textContent = "Hide";
  } else {
    elmToToggle.classList.add("hidden");
    eventTarget.textContent = "Show";
  }
};

global.toggleVizElements = function toggleVizElements(elements, classToggle) {
  toArray(elements).forEach(function (elm) {
    elm.classList.toggle(classToggle);
  });
};



/* Glowing Effect for Graph/Clock & Highlighting Effect for List ============= */

global.selectedNodeEffect = function selectedNodeEffect(name) {
  if (g.currentVisualization.name == "graph") {
    resetAllGlow("all");
    addGlow(name, "selected");
  }
  if (g.currentVisualization.name == "list") {
    resetHighlightedRow();
  }
};

global.connectedNodeEffect = function connectedNodeEffect(name) {
  // console.log(name);
  if (g.currentVisualization.name != "list") {
    var glow = document.querySelector(".connected-glow");
    while (glow) {
      glow = document.querySelector(".connected-glow");
      glow.parentNode.removeChild(glow);
    }
    addGlow(name, "connected");
  } else {
    resetHighlightedRow();
    var row = document.querySelector(".list-table tr[data-name='" + name + "']");
    if (row) {
      row.classList.add("selected-connected-row");
    }
  }

};

// for Graph & Clock
global.addGlow = function addGlow(name, type) {
  type = (type == "selected") ? "selected-glow" : "connected-glow";
  var viz = g.currentVisualization.name;
  var gNodes = document.querySelectorAll(".node[data-name='" + name + "']");
  toArray(gNodes).forEach(function (gNode) {
    var glowProps = calculateGlowSize(gNode, viz);
    d3.select(gNode)
      .insert('circle', ":first-child")
      .attr('cx', glowProps.cx)
      .attr('cy', glowProps.cy)
      .attr('r', glowProps.radius)
      .attr("fill", "url(#" + type + ")")
      .classed(type, true);

  });
};

global.calculateGlowSize = function calculateGlowSize(gNode, viz) {
  var glowProps = {};
  var siteNode = gNode.childNodes[0];
  var shape = siteNode.nodeName.toLowerCase();
  var radius = graphNodeRadius[g.currentVisualization.name];
  if (viz == "graph") {
    if (shape == "polygon") radius *= 2.2;
    glowProps.radius = radius + 22;
  } else {
    glowProps.radius = radius * 4;
  }

  glowProps.cx = siteNode.getAttribute("cx") || 0;
  glowProps.cy = siteNode.getAttribute("cy") || 0;

  return glowProps;
};

// for Graph
global.resetAllGlow = function resetAllGlow(type) {
  var selectedGlow;
  var connectedGlow;
  if (type == "selected" || type == "all") {
    while (document.querySelector(".selected-glow")) {
      selectedGlow = document.querySelector(".selected-glow");
      selectedGlow.parentNode.removeChild(selectedGlow);
    }
  }
  if (type == "connected" || type == "all") {
    while (document.querySelector(".connected-glow")) {
      connectedGlow = document.querySelector(".connected-glow");
      connectedGlow.parentNode.removeChild(connectedGlow);
    }
  }
};

// for List
global.resetHighlightedRow = function resetHighlightedRow() {
  var preHighlighted = document.querySelector(".list-table .selected-connected-row");
  if (preHighlighted) {
    preHighlighted.classList.remove("selected-connected-row");
  }
};

/**************************************************
 *   Singular / Plural Noun
 */
global.singularOrPluralNoun = function singularOrPluralNoun(num, str) {
  if (typeof num != "number") {
    num = parseFloat(num);
  }
  return (num === 1) ? str : str + "s";
};

function updateUIFromMetadata(event) {
  if ("version" in event) {
    document.querySelector('#version-number').textContent = event.version;
  }

  if ("browserVersion" in event) {
    const firefoxVersionRe = /^([0-9]+)(\.([0-9]+))?/;
    var majorVersion = Number(firefoxVersionRe.exec(event.browserVersion)[1]);

    var section = document.querySelector('.tracking-section');
    if (majorVersion >= 35) {
      section.classList.remove("hidden");
    } else {
      section.classList.add("hidden");
    }
  }
}

function updateUIFromBrowserPrefs(event) {
  if ("trackingProtection" in event) {
    var toggleBtn = document.querySelector(".tracking-btn");
    if (event.trackingProtection) {
      toggleBtn.querySelector("input").checked = true;
      toggleBtnOnEffect(toggleBtn);
    } else {
      toggleBtn.querySelector("input").checked = false;
      toggleBtnOffEffect(toggleBtn);
    }
  }
}

function updateUIFromPrefs(event) {
  if ("defaultVisualization" in event) {
    global.currentVisualization = visualizations[event.defaultVisualization];
    if (global.currentVisualization) {
      console.debug("Got viz");
    } else {
      console.error("NO viz");
    }
  }

  if ("defaultFilter" in event) {
    aggregate.currentFilter = event.defaultFilter;
    document.querySelector('a[data-value=' + aggregate.currentFilter + ']')
      .dataset.selected = true;
    document.querySelector(".filter-display header").textContent =
      document.querySelector(".btn_group.session")
      .querySelector("[data-selected]").textContent;
  }
}

// Exports
global.updateUIFromMetadata = updateUIFromMetadata;
global.updateUIFromBrowserPrefs = updateUIFromBrowserPrefs;
global.updateUIFromPrefs = updateUIFromPrefs;
})(this);