Hatena::Let spam filter
@@ -11,7 +11,7 @@
// http://www.hatena.ne.jp/faq/q/let
// http://let.hatelabo.jp/noromanba/let/hLHW16C50Zpx
-// for Hatena Question c.f.
+// Hatena Question spam-filter
// http://let.hatelabo.jp/noromanba/let/hLHWrvnr8Mlx
// spammer report c.f.
@@ -19,9 +19,18 @@
// http://ptech.g.hatena.ne.jp/noromanba/20150105/1420463835
(() => {
- // TODO join/smart RegExp pattern
+ //*/
const urlFirstPattern = /^(https?:)+\s*$/;
const urlIncludePattern = /(https?:){2,}/;
+ /*/
+ // valid url pattern nomaly using c.f.
+ // https://developer.mozilla.org/en/docs/Web/JavaScript/Reference/Global_Objects/RegExp
+ // https://en.wikipedia.org/wiki/Regular_expression
+ // http://yut.hatenablog.com/entry/20110305/1299318337
+ // FIXME WIP Strings, url(), RegExp
+ // TODO \cX \xhh \uhhhh \u{hhhh} x{n,m}
+ const invalidURLPattern = /(?:[^"'\s\(]https?:|[\/][^.\\dDwWsStrnvfbB0\[\]^\|$\(\)?:*{},=!]:https?|^https?)/;
+ //*/
const wipeout = (ctx) => {
Array.from(ctx.querySelectorAll('.codelist')).forEach((list) => {
@@ -31,6 +40,7 @@
urlFirstPattern.test(packed.textContent) ||
urlIncludePattern.test(packed.textContent)) {
list.style.display = 'none';
+ //list.style.backgroundColor = 'red';
return;
}
});
/*
* @title Hatena::Let spam filter
* @description hidden spam on Hatena::Let w/ Pager Extension (as UserScript)
* @include http://let.hatelabo.jp/*
* @contributor a-kuma3 http://let.hatelabo.jp/a-kuma3/let/hJme3Kz9g6Zc (Fork of)
* @license MIT License http://opensource.org/licenses/MIT
* @javascript_url
*/
// feedback to Hatena c.f.
// http://www.hatena.ne.jp/faq/q/let
// http://let.hatelabo.jp/noromanba/let/hLHW16C50Zpx
// Hatena Question spam-filter
// http://let.hatelabo.jp/noromanba/let/hLHWrvnr8Mlx
// spammer report c.f.
// http://ptech.g.hatena.ne.jp/noromanba/20141126/1417027101
// http://ptech.g.hatena.ne.jp/noromanba/20150105/1420463835
(() => {
//*/
const urlFirstPattern = /^(https?:)+\s*$/;
const urlIncludePattern = /(https?:){2,}/;
/*/
// valid url pattern nomaly using c.f.
// https://developer.mozilla.org/en/docs/Web/JavaScript/Reference/Global_Objects/RegExp
// https://en.wikipedia.org/wiki/Regular_expression
// http://yut.hatenablog.com/entry/20110305/1299318337
// FIXME WIP Strings, url(), RegExp
// TODO \cX \xhh \uhhhh \u{hhhh} x{n,m}
const invalidURLPattern = /(?:[^"'\s\(]https?:|[\/][^.\\dDwWsStrnvfbB0\[\]^\|$\(\)?:*{},=!]:https?|^https?)/;
//*/
const wipeout = (ctx) => {
Array.from(ctx.querySelectorAll('.codelist')).forEach((list) => {
const packed = list.querySelector('.packed-source');
if (!packed || // XXX involve @require only src
urlFirstPattern.test(packed.textContent) ||
urlIncludePattern.test(packed.textContent)) {
list.style.display = 'none';
//list.style.backgroundColor = 'red';
return;
}
});
};
wipeout(document.body);
// for Pager Extensions
new MutationObserver((records) => {
records.forEach((record) => {
wipeout(record.target);
});
}).observe(document.body, { childList: true, subtree: true });
})();
- Permalink
- このページへの個別リンクです。
- RAW
- 書かれたコードへの直接のリンクです。
- Packed
- 文字列が圧縮された書かれたコードへのリンクです。
- Userscript
- Greasemonkey 等で利用する場合の .user.js へのリンクです。
- Loader
- @require やソースコードが長い場合に多段ロードする Loader コミのコードへのリンクです。
- Metadata
- コード中にコメントで @xxx と書かれたメタデータの JSON です。