फ़ायरफ़ॉक्स में http अनुरोध को किसने शुरू किया, इसकी पहचान कैसे करें?


105

मैं एक नया फ़ायरफ़ॉक्स एडऑन विकसित कर रहा हूं जो फ़ायरफ़ॉक्स के सभी नेटवर्क ट्रैफ़िक (http (s) अनुरोधों को रोक देता है http-on-modify-request)

अपने वर्तमान कोड के साथ, मैं वेब-पेज / टैब और अन्य सभी घटकों (RSS फ़ीड अपडेट, XPCOM घटकों से XHR अनुरोध, एक्सटेंशन, एक्सटेंशन मैनेजर, आदि) से आने वाले अनुरोधों को अलग करने में सक्षम हूं।

मैं यह जानना चाहूंगा कि पूरे समूह के साथ सटीक रूप से टैब के ट्रैफ़िक के अलावा अन्य अनुरोध कौन शुरू करता है? (RSS, XPCOM घटक, एक्सटेंशन, एक्सटेंशन मैनेजर, आदि)

उदाहरण: एक काल्पनिक कस्टम चर में requestRequestorएक विशिष्ट एडऑन या आरएसएस अपडेट आदि की पहचान करने के लिए एक मूल्य होगा।

मुझे यह समान प्रश्न मिला लेकिन बिना समाधान के।

पूरे समूह की पहचान करने के लिए वर्तमान कोड ( http- पर-संशोधित-अनुरोध अधिसूचना प्राप्त करने वाला ब्राउज़र प्राप्त करना ) है:

Components.utils.import('resource://gre/modules/Services.jsm');
Services.obs.addObserver(httpObs, 'http-on-modify-request', false);
//Services.obs.removeObserver(httpObs, 'http-on-modify-request'); //uncomment this line, or run this line when you want to remove the observer

var httpObs = {
    observe: function (aSubject, aTopic, aData) {
        if (aTopic == 'http-on-modify-request') {
            /*start - do not edit here*/
            var oHttp = aSubject.QueryInterface(Components.interfaces.nsIHttpChannel); //i used nsIHttpChannel but i guess you can use nsIChannel, im not sure why though
            var interfaceRequestor = oHttp.notificationCallbacks.QueryInterface(Components.interfaces.nsIInterfaceRequestor);
            //var DOMWindow = interfaceRequestor.getInterface(Components.interfaces.nsIDOMWindow); //not to be done anymore because: https://developer.mozilla.org/en-US/docs/Updating_extensions_for_Firefox_3.5#Getting_a_load_context_from_a_request //instead do the loadContext stuff below
            var loadContext;
            try {
                loadContext = interfaceRequestor.getInterface(Components.interfaces.nsILoadContext);
            } catch (ex) {
                try {
                    loadContext = aSubject.loadGroup.notificationCallbacks.getInterface(Components.interfaces.nsILoadContext);
                    //in ff26 aSubject.loadGroup.notificationCallbacks was null for me, i couldnt find a situation where it wasnt null, but whenever this was null, and i knew a loadContext is supposed to be there, i found that "interfaceRequestor.getInterface(Components.interfaces.nsILoadContext);" worked fine, so im thinking in ff26 it doesnt use aSubject.loadGroup.notificationCallbacks anymore, but im not sure
                } catch (ex2) {
                    loadContext = null;
                    //this is a problem i dont know why it would get here
                }
            }
            /*end do not edit here*/
            /*start - do all your edits below here*/
            var url = oHttp.URI.spec; //can get url without needing loadContext
            if (loadContext) {
                var contentWindow = loadContext.associatedWindow; //this is the HTML window of the page that just loaded
                //aDOMWindow this is the firefox window holding the tab
                var aDOMWindow = contentWindow.top.QueryInterface(Ci.nsIInterfaceRequestor).getInterface(Ci.nsIWebNavigation).QueryInterface(Ci.nsIDocShellTreeItem).rootTreeItem.QueryInterface(Ci.nsIInterfaceRequestor).getInterface(Ci.nsIDOMWindow);
                var gBrowser = aDOMWindow.gBrowser; //this is the gBrowser object of the firefox window this tab is in
                var aTab = gBrowser._getTabForContentWindow(contentWindow.top); //this is the clickable tab xul element, the one found in the tab strip of the firefox window, aTab.linkedBrowser is same as browser var above //can stylize tab like aTab.style.backgroundColor = 'blue'; //can stylize the tab like aTab.style.fontColor = 'red';
                var browser = aTab.linkedBrowser; //this is the browser within the tab //this is what the example in the previous section gives
                //end getting other useful stuff
            } else {
                Components.utils.reportError('EXCEPTION: Load Context Not Found!!');
                //this is likely no big deal as the channel proably has no associated window, ie: the channel was loading some resource. but if its an ajax call you may end up here
            }
        }
    }
};

9
वाह शानदार काम यहां, क्या आपने इस विषय को देखा: stackoverflow.com/questions/27483651/… इसका एक विषय जो आप में योगदान करने में सक्षम हो सकता है, मुझे बहुत दिलचस्पी है यह देखने के लिए कि आप अभी तक कैसे स्रोतों की पहचान कर रहे हैं।
Noitidart

2
आपके लिंक के लिए धन्यवाद भाई मैं फ़ायरफ़ॉक्स अनुरोधों आदि के बारे में अधिक जानकारी प्राप्त करता हूं, जितना अधिक मेरा एडोन बेहतर होगा, एक उन्नत सुरक्षा एडऑन पर काम करना, हालांकि आसान नहीं है, (यह सिर्फ एक शौक है एडन सार्वजनिक होगा;) मैं आपको बताऊंगा
जीथब

1
इसके अलावा यहां loadContextAndGoodiesमैंने जो फंक्शन लिखा है, जो कुछ सुधार का उपयोग कर सकता है, मैंने इसे थोड़ी देर पहले लिखा था, लेकिन कृपया संभव हो तो बढ़ाएं। gist.github.com/Noitidart/… आप ऊपर दिए गए अपने कोड में उस स्निपेट के पुराने संस्करण का उपयोग करते प्रतीत होते हैं, इसलिए इस स्निपेट के उपयोग से उस कोड को ऊपर से साफ़ कर दिया जाएगा, और स्निपेट में संभवतः कुछ एन्हांसमेंट हैं (मुझे नहीं पता कि मैंने तुलना नहीं की थी : पी)
Noitidart

2
हाँ, मैंने आपके कोड को अन्य प्रश्न में देखा है, बस इसे जोड़ा है और इसका परीक्षण कर रहा है;) यदि आवश्यक हो तो एक पुल अनुरोध पोस्ट करेगा;)
intika

2
पीआर के लिए धन्यवाद मैं अपने जनसंपर्क पर एक जनसंपर्क किया :) gist.github.com/Noitidart/644494bdc26f996739ef#comment-1483890
Noitidart

जवाबों:


1

जून 2020 तक, http अनुरोध अनुरोधकर्ता / पहचान को प्राप्त करने का कोई आधिकारिक तरीका / तरीका नहीं है।

वर्तमान में एकमात्र संभावना यह है कि प्रश्न के कोड पर क्या किया जाता है जो वेब-पेज / टैब और अन्य फ़ायरफ़ॉक्स के घटकों (फ़ीड अपडेट, एक्सटेंशन अनुरोध, एक्सएचआरसी घटकों से एक्सएचआर अनुरोध) से अनुरोधों को अलग कर रहा है।

जैसा कि टिप्पणियों पर उल्लेख किया गया है यह फ़ायरफ़ॉक्स की एक आंतरिक सीमा है। वर्तमान फ़ायरफ़ॉक्स का कोर कोड एक अनुरोधकर्ता ट्रैकिंग को लागू नहीं करता है और इस प्रकार यह नहीं जानता है कि अनुरोध किसने और क्यों शुरू किया। यह जानना उपयोगी हो सकता है कि क्रोम देव उपकरण को हाल ही में यह सुविधा मिली है

हमारी साइट का प्रयोग करके, आप स्वीकार करते हैं कि आपने हमारी Cookie Policy और निजता नीति को पढ़ और समझा लिया है।
Licensed under cc by-sa 3.0 with attribution required.