0

我一直在阅读和修改https://developer.mozilla.org/en/XUL_School/Intercepting_Page_Loads但似乎可以满足我的需要。

我正在研究Chromeless,试图防止主 xulbrowser 元素被导航离开,例如,链接不应该工作,也不应该工作window.location.href="http://www.example.com/"

我假设我可以通过browser.webProgress.addProgressListener然后收听来做到这一点,onProgressChange但我无法弄清楚如何区分资源请求和browser不断变化的位置(似乎onLocationChange为时已晚,因为文档已经被卸载)。

browser.webProgress.addProgressListener({
    onLocationChange: function(){},
    onStatusChange: function(){},
    onStateChange: function(){},
    onSecurityChange: function(){},
    onProgressChange: function(){
        aRequest.QueryInterface(Components.interfaces.nsIHttpChannel)
        if( /* need to check if the object triggering the event is the xulbrowser */ ){
            aRequest.cancel(Components.results.NS_BINDING_ABORTED);
        }
    },
    QueryInterface: xpcom.utils.generateQI([Ci.nsIWebProgressListener, Ci.nsISupportsWeakReference])
}, wo._browser.webProgress.NOTIFY_ALL);

另一个听起来很有希望的选项是nsIContentPolicy.shouldLoad()方法,但我真的不知道如何“创建一个扩展 nsIContentPolicy 的 XPCOM 组件并使用 nsICategoryManager 将其注册到“内容策略”类别。”

有任何想法吗?

4

1 回答 1

0

我从 mozilla 的 #xulrunner irc 频道获得了帮助。

得到的解决方案如下。

注意:这是一个用于 Mozilla Chromeless 的模块,在正常情况下,require("chrome")require("xpcom")位将不可用。

const {Cc, Ci, Cu, Cm, Cr} = require("chrome");

const xpcom = require("xpcom");

/***********************************************************
class definition
***********************************************************/

var description = "Chromeless Policy XPCOM Component";
/* UID generated by http://www.famkruithof.net/uuid/uuidgen */
var classID = Components.ID("{2e946f14-72d5-42f3-95b7-4907c676cf2b}");
// I just made this up. Don't know if I'm supposed to do that.
var contractID = "@mozilla.org/chromeless-policy;1";

//class constructor
function ChromelessPolicy() {
    //this.wrappedJSObject = this;
}

// class definition
var ChromelessPolicy = {

  // properties required for XPCOM registration:
  classDescription: description,
  classID:          classID,
  contractID:       contractID,
  xpcom_categories: ["content-policy"],

  // QueryInterface implementation
  QueryInterface: xpcom.utils.generateQI([Ci.nsIContentPolicy,
    Ci.nsIFactory, Ci.nsISupportsWeakReference]),

  // ...component implementation...
  shouldLoad : function(aContentType, aContentLocation, aRequestOrigin, aContext, aMimeTypeGuess, aExtra) {
    let result = Ci.nsIContentPolicy.ACCEPT;
    // only filter DOCUMENTs (not SUB_DOCUMENTs, like iframes)
    if( aContentType === Ci.nsIContentPolicy["TYPE_DOCUMENT"]
        // block http(s) protocols...
        && /^http(s):/.test(aContentLocation.spec) ){
        // make sure we deny the request now
        result = Ci.nsIContentPolicy.REJECT_REQUEST;
    }
    // continue loading...
    return result;
  },
  createInstance: function(outer, iid) {
    if (outer)
        throw Cr.NS_ERROR_NO_AGGREGATION;
    return this.QueryInterface(iid);
  }
};

let registrar = Cm.QueryInterface(Ci.nsIComponentRegistrar);
try
{
    Cm.nsIComponentRegistrar.registerFactory(classID, description, contractID, ChromelessPolicy);
}
catch (e) {
    // Don't stop on errors - the factory might already be registered
    Cu.reportError(e);
}

const categoryManager = Cc["@mozilla.org/categorymanager;1"].getService(Ci.nsICategoryManager);
for each (let category in ChromelessPolicy.xpcom_categories) {
    categoryManager.addCategoryEntry(category, ChromelessPolicy.classDescription, ChromelessPolicy.contractID, false, true);
}

对那些感兴趣的人在 github 上提出拉取请求:https ://github.com/mozilla/chromeless/pull/114

于 2011-05-27T21:21:43.267 回答