No problem dude !
I hope you have a good vacation. Enjoy your loved ones!
Hello @phenomlab
I search a javascript code for nodebb to block and replace with a specific/customize message domain an URL Wirth a blacklist on topic, quick reply and composer like plugin-beep do it.
Iām working on it but I donāt have anything that works, hence the request for help from your expertise.
here an exemple who doesnāt work
// Add this script in a custom JavaScript file or inline in your HTML
document.addEventListener('DOMContentLoaded', function () {
// List of blocked domains or URLs
var blockedDomains = [
'example.com',
'blockeddomain.com',
// Add more domains as needed
];
// Custom message to be displayed for blocked content
var blockedMessage = 'This content is blocked.';
// Function to check if a URL contains a blocked domain
function isBlocked(url) {
for (var i = 0; i < blockedDomains.length; i++) {
if (url.includes(blockedDomains[i])) {
return true;
}
}
return false;
}
// Function to replace blocked content
function replaceBlockedContent(content) {
// Check if the content contains a blocked domain
if (isBlocked(content)) {
// Replace the content with the blocked message
return blockedMessage;
}
return content;
}
// Get all the elements containing topic content (adjust the selector as needed)
var topicContentElements = document.querySelectorAll('.topic-content');
// Iterate through each element and replace blocked content
topicContentElements.forEach(function (element) {
element.innerHTML = replaceBlockedContent(element.innerHTML);
});
});
Thanks
I have a great code here. I managed to modify the HTTP URL link as well as the link text (description) by modifying them both with a warning message and the URL of my choice for each domain. I am currently redirecting to my checkout page.
The code also differentiates with text before and after the link and does not take it into account.
It works :
There are certainly things to improve but Iāll share the code with you here.
ā> This will be my Christmas present
If you have any improvements or suggestions, donāt hesitate @phenomlab
// ------------------------------------------------------------------
// Block Domain URL on topics & Topic teasers & caroussel topic info
// ------------------------------------------------------------------
$(document).ready(function () {
// Function to replace URLs and link text in a given HTML content
function replaceUrls(html) {
// Replace the old domain URLs with the new domain URL and update link text
html = html.replace(/(<a[^>]*href="https?:\/\/(?:www\.)?francesoir\.fr(?:\/[^\s>]*)?"[^>]*>)([^<]*)<\/a>/g, '<a href="https://YOUR_URL_REDIRECTION/rules"><strong>š¤ [Oups. The PW anti fake news system detected a disinformation domain name] š¤</strong></a>');
html = html.replace(/(<a[^>]*href="https?:\/\/(?:www\.)?francais\.rt\.com(?:\/[^\s>]*)?"[^>]*>)([^<]*)<\/a>/g, '<a href="https://YOUR_URL_REDIRECTION/rules"><strong>š¤ [Oups. The PW anti fake news system detected a domain name of disinformation and propaganda] š¤</strong></a>');
html = html.replace(/(<a[^>]*href="https?:\/\/(?:www\.)?fr\.sputniknews\.africa(?:\/[^\s>]*)?"[^>]*>)([^<]*)<\/a>/g, '<a href="https://YOUR_URL_REDIRECTION/rules"><strong>š¤ [Oups. The PW anti fake news system detected a domain name of disinformation and propaganda] š¤</strong></a>');
html = html.replace(/(<a[^>]*href="https?:\/\/(?:www\.)?lecourrierdesstrateges\.fr(?:\/[^\s>]*)?"[^>]*>)([^<]*)<\/a>/g, '<a href="https://YOUR_URL_REDIRECTION/rules"><strong>š¤ [Oups. The PW anti fake news system detected a disinformation domain name] š¤</strong></a>');
html = html.replace(/(<a[^>]*href="https?:\/\/(?:www\.)?lelibrepenseur\.org(?:\/[^\s>]*)?"[^>]*>)([^<]*)<\/a>/g, '<a href="https://YOUR_URL_REDIRECTION/rules"><strong>š¤ [Oups. The PW anti fake news system detected a disinformation domain name] š¤</strong></a>');
html = html.replace(/(<a[^>]*href="https?:\/\/(?:www\.)?lesmoutonsenrages\.fr(?:\/[^\s>]*)?"[^>]*>)([^<]*)<\/a>/g, '<a href="https://YOUR_URL_REDIRECTION/rules"><strong>š¤ [Oups. The anti fake news system detected a domain name spreading hate speech and anti-Semitic comments] š¤</strong></a>');
html = html.replace(/(<a[^>]*href="https?:\/\/(?:www\.)?upr\.fr(?:\/[^\s>]*)?"[^>]*>)([^<]*)<\/a>/g, '<a href="https://YOUR_URL_REDIRECTION/rules"><strong>š¤ [Oups. The PW anti fake news system detected a disinformation domain name] š¤</strong></a>');
html = html.replace(/(<a[^>]*href="https?:\/\/(?:www\.)?lecourrier-du-soir\.com(?:\/[^\s>]*)?"[^>]*>)([^<]*)<\/a>/g, '<a href="https://YOUR_URL_REDIRECTION/rules"><strong>š¤ [Oups. The PW anti fake news system detected a disinformation domain name] š¤</strong></a>');
html = html.replace(/(<a[^>]*href="https?:\/\/(?:www\.)?fdesouche\.com(?:\/[^\s>]*)?"[^>]*>)([^<]*)<\/a>/g, '<a href="https://YOUR_URL_REDIRECTION/rules"><strong>š¤ [Oups. The anti-fake news system detected a domain name disseminating racist hate articles] š¤</strong></a>');
// Add more lines for additional domains if needed
return html;
}
// Function to replace URLs and link text in a given content element
function replaceUrlsInContent($content) {
$content.html(function (_, oldHtml) {
return replaceUrls(oldHtml);
});
}
// Replace URLs and link text when a new post is added
$(window).on('action:posts.loaded', function () {
$('[component="post"]').each(function () {
var $postContent = $(this).find('.content, .topic-info.text-sm.text-break, .content.mt-2.text-break, .stretched-link, .message-body.ps-0.py-0.overflow-auto.text-break');
// Replace URLs and link text in the post content
$postContent.html(replaceUrls($postContent.html()));
});
});
// Replace URLs and link text when a post is edited
$(window).on('action:topic.loaded', function () {
$('[component="post"]').each(function () {
var $postContent = $(this).find('.content, .topic-info.text-sm.text-break, .content.mt-2.text-break, .stretched-link, .message-body.ps-0.py-0.overflow-auto.text-break');
// Replace URLs and link text in the post content
$postContent.html(replaceUrls($postContent.html()));
});
});
// Replace URLs and link text when a new page is loaded or content is updated for topic teaser & carroussel topic info
$(document).ajaxComplete(function () {
$('.post-content.text-xs.ps-2.line-clamp-sm-2.lh-sm.text-break, .topic-info.text-sm.text-break, .content.mt-2.text-break, .stretched-link, .message-body.ps-0.py-0.overflow-auto.text-break').each(function () {
var $content = $(this);
replaceUrlsInContent($content);
});
});
});
PS : nothing to see but appearance code on topics bug :
The Block code is no longer displayed in its entirety but only on one line :
@DownPW What should the desired effect be from the composer - for example, prevent submission etc? If you can provide a bit more info in relation to what should happen, this would be beneficial.
I would prefer the same behavior as the nodebb-plugin-beep plugin :
The URL is replaced in the quick reply component, the composer and in topics but does not prevent the submission of the message or post, just replace URL
I changed my approach and I have code that works but only on topics using [component="post"]
but after posting the message, URL is not replaced I must refresh the page.
$(document).ready(function () {
$(window).on('action:ajaxify.end', function () {
// Target the post content within the post component
$('[component="post"]').each(function () {
var $postContent = $(this).find('.content');
// Replace the old domain URLs with the new domain URL
$postContent.html(function (index, oldHtml) {
// Match the old domain URLs
oldHtml = oldHtml.replace(/https?:\/\/(www\.)?francesoir\.fr[^\s]*/g, 'https://new-domain.com');
oldHtml = oldHtml.replace(/https?:\/\/(www\.)?francais\.rt.com[^\s]*/g, 'https://new-domain.com');
return oldHtml;
});
});
});
});
working code only on topics :
$(document).ready(function () {
// Function to replace URLs in a given HTML content
function replaceUrls(html) {
// Replace the old domain URLs with the new domain URL
html = html.replace(/https?:\/\/(www\.)?francesoir\.fr[^\s]*/g, 'https://new-domain.com');
html = html.replace(/https?:\/\/(www\.)?francais\.rt.com[^\s]*/g, 'https://new-domain.com');
// Add more lines for additional domains if needed
return html;
}
// Replace URLs when a new post is added
$(window).on('action:posts.loaded', function () {
$('[component="post"]').each(function () {
var $postContent = $(this).find('.content');
// Replace URLs in the post content
$postContent.html(replaceUrls($postContent.html()));
});
});
// Replace URLs when a post is edited
$(window).on('action:topic.loaded', function () {
$('[component="post"]').each(function () {
var $postContent = $(this).find('.content');
// Replace URLs in the post content
$postContent.html(replaceUrls($postContent.html()));
});
});
});
Itās already not bad, just adapt it for the quick reply and composer
@DownPW what you have is already what I would have suggested - particularly the hooks - as you indicate, it just needs expansion to cover other aspects.
However, itās worth noting that none of the code you have will prevent someone from viewing the source, and seeing the true URLs as you are not modifying any of the database entries.
yes you are right but it is not very serious. Most of my users wonāt look at the source code but if you have better why not.
If you have any ideas for adapting it to quick reply and composing. Iām interested. Iām taking a little break for now
PS : nothing to see but appearance code on topics bug :
@DownPW said in Block Domain:
If you have any ideas for adapting it to quick reply and composing. Iām interested.
Let me have a look at this in more detail in DEV.
In previous code, i want to add html link to rules page like this :
html = html.replace(/https?:\/\/(www\.)?francesoir\.fr[^\s]*/g, '<a href="https://XXXXX.XXXXX.XXX/rules">Test</a>');
But i have this on result :
an idea ?
@DownPW Yes, direct HTML rendering is disabled (as is JS) in the composer so it will be stripped. For this to work, youād need to enable HTML support in the composer which isnāt recommended for security reasons.
too bad I would have liked to be redirected to the necessary page
ChatGPT doesnāt help on this
I have a great code here. I managed to modify the HTTP URL link as well as the link text (description) by modifying them both with a warning message and the URL of my choice for each domain. I am currently redirecting to my checkout page.
The code also differentiates with text before and after the link and does not take it into account.
It works :
There are certainly things to improve but Iāll share the code with you here.
ā> This will be my Christmas present
If you have any improvements or suggestions, donāt hesitate @phenomlab
// ------------------------------------------------------------------
// Block Domain URL on topics & Topic teasers & caroussel topic info
// ------------------------------------------------------------------
$(document).ready(function () {
// Function to replace URLs and link text in a given HTML content
function replaceUrls(html) {
// Replace the old domain URLs with the new domain URL and update link text
html = html.replace(/(<a[^>]*href="https?:\/\/(?:www\.)?francesoir\.fr(?:\/[^\s>]*)?"[^>]*>)([^<]*)<\/a>/g, '<a href="https://YOUR_URL_REDIRECTION/rules"><strong>š¤ [Oups. The PW anti fake news system detected a disinformation domain name] š¤</strong></a>');
html = html.replace(/(<a[^>]*href="https?:\/\/(?:www\.)?francais\.rt\.com(?:\/[^\s>]*)?"[^>]*>)([^<]*)<\/a>/g, '<a href="https://YOUR_URL_REDIRECTION/rules"><strong>š¤ [Oups. The PW anti fake news system detected a domain name of disinformation and propaganda] š¤</strong></a>');
html = html.replace(/(<a[^>]*href="https?:\/\/(?:www\.)?fr\.sputniknews\.africa(?:\/[^\s>]*)?"[^>]*>)([^<]*)<\/a>/g, '<a href="https://YOUR_URL_REDIRECTION/rules"><strong>š¤ [Oups. The PW anti fake news system detected a domain name of disinformation and propaganda] š¤</strong></a>');
html = html.replace(/(<a[^>]*href="https?:\/\/(?:www\.)?lecourrierdesstrateges\.fr(?:\/[^\s>]*)?"[^>]*>)([^<]*)<\/a>/g, '<a href="https://YOUR_URL_REDIRECTION/rules"><strong>š¤ [Oups. The PW anti fake news system detected a disinformation domain name] š¤</strong></a>');
html = html.replace(/(<a[^>]*href="https?:\/\/(?:www\.)?lelibrepenseur\.org(?:\/[^\s>]*)?"[^>]*>)([^<]*)<\/a>/g, '<a href="https://YOUR_URL_REDIRECTION/rules"><strong>š¤ [Oups. The PW anti fake news system detected a disinformation domain name] š¤</strong></a>');
html = html.replace(/(<a[^>]*href="https?:\/\/(?:www\.)?lesmoutonsenrages\.fr(?:\/[^\s>]*)?"[^>]*>)([^<]*)<\/a>/g, '<a href="https://YOUR_URL_REDIRECTION/rules"><strong>š¤ [Oups. The anti fake news system detected a domain name spreading hate speech and anti-Semitic comments] š¤</strong></a>');
html = html.replace(/(<a[^>]*href="https?:\/\/(?:www\.)?upr\.fr(?:\/[^\s>]*)?"[^>]*>)([^<]*)<\/a>/g, '<a href="https://YOUR_URL_REDIRECTION/rules"><strong>š¤ [Oups. The PW anti fake news system detected a disinformation domain name] š¤</strong></a>');
html = html.replace(/(<a[^>]*href="https?:\/\/(?:www\.)?lecourrier-du-soir\.com(?:\/[^\s>]*)?"[^>]*>)([^<]*)<\/a>/g, '<a href="https://YOUR_URL_REDIRECTION/rules"><strong>š¤ [Oups. The PW anti fake news system detected a disinformation domain name] š¤</strong></a>');
html = html.replace(/(<a[^>]*href="https?:\/\/(?:www\.)?fdesouche\.com(?:\/[^\s>]*)?"[^>]*>)([^<]*)<\/a>/g, '<a href="https://YOUR_URL_REDIRECTION/rules"><strong>š¤ [Oups. The anti-fake news system detected a domain name disseminating racist hate articles] š¤</strong></a>');
// Add more lines for additional domains if needed
return html;
}
// Function to replace URLs and link text in a given content element
function replaceUrlsInContent($content) {
$content.html(function (_, oldHtml) {
return replaceUrls(oldHtml);
});
}
// Replace URLs and link text when a new post is added
$(window).on('action:posts.loaded', function () {
$('[component="post"]').each(function () {
var $postContent = $(this).find('.content, .topic-info.text-sm.text-break, .content.mt-2.text-break, .stretched-link, .message-body.ps-0.py-0.overflow-auto.text-break');
// Replace URLs and link text in the post content
$postContent.html(replaceUrls($postContent.html()));
});
});
// Replace URLs and link text when a post is edited
$(window).on('action:topic.loaded', function () {
$('[component="post"]').each(function () {
var $postContent = $(this).find('.content, .topic-info.text-sm.text-break, .content.mt-2.text-break, .stretched-link, .message-body.ps-0.py-0.overflow-auto.text-break');
// Replace URLs and link text in the post content
$postContent.html(replaceUrls($postContent.html()));
});
});
// Replace URLs and link text when a new page is loaded or content is updated for topic teaser & carroussel topic info
$(document).ajaxComplete(function () {
$('.post-content.text-xs.ps-2.line-clamp-sm-2.lh-sm.text-break, .topic-info.text-sm.text-break, .content.mt-2.text-break, .stretched-link, .message-body.ps-0.py-0.overflow-auto.text-break').each(function () {
var $content = $(this);
replaceUrlsInContent($content);
});
});
});
PS : nothing to see but appearance code on topics bug :
The Block code is no longer displayed in its entirety but only on one line :
@DownPW that code looks great. I seem to have trained you well!
Iāll investigate the single line of code issue. I think thatās probably because of a modified version of highlight. js
I use.
My code work great but a little more
My code conflicts with your OGPROXY code.
Do you have an idea so that the two can live together?
@DownPW Potentially, yes, but what is the conflict exactly?
I donāt know, I just see that OG proxy does not format the links when my code to block domains is active.
If I disable it, OG proxy works fine.
I would have to make sure that OG proxy does not activate when a blacklist link is detected or that it works one after the other
Actually I donāt really know at the moment.
EDIT:
Maybe add an ignore list to OG PROXY
@DownPW said in Block Domain:
I donāt know, I just see that OG proxy does not format the links when my code to block domains is active.
This just means that the callback / hook isnāt monitored by OGProxy and can probably be quite easily rectified.
@DownPW said in Block Domain:
Maybe add an ignore list to OG PROXY
There is one already in function.js
- see below
https://github.com/phenomlab/ogproxy/blob/03d5ff125611361700d785bd82a6ab16fcd68bfc/function.js#L9
In any case, it doesnāt change anything in fact I think to add exclusions in OG Proxy, because links which are not to be ignored are not formatted by OG proxy
@phenomlab said in Block Domain:
This just means that the callback / hook isnāt monitored by OGProxy and can probably be quite easily rectified.
Iāll look and try to figure it out but can you help me with this ?
@DownPW said in Block Domain:
Iāll look and try to figure it out but can you help me with this ?
Yes, of course.
no luck for now