mirror of
https://github.com/the-djmaze/snappymail.git
synced 2026-09-07 16:37:02 +03:00
stripTracking DHL, Google and Outlook
stripTracking no need for `g` and `s` RegEx modifiers
This commit is contained in:
parent
4473043623
commit
a3585a859f
1 changed files with 21 additions and 8 deletions
|
|
@ -17,23 +17,36 @@ const
|
||||||
replaceWithChildren = node => node.replaceWith(...[...node.childNodes]),
|
replaceWithChildren = node => node.replaceWith(...[...node.childNodes]),
|
||||||
|
|
||||||
// Strip tracking
|
// Strip tracking
|
||||||
|
urlGetParam = (url, name) => new URL(url).searchParams.get(name) || url,
|
||||||
|
base64Url = data => atob(data.replace(/_/g,'/').replace(/-/g,'+')),
|
||||||
stripTracking = text => text
|
stripTracking = text => text
|
||||||
.replace(/tracking\.(printabout\.nl[^?]+)\?.*/gsi, (...m) => m[1])
|
.replace(/tracking\.(printabout\.nl[^?]+)\?.*/i, (...m) => m[1])
|
||||||
.replace(/^.+awstrack\.me\/.+(https:%2F%2F[^/]+)/gsi, (...m) => decodeURIComponent(m[1]))
|
.replace(/^.+awstrack\.me\/.+(https:%2F%2F[^/]+)/i, (...m) => decodeURIComponent(m[1]))
|
||||||
.replace(/^.+\/track\/click\/.+\?p=([a-z0-9_]+)$/gsi, (...m) => {
|
.replace(/^.+(www\.google|safelinks\.protection\.outlook\.com).+$/i, () => urlGetParam(text, 'url'))
|
||||||
|
.replace(/^.+go\.dhlparcel\.nl.+\/([^/]+)$/i, (...m) => base64Url(m[1]))
|
||||||
|
// Mandrill
|
||||||
|
.replace(/^.+\/track\/click\/.+\?p=.+$/i, () => {
|
||||||
|
let d = urlGetParam(text, 'p');
|
||||||
try {
|
try {
|
||||||
let d = JSON.parse(atob(m[1].replace(/_/g,'/').replace(/-/g,'+')));
|
d = JSON.parse(base64Url(d));
|
||||||
if (d?.p) {
|
if (d?.p) {
|
||||||
d = JSON.parse(d.p);
|
d = JSON.parse(d.p);
|
||||||
}
|
}
|
||||||
return d?.url || m[0];
|
|
||||||
} catch (e) {
|
} catch (e) {
|
||||||
console.error(e);
|
console.error(e);
|
||||||
}
|
}
|
||||||
|
return d?.url || text;
|
||||||
})
|
})
|
||||||
.replace(/([?&])utm_[a-z]+=[^&?#]*/gsi, '$1') // Urchin Tracking Module
|
.replace(/([?&])utm_[a-z]+=[^&?#]*/gi, '$1') // Urchin Tracking Module
|
||||||
.replace(/([?&])ec_[a-z]+=[^&?#]*/gsi, '$1') // Sitecore
|
.replace(/([?&])ec_[a-z]+=[^&?#]*/gi, '$1') // Sitecore
|
||||||
.replace(/&&+/, '');
|
/** TODO: implement other url strippers like from
|
||||||
|
* https://www.bleepingcomputer.com/news/security/new-firefox-privacy-feature-strips-urls-of-tracking-parameters/
|
||||||
|
* https://github.com/newhouse/url-tracking-stripper
|
||||||
|
* https://github.com/svenjacobs/leon
|
||||||
|
* https://maxchadwick.xyz/tracking-query-params-registry/
|
||||||
|
* https://github.com/M66B/FairEmail/blob/master/app/src/main/java/eu/faircode/email/UriHelper.java
|
||||||
|
*/
|
||||||
|
.replace(/([?&])&+/g, '$1');
|
||||||
|
|
||||||
export const
|
export const
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue