devtools.js (12092B) - View raw
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/******************************************************************************* uBlock Origin - a comprehensive, efficient content blocker Copyright (C) 2014-present Raymond Hill This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see {http://www.gnu.org/licenses/}. Home: https://github.com/gorhill/uBlock */ /* global CodeMirror, uBlockDashboard */ import * as s14e from './s14e-serializer.js'; import { dom, qs$ } from './dom.js'; /******************************************************************************/ const reFoldable = /^ *(?=\+ \S)/; /******************************************************************************/ CodeMirror.registerGlobalHelper( 'fold', 'ubo-dump', ( ) => true, (cm, start) => { const startLineNo = start.line; const startLine = cm.getLine(startLineNo); let endLineNo = startLineNo; let endLine = startLine; const match = reFoldable.exec(startLine); if ( match === null ) { return; } const foldCandidate = ' ' + match[0]; const lastLineNo = cm.lastLine(); let nextLineNo = startLineNo + 1; while ( nextLineNo < lastLineNo ) { const nextLine = cm.getLine(nextLineNo); // TODO: use regex to find folding end if ( nextLine.startsWith(foldCandidate) === false && nextLine !== ']' ) { if ( startLineNo >= endLineNo ) { return; } return { from: CodeMirror.Pos(startLineNo, startLine.length), to: CodeMirror.Pos(endLineNo, endLine.length) }; } endLine = nextLine; endLineNo = nextLineNo; nextLineNo += 1; } } ); const cmEditor = new CodeMirror(qs$('#console'), { autofocus: true, foldGutter: true, gutters: [ 'CodeMirror-linenumbers', 'CodeMirror-foldgutter' ], lineNumbers: true, lineWrapping: true, mode: 'ubo-dump', styleActiveLine: true, undoDepth: 5, }); uBlockDashboard.patchCodeMirrorEditor(cmEditor); /******************************************************************************/ function log(text) { cmEditor.replaceRange(text.trim() + '\n\n', { line: 0, ch: 0 }); } /******************************************************************************/ function toDNRText(raw) { const result = s14e.deserialize(raw); if ( typeof result === 'string' ) { return result; } const { network } = result; const replacer = (k, v) => { if ( k.startsWith('__') ) { return; } if ( Array.isArray(v) ) { return v.sort(); } if ( v instanceof Object ) { const sorted = {}; for ( const kk of Object.keys(v).sort() ) { sorted[kk] = v[kk]; } return sorted; } return v; }; const isUnsupported = rule => rule._error !== undefined; const isRegex = rule => rule.condition !== undefined && rule.condition.regexFilter !== undefined; const isRedirect = rule => rule.action !== undefined && rule.action.type === 'redirect' && rule.action.redirect.extensionPath !== undefined; const isCsp = rule => rule.action !== undefined && rule.action.type === 'modifyHeaders'; const isRemoveparam = rule => rule.action !== undefined && rule.action.type === 'redirect' && rule.action.redirect.transform !== undefined; const { ruleset } = network; const good = ruleset.filter(rule => isUnsupported(rule) === false && isRegex(rule) === false && isRedirect(rule) === false && isCsp(rule) === false && isRemoveparam(rule) === false ); const unsupported = ruleset.filter(rule => isUnsupported(rule) ); const regexes = ruleset.filter(rule => isUnsupported(rule) === false && isRegex(rule) && isRedirect(rule) === false && isCsp(rule) === false && isRemoveparam(rule) === false ); const redirects = ruleset.filter(rule => isUnsupported(rule) === false && isRedirect(rule) ); const headers = ruleset.filter(rule => isUnsupported(rule) === false && isCsp(rule) ); const removeparams = ruleset.filter(rule => isUnsupported(rule) === false && isRemoveparam(rule) ); const out = [ `dnrRulesetFromRawLists(${JSON.stringify(result.listNames, null, 2)})`, `Run time: ${result.runtime} ms`, `Filters count: ${network.filterCount}`, `Accepted filter count: ${network.acceptedFilterCount}`, `Rejected filter count: ${network.rejectedFilterCount}`, `Un-DNR-able filter count: ${unsupported.length}`, `Resulting DNR rule count: ${ruleset.length}`, ]; out.push(`+ Good filters (${good.length}): ${JSON.stringify(good, replacer, 2)}`); out.push(`+ Regex-based filters (${regexes.length}): ${JSON.stringify(regexes, replacer, 2)}`); out.push(`+ 'redirect=' filters (${redirects.length}): ${JSON.stringify(redirects, replacer, 2)}`); out.push(`+ 'csp=' filters (${headers.length}): ${JSON.stringify(headers, replacer, 2)}`); out.push(`+ 'removeparam=' filters (${removeparams.length}): ${JSON.stringify(removeparams, replacer, 2)}`); out.push(`+ Unsupported filters (${unsupported.length}): ${JSON.stringify(unsupported, replacer, 2)}`); out.push(`+ generichide exclusions (${network.generichideExclusions.length}): ${JSON.stringify(network.generichideExclusions, replacer, 2)}`); if ( result.specificCosmetic ) { out.push(`+ Cosmetic filters: ${result.specificCosmetic.size}`); for ( const details of result.specificCosmetic ) { out.push(` ${JSON.stringify(details)}`); } } else { out.push(' Cosmetic filters: 0'); } return out.join('\n'); } /******************************************************************************/ dom.on('#console-clear', 'click', ( ) => { cmEditor.setValue(''); }); dom.on('#console-fold', 'click', ( ) => { const unfolded = []; let maxUnfolded = -1; cmEditor.eachLine(handle => { const match = reFoldable.exec(handle.text); if ( match === null ) { return; } const depth = match[0].length; const line = handle.lineNo(); const isFolded = cmEditor.isFolded({ line, ch: handle.text.length }); if ( isFolded === true ) { return; } unfolded.push({ line, depth }); maxUnfolded = Math.max(maxUnfolded, depth); }); if ( maxUnfolded === -1 ) { return; } cmEditor.startOperation(); for ( const details of unfolded ) { if ( details.depth !== maxUnfolded ) { continue; } cmEditor.foldCode(details.line, null, 'fold'); } cmEditor.endOperation(); }); dom.on('#console-unfold', 'click', ( ) => { const folded = []; let minFolded = Number.MAX_SAFE_INTEGER; cmEditor.eachLine(handle => { const match = reFoldable.exec(handle.text); if ( match === null ) { return; } const depth = match[0].length; const line = handle.lineNo(); const isFolded = cmEditor.isFolded({ line, ch: handle.text.length }); if ( isFolded !== true ) { return; } folded.push({ line, depth }); minFolded = Math.min(minFolded, depth); }); if ( minFolded === Number.MAX_SAFE_INTEGER ) { return; } cmEditor.startOperation(); for ( const details of folded ) { if ( details.depth !== minFolded ) { continue; } cmEditor.foldCode(details.line, null, 'unfold'); } cmEditor.endOperation(); }); dom.on('#snfe-dump', 'click', ev => { const button = ev.target; dom.attr(button, 'disabled', ''); vAPI.messaging.send('devTools', { what: 'snfeDump', }).then(result => { log(result); dom.attr(button, 'disabled', null); }); }); dom.on('#snfe-todnr', 'click', ev => { const button = ev.target; dom.attr(button, 'disabled', ''); vAPI.messaging.send('devTools', { what: 'snfeToDNR', }).then(result => { log(toDNRText(result)); dom.attr(button, 'disabled', null); }); }); dom.on('#cfe-dump', 'click', ev => { const button = ev.target; dom.attr(button, 'disabled', ''); vAPI.messaging.send('devTools', { what: 'cfeDump', }).then(result => { log(result); dom.attr(button, 'disabled', null); }); }); dom.on('#purge-all-caches', 'click', ( ) => { vAPI.messaging.send('devTools', { what: 'purgeAllCaches' }).then(result => { log(result); }); }); vAPI.messaging.send('dashboard', { what: 'getAppData', }).then(appData => { if ( appData.canBenchmark !== true ) { return; } dom.attr('#snfe-benchmark', 'disabled', null); dom.on('#snfe-benchmark', 'click', ev => { const button = ev.target; dom.attr(button, 'disabled', ''); vAPI.messaging.send('devTools', { what: 'snfeBenchmark', }).then(result => { log(result); dom.attr(button, 'disabled', null); }); }); dom.attr('#cfe-benchmark', 'disabled', null); dom.on('#cfe-benchmark', 'click', ev => { const button = ev.target; dom.attr(button, 'disabled', ''); vAPI.messaging.send('devTools', { what: 'cfeBenchmark', }).then(result => { log(result); dom.attr(button, 'disabled', null); }); }); dom.attr('#sfe-benchmark', 'disabled', null); dom.on('#sfe-benchmark', 'click', ev => { const button = ev.target; dom.attr(button, 'disabled', ''); vAPI.messaging.send('devTools', { what: 'sfeBenchmark', }).then(result => { log(result); dom.attr(button, 'disabled', null); }); }); }); /******************************************************************************/ async function snfeQuery(lineNo, query) { const doc = cmEditor.getDoc(); const lineHandle = doc.getLineHandle(lineNo) const result = await vAPI.messaging.send('devTools', { what: 'snfeQuery', query }); if ( typeof result !== 'string' ) { return; } cmEditor.startOperation(); const nextLineNo = doc.getLineNumber(lineHandle) + 1; doc.replaceRange(`${result}\n`, { line: nextLineNo, ch: 0 }); cmEditor.endOperation(); } cmEditor.on('beforeChange', (cm, details) => { if ( details.origin !== '+input' ) { return; } if ( details.text.length !== 2 ) { return; } if ( details.text[1] !== '' ) { return; } const lineNo = details.from.line; const line = cm.getLine(lineNo); if ( details.from.ch !== line.length ) { return; } if ( line.startsWith('snfe?') === false ) { return; } const fields = line.slice(5).split(/\s+/); const query = {}; for ( const field of fields ) { if ( field === '' ) { continue; } if ( /[/.]/.test(field) ) { if ( query.url === undefined ) { query.url = field; } else if ( query.from === undefined ) { query.from = field; } } else if ( query.type === undefined ) { query.type = field; } } if ( query.url === undefined ) { return; } snfeQuery(lineNo, query); }); /******************************************************************************/