mirror of
https://github.com/YunoHost-Apps/jappix_ynh.git
synced 2024-09-03 19:26:19 +02:00
77 lines
No EOL
1.7 KiB
JavaScript
77 lines
No EOL
1.7 KiB
JavaScript
/*
|
|
|
|
Jappix - An open social platform
|
|
These are the links JS script for Jappix
|
|
|
|
-------------------------------------------------
|
|
|
|
License: dual-licensed under AGPL and MPLv2
|
|
Authors: Valérian Saliou, Maranda
|
|
|
|
*/
|
|
|
|
// Bundle
|
|
var Links = (function () {
|
|
|
|
/**
|
|
* Alias of this
|
|
* @private
|
|
*/
|
|
var self = {};
|
|
|
|
|
|
/**
|
|
* Apply links in a string
|
|
* @public
|
|
* @param {string} string
|
|
* @param {string} mode
|
|
* @param {string} style
|
|
* @return {string}
|
|
*/
|
|
self.apply = function(string, mode, style) {
|
|
|
|
try {
|
|
var target;
|
|
|
|
// Links style
|
|
if(!style) {
|
|
style = '';
|
|
} else {
|
|
style = ' style="' + style + '"';
|
|
}
|
|
|
|
// Open in new tabs
|
|
if(mode != 'xhtml-im') {
|
|
target = ' target="_blank"';
|
|
} else {
|
|
target = '';
|
|
}
|
|
|
|
// XMPP address
|
|
string = string.replace(
|
|
/(\s|<br \/>|^)(([a-zA-Z0-9\._-]+)@([a-zA-Z0-9\.\/_-]+))(,|\s|$)/gi,
|
|
'$1<a href="xmpp:$2" target="_blank"' + style + '>$2</a>$5'
|
|
);
|
|
|
|
// Simple link
|
|
string = string.replace(
|
|
/(\s|<br \/>|^|\()((https?|ftp|file|xmpp|irc|mailto|vnc|webcal|ssh|ldap|smb|magnet|spotify)(:)([^<>'"\s\)]+))/gim,
|
|
'$1<a href="$2"' + target + style + '>$2</a>'
|
|
);
|
|
|
|
return string;
|
|
} catch(e) {
|
|
Console.error('Links.apply', e);
|
|
}
|
|
|
|
};
|
|
|
|
|
|
/**
|
|
* Return class scope
|
|
*/
|
|
return self;
|
|
|
|
})();
|
|
|
|
var JappixLinks = Links; |