2020-06-22 15:51:15 +00:00
|
|
|
pragma Singleton
|
|
|
|
|
|
|
|
import QtQuick 2.13
|
2022-04-07 19:02:54 +00:00
|
|
|
|
2021-10-27 21:27:49 +00:00
|
|
|
import shared 1.0
|
2023-06-07 15:51:15 +00:00
|
|
|
|
|
|
|
import StatusQ 0.1
|
2022-04-07 19:02:54 +00:00
|
|
|
import StatusQ.Core.Theme 0.1
|
2022-07-05 10:12:27 +00:00
|
|
|
import StatusQ.Core.Utils 0.1 as StatusQUtils
|
2020-06-22 15:51:15 +00:00
|
|
|
|
|
|
|
QtObject {
|
2022-11-08 21:23:55 +00:00
|
|
|
property var mainModuleInst: typeof mainModule !== "undefined" ? mainModule : null
|
2023-07-27 11:21:25 +00:00
|
|
|
property var sharedUrlsModuleInst: typeof sharedUrlsModule !== "undefined" ? sharedUrlsModule : null
|
2022-11-08 21:23:55 +00:00
|
|
|
property var globalUtilsInst: typeof globalUtils !== "undefined" ? globalUtils : null
|
2023-07-06 11:26:30 +00:00
|
|
|
property var communitiesModuleInst: typeof communitiesModule !== "undefined" ? communitiesModule : null
|
2022-04-07 23:58:01 +00:00
|
|
|
|
2023-03-27 17:53:17 +00:00
|
|
|
readonly property int maxImgSizeBytes: Constants.maxUploadFilesizeMB * 1048576 /* 1 MB in bytes */
|
2023-10-24 15:13:25 +00:00
|
|
|
readonly property int communityIdLength: 68
|
2023-03-27 17:53:17 +00:00
|
|
|
|
2022-07-21 11:29:18 +00:00
|
|
|
function isDigit(value) {
|
|
|
|
return /^\d$/.test(value);
|
|
|
|
}
|
|
|
|
|
2020-06-22 15:51:15 +00:00
|
|
|
function isHex(value) {
|
2020-08-12 03:40:25 +00:00
|
|
|
return /^(-0x|0x)?[0-9a-fA-F]*$/i.test(value)
|
2020-06-22 15:51:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
function startsWith0x(value) {
|
2023-07-04 15:11:41 +00:00
|
|
|
return !!value && value.startsWith('0x')
|
2020-06-22 15:51:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
function isChatKey(value) {
|
2022-04-07 23:58:01 +00:00
|
|
|
return (startsWith0x(value) && isHex(value) && value.length === 132) || globalUtilsInst.isCompressedPubKey(value)
|
2020-06-22 15:51:15 +00:00
|
|
|
}
|
2020-06-22 17:26:47 +00:00
|
|
|
|
2023-05-15 10:31:23 +00:00
|
|
|
function isCommunityPublicKey(value) {
|
2023-10-24 15:13:25 +00:00
|
|
|
return (startsWith0x(value) && isHex(value) && value.length === communityIdLength) || globalUtilsInst.isCompressedPubKey(value)
|
2023-05-15 10:31:23 +00:00
|
|
|
}
|
|
|
|
|
2022-11-28 14:57:56 +00:00
|
|
|
function isCompressedPubKey(pubKey) {
|
|
|
|
return globalUtilsInst.isCompressedPubKey(pubKey)
|
|
|
|
}
|
|
|
|
|
2023-10-24 15:13:25 +00:00
|
|
|
function getCommunityIdFromFullChatId(fullChatId) {
|
|
|
|
return fullChatId.substr(0, communityIdLength)
|
|
|
|
}
|
|
|
|
|
|
|
|
function getChannelUuidFromFullChatId(fullChatId) {
|
|
|
|
return fullChatId.substr(communityIdLength, fullChatId.length)
|
|
|
|
}
|
|
|
|
|
2020-06-25 13:26:58 +00:00
|
|
|
function isValidETHNamePrefix(value) {
|
|
|
|
return !(value.trim() === "" || value.endsWith(".") || value.indexOf("..") > -1)
|
|
|
|
}
|
|
|
|
|
2020-06-22 17:26:47 +00:00
|
|
|
function isAddress(value) {
|
|
|
|
return startsWith0x(value) && isHex(value) && value.length === 42
|
|
|
|
}
|
|
|
|
|
2023-02-20 10:57:45 +00:00
|
|
|
function isValidAddressWithChainPrefix(value) {
|
|
|
|
return value.match(/^(([a-zA-Z]{3,5}:)*)?(0x[a-fA-F0-9]{40})$/)
|
|
|
|
}
|
|
|
|
|
|
|
|
function getChainsPrefix(address) {
|
|
|
|
// matchAll is not supported by QML JS engine
|
|
|
|
return address.match(/([a-zA-Z]{3,5}:)*/)[0].split(':').filter(e => !!e)
|
|
|
|
}
|
|
|
|
|
|
|
|
function isLikelyEnsName(text) {
|
|
|
|
return text.startsWith("@") || !isLikelyAddress(text)
|
|
|
|
}
|
|
|
|
|
|
|
|
function isLikelyAddress(text) {
|
|
|
|
return text.includes(":") || text.includes('0x')
|
|
|
|
}
|
|
|
|
|
|
|
|
function richColorText(text, color) {
|
|
|
|
return "<font color=\"" + color + "\">" + text + "</font>"
|
|
|
|
}
|
|
|
|
|
|
|
|
function splitToChainPrefixAndAddress(input) {
|
|
|
|
const addressIdx = input.indexOf('0x')
|
|
|
|
if (addressIdx < 0)
|
|
|
|
return { prefix: input, address: "" }
|
|
|
|
|
|
|
|
return { prefix: input.substring(0, addressIdx), address: input.substring(addressIdx) }
|
|
|
|
}
|
|
|
|
|
2020-06-22 17:26:47 +00:00
|
|
|
function isPrivateKey(value) {
|
|
|
|
return isHex(value) && ((startsWith0x(value) && value.length === 66) ||
|
|
|
|
(!startsWith0x(value) && value.length === 64))
|
|
|
|
}
|
2020-06-22 17:57:06 +00:00
|
|
|
|
2021-03-16 19:19:48 +00:00
|
|
|
function getCurrentThemeAccountColor(color) {
|
|
|
|
const upperCaseColor = color.toUpperCase()
|
|
|
|
if (Style.current.accountColors.indexOf(upperCaseColor) > -1) {
|
|
|
|
return upperCaseColor
|
|
|
|
}
|
|
|
|
|
|
|
|
let colorIndex
|
|
|
|
if (Style.current.name === Constants.lightThemeName) {
|
|
|
|
colorIndex = Style.darkTheme.accountColors.indexOf(upperCaseColor)
|
|
|
|
} else {
|
|
|
|
colorIndex = Style.lightTheme.accountColors.indexOf(upperCaseColor)
|
|
|
|
}
|
|
|
|
if (colorIndex === -1) {
|
|
|
|
// Unknown color
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
return Style.current.accountColors[colorIndex]
|
|
|
|
}
|
|
|
|
|
2023-06-06 11:59:50 +00:00
|
|
|
function validLink(link) {
|
|
|
|
if (link.length === 0) {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
var regex = /[(http(s)?):\/\/(www\.)?a-zA-Z0-9@:%._\+~#=]{2,256}\.[a-z]{2,6}\b([-a-zA-Z0-9@:%_\+.~#?&//=]*)/
|
|
|
|
return regex.test(link)
|
|
|
|
}
|
|
|
|
|
2021-10-21 09:15:33 +00:00
|
|
|
function getLinkStyle(link, hoveredLink, textColor) {
|
2021-10-01 15:58:36 +00:00
|
|
|
return `<style type="text/css">` +
|
|
|
|
`a {` +
|
2021-10-21 09:15:33 +00:00
|
|
|
`color: ${textColor};` +
|
2021-10-01 15:58:36 +00:00
|
|
|
`text-decoration: none;` +
|
|
|
|
`}` +
|
|
|
|
(hoveredLink !== "" ? `a[href="${hoveredLink}"] { text-decoration: underline; }` : "") +
|
|
|
|
`</style>` +
|
|
|
|
`<a href="${link}">${link}</a>`
|
|
|
|
}
|
|
|
|
|
2020-06-22 17:57:06 +00:00
|
|
|
function isMnemonic(value) {
|
2020-07-27 15:11:24 +00:00
|
|
|
if(!value.match(/^([a-z\s]+)$/)){
|
|
|
|
return false;
|
|
|
|
}
|
2021-04-12 15:40:49 +00:00
|
|
|
return Utils.seedPhraseValidWordCount(value);
|
2020-06-22 17:57:06 +00:00
|
|
|
}
|
2020-06-25 13:26:58 +00:00
|
|
|
|
|
|
|
function compactAddress(addr, numberOfChars) {
|
|
|
|
if(addr.length <= 5 + (numberOfChars * 2)){ // 5 represents these chars 0x...
|
|
|
|
return addr;
|
|
|
|
}
|
|
|
|
return addr.substring(0, 2 + numberOfChars) + "..." + addr.substring(addr.length - numberOfChars);
|
|
|
|
}
|
2020-07-15 21:04:14 +00:00
|
|
|
|
2020-07-27 17:30:20 +00:00
|
|
|
function isOnlyEmoji(inputText) {
|
|
|
|
var emoji_regex = /^(?:[\u2700-\u27bf]|(?:\ud83c[\udde6-\uddff]){2}|[\ud800-\udbff][\udc00-\udfff]|[\u0023-\u0039]\ufe0f?\u20e3|\u3299|\u3297|\u303d|\u3030|\u24c2|\ud83c[\udd70-\udd71]|\ud83c[\udd7e-\udd7f]|\ud83c\udd8e|\ud83c[\udd91-\udd9a]|\ud83c[\udde6-\uddff]|[\ud83c[\ude01-\ude02]|\ud83c\ude1a|\ud83c\ude2f|[\ud83c[\ude32-\ude3a]|[\ud83c[\ude50-\ude51]|\u203c|\u2049|[\u25aa-\u25ab]|\u25b6|\u25c0|[\u25fb-\u25fe]|\u00a9|\u00ae|\u2122|\u2139|\ud83c\udc04|[\u2600-\u26FF]|\u2b05|\u2b06|\u2b07|\u2b1b|\u2b1c|\u2b50|\u2b55|\u231a|\u231b|\u2328|\u23cf|[\u23e9-\u23f3]|[\u23f8-\u23fa]|\ud83c\udccf|\u2934|\u2935|[\u2190-\u21ff]|\s)+$/;
|
|
|
|
return emoji_regex.test(inputText);
|
2020-08-07 19:26:51 +00:00
|
|
|
}
|
2020-07-27 17:30:20 +00:00
|
|
|
|
2020-08-12 03:40:25 +00:00
|
|
|
function isValidAddress(inputValue) {
|
2020-11-04 12:37:53 +00:00
|
|
|
return inputValue !== "0x" && /^0x[a-fA-F0-9]{40}$/.test(inputValue)
|
2020-08-12 03:40:25 +00:00
|
|
|
}
|
2020-08-13 08:24:51 +00:00
|
|
|
|
2020-09-09 11:04:01 +00:00
|
|
|
function isValidEns(inputValue) {
|
2020-11-04 12:37:53 +00:00
|
|
|
if (!inputValue) {
|
|
|
|
return false
|
|
|
|
}
|
2020-09-09 11:04:01 +00:00
|
|
|
const isEmail = /(?:[a-z0-9!#$%&'*+/=?^_`{|}~-]+(?:\.[a-z0-9!#$%&'*+/=?^_`{|}~-]+)*|"(?:[\x01-\x08\x0b\x0c\x0e-\x1f\x21\x23-\x5b\x5d-\x7f]|\\[\x01-\x09\x0b\x0c\x0e-\x7f])*")@(?:(?:[a-z0-9](?:[a-z0-9-]*[a-z0-9])?\.)+[a-z0-9](?:[a-z0-9-]*[a-z0-9])?|\[(?:(?:25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.){3}(?:25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?|[a-z0-9-]*[a-z0-9]:(?:[\x01-\x08\x0b\x0c\x0e-\x1f\x21-\x5a\x53-\x7f]|\\[\x01-\x09\x0b\x0c\x0e-\x7f])+)\])/.test(inputValue)
|
2023-02-20 10:57:45 +00:00
|
|
|
const isDomain = /\b((?=[a-z0-9-]{1,63}\.)(xn--)?[a-z0-9]+(-[a-z0-9]+)*\.)+[a-z]{2,63}\b/.test(inputValue)
|
2020-11-04 12:37:53 +00:00
|
|
|
return isEmail || isDomain || (inputValue.startsWith("@") && inputValue.length > 1)
|
2020-09-09 11:04:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2020-08-13 08:24:51 +00:00
|
|
|
/**
|
|
|
|
* Removes trailing zeros from a string-representation of a number. Throws
|
|
|
|
* if parameter is not a string
|
|
|
|
*/
|
|
|
|
function stripTrailingZeros(strNumber) {
|
|
|
|
if (!(typeof strNumber === "string")) {
|
2020-09-01 03:49:05 +00:00
|
|
|
try {
|
|
|
|
strNumber = strNumber.toString()
|
|
|
|
} catch(e) {
|
|
|
|
throw "[Utils.stripTrailingZeros] input parameter must be a string"
|
|
|
|
}
|
2020-08-13 08:24:51 +00:00
|
|
|
}
|
|
|
|
return strNumber.replace(/(\.[0-9]*[1-9])0+$|\.0*$/,'$1')
|
|
|
|
}
|
2020-08-17 20:46:13 +00:00
|
|
|
|
2020-09-08 21:24:12 +00:00
|
|
|
/**
|
|
|
|
* Removes starting zeros from a string-representation of a number. Throws
|
|
|
|
* if parameter is not a string
|
|
|
|
*/
|
|
|
|
function stripStartingZeros(strNumber) {
|
|
|
|
if (!(typeof strNumber === "string")) {
|
|
|
|
try {
|
|
|
|
strNumber = strNumber.toString()
|
|
|
|
} catch(e) {
|
|
|
|
throw "[Utils.stripStartingZeros] input parameter must be a string"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return strNumber.replace(/^(0*)([0-9\.]+)/, "$2")
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2020-08-17 20:46:13 +00:00
|
|
|
function setColorAlpha(color, alpha) {
|
|
|
|
return Qt.hsla(color.hslHue, color.hslSaturation, color.hslLightness, alpha)
|
|
|
|
}
|
2020-08-26 15:15:40 +00:00
|
|
|
|
2022-07-01 11:24:32 +00:00
|
|
|
// To-do move to Wallet Store, this should not be under Utils.
|
2022-05-19 08:53:57 +00:00
|
|
|
function findAssetByChainAndSymbol(chainIdToFind, assets, symbolToFind) {
|
2020-09-01 03:49:05 +00:00
|
|
|
for(var i=0; i<assets.rowCount(); i++) {
|
|
|
|
const symbol = assets.rowData(i, "symbol")
|
2022-05-19 08:53:57 +00:00
|
|
|
if (symbol.toLowerCase() === symbolToFind.toLowerCase() && assets.hasChain(i, parseInt(chainIdToFind))) {
|
2020-09-01 03:49:05 +00:00
|
|
|
return {
|
|
|
|
name: assets.rowData(i, "name"),
|
|
|
|
symbol,
|
2022-05-19 08:53:57 +00:00
|
|
|
totalBalance: assets.rowData(i, "totalBalance"),
|
|
|
|
totalCurrencyBalance: assets.rowData(i, "totalCurrencyBalance"),
|
|
|
|
fiatBalance: assets.rowData(i, "totalCurrencyBalance"),
|
|
|
|
chainId: chainIdToFind,
|
2020-09-01 03:49:05 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2020-09-24 21:41:59 +00:00
|
|
|
|
2020-11-06 19:46:21 +00:00
|
|
|
function isValidChannelName(channelName) {
|
|
|
|
return (/^[a-z0-9\-]+$/.test(channelName))
|
|
|
|
}
|
|
|
|
|
2020-10-29 15:19:27 +00:00
|
|
|
function isURL(text) {
|
2021-04-29 19:51:16 +00:00
|
|
|
return (/https?:\/\/(www\.)?[-a-zA-Z0-9@:%._\+~#=]{1,256}(\.[a-zA-Z0-9()]{1,6})?\b([-a-zA-Z0-9()@:%_\+.~#?&//=]*)/.test(text))
|
2020-10-29 15:19:27 +00:00
|
|
|
}
|
|
|
|
|
2021-04-19 10:34:03 +00:00
|
|
|
function isURLWithOptionalProtocol(text) {
|
|
|
|
return (/^(www\.)?[-a-zA-Z0-9@:%._\+~#=]{1,256}\.[a-zA-Z0-9()]{1,6}\b([-a-zA-Z0-9()@:%_\+.~#?&//=]*)/.test(text))
|
|
|
|
}
|
|
|
|
|
2020-12-11 20:29:46 +00:00
|
|
|
function isHexColor(c) {
|
2021-01-06 14:58:44 +00:00
|
|
|
return (/^#([0-9A-Fa-f]{6}|[0-9A-Fa-f]{3})$/i.test(c))
|
2020-12-11 20:29:46 +00:00
|
|
|
}
|
|
|
|
|
2020-09-28 15:23:04 +00:00
|
|
|
function isSpace(c) {
|
|
|
|
return (/( |\t|\n|\r)/.test(c))
|
2020-09-24 21:41:59 +00:00
|
|
|
}
|
|
|
|
|
2020-10-03 13:53:46 +00:00
|
|
|
function getTick(wordCount) {
|
|
|
|
return (wordCount === 12 || wordCount === 15 ||
|
|
|
|
wordCount === 18 || wordCount === 21 || wordCount === 24)
|
|
|
|
? "✓ " : "";
|
|
|
|
}
|
|
|
|
|
2021-04-12 15:40:49 +00:00
|
|
|
function isValidNumberOfWords(wordCount) {
|
|
|
|
return !!getTick(wordCount);
|
|
|
|
}
|
|
|
|
|
2020-10-03 13:53:46 +00:00
|
|
|
function countWords(text) {
|
|
|
|
if (text.trim() === "")
|
|
|
|
return 0;
|
2021-04-12 15:40:49 +00:00
|
|
|
return text.trim().replace(/ +/g, " ").split(" ").length;
|
|
|
|
}
|
|
|
|
|
|
|
|
function seedPhraseValidWordCount(text) {
|
|
|
|
return isValidNumberOfWords(countWords(text))
|
2020-10-03 13:53:46 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns text in the format "✓ 12 words" for seed phrases input boxes
|
|
|
|
*/
|
|
|
|
function seedPhraseWordCountText(text) {
|
2023-07-04 15:11:41 +00:00
|
|
|
const wordCount = countWords(text);
|
|
|
|
return getTick(wordCount) + qsTr("%n word(s)", "", wordCount)
|
2020-10-03 13:53:46 +00:00
|
|
|
}
|
2020-10-07 02:47:21 +00:00
|
|
|
|
|
|
|
function uuid() {
|
|
|
|
return Date.now().toString(36) + Math.random().toString(36).substr(2, 5)
|
|
|
|
}
|
2020-11-23 20:41:57 +00:00
|
|
|
|
2020-12-03 22:26:05 +00:00
|
|
|
|
2020-12-04 14:53:00 +00:00
|
|
|
function validatePasswords(item, firstPasswordField, repeatPasswordField) {
|
2020-12-03 22:26:05 +00:00
|
|
|
switch (item) {
|
|
|
|
case "first":
|
|
|
|
if (firstPasswordField.text === "") {
|
2022-04-04 11:26:30 +00:00
|
|
|
return [false, qsTr("You need to enter a password")];
|
2022-11-21 07:30:11 +00:00
|
|
|
} else if (firstPasswordField.text.length < Constants.minPasswordLength) {
|
|
|
|
return [false, qsTr("Password needs to be %n character(s) or more", "", Constants.minPasswordLength)];
|
2020-12-03 22:26:05 +00:00
|
|
|
}
|
|
|
|
return [true, ""];
|
|
|
|
|
|
|
|
case "repeat":
|
|
|
|
if (repeatPasswordField.text === "") {
|
2022-04-04 11:26:30 +00:00
|
|
|
return [false, qsTr("You need to repeat your password")];
|
2020-12-03 22:26:05 +00:00
|
|
|
} else if (repeatPasswordField.text !== firstPasswordField.text) {
|
2022-04-04 11:26:30 +00:00
|
|
|
return [false, qsTr("Passwords don't match")];
|
2020-12-03 22:26:05 +00:00
|
|
|
}
|
|
|
|
return [true, ""];
|
|
|
|
|
|
|
|
default:
|
|
|
|
return [false, ""];
|
|
|
|
}
|
|
|
|
}
|
feat: whitelist gifs (no url extension needed)
Fixes #1377.
Fixes #1479.
Two sites have been added to the whitelist: giphy.com and tenor.com.
`imageUrls` in its entirety has been removed and instead all links are being handle through the message `linkUrls`. This prevents double-handling of urls that may or may not be images.
The logic to automatically show links previews works like this:
1. If the setting "display chat images" is enabled, all links that *contain* ".png", ".jpg", ".jpeg", ".svg", ".gif" will be automatically shown. If the URL doesn't contain the extension, we are not downloading it. This was meant to be somewhat of a security compromise as we do not want to download each and every link posted in a message just to find out its true content type.
2. If the above setting is *disabled*, then we follow the whitelist settings for tenor and giphy. This allows us to preview gifs that do not have a file extension in their url.
feat: bump status-go to the commit that supports the new whitelist (https://github.com/status-im/status-go/pull/2094), and also lets us get link preview data from urls in the whitelist. NOTE: this commit was branched off status-go `develop`, so once it is merged, and we update this PR to the new commit, we will effectively be getting status-go develop changes. We *could* base that status-go PR off of master if it makes things easier.
fix: height on settings update issue
feat: move date/time of message below links
fix: layout issues when changing setting `neverAskAboutUnfurlingAgain`
feat: Add MessageBorder component to aid in showing rounded corners with different radius
2020-12-11 00:53:44 +00:00
|
|
|
|
2021-09-24 12:03:57 +00:00
|
|
|
function validatePINs(item, firstPINField, repeatPINField) {
|
|
|
|
switch (item) {
|
|
|
|
case "first":
|
2022-09-26 11:57:32 +00:00
|
|
|
if (firstPINField.pinInput === "") {
|
2021-09-24 12:03:57 +00:00
|
|
|
return [false, qsTr("You need to enter a PIN")];
|
2022-09-26 11:57:32 +00:00
|
|
|
} else if (!/^\d+$/.test(firstPINField.pinInput)) {
|
2021-09-24 12:03:57 +00:00
|
|
|
return [false, qsTr("The PIN must contain only digits")];
|
2022-09-26 11:57:32 +00:00
|
|
|
} else if (firstPINField.pinInput.length != Constants.keycard.general.keycardPinLength) {
|
2023-07-04 15:11:41 +00:00
|
|
|
return [false, qsTr("The PIN must be exactly %n digit(s)", "", Constants.keycard.general.keycardPinLength)];
|
2021-09-24 12:03:57 +00:00
|
|
|
}
|
|
|
|
return [true, ""];
|
|
|
|
|
|
|
|
case "repeat":
|
2022-09-26 11:57:32 +00:00
|
|
|
if (repeatPINField.pinInput === "") {
|
2021-09-24 12:03:57 +00:00
|
|
|
return [false, qsTr("You need to repeat your PIN")];
|
2022-09-26 11:57:32 +00:00
|
|
|
} else if (repeatPINField.pinInput !== firstPINField.pinInput) {
|
2023-07-04 15:11:41 +00:00
|
|
|
return [false, qsTr("PINs don't match")];
|
2021-09-24 12:03:57 +00:00
|
|
|
}
|
|
|
|
return [true, ""];
|
|
|
|
|
|
|
|
default:
|
|
|
|
return [false, ""];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
feat: whitelist gifs (no url extension needed)
Fixes #1377.
Fixes #1479.
Two sites have been added to the whitelist: giphy.com and tenor.com.
`imageUrls` in its entirety has been removed and instead all links are being handle through the message `linkUrls`. This prevents double-handling of urls that may or may not be images.
The logic to automatically show links previews works like this:
1. If the setting "display chat images" is enabled, all links that *contain* ".png", ".jpg", ".jpeg", ".svg", ".gif" will be automatically shown. If the URL doesn't contain the extension, we are not downloading it. This was meant to be somewhat of a security compromise as we do not want to download each and every link posted in a message just to find out its true content type.
2. If the above setting is *disabled*, then we follow the whitelist settings for tenor and giphy. This allows us to preview gifs that do not have a file extension in their url.
feat: bump status-go to the commit that supports the new whitelist (https://github.com/status-im/status-go/pull/2094), and also lets us get link preview data from urls in the whitelist. NOTE: this commit was branched off status-go `develop`, so once it is merged, and we update this PR to the new commit, we will effectively be getting status-go develop changes. We *could* base that status-go PR off of master if it makes things easier.
fix: height on settings update issue
feat: move date/time of message below links
fix: layout issues when changing setting `neverAskAboutUnfurlingAgain`
feat: Add MessageBorder component to aid in showing rounded corners with different radius
2020-12-11 00:53:44 +00:00
|
|
|
function getHostname(url) {
|
|
|
|
const rgx = /\:\/\/(?:[a-zA-Z0-9\-]*\.{1,}){1,}[a-zA-Z0-9]*/i
|
|
|
|
const matches = rgx.exec(url)
|
2021-02-25 19:32:39 +00:00
|
|
|
if (!matches || !matches.length) {
|
|
|
|
if (url.includes(Constants.deepLinkPrefix)) {
|
|
|
|
return Constants.deepLinkPrefix
|
|
|
|
}
|
|
|
|
return ""
|
|
|
|
}
|
feat: whitelist gifs (no url extension needed)
Fixes #1377.
Fixes #1479.
Two sites have been added to the whitelist: giphy.com and tenor.com.
`imageUrls` in its entirety has been removed and instead all links are being handle through the message `linkUrls`. This prevents double-handling of urls that may or may not be images.
The logic to automatically show links previews works like this:
1. If the setting "display chat images" is enabled, all links that *contain* ".png", ".jpg", ".jpeg", ".svg", ".gif" will be automatically shown. If the URL doesn't contain the extension, we are not downloading it. This was meant to be somewhat of a security compromise as we do not want to download each and every link posted in a message just to find out its true content type.
2. If the above setting is *disabled*, then we follow the whitelist settings for tenor and giphy. This allows us to preview gifs that do not have a file extension in their url.
feat: bump status-go to the commit that supports the new whitelist (https://github.com/status-im/status-go/pull/2094), and also lets us get link preview data from urls in the whitelist. NOTE: this commit was branched off status-go `develop`, so once it is merged, and we update this PR to the new commit, we will effectively be getting status-go develop changes. We *could* base that status-go PR off of master if it makes things easier.
fix: height on settings update issue
feat: move date/time of message below links
fix: layout issues when changing setting `neverAskAboutUnfurlingAgain`
feat: Add MessageBorder component to aid in showing rounded corners with different radius
2020-12-11 00:53:44 +00:00
|
|
|
return matches[0].substring(3)
|
|
|
|
}
|
|
|
|
|
2022-10-28 08:48:59 +00:00
|
|
|
function isStatusDeepLink(link) {
|
2023-05-23 20:01:39 +00:00
|
|
|
return link.includes(Constants.deepLinkPrefix) || link.includes(Constants.externalStatusLink)
|
2022-10-28 08:48:59 +00:00
|
|
|
}
|
|
|
|
|
2022-06-07 14:47:45 +00:00
|
|
|
function removeGifUrls(message) {
|
|
|
|
return message.replace(/(?:https?|ftp):\/\/[\n\S]*(\.gif)+/gm, '');
|
|
|
|
}
|
|
|
|
|
2023-03-27 17:53:17 +00:00
|
|
|
function isValidDragNDropImage(url) {
|
2023-06-07 15:51:15 +00:00
|
|
|
return url.startsWith(Constants.dataImagePrefix) ||
|
|
|
|
QClipboardProxy.isValidImageUrl(url, Constants.acceptedDragNDropImageExtensions)
|
2023-03-27 17:53:17 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
function isFilesizeValid(img) {
|
|
|
|
if (img.startsWith(Constants.dataImagePrefix)) {
|
|
|
|
return img.length < maxImgSizeBytes
|
|
|
|
}
|
2023-06-07 15:51:15 +00:00
|
|
|
const size = QClipboardProxy.getFileSize(img)
|
2023-03-27 17:53:17 +00:00
|
|
|
return size <= maxImgSizeBytes
|
2021-03-10 04:59:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
function deduplicate(array) {
|
|
|
|
return Array.from(new Set(array))
|
feat: whitelist gifs (no url extension needed)
Fixes #1377.
Fixes #1479.
Two sites have been added to the whitelist: giphy.com and tenor.com.
`imageUrls` in its entirety has been removed and instead all links are being handle through the message `linkUrls`. This prevents double-handling of urls that may or may not be images.
The logic to automatically show links previews works like this:
1. If the setting "display chat images" is enabled, all links that *contain* ".png", ".jpg", ".jpeg", ".svg", ".gif" will be automatically shown. If the URL doesn't contain the extension, we are not downloading it. This was meant to be somewhat of a security compromise as we do not want to download each and every link posted in a message just to find out its true content type.
2. If the above setting is *disabled*, then we follow the whitelist settings for tenor and giphy. This allows us to preview gifs that do not have a file extension in their url.
feat: bump status-go to the commit that supports the new whitelist (https://github.com/status-im/status-go/pull/2094), and also lets us get link preview data from urls in the whitelist. NOTE: this commit was branched off status-go `develop`, so once it is merged, and we update this PR to the new commit, we will effectively be getting status-go develop changes. We *could* base that status-go PR off of master if it makes things easier.
fix: height on settings update issue
feat: move date/time of message below links
fix: layout issues when changing setting `neverAskAboutUnfurlingAgain`
feat: Add MessageBorder component to aid in showing rounded corners with different radius
2020-12-11 00:53:44 +00:00
|
|
|
}
|
2021-04-12 15:40:49 +00:00
|
|
|
|
2021-06-29 12:47:28 +00:00
|
|
|
function hasUpperCaseLetter(str) {
|
|
|
|
return (/[A-Z]/.test(str))
|
|
|
|
}
|
|
|
|
|
2023-03-07 11:33:28 +00:00
|
|
|
function convertSpacesToDashes(str)
|
2021-06-29 12:47:28 +00:00
|
|
|
{
|
2023-03-07 11:33:28 +00:00
|
|
|
return str.replace(/ /g, "-")
|
2021-06-29 12:47:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Validation section start */
|
|
|
|
|
|
|
|
enum Validate {
|
|
|
|
NoEmpty = 0x01,
|
|
|
|
TextLength = 0x02,
|
|
|
|
TextHexColor = 0x04,
|
|
|
|
TextLowercaseLettersNumberAndDashes = 0x08
|
|
|
|
}
|
|
|
|
|
|
|
|
function validateAndReturnError(str, validation, fieldName = "field", limit = 0)
|
|
|
|
{
|
|
|
|
let errMsg = ""
|
|
|
|
|
|
|
|
if(validation & Utils.Validate.NoEmpty && str === "") {
|
2022-04-04 11:26:30 +00:00
|
|
|
errMsg = qsTr("You need to enter a %1").arg(fieldName)
|
2021-06-29 12:47:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if(validation & Utils.Validate.TextLength && str.length > limit) {
|
2023-07-04 15:11:41 +00:00
|
|
|
errMsg = qsTr("The %1 cannot exceed %n character(s)", "", limit).arg(fieldName)
|
2021-06-29 12:47:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if(validation & Utils.Validate.TextHexColor && !isHexColor(str)) {
|
2022-04-04 11:26:30 +00:00
|
|
|
errMsg = qsTr("Must be an hexadecimal color (eg: #4360DF)")
|
2021-06-29 12:47:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if(validation & Utils.Validate.TextLowercaseLettersNumberAndDashes && !isValidChannelName(str)) {
|
2022-04-04 11:26:30 +00:00
|
|
|
errMsg = qsTr("Use only lowercase letters (a to z), numbers & dashes (-). Do not use chat keys.")
|
2021-06-29 12:47:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return errMsg
|
|
|
|
}
|
|
|
|
|
2021-08-16 13:46:00 +00:00
|
|
|
function getErrorMessage(errors, fieldName) {
|
|
|
|
if (errors) {
|
|
|
|
if (errors.minLength) {
|
|
|
|
return errors.minLength.min === 1 ?
|
|
|
|
qsTr("You need to enter a %1").arg(fieldName) :
|
2023-07-04 15:11:41 +00:00
|
|
|
qsTr("Value has to be at least %n character(s) long", "", errors.minLength.min)
|
2021-08-16 13:46:00 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return ""
|
|
|
|
}
|
|
|
|
|
2021-06-29 12:47:28 +00:00
|
|
|
/* Validation section end */
|
|
|
|
|
2023-08-22 15:34:37 +00:00
|
|
|
function getContactDetailsAsJson(publicKey, getVerificationRequest=true, getOnlineStatus=false) {
|
2022-12-14 20:58:00 +00:00
|
|
|
const defaultValue = {
|
|
|
|
displayName: "",
|
|
|
|
displayIcon: "",
|
|
|
|
publicKey: publicKey,
|
|
|
|
name: "",
|
|
|
|
ensVerified: false,
|
|
|
|
alias: "",
|
|
|
|
lastUpdated: 0,
|
|
|
|
lastUpdatedLocally: 0,
|
|
|
|
localNickname: "",
|
|
|
|
thumbnailImage: "",
|
|
|
|
largeImage: "",
|
|
|
|
isContact: false,
|
|
|
|
isAdded: false,
|
|
|
|
isBlocked: false,
|
|
|
|
requestReceived: false,
|
|
|
|
isSyncing: false,
|
|
|
|
removed: false,
|
|
|
|
trustStatus: Constants.trustStatus.unknown,
|
|
|
|
verificationStatus: Constants.verificationStatus.unverified,
|
2023-08-22 15:34:37 +00:00
|
|
|
incomingVerificationStatus: Constants.verificationStatus.unverified,
|
|
|
|
onlineStatus: Constants.onlineStatus.inactive
|
2022-12-14 20:58:00 +00:00
|
|
|
}
|
|
|
|
|
2023-01-12 19:23:26 +00:00
|
|
|
if (!mainModuleInst || !publicKey)
|
2022-12-14 20:58:00 +00:00
|
|
|
return defaultValue
|
|
|
|
|
2023-08-22 15:34:37 +00:00
|
|
|
const jsonObj = mainModuleInst.getContactDetailsAsJson(publicKey, getVerificationRequest, getOnlineStatus)
|
2022-12-14 20:58:00 +00:00
|
|
|
|
2022-01-04 12:06:05 +00:00
|
|
|
try {
|
2022-12-14 20:58:00 +00:00
|
|
|
return JSON.parse(jsonObj)
|
2022-01-04 12:06:05 +00:00
|
|
|
}
|
|
|
|
catch (e) {
|
2021-12-31 12:29:51 +00:00
|
|
|
// This log is available only in debug mode, if it's annoying we can remove it
|
2022-10-20 15:12:38 +00:00
|
|
|
console.warn("error parsing contact details for public key: ", publicKey, " error: ", e.message)
|
2022-12-14 20:58:00 +00:00
|
|
|
return defaultValue
|
2021-12-31 12:29:51 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-12-01 10:24:25 +00:00
|
|
|
function isEnsVerified(publicKey) {
|
2022-10-27 09:21:10 +00:00
|
|
|
if (publicKey === "" || !isChatKey(publicKey) )
|
2023-05-02 13:37:31 +00:00
|
|
|
return false
|
|
|
|
if (!mainModuleInst)
|
|
|
|
return false
|
2023-04-19 16:48:57 +00:00
|
|
|
return mainModuleInst.isEnsVerified(publicKey)
|
2022-09-22 22:18:15 +00:00
|
|
|
}
|
|
|
|
|
2022-03-09 10:27:32 +00:00
|
|
|
function getEmojiHashAsJson(publicKey) {
|
2022-10-27 09:21:10 +00:00
|
|
|
if (publicKey === "" || !isChatKey(publicKey)) {
|
2022-03-09 10:27:32 +00:00
|
|
|
return ""
|
|
|
|
}
|
2022-10-20 15:12:38 +00:00
|
|
|
let jsonObj = globalUtilsInst.getEmojiHashAsJson(publicKey)
|
2022-03-09 10:27:32 +00:00
|
|
|
return JSON.parse(jsonObj)
|
|
|
|
}
|
2021-12-31 12:29:51 +00:00
|
|
|
|
2022-12-01 10:24:25 +00:00
|
|
|
function getColorHashAsJson(publicKey, skipEnsVerification=false) {
|
|
|
|
if (publicKey === "" || !isChatKey(publicKey))
|
|
|
|
return
|
|
|
|
if (skipEnsVerification) // we know already the user is ENS verified -> no color ring
|
2022-09-22 22:18:15 +00:00
|
|
|
return
|
2022-12-01 10:24:25 +00:00
|
|
|
if (isEnsVerified(publicKey)) // ENS verified -> no color ring
|
2022-09-22 22:18:15 +00:00
|
|
|
return
|
2022-10-20 15:12:38 +00:00
|
|
|
let jsonObj = globalUtilsInst.getColorHashAsJson(publicKey)
|
2022-03-09 10:27:32 +00:00
|
|
|
return JSON.parse(jsonObj)
|
|
|
|
}
|
2021-06-29 12:47:28 +00:00
|
|
|
|
2022-04-07 19:02:54 +00:00
|
|
|
function colorIdForPubkey(publicKey) {
|
2022-10-27 09:21:10 +00:00
|
|
|
if (publicKey === "" || !isChatKey(publicKey)) {
|
2022-04-07 19:02:54 +00:00
|
|
|
return 0
|
|
|
|
}
|
2022-10-20 15:12:38 +00:00
|
|
|
return globalUtilsInst.getColorId(publicKey)
|
2022-04-07 19:02:54 +00:00
|
|
|
}
|
|
|
|
|
2022-09-06 15:06:33 +00:00
|
|
|
function colorForColorId(colorId) {
|
2022-12-01 10:24:25 +00:00
|
|
|
if (colorId < 0 || colorId >= Theme.palette.userCustomizationColors.length) {
|
2022-09-06 15:06:33 +00:00
|
|
|
console.warn("Utils.colorForColorId : colorId is out of bounds")
|
2022-08-19 10:01:54 +00:00
|
|
|
return StatusColors.colors['blue']
|
|
|
|
}
|
2022-09-06 15:06:33 +00:00
|
|
|
return Theme.palette.userCustomizationColors[colorId]
|
|
|
|
}
|
2022-08-19 10:01:54 +00:00
|
|
|
|
2022-09-06 15:06:33 +00:00
|
|
|
function colorForPubkey(publicKey) {
|
|
|
|
const pubKeyColorId = colorIdForPubkey(publicKey)
|
|
|
|
return colorForColorId(pubKeyColorId)
|
2022-04-07 19:02:54 +00:00
|
|
|
}
|
|
|
|
|
2023-07-06 11:26:30 +00:00
|
|
|
function getCommunityShareLink(communityId) {
|
2022-10-26 14:08:59 +00:00
|
|
|
if (communityId === "") {
|
|
|
|
return ""
|
|
|
|
}
|
|
|
|
|
2023-07-06 11:26:30 +00:00
|
|
|
return communitiesModuleInst.shareCommunityUrlWithData(communityId)
|
2022-10-26 14:08:59 +00:00
|
|
|
}
|
|
|
|
|
2023-10-24 15:13:25 +00:00
|
|
|
function getCommunityChannelShareLink(communityId, channelId) {
|
|
|
|
if (communityId === "" || channelId === "")
|
|
|
|
return ""
|
|
|
|
return communitiesModuleInst.shareCommunityChannelUrlWithData(communityId, channelId)
|
|
|
|
}
|
|
|
|
|
|
|
|
function getCommunityChannelShareLinkWithChatId(chatId) {
|
|
|
|
const communityId = getCommunityIdFromFullChatId(chatId)
|
|
|
|
const channelId = getChannelUuidFromFullChatId(chatId)
|
|
|
|
return getCommunityChannelShareLink(communityId, channelId)
|
|
|
|
}
|
|
|
|
|
2022-10-28 08:48:59 +00:00
|
|
|
function getChatKeyFromShareLink(link) {
|
|
|
|
let index = link.lastIndexOf("/u/")
|
|
|
|
if (index === -1) {
|
|
|
|
return link
|
|
|
|
}
|
|
|
|
return link.substring(index + 3)
|
|
|
|
}
|
|
|
|
|
2022-10-26 14:08:59 +00:00
|
|
|
function getCommunityIdFromShareLink(link) {
|
|
|
|
let index = link.lastIndexOf("/c/")
|
|
|
|
if (index === -1) {
|
|
|
|
return ""
|
|
|
|
}
|
|
|
|
const communityKey = link.substring(index + 3)
|
|
|
|
if (globalUtilsInst.isCompressedPubKey(communityKey)) {
|
|
|
|
// is zQ.., need to be converted to standard compression
|
|
|
|
return globalUtilsInst.changeCommunityKeyCompression(communityKey)
|
|
|
|
}
|
|
|
|
return communityKey
|
|
|
|
}
|
|
|
|
|
2023-07-27 11:21:25 +00:00
|
|
|
function getCommunityDataFromSharedLink(link) {
|
2023-10-26 13:58:05 +00:00
|
|
|
const index = link.lastIndexOf("/c/")
|
|
|
|
if (index === -1)
|
2023-07-27 11:21:25 +00:00
|
|
|
return null
|
|
|
|
|
2023-10-26 13:58:05 +00:00
|
|
|
const communityDataString = sharedUrlsModuleInst.parseCommunitySharedUrl(link)
|
2023-07-27 11:21:25 +00:00
|
|
|
try {
|
2023-10-26 13:58:05 +00:00
|
|
|
return JSON.parse(communityDataString)
|
2023-07-27 11:21:25 +00:00
|
|
|
} catch (e) {
|
|
|
|
console.warn("Error while parsing community data from url:", e.message)
|
|
|
|
return null
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-11-28 14:57:56 +00:00
|
|
|
function changeCommunityKeyCompression(communityKey) {
|
|
|
|
return globalUtilsInst.changeCommunityKeyCompression(communityKey)
|
|
|
|
}
|
|
|
|
|
2022-03-29 10:53:41 +00:00
|
|
|
function getCompressedPk(publicKey) {
|
|
|
|
if (publicKey === "") {
|
|
|
|
return ""
|
|
|
|
}
|
2022-10-27 09:21:10 +00:00
|
|
|
if (!isChatKey(publicKey))
|
|
|
|
return publicKey
|
2022-10-20 15:12:38 +00:00
|
|
|
return globalUtilsInst.getCompressedPk(publicKey)
|
2022-03-29 10:53:41 +00:00
|
|
|
}
|
|
|
|
|
2022-09-15 16:34:41 +00:00
|
|
|
function getElidedPk(publicKey) {
|
|
|
|
if (publicKey === "") {
|
|
|
|
return ""
|
|
|
|
}
|
|
|
|
return StatusQUtils.Utils.elideText(publicKey, 5, 3)
|
|
|
|
}
|
|
|
|
|
2022-10-06 15:06:27 +00:00
|
|
|
function getElidedCommunityPK(publicKey) {
|
|
|
|
if (publicKey === "") {
|
|
|
|
return ""
|
|
|
|
}
|
|
|
|
return StatusQUtils.Utils.elideText(publicKey, 16)
|
|
|
|
}
|
|
|
|
|
2022-03-29 10:53:41 +00:00
|
|
|
function getElidedCompressedPk(publicKey) {
|
|
|
|
if (publicKey === "") {
|
|
|
|
return ""
|
|
|
|
}
|
|
|
|
let compressedPk = getCompressedPk(publicKey)
|
2022-09-15 16:34:41 +00:00
|
|
|
return getElidedPk(compressedPk, 6, 3)
|
2022-03-29 10:53:41 +00:00
|
|
|
}
|
|
|
|
|
2022-03-10 12:09:39 +00:00
|
|
|
function elideIfTooLong(str, maxLength) {
|
|
|
|
return (str.length > maxLength) ? str.substr(0, maxLength-4) + '...' : str;
|
|
|
|
}
|
|
|
|
|
2023-01-03 23:38:16 +00:00
|
|
|
function plainText(text) {
|
|
|
|
return globalUtilsInst.plainText(text)
|
2022-03-10 12:09:39 +00:00
|
|
|
}
|
|
|
|
|
fix: prevent crash on generate account wrong password
Fixes #2448.
Currently, if a wrong password is entered when generating a wallet account, the app will crash due to attempting to decode a `GeneratedAccount ` from an rpc response containing only an error.
With this PR, we are detecting if an error is returned in the response, and if so, raising a StatusGoException. This exception is caught in the call chain, and translated in to a `StatusGoError` which is serialised and sent to the QML view, where it is parsed and displayed as an invalid password error in the input box.
refactor: remove string return values as error messages in wallet model
In the wallet model, we were passing back empty strings for no error, or an error as a string. This is not only confusing, but does not benefit from leaning on the compiler and strong types. One has to read the entire code to understand if a string result is returned when there is no error instead of implicitly being able to understand there is no return type.
To alleviate this, account creation fundtions that do not need to return a value have been changed to a void return type, and raise `StatusGoException` if there is an error encountered. This can be caught in the call chain and used as necessary (ie to pass to QML).
refactor: move invalid password string detection to Utils
Currently, we are reading returned view model values and checking to see if they include a known string from Status Go that means there was an invalid password used. This string was placed in the codebased in mulitple locations.
This PR moves the string check to a Utils function and updates all the references to use the function in Utils.
2021-05-13 04:41:48 +00:00
|
|
|
function isInvalidPasswordMessage(msg) {
|
|
|
|
return (
|
|
|
|
msg.includes("could not decrypt key with given password") ||
|
|
|
|
msg.includes("invalid password")
|
|
|
|
);
|
|
|
|
}
|
2022-04-05 15:45:01 +00:00
|
|
|
|
2022-08-29 18:02:36 +00:00
|
|
|
function isInvalidPrivateKey(msg) {
|
|
|
|
return msg.includes("invalid private key");
|
|
|
|
}
|
|
|
|
|
2022-05-12 15:24:03 +00:00
|
|
|
function isInvalidPath(msg) {
|
2022-10-27 09:26:34 +00:00
|
|
|
return msg.includes(Constants.wrongDerivationPathError)
|
2022-05-12 15:24:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
function accountAlreadyExistsError(msg) {
|
2022-10-27 09:26:34 +00:00
|
|
|
return msg.includes(Constants.existingAccountError)
|
2022-05-12 15:24:03 +00:00
|
|
|
}
|
|
|
|
|
2022-08-11 10:58:09 +00:00
|
|
|
// See also: backend/interpret/cropped_image.nim
|
|
|
|
function getImageAndCropInfoJson(imgPath, cropRect) {
|
|
|
|
return JSON.stringify({imagePath: String(imgPath).replace("file://", ""), cropRect: cropRect})
|
|
|
|
}
|
|
|
|
|
2022-12-12 12:39:25 +00:00
|
|
|
// handle translations for section names coming from app_sections_config.nim
|
|
|
|
function translatedSectionName(sectionType, fallback) {
|
|
|
|
switch(sectionType) {
|
|
|
|
case Constants.appSection.chat:
|
|
|
|
return qsTr("Messages")
|
|
|
|
case Constants.appSection.wallet:
|
|
|
|
return qsTr("Wallet")
|
|
|
|
case Constants.appSection.browser:
|
|
|
|
return qsTr("Browser")
|
|
|
|
case Constants.appSection.profile:
|
|
|
|
return qsTr("Settings")
|
|
|
|
case Constants.appSection.node:
|
|
|
|
return qsTr("Node Management")
|
|
|
|
case Constants.appSection.communitiesPortal:
|
2023-06-26 11:47:23 +00:00
|
|
|
return qsTr("Discover Communities")
|
2022-12-12 12:39:25 +00:00
|
|
|
default:
|
|
|
|
return fallback
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-12-14 21:06:14 +00:00
|
|
|
function getFontSizeBasedOnLetterCount(text) {
|
|
|
|
if(text.length >= 12)
|
|
|
|
return 18
|
|
|
|
if(text.length >= 10)
|
|
|
|
return 24
|
|
|
|
if(text.length > 6)
|
|
|
|
return 28
|
|
|
|
else
|
|
|
|
return 34
|
|
|
|
}
|
|
|
|
|
2023-03-01 20:59:08 +00:00
|
|
|
function getTimerString(timeInSecs) {
|
|
|
|
let result = ""
|
|
|
|
const hour = Math.floor(timeInSecs/60/60)
|
2023-03-23 10:23:02 +00:00
|
|
|
const mins = Math.floor(timeInSecs/60%60)
|
2023-03-01 20:59:08 +00:00
|
|
|
const secs = Math.floor(timeInSecs%60)
|
|
|
|
if(hour > 0 )
|
|
|
|
result += qsTr(" %n hour(s) ", "", hour)
|
|
|
|
if(mins > 0)
|
|
|
|
result += qsTr(" %n min(s) ", "", mins)
|
|
|
|
if(secs > 0)
|
|
|
|
result += qsTr(" %n sec(s) ", "", secs)
|
|
|
|
return result
|
|
|
|
}
|
|
|
|
|
2023-03-22 15:48:44 +00:00
|
|
|
function appTranslation(key) {
|
|
|
|
switch(key) {
|
|
|
|
case Constants.appTranslatableConstants.loginAccountsListAddNewUser:
|
|
|
|
return qsTr("Add new user")
|
|
|
|
case Constants.appTranslatableConstants.loginAccountsListAddExistingUser:
|
|
|
|
return qsTr("Add existing Status user")
|
|
|
|
case Constants.appTranslatableConstants.loginAccountsListLostKeycard:
|
|
|
|
return qsTr("Lost Keycard")
|
|
|
|
case Constants.appTranslatableConstants.addAccountLabelNewWatchOnlyAccount:
|
2023-10-04 14:54:04 +00:00
|
|
|
return qsTr("New watched address")
|
2023-03-30 13:00:55 +00:00
|
|
|
case Constants.appTranslatableConstants.addAccountLabelWatchOnlyAccount:
|
2023-10-04 14:54:04 +00:00
|
|
|
return qsTr("Watched address")
|
2023-03-22 15:48:44 +00:00
|
|
|
case Constants.appTranslatableConstants.addAccountLabelExisting:
|
|
|
|
return qsTr("Existing")
|
|
|
|
case Constants.appTranslatableConstants.addAccountLabelImportNew:
|
|
|
|
return qsTr("Import new")
|
|
|
|
case Constants.appTranslatableConstants.addAccountLabelOptionAddNewMasterKey:
|
|
|
|
return qsTr("Add new master key")
|
|
|
|
case Constants.appTranslatableConstants.addAccountLabelOptionAddWatchOnlyAcc:
|
2023-10-04 14:54:04 +00:00
|
|
|
return qsTr("Add watched address")
|
2023-03-22 15:48:44 +00:00
|
|
|
}
|
|
|
|
|
2023-05-07 09:18:40 +00:00
|
|
|
// special handling because on an index attached to the constant
|
|
|
|
if (key.startsWith(Constants.appTranslatableConstants.keycardAccountNameOfUnknownWalletAccount)) {
|
|
|
|
let num = key.substring(Constants.appTranslatableConstants.keycardAccountNameOfUnknownWalletAccount.length)
|
2023-07-04 15:11:41 +00:00
|
|
|
return "%1%2".arg(qsTr("acc", "short for account")).arg(num) //short name of an unknown (removed) wallet account
|
2023-05-07 09:18:40 +00:00
|
|
|
}
|
|
|
|
|
2023-03-22 15:48:44 +00:00
|
|
|
return key
|
|
|
|
}
|
|
|
|
|
2023-05-04 15:37:44 +00:00
|
|
|
function dropUserLinkPrefix(text) {
|
|
|
|
if (text.startsWith(Constants.userLinkPrefix))
|
|
|
|
text = text.slice(Constants.userLinkPrefix.length)
|
|
|
|
return text
|
|
|
|
}
|
|
|
|
|
2023-07-27 11:21:25 +00:00
|
|
|
function parseContactUrl(link) {
|
2023-11-28 19:55:07 +00:00
|
|
|
let index = link.lastIndexOf("/u/")
|
|
|
|
|
|
|
|
if (index === -1) {
|
|
|
|
index = link.lastIndexOf("/u#")
|
|
|
|
}
|
|
|
|
|
2023-10-26 13:58:05 +00:00
|
|
|
if (index === -1)
|
2023-07-27 11:21:25 +00:00
|
|
|
return null
|
|
|
|
|
2023-10-26 13:58:05 +00:00
|
|
|
const contactDataString = sharedUrlsModuleInst.parseContactSharedUrl(link)
|
2023-07-27 11:21:25 +00:00
|
|
|
try {
|
2023-10-26 13:58:05 +00:00
|
|
|
return JSON.parse(contactDataString)
|
2023-07-27 11:21:25 +00:00
|
|
|
} catch (e) {
|
|
|
|
return null
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-05-04 15:37:44 +00:00
|
|
|
function dropCommunityLinkPrefix(text) {
|
|
|
|
if (text.startsWith(Constants.communityLinkPrefix))
|
|
|
|
text = text.slice(Constants.communityLinkPrefix.length)
|
|
|
|
return text
|
|
|
|
}
|
|
|
|
|
2023-09-05 16:04:58 +00:00
|
|
|
function copyToClipboard(text) {
|
|
|
|
globalUtilsInst.copyToClipboard(text)
|
|
|
|
}
|
|
|
|
|
2023-05-19 16:07:50 +00:00
|
|
|
function copyImageToClipboardByUrl(content) {
|
|
|
|
globalUtilsInst.copyImageToClipboardByUrl(content)
|
|
|
|
}
|
|
|
|
|
|
|
|
function downloadImageByUrl(url, path) {
|
|
|
|
globalUtilsInst.downloadImageByUrl(url, path)
|
|
|
|
}
|
|
|
|
|
2023-05-22 15:55:47 +00:00
|
|
|
function getHoveredColor(colorId) {
|
|
|
|
let isLightTheme = Theme.palette.name === Constants.lightThemeName
|
|
|
|
switch(colorId.toString().toUpperCase()) {
|
|
|
|
case Constants.walletAccountColors.primary.toUpperCase():
|
|
|
|
return isLightTheme ? Style.statusQDarkTheme.customisationColors.blue: Style.statusQLightTheme.customisationColors.blue
|
|
|
|
case Constants.walletAccountColors.purple.toUpperCase():
|
|
|
|
return isLightTheme ? Style.statusQDarkTheme.customisationColors.purple: Style.statusQLightTheme.customisationColors.purple
|
|
|
|
case Constants.walletAccountColors.orange.toUpperCase():
|
|
|
|
return isLightTheme ? Style.statusQDarkTheme.customisationColors.orange: Style.statusQLightTheme.customisationColors.orange
|
|
|
|
case Constants.walletAccountColors.army.toUpperCase():
|
|
|
|
return isLightTheme ? Style.statusQDarkTheme.customisationColors.army: Style.statusQLightTheme.customisationColors.army
|
|
|
|
case Constants.walletAccountColors.turquoise.toUpperCase():
|
|
|
|
return isLightTheme ? Style.statusQDarkTheme.customisationColors.turquoise: Style.statusQLightTheme.customisationColors.turquoise
|
|
|
|
case Constants.walletAccountColors.sky.toUpperCase():
|
|
|
|
return isLightTheme ? Style.statusQDarkTheme.customisationColors.sky: Style.statusQLightTheme.customisationColors.sky
|
|
|
|
case Constants.walletAccountColors.yellow.toUpperCase():
|
|
|
|
return isLightTheme ? Style.statusQDarkTheme.customisationColors.yellow: Style.statusQLightTheme.customisationColors.yellow
|
|
|
|
case Constants.walletAccountColors.pink.toUpperCase():
|
|
|
|
return isLightTheme ? Style.statusQDarkTheme.customisationColors.pink: Style.statusQLightTheme.customisationColors.pink
|
|
|
|
case Constants.walletAccountColors.copper.toUpperCase():
|
|
|
|
return isLightTheme ? Style.statusQDarkTheme.customisationColors.copper: Style.statusQLightTheme.customisationColors.copper
|
|
|
|
case Constants.walletAccountColors.camel.toUpperCase():
|
|
|
|
return isLightTheme ? Style.statusQDarkTheme.customisationColors.camel: Style.statusQLightTheme.customisationColors.camel
|
|
|
|
case Constants.walletAccountColors.magenta.toUpperCase():
|
|
|
|
return isLightTheme ? Style.statusQDarkTheme.customisationColors.magenta: Style.statusQLightTheme.customisationColors.magenta
|
|
|
|
case Constants.walletAccountColors.yinYang.toUpperCase():
|
|
|
|
return isLightTheme ? Theme.palette.getColor('blackHovered'): Theme.palette.getColor('grey4')
|
|
|
|
case Constants.walletAccountColors.undefinedAccount.toUpperCase():
|
|
|
|
return isLightTheme ? Style.statusQDarkTheme.baseColor1: Style.statusQLightTheme.baseColor1
|
|
|
|
default:
|
|
|
|
return getColorForId(colorId)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
function getIdForColor(color){
|
2023-06-18 12:47:24 +00:00
|
|
|
let c = color.toString().toUpperCase()
|
2023-05-22 15:55:47 +00:00
|
|
|
switch(c) {
|
|
|
|
case Theme.palette.customisationColors.blue.toString().toUpperCase():
|
|
|
|
return Constants.walletAccountColors.primary
|
|
|
|
case Theme.palette.customisationColors.purple.toString().toUpperCase():
|
|
|
|
return Constants.walletAccountColors.purple
|
|
|
|
case Theme.palette.customisationColors.orange.toString().toUpperCase():
|
|
|
|
return Constants.walletAccountColors.orange
|
|
|
|
case Theme.palette.customisationColors.army.toString().toUpperCase():
|
|
|
|
return Constants.walletAccountColors.army
|
|
|
|
case Theme.palette.customisationColors.turquoise.toString().toUpperCase():
|
|
|
|
return Constants.walletAccountColors.turquoise
|
|
|
|
case Theme.palette.customisationColors.sky.toString().toUpperCase():
|
|
|
|
return Constants.walletAccountColors.sky
|
|
|
|
case Theme.palette.customisationColors.yellow.toString().toUpperCase():
|
|
|
|
return Constants.walletAccountColors.yellow
|
|
|
|
case Theme.palette.customisationColors.pink.toString().toUpperCase():
|
|
|
|
return Constants.walletAccountColors.pink
|
|
|
|
case Theme.palette.customisationColors.copper.toString().toUpperCase():
|
|
|
|
return Constants.walletAccountColors.copper
|
|
|
|
case Theme.palette.customisationColors.camel.toString().toUpperCase():
|
|
|
|
return Constants.walletAccountColors.camel
|
|
|
|
case Theme.palette.customisationColors.magenta.toString().toUpperCase():
|
|
|
|
return Constants.walletAccountColors.magenta
|
|
|
|
case Theme.palette.customisationColors.yinYang.toString().toUpperCase():
|
|
|
|
return Constants.walletAccountColors.yinYang
|
|
|
|
case Theme.palette.baseColor1.toString().toUpperCase():
|
|
|
|
return Constants.walletAccountColors.undefinedAccount
|
|
|
|
default:
|
|
|
|
return Constants.walletAccountColors.primary
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function getColorForId(colorId) {
|
2023-06-09 09:54:47 +00:00
|
|
|
if(colorId) {
|
|
|
|
switch(colorId.toUpperCase()) {
|
|
|
|
case Constants.walletAccountColors.primary.toUpperCase():
|
|
|
|
return Theme.palette.customisationColors.blue
|
|
|
|
case Constants.walletAccountColors.purple.toUpperCase():
|
|
|
|
return Theme.palette.customisationColors.purple
|
|
|
|
case Constants.walletAccountColors.orange.toUpperCase():
|
|
|
|
return Theme.palette.customisationColors.orange
|
|
|
|
case Constants.walletAccountColors.army.toUpperCase():
|
|
|
|
return Theme.palette.customisationColors.army
|
|
|
|
case Constants.walletAccountColors.turquoise.toUpperCase():
|
|
|
|
return Theme.palette.customisationColors.turquoise
|
|
|
|
case Constants.walletAccountColors.sky.toUpperCase():
|
|
|
|
return Theme.palette.customisationColors.sky
|
|
|
|
case Constants.walletAccountColors.yellow.toUpperCase():
|
|
|
|
return Theme.palette.customisationColors.yellow
|
|
|
|
case Constants.walletAccountColors.pink.toUpperCase():
|
|
|
|
return Theme.palette.customisationColors.pink
|
|
|
|
case Constants.walletAccountColors.copper.toUpperCase():
|
|
|
|
return Theme.palette.customisationColors.copper
|
|
|
|
case Constants.walletAccountColors.camel.toUpperCase():
|
|
|
|
return Theme.palette.customisationColors.camel
|
|
|
|
case Constants.walletAccountColors.magenta.toUpperCase():
|
|
|
|
return Theme.palette.customisationColors.magenta
|
|
|
|
case Constants.walletAccountColors.yinYang.toUpperCase():
|
|
|
|
return Theme.palette.customisationColors.yinYang
|
|
|
|
case Constants.walletAccountColors.undefinedAccount.toUpperCase():
|
|
|
|
return Theme.palette.baseColor1
|
|
|
|
}
|
2023-05-22 15:55:47 +00:00
|
|
|
}
|
2023-06-30 07:03:09 +00:00
|
|
|
return Theme.palette.customisationColors.blue
|
2023-05-22 15:55:47 +00:00
|
|
|
}
|
|
|
|
|
2023-12-29 13:10:55 +00:00
|
|
|
function getColorIndexForId(colorId) {
|
|
|
|
let color = getColorForId(colorId)
|
|
|
|
for (let i = 0; i < Theme.palette.customisationColorsArray.length; i++) {
|
|
|
|
if(Theme.palette.customisationColorsArray[i] === color) {
|
|
|
|
return i
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return 0
|
|
|
|
}
|
|
|
|
|
2023-07-18 09:10:48 +00:00
|
|
|
function getPathForDisplay(path) {
|
2023-07-21 08:41:24 +00:00
|
|
|
return path.split("/").join(" / ")
|
2023-07-18 09:10:48 +00:00
|
|
|
}
|
|
|
|
|
2023-08-04 10:29:04 +00:00
|
|
|
function getKeypairLocationColor(keypair) {
|
|
|
|
return !keypair ||
|
|
|
|
keypair.migratedToKeycard ||
|
|
|
|
keypair.operability === Constants.keypair.operability.fullyOperable ||
|
|
|
|
keypair.operability === Constants.keypair.operability.partiallyOperable?
|
|
|
|
Theme.palette.baseColor1 :
|
|
|
|
Theme.palette.warningColor1
|
|
|
|
}
|
|
|
|
|
2023-10-05 15:16:30 +00:00
|
|
|
function getKeypairLocation(keypair, fromAccountDetailsView) {
|
2023-08-04 10:29:04 +00:00
|
|
|
if (!keypair || keypair.pairType === Constants.keypair.type.watchOnly) {
|
|
|
|
return ""
|
|
|
|
}
|
|
|
|
|
|
|
|
let profileTitle = ""
|
|
|
|
if (keypair.pairType === Constants.keypair.type.profile) {
|
|
|
|
profileTitle = Utils.getElidedCompressedPk(keypair.pubKey) + Constants.settingsSection.dotSepString
|
|
|
|
}
|
|
|
|
if (keypair.migratedToKeycard) {
|
|
|
|
return profileTitle + qsTr("On Keycard")
|
|
|
|
}
|
|
|
|
if (keypair.operability === Constants.keypair.operability.fullyOperable ||
|
|
|
|
keypair.operability === Constants.keypair.operability.partiallyOperable) {
|
|
|
|
return profileTitle + qsTr("On device")
|
|
|
|
}
|
|
|
|
if (keypair.operability === Constants.keypair.operability.nonOperable) {
|
2023-10-05 15:16:30 +00:00
|
|
|
if (fromAccountDetailsView) {
|
|
|
|
return qsTr("Requires import")
|
|
|
|
} else if (keypair.syncedFrom === Constants.keypair.syncedFrom.backup) {
|
2023-08-23 12:01:26 +00:00
|
|
|
if (keypair.pairType === Constants.keypair.type.seedImport ||
|
|
|
|
keypair.pairType === Constants.keypair.type.privateKeyImport) {
|
|
|
|
return qsTr("Restored from backup. Import keypair to use derived accounts.")
|
2023-08-04 10:29:04 +00:00
|
|
|
}
|
|
|
|
}
|
2023-08-29 14:22:41 +00:00
|
|
|
return qsTr("Import keypair to use derived accounts")
|
2023-08-04 10:29:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return ""
|
|
|
|
}
|
|
|
|
|
2022-04-05 15:45:01 +00:00
|
|
|
// Leave this function at the bottom of the file as QT Creator messes up the code color after this
|
|
|
|
function isPunct(c) {
|
2022-11-25 13:29:12 +00:00
|
|
|
return /(!|\@|#|\$|%|\^|&|\*|\(|\)|\+|\||-|=|\\|{|}|[|]|"|;|'|<|>|\?|,|\.|\/)/.test(c)
|
2022-04-05 15:45:01 +00:00
|
|
|
}
|
2020-06-22 15:51:15 +00:00
|
|
|
}
|