Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Side by Side Diff: src/plugin/AdblockPlusDomTraverser.cpp

Issue 4912420225024000: Issue #1234 - Convert strings associated with URL's (Closed)
Patch Set: Created Oct. 14, 2014, 10:17 p.m.
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View unified diff | Download patch
OLDNEW
1 #include "PluginStdAfx.h" 1 #include "PluginStdAfx.h"
2 2
3 #include "PluginClient.h" 3 #include "PluginClient.h"
4 #include "PluginFilter.h" 4 #include "PluginFilter.h"
5 #include "PluginSettings.h" 5 #include "PluginSettings.h"
6 6
7 #include "AdblockPlusDomTraverser.h" 7 #include "AdblockPlusDomTraverser.h"
8 8
9 9
10 CPluginDomTraverser::CPluginDomTraverser(CPluginTab* tab) : CPluginDomTraverserB ase(tab) 10 CPluginDomTraverser::CPluginDomTraverser(CPluginTab* tab) : CPluginDomTraverserB ase(tab)
11 { 11 {
12 } 12 }
13 13
14 14
15 bool CPluginDomTraverser::OnIFrame(IHTMLElement* pEl, const CString& url, CStrin g& indent) 15 bool CPluginDomTraverser::OnIFrame(IHTMLElement* pEl, const std::wstring& url, C String& indent)
16 { 16 {
17 CPluginClient* client = CPluginClient::GetInstance(); 17 CPluginClient* client = CPluginClient::GetInstance();
18 18
19 // If src should be blocked, set style display:none on iframe 19 // If src should be blocked, set style display:none on iframe
20 bool isBlocked = client->ShouldBlock(to_wstring(url), CFilter::contentTypeSubd ocument, m_domain); 20 bool isBlocked = client->ShouldBlock(url, CFilter::contentTypeSubdocument, m_d omain);
21 if (isBlocked) 21 if (isBlocked)
22 { 22 {
23 HideElement(pEl, "iframe", url, true, indent); 23 HideElement(pEl, "iframe", url, true, indent);
24 } 24 }
25 25
26 return !isBlocked; 26 return !isBlocked;
27 } 27 }
28 28
29 29
30 bool CPluginDomTraverser::OnElement(IHTMLElement* pEl, const CString& tag, CPlug inDomTraverserCache* cache, bool isDebug, CString& indent) 30 bool CPluginDomTraverser::OnElement(IHTMLElement* pEl, const CString& tag, CPlug inDomTraverserCache* cache, bool isDebug, CString& indent)
31 { 31 {
32 if (cache->m_isHidden) 32 if (cache->m_isHidden)
33 { 33 {
34 return false; 34 return false;
35 } 35 }
36 36
37 // Check if element is hidden 37 // Check if element is hidden
38 CPluginClient* client = CPluginClient::GetInstance(); 38 CPluginClient* client = CPluginClient::GetInstance();
39 39
40 cache->m_isHidden = client->IsElementHidden(to_wstring(tag), pEl, m_domain, to _wstring(indent), m_tab->m_filter.get()); 40 cache->m_isHidden = client->IsElementHidden(to_wstring(tag), pEl, m_domain, to _wstring(indent), m_tab->m_filter.get());
41 if (cache->m_isHidden) 41 if (cache->m_isHidden)
42 { 42 {
43 HideElement(pEl, tag, "", false, indent); 43 HideElement(pEl, tag, L"", false, indent);
44 return false; 44 return false;
45 } 45 }
46 46
47 // Images 47 // Images
48 if (tag == "img") 48 if (tag == "img")
49 { 49 {
50 CComVariant vAttr; 50 CComVariant vAttr;
51 51
52 if (SUCCEEDED(pEl->getAttribute(L"src", 0, &vAttr)) && vAttr.vt == VT_BSTR & & ::SysStringLen(vAttr.bstrVal) > 0) 52 if (SUCCEEDED(pEl->getAttribute(L"src", 0, &vAttr)) && vAttr.vt == VT_BSTR & & ::SysStringLen(vAttr.bstrVal) > 0)
53 { 53 {
54 CString src = vAttr.bstrVal; 54 std::wstring src(vAttr.bstrVal, SysStringLen(vAttr.bstrVal));
55 CPluginClient::UnescapeUrl(src); 55 SysFreeString(vAttr.bstrVal);
sergei 2014/10/17 10:10:12 It's not necessary to call SysFreeString here beca
Eric 2014/10/20 02:36:01 True. Removed it.
sergei 2014/10/21 09:45:17 But it's still here.
Eric 2014/10/21 17:19:52 I _thought_ I had removed it. It's gone now.
56 UnescapeUrl(src);
56 57
57 // If src should be blocked, set style display:none on image 58 // If src should be blocked, set style display:none on image
58 cache->m_isHidden = client->ShouldBlock(to_wstring(src), CFilter::contentT ypeImage, m_domain); 59 cache->m_isHidden = client->ShouldBlock(src, CFilter::contentTypeImage, m_ domain);
59 if (cache->m_isHidden) 60 if (cache->m_isHidden)
60 { 61 {
61 HideElement(pEl, "image", src, true, indent); 62 HideElement(pEl, "image", src, true, indent);
62 return false; 63 return false;
63 } 64 }
64 } 65 }
65 } 66 }
66 // Objects 67 // Objects
67 else if (tag == "object") 68 else if (tag == "object")
68 { 69 {
(...skipping 16 matching lines...) Expand all
85 // eg. http://w3schools.com/html/html_examples.asp 86 // eg. http://w3schools.com/html/html_examples.asp
86 if (src.Left(2) == "//") 87 if (src.Left(2) == "//")
87 { 88 {
88 src = "http:" + src; 89 src = "http:" + src;
89 } 90 }
90 91
91 if (!src.IsEmpty()) 92 if (!src.IsEmpty())
92 { 93 {
93 if (cache->m_isHidden) 94 if (cache->m_isHidden)
94 { 95 {
95 HideElement(pEl, "object", src, true, indent); 96 HideElement(pEl, "object", ToWstring(src), true, indent);
96 return false; 97 return false;
97 } 98 }
98 } 99 }
99 100
100 posBegin = sObjectHtml.Find(L"VALUE=\"", posBegin); 101 posBegin = sObjectHtml.Find(L"VALUE=\"", posBegin);
101 posEnd = posBegin >= 0 ? sObjectHtml.Find(L"\"", posBegin + 7) : -1; 102 posEnd = posBegin >= 0 ? sObjectHtml.Find(L"\"", posBegin + 7) : -1;
102 } 103 }
103 } 104 }
104 } 105 }
105 106
106 return true; 107 return true;
107 } 108 }
108 109
109 110
110 bool CPluginDomTraverser::IsEnabled() 111 bool CPluginDomTraverser::IsEnabled()
111 { 112 {
112 CPluginClient* client = CPluginClient::GetInstance(); 113 CPluginClient* client = CPluginClient::GetInstance();
113 114
114 return client && CPluginSettings::GetInstance()->IsPluginEnabled() && !client- >IsWhitelistedUrl(m_domain); 115 return client && CPluginSettings::GetInstance()->IsPluginEnabled() && !client- >IsWhitelistedUrl(m_domain);
115 } 116 }
116 117
117 118
118 void CPluginDomTraverser::HideElement(IHTMLElement* pEl, const CString& type, co nst CString& url, bool isDebug, CString& indent) 119 void CPluginDomTraverser::HideElement(IHTMLElement* pEl, const CString& type, co nst std::wstring& url, bool isDebug, CString& indent)
119 { 120 {
120 CComPtr<IHTMLStyle> pStyle; 121 CComPtr<IHTMLStyle> pStyle;
121 122
122 if (SUCCEEDED(pEl->get_style(&pStyle)) && pStyle) 123 if (SUCCEEDED(pEl->get_style(&pStyle)) && pStyle)
123 { 124 {
124 CComBSTR bstrDisplay; 125 CComBSTR bstrDisplay;
125 126
126 if (SUCCEEDED(pStyle->get_display(&bstrDisplay)) && bstrDisplay && CString(b strDisplay) == L"none") 127 if (SUCCEEDED(pStyle->get_display(&bstrDisplay)) && bstrDisplay && CString(b strDisplay) == L"none")
127 { 128 {
128 return; 129 return;
129 } 130 }
130 131
131 static const CComBSTR sbstrNone(L"none"); 132 static const CComBSTR sbstrNone(L"none");
132 133
133 if (SUCCEEDED(pStyle->put_display(sbstrNone))) 134 if (SUCCEEDED(pStyle->put_display(sbstrNone)))
134 { 135 {
135 DEBUG_HIDE_EL(indent + L"HideEl::Hiding " + type + L" url:" + url) 136 DEBUG_HIDE_EL(indent + L"HideEl::Hiding " + type + L" url:" + ToCString(ur l))
136 137
137 #ifdef ENABLE_DEBUG_RESULT 138 #ifdef ENABLE_DEBUG_RESULT
138 if (isDebug) 139 if (isDebug)
139 { 140 {
140 CPluginDebug::DebugResultHiding(type, url, "-"); 141 CPluginDebug::DebugResultHiding(type, ToCString(url), "-");
141 } 142 }
142 #endif // ENABLE_DEBUG_RESULT 143 #endif // ENABLE_DEBUG_RESULT
143 } 144 }
144 } 145 }
145 } 146 }
OLDNEW

Powered by Google App Engine
This is Rietveld