HttpRequestHeaders.jsm 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101
  1. /*******************************************************************************
  2. ηMatrix - a browser extension to black/white list requests.
  3. Copyright (C) 2014-2019 The uMatrix/uBlock Origin authors
  4. Copyright (C) 2019 Alessio Vanni
  5. This program is free software: you can redistribute it and/or modify
  6. it under the terms of the GNU General Public License as published by
  7. the Free Software Foundation, either version 3 of the License, or
  8. (at your option) any later version.
  9. This program is distributed in the hope that it will be useful,
  10. but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  12. GNU General Public License for more details.
  13. You should have received a copy of the GNU General Public License
  14. along with this program. If not, see {http://www.gnu.org/licenses/}.
  15. Home: https://libregit.org/heckyel/ematrix
  16. uMatrix Home: https://github.com/gorhill/uMatrix
  17. */
  18. var EXPORTED_SYMBOLS = ['HTTPRequestHeaders'];
  19. var junkyard = [];
  20. var HTTPRequestHeaders = function (channel) {
  21. this.init(channel);
  22. };
  23. HTTPRequestHeaders.factory = function (channel) {
  24. let entry = junkyard.pop();
  25. if (entry) {
  26. return entry.init(channel);
  27. }
  28. return new HTTPRequestHeaders(channel);
  29. }
  30. HTTPRequestHeaders.prototype.init = function (channel) {
  31. this.channel = channel;
  32. this.headers = new Array();
  33. this.originalHeaderNames = new Array();
  34. channel.visitRequestHeaders({
  35. visitHeader: function (name, value) {
  36. this.headers.push({name: name, value: value});
  37. this.originalHeaderNames.push(name);
  38. }.bind(this)
  39. });
  40. return this;
  41. };
  42. HTTPRequestHeaders.prototype.dispose = function () {
  43. this.channel = null;
  44. this.headers = null;
  45. this.originalHeaderNames = null;
  46. junkyard.push(this);
  47. };
  48. HTTPRequestHeaders.prototype.update = function () {
  49. let newHeaderNames = new Set();
  50. for (let header of this.headers) {
  51. this.setHeader(header.name, header.value, true);
  52. newHeaderNames.add(header.name);
  53. }
  54. //Clear any headers that were removed
  55. for (let name of this.originalHeaderNames) {
  56. if (!newHeaderNames.has(name)) {
  57. this.channel.setRequestHeader(name, '', false);
  58. }
  59. }
  60. };
  61. HTTPRequestHeaders.prototype.getHeader = function (name) {
  62. try {
  63. return this.channel.getRequestHeader(name);
  64. } catch (e) {
  65. // Ignore
  66. }
  67. return '';
  68. };
  69. HTTPRequestHeaders.prototype.setHeader = function (name, newValue, create) {
  70. let oldValue = this.getHeader(name);
  71. if (newValue === oldValue) {
  72. return false;
  73. }
  74. if (oldValue === '' && create !== true) {
  75. return false;
  76. }
  77. this.channel.setRequestHeader(name, newValue, false);
  78. return true;
  79. };