114 lines
3.4 KiB
TypeScript
114 lines
3.4 KiB
TypeScript
// 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 <https://www.gnu.org/licenses/>.
|
|
//
|
|
// I hope I got this relicensing stuff right xD
|
|
import { URLPurify, type SerializedRules } from '@mkljczk/url-purify';
|
|
|
|
import KVStore from 'pl-fe/storage/kv-store';
|
|
|
|
// Adapted from ClearURLs Rules
|
|
// https://github.com/ClearURLs/Rules/blob/master/data.min.json
|
|
// Licensed under the LGPL-3.0 license.
|
|
const DEFAULT_RULESET: SerializedRules = {
|
|
providers: {
|
|
globalRules: {
|
|
urlPattern: '.*',
|
|
rules: [
|
|
'(?:%3F)?utm(?:_[a-z_]*)?',
|
|
'(?:%3F)?ga_[a-z_]+',
|
|
'(?:%3F)?yclid',
|
|
'(?:%3F)?_openstat',
|
|
'(?:%3F)?fb_action_(?:types|ids)',
|
|
'(?:%3F)?fb_(?:source|ref)',
|
|
'(?:%3F)?fbclid',
|
|
'(?:%3F)?action_(?:object|type|ref)_map',
|
|
'(?:%3F)?gs_l',
|
|
'(?:%3F)?mkt_tok',
|
|
'(?:%3F)?hmb_(?:campaign|medium|source)',
|
|
'(?:%3F)?gclid',
|
|
'(?:%3F)?srsltid',
|
|
'(?:%3F)?otm_[a-z_]*',
|
|
'(?:%3F)?cmpid',
|
|
'(?:%3F)?os_ehash',
|
|
'(?:%3F)?_ga',
|
|
'(?:%3F)?_gl',
|
|
'(?:%3F)?__twitter_impression',
|
|
'(?:%3F)?wt_?z?mc',
|
|
'(?:%3F)?wtrid',
|
|
'(?:%3F)?[a-z]?mc',
|
|
'(?:%3F)?dclid',
|
|
'Echobox',
|
|
'(?:%3F)?spm',
|
|
'(?:%3F)?vn(?:_[a-z]*)+',
|
|
'(?:%3F)?tracking_source',
|
|
'(?:%3F)?ceneo_spo',
|
|
'(?:%3F)?itm_(?:campaign|medium|source)',
|
|
'(?:%3F)?__hsfp',
|
|
'(?:%3F)?__hssc',
|
|
'(?:%3F)?__hstc',
|
|
'(?:%3F)?_hsenc',
|
|
'(?:%3F)?__s',
|
|
'(?:%3F)?hsCtaTracking',
|
|
'(?:%3F)?mc_(?:eid|cid|tc)',
|
|
'(?:%3F)?ml_subscriber',
|
|
'(?:%3F)?ml_subscriber_hash',
|
|
'(?:%3F)?msclkid',
|
|
'(?:%3F)?oly_anon_id',
|
|
'(?:%3F)?oly_enc_id',
|
|
'(?:%3F)?rb_clickid',
|
|
'(?:%3F)?s_cid',
|
|
'(?:%3F)?vero_conv',
|
|
'(?:%3F)?vero_id',
|
|
'(?:%3F)?wickedid',
|
|
'(?:%3F)?twclid',
|
|
'(?:%3F)?ref_?',
|
|
'(?:%3F)?referrer',
|
|
],
|
|
},
|
|
youtube: {
|
|
urlPattern: '^https?:\\/\\/(?:[a-z0-9-]+\\.)*?(youtube\\.com|youtu\\.be)',
|
|
rules: ['feature', 'gclid', 'kw', 'si', 'pp'],
|
|
exceptions: [
|
|
'^https?:\\/\\/(?:[a-z0-9-]+\\.)*?youtube\\.com\\/signin\\?.*?',
|
|
],
|
|
redirections: [
|
|
'^https?:\\/\\/(?:[a-z0-9-]+\\.)*?youtube\\.com\\/redirect?.*?q=([^&]*)',
|
|
],
|
|
},
|
|
},
|
|
};
|
|
|
|
const Purify = new URLPurify({
|
|
rulesFromMemory: DEFAULT_RULESET,
|
|
// onFetchedRules: (hash, rules) => {
|
|
// const me = store.getState().auth.me;
|
|
|
|
// KVStore.setItem('url-purify-rules:last', me || '');
|
|
// KVStore.setItem(`url-purify-rules:${me}`, {
|
|
// hash,
|
|
// rules,
|
|
// fetchedAt: Date.now(),
|
|
// });
|
|
// },
|
|
});
|
|
|
|
KVStore.getItem('url-purify-rules:last', (url: string) => {
|
|
if (!url) return;
|
|
KVStore.getItem(`url-purify-rules:${url}`, (rules: any) => {
|
|
if (!rules) return;
|
|
Purify.setRules(rules.rules, rules.hash);
|
|
});
|
|
});
|
|
|
|
export default Purify;
|