mirror of
https://github.com/Qortal/chrome-extension.git
synced 2025-02-11 17:55:49 +00:00
update send chat message qortalRequest
This commit is contained in:
parent
6e2d5e0f1d
commit
300ce33866
@ -163,7 +163,7 @@ export const AppViewer = React.forwardRef(({ app , hide}, iframeRef) => {
|
|||||||
height: !isMobile ? '100vh' : `calc(${rootHeight} - 60px - 45px )`,
|
height: !isMobile ? '100vh' : `calc(${rootHeight} - 60px - 45px )`,
|
||||||
border: 'none',
|
border: 'none',
|
||||||
width: '100%'
|
width: '100%'
|
||||||
}} id="browser-iframe" src={defaultUrl} sandbox="allow-scripts allow-same-origin allow-forms allow-downloads allow-modals" allow="fullscreen">
|
}} id="browser-iframe" src={defaultUrl} sandbox="allow-scripts allow-same-origin allow-forms allow-downloads allow-modals" allow="fullscreen; clipboard-read; clipboard-write">
|
||||||
|
|
||||||
</iframe>
|
</iframe>
|
||||||
</Box>
|
</Box>
|
||||||
|
@ -258,7 +258,7 @@ chrome?.runtime?.onMessage.addListener((request, sender, sendResponse) => {
|
|||||||
case "GET_USER_WALLET": {
|
case "GET_USER_WALLET": {
|
||||||
const data = request.payload;
|
const data = request.payload;
|
||||||
|
|
||||||
getUserWallet(data, isFromExtension)
|
getUserWallet(data, isFromExtension, appInfo)
|
||||||
.then((res) => {
|
.then((res) => {
|
||||||
sendResponse(res);
|
sendResponse(res);
|
||||||
})
|
})
|
||||||
@ -285,7 +285,7 @@ chrome?.runtime?.onMessage.addListener((request, sender, sendResponse) => {
|
|||||||
case "GET_USER_WALLET_INFO": {
|
case "GET_USER_WALLET_INFO": {
|
||||||
const data = request.payload;
|
const data = request.payload;
|
||||||
|
|
||||||
getUserWalletInfo(data, isFromExtension)
|
getUserWalletInfo(data, isFromExtension, appInfo)
|
||||||
.then((res) => {
|
.then((res) => {
|
||||||
sendResponse(res);
|
sendResponse(res);
|
||||||
})
|
})
|
||||||
|
@ -1254,19 +1254,65 @@ export const createPoll = async (data, isFromExtension) => {
|
|||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
export const sendChatMessage = async (data, isFromExtension) => {
|
function isBase64(str) {
|
||||||
const message = data.message;
|
const base64Regex = /^(?:[A-Za-z0-9+/]{4})*(?:[A-Za-z0-9+/]{2}==|[A-Za-z0-9+/]{3}=)?$/;
|
||||||
const recipient = data.destinationAddress;
|
return base64Regex.test(str) && str.length % 4 === 0;
|
||||||
const groupId = data.groupId;
|
}
|
||||||
const isRecipient = !groupId;
|
|
||||||
const resPermission = await getUserPermission({
|
|
||||||
text1: "Do you give this application permission to send this chat message?",
|
|
||||||
text2: `To: ${isRecipient ? recipient : `group ${groupId}`}`,
|
|
||||||
text3: `${message?.slice(0, 25)}${message?.length > 25 ? "..." : ""}`,
|
|
||||||
}, isFromExtension);
|
|
||||||
|
|
||||||
const { accepted } = resPermission;
|
function checkValue(value) {
|
||||||
if (accepted) {
|
if (typeof value === "string") {
|
||||||
|
if (isBase64(value)) {
|
||||||
|
return 'string'
|
||||||
|
} else {
|
||||||
|
return 'string'
|
||||||
|
}
|
||||||
|
} else if (typeof value === "object" && value !== null) {
|
||||||
|
return 'object'
|
||||||
|
} else {
|
||||||
|
throw new Error('Field fullContent is in an invalid format. Either use a string, base64 or an object.')
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
export const sendChatMessage = async (data, isFromExtension, appInfo) => {
|
||||||
|
const message = data?.message;
|
||||||
|
const fullMessageObject = data?.fullMessageObject || data?.fullContent
|
||||||
|
const recipient = data?.destinationAddress || data.recipient;
|
||||||
|
const groupId = data.groupId;
|
||||||
|
const isRecipient = groupId === undefined;
|
||||||
|
const chatReference = data?.chatReference
|
||||||
|
if(groupId === undefined && recipient === undefined){
|
||||||
|
throw new Error('Please provide a recipient or groupId')
|
||||||
|
}
|
||||||
|
let fullMessageObjectType
|
||||||
|
if(fullMessageObject){
|
||||||
|
fullMessageObjectType = checkValue(fullMessageObject)
|
||||||
|
}
|
||||||
|
|
||||||
|
const value =
|
||||||
|
(await getPermission(`qAPPSendChatMessage-${appInfo?.name}`)) || false;
|
||||||
|
let skip = false;
|
||||||
|
if (value) {
|
||||||
|
skip = true;
|
||||||
|
}
|
||||||
|
let resPermission;
|
||||||
|
if (!skip) {
|
||||||
|
resPermission = await getUserPermission({
|
||||||
|
text1:
|
||||||
|
"Do you give this application permission to send this chat message?",
|
||||||
|
text2: `To: ${isRecipient ? recipient : `group ${groupId}`}`,
|
||||||
|
text3: fullMessageObject ? fullMessageObjectType === 'string' ? `${fullMessageObject?.slice(0, 25)}${fullMessageObject?.length > 25 ? "..." : ""}` : `${JSON.stringify(fullMessageObject)?.slice(0, 25)}${JSON.stringify(fullMessageObject)?.length > 25 ? "..." : ""}` : `${message?.slice(0, 25)}${message?.length > 25 ? "..." : ""}`,
|
||||||
|
checkbox1: {
|
||||||
|
value: false,
|
||||||
|
label: "Always allow chat messages from this app",
|
||||||
|
},
|
||||||
|
}, isFromExtension);
|
||||||
|
}
|
||||||
|
const { accepted = false, checkbox1 = false } = resPermission || {};
|
||||||
|
if (resPermission && accepted) {
|
||||||
|
setPermission(`qAPPSendChatMessage-${appInfo?.name}`, checkbox1);
|
||||||
|
}
|
||||||
|
if (accepted || skip) {
|
||||||
const tiptapJson = {
|
const tiptapJson = {
|
||||||
type: "doc",
|
type: "doc",
|
||||||
content: [
|
content: [
|
||||||
@ -1281,14 +1327,18 @@ export const sendChatMessage = async (data, isFromExtension) => {
|
|||||||
},
|
},
|
||||||
],
|
],
|
||||||
};
|
};
|
||||||
const messageObject = {
|
const messageObject = fullMessageObject ? fullMessageObject : {
|
||||||
messageText: tiptapJson,
|
messageText: tiptapJson,
|
||||||
images: [""],
|
images: [""],
|
||||||
repliedTo: "",
|
repliedTo: "",
|
||||||
version: 3,
|
version: 3,
|
||||||
};
|
};
|
||||||
|
|
||||||
const stringifyMessageObject = JSON.stringify(messageObject);
|
let stringifyMessageObject = JSON.stringify(messageObject);
|
||||||
|
if(fullMessageObjectType === 'string'){
|
||||||
|
stringifyMessageObject = messageObject
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
const balance = await getBalanceInfo();
|
const balance = await getBalanceInfo();
|
||||||
const hasEnoughBalance = +balance < 4 ? false : true;
|
const hasEnoughBalance = +balance < 4 ? false : true;
|
||||||
@ -1345,16 +1395,22 @@ export const sendChatMessage = async (data, isFromExtension) => {
|
|||||||
};
|
};
|
||||||
|
|
||||||
const difficulty = 8;
|
const difficulty = 8;
|
||||||
|
let handleDynamicValues = {}
|
||||||
|
if(chatReference){
|
||||||
|
handleDynamicValues['chatReference'] = chatReference
|
||||||
|
}
|
||||||
|
|
||||||
const tx = await createTransaction(18, keyPair, {
|
const tx = await createTransaction(18, keyPair, {
|
||||||
timestamp: sendTimestamp,
|
timestamp: sendTimestamp,
|
||||||
recipient: recipient,
|
recipient: recipient,
|
||||||
recipientPublicKey: key,
|
recipientPublicKey: key,
|
||||||
hasChatReference: 0,
|
hasChatReference: chatReference ? 1 : 0,
|
||||||
message: stringifyMessageObject,
|
message: stringifyMessageObject,
|
||||||
lastReference: reference,
|
lastReference: reference,
|
||||||
proofOfWorkNonce: 0,
|
proofOfWorkNonce: 0,
|
||||||
isEncrypted: 1,
|
isEncrypted: 1,
|
||||||
isText: 1,
|
isText: 1,
|
||||||
|
...handleDynamicValues
|
||||||
});
|
});
|
||||||
const path = chrome.runtime.getURL("memory-pow.wasm.full");
|
const path = chrome.runtime.getURL("memory-pow.wasm.full");
|
||||||
|
|
||||||
@ -1384,7 +1440,10 @@ export const sendChatMessage = async (data, isFromExtension) => {
|
|||||||
};
|
};
|
||||||
|
|
||||||
const difficulty = 8;
|
const difficulty = 8;
|
||||||
|
let handleDynamicValues = {}
|
||||||
|
if(chatReference){
|
||||||
|
handleDynamicValues['chatReference'] = chatReference
|
||||||
|
}
|
||||||
const txBody = {
|
const txBody = {
|
||||||
timestamp: Date.now(),
|
timestamp: Date.now(),
|
||||||
groupID: Number(groupId),
|
groupID: Number(groupId),
|
||||||
@ -1395,6 +1454,7 @@ export const sendChatMessage = async (data, isFromExtension) => {
|
|||||||
proofOfWorkNonce: 0,
|
proofOfWorkNonce: 0,
|
||||||
isEncrypted: 0, // Set default to not encrypted for groups
|
isEncrypted: 0, // Set default to not encrypted for groups
|
||||||
isText: 1,
|
isText: 1,
|
||||||
|
...handleDynamicValues
|
||||||
};
|
};
|
||||||
|
|
||||||
const tx = await createTransaction(181, keyPair, txBody);
|
const tx = await createTransaction(181, keyPair, txBody);
|
||||||
@ -1577,7 +1637,7 @@ export const deployAt = async (data, isFromExtension) => {
|
|||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
export const getUserWallet = async (data, isFromExtension) => {
|
export const getUserWallet = async (data, isFromExtension, appInfo) => {
|
||||||
const requiredFields = ["coin"];
|
const requiredFields = ["coin"];
|
||||||
const missingFields: string[] = [];
|
const missingFields: string[] = [];
|
||||||
requiredFields.forEach((field) => {
|
requiredFields.forEach((field) => {
|
||||||
@ -1597,15 +1657,39 @@ export const getUserWallet = async (data, isFromExtension) => {
|
|||||||
"Cannot view ARRR wallet info through the gateway. Please use your local node."
|
"Cannot view ARRR wallet info through the gateway. Please use your local node."
|
||||||
);
|
);
|
||||||
|
|
||||||
const resPermission = await getUserPermission({
|
const value =
|
||||||
|
(await getPermission(
|
||||||
|
`qAPPAutoGetUserWallet-${appInfo?.name}-${data.coin}`
|
||||||
|
)) || false;
|
||||||
|
let skip = false;
|
||||||
|
if (value) {
|
||||||
|
skip = true;
|
||||||
|
}
|
||||||
|
|
||||||
|
let resPermission;
|
||||||
|
|
||||||
|
if (!skip) {
|
||||||
|
resPermission = await getUserPermission({
|
||||||
text1:
|
text1:
|
||||||
"Do you give this application permission to get your wallet information?",
|
"Do you give this application permission to get your wallet information?",
|
||||||
highlightedText: `coin: ${data.coin}`,
|
highlightedText: `coin: ${data.coin}`,
|
||||||
|
checkbox1: {
|
||||||
|
value: true,
|
||||||
|
label: "Always allow wallet to be retrieved automatically",
|
||||||
|
},
|
||||||
}, isFromExtension);
|
}, isFromExtension);
|
||||||
const { accepted } = resPermission;
|
}
|
||||||
|
|
||||||
if (accepted) {
|
const { accepted = false, checkbox1 = false } = resPermission || {};
|
||||||
|
|
||||||
|
if (resPermission) {
|
||||||
|
setPermission(
|
||||||
|
`qAPPAutoGetUserWallet-${appInfo?.name}-${data.coin}`,
|
||||||
|
checkbox1
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
if (accepted || skip) {
|
||||||
let coin = data.coin;
|
let coin = data.coin;
|
||||||
let userWallet = {};
|
let userWallet = {};
|
||||||
let arrrAddress = "";
|
let arrrAddress = "";
|
||||||
@ -1877,7 +1961,7 @@ export const getUserWalletFunc = async (coin) => {
|
|||||||
return userWallet;
|
return userWallet;
|
||||||
};
|
};
|
||||||
|
|
||||||
export const getUserWalletInfo = async (data, isFromExtension) => {
|
export const getUserWalletInfo = async (data, isFromExtension, appInfo) => {
|
||||||
const requiredFields = ["coin"];
|
const requiredFields = ["coin"];
|
||||||
const missingFields: string[] = [];
|
const missingFields: string[] = [];
|
||||||
requiredFields.forEach((field) => {
|
requiredFields.forEach((field) => {
|
||||||
@ -1898,13 +1982,37 @@ export const getUserWalletInfo = async (data, isFromExtension) => {
|
|||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
const resPermission = await getUserPermission({
|
const value =
|
||||||
text1: "Do you give this application permission to retrieve your wallet information",
|
(await getPermission(
|
||||||
highlightedText: `coin: ${data.coin}`
|
`getUserWalletInfo-${appInfo?.name}-${data.coin}`
|
||||||
}, isFromExtension);
|
)) || false;
|
||||||
const { accepted } = resPermission;
|
let skip = false;
|
||||||
|
if (value) {
|
||||||
|
skip = true;
|
||||||
|
}
|
||||||
|
let resPermission;
|
||||||
|
|
||||||
if (accepted) {
|
if (!skip) {
|
||||||
|
|
||||||
|
resPermission = await getUserPermission({
|
||||||
|
text1: "Do you give this application permission to retrieve your wallet information",
|
||||||
|
highlightedText: `coin: ${data.coin}`,
|
||||||
|
checkbox1: {
|
||||||
|
value: true,
|
||||||
|
label: "Always allow wallet info to be retrieved automatically",
|
||||||
|
},
|
||||||
|
}, isFromExtension);
|
||||||
|
}
|
||||||
|
const { accepted = false, checkbox1 = false } = resPermission || {};
|
||||||
|
|
||||||
|
if (resPermission) {
|
||||||
|
setPermission(
|
||||||
|
`getUserWalletInfo-${appInfo?.name}-${data.coin}`,
|
||||||
|
checkbox1
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
if (accepted || skip) {
|
||||||
let coin = data.coin;
|
let coin = data.coin;
|
||||||
let walletKeys = await getUserWalletFunc(coin);
|
let walletKeys = await getUserWalletFunc(coin);
|
||||||
const _url = await createEndpoint(
|
const _url = await createEndpoint(
|
||||||
@ -2369,7 +2477,7 @@ export const getTxActivitySummary = async (data) => {
|
|||||||
};
|
};
|
||||||
|
|
||||||
export const sendCoin = async (data, isFromExtension) => {
|
export const sendCoin = async (data, isFromExtension) => {
|
||||||
const requiredFields = ['coin', 'destinationAddress', 'amount']
|
const requiredFields = ['coin', 'amount']
|
||||||
const missingFields: string[] = []
|
const missingFields: string[] = []
|
||||||
requiredFields.forEach((field) => {
|
requiredFields.forEach((field) => {
|
||||||
if (!data[field]) {
|
if (!data[field]) {
|
||||||
@ -2381,6 +2489,9 @@ export const sendCoin = async (data, isFromExtension) => {
|
|||||||
const errorMsg = `Missing fields: ${missingFieldsString}`
|
const errorMsg = `Missing fields: ${missingFieldsString}`
|
||||||
throw new Error(errorMsg)
|
throw new Error(errorMsg)
|
||||||
}
|
}
|
||||||
|
if(!data?.destinationAddress && !data?.recipient){
|
||||||
|
throw new Error('Missing fields: recipient')
|
||||||
|
}
|
||||||
let checkCoin = data.coin
|
let checkCoin = data.coin
|
||||||
const wallet = await getSaveWallet();
|
const wallet = await getSaveWallet();
|
||||||
const address = wallet.address0;
|
const address = wallet.address0;
|
||||||
@ -2395,7 +2506,7 @@ export const sendCoin = async (data, isFromExtension) => {
|
|||||||
// then set the response string from the core to the `response` variable (defined above)
|
// then set the response string from the core to the `response` variable (defined above)
|
||||||
// If they decline, send back JSON that includes an `error` key, such as `{"error": "User declined request"}`
|
// If they decline, send back JSON that includes an `error` key, such as `{"error": "User declined request"}`
|
||||||
const amount = Number(data.amount)
|
const amount = Number(data.amount)
|
||||||
const recipient = data.destinationAddress
|
const recipient = data?.recipient || data.destinationAddress;
|
||||||
|
|
||||||
const url = await createEndpoint(`/addresses/balance/${address}`);
|
const url = await createEndpoint(`/addresses/balance/${address}`);
|
||||||
const response = await fetch(url);
|
const response = await fetch(url);
|
||||||
@ -2444,7 +2555,7 @@ export const sendCoin = async (data, isFromExtension) => {
|
|||||||
|
|
||||||
} else if (checkCoin === "BTC") {
|
} else if (checkCoin === "BTC") {
|
||||||
const amount = Number(data.amount)
|
const amount = Number(data.amount)
|
||||||
const recipient = data.destinationAddress
|
const recipient = data?.recipient || data.destinationAddress;
|
||||||
const xprv58 = parsedData.btcPrivateKey
|
const xprv58 = parsedData.btcPrivateKey
|
||||||
const feePerByte = data.fee ? data.fee : btcFeePerByte
|
const feePerByte = data.fee ? data.fee : btcFeePerByte
|
||||||
|
|
||||||
@ -2501,7 +2612,7 @@ export const sendCoin = async (data, isFromExtension) => {
|
|||||||
} else if (checkCoin === "LTC") {
|
} else if (checkCoin === "LTC") {
|
||||||
|
|
||||||
const amount = Number(data.amount)
|
const amount = Number(data.amount)
|
||||||
const recipient = data.destinationAddress
|
const recipient = data?.recipient || data.destinationAddress;
|
||||||
const xprv58 = parsedData.ltcPrivateKey
|
const xprv58 = parsedData.ltcPrivateKey
|
||||||
const feePerByte = data.fee ? data.fee : ltcFeePerByte
|
const feePerByte = data.fee ? data.fee : ltcFeePerByte
|
||||||
const ltcWalletBalance = await getWalletBalance({coin: checkCoin}, true)
|
const ltcWalletBalance = await getWalletBalance({coin: checkCoin}, true)
|
||||||
@ -2555,7 +2666,7 @@ export const sendCoin = async (data, isFromExtension) => {
|
|||||||
} else if (checkCoin === "DOGE") {
|
} else if (checkCoin === "DOGE") {
|
||||||
|
|
||||||
const amount = Number(data.amount)
|
const amount = Number(data.amount)
|
||||||
const recipient = data.destinationAddress
|
const recipient = data?.recipient || data.destinationAddress;
|
||||||
const coin = data.coin
|
const coin = data.coin
|
||||||
const xprv58 = parsedData.dogePrivateKey
|
const xprv58 = parsedData.dogePrivateKey
|
||||||
const feePerByte = data.fee ? data.fee : dogeFeePerByte
|
const feePerByte = data.fee ? data.fee : dogeFeePerByte
|
||||||
@ -2612,7 +2723,7 @@ export const sendCoin = async (data, isFromExtension) => {
|
|||||||
|
|
||||||
} else if (checkCoin === "DGB") {
|
} else if (checkCoin === "DGB") {
|
||||||
const amount = Number(data.amount)
|
const amount = Number(data.amount)
|
||||||
const recipient = data.destinationAddress
|
const recipient = data?.recipient || data.destinationAddress;
|
||||||
const xprv58 = parsedData.dbgPrivateKey
|
const xprv58 = parsedData.dbgPrivateKey
|
||||||
const feePerByte = data.fee ? data.fee : dgbFeePerByte
|
const feePerByte = data.fee ? data.fee : dgbFeePerByte
|
||||||
const dgbWalletBalance = await getWalletBalance({coin: checkCoin}, true)
|
const dgbWalletBalance = await getWalletBalance({coin: checkCoin}, true)
|
||||||
@ -2667,7 +2778,7 @@ export const sendCoin = async (data, isFromExtension) => {
|
|||||||
|
|
||||||
} else if (checkCoin === "RVN") {
|
} else if (checkCoin === "RVN") {
|
||||||
const amount = Number(data.amount)
|
const amount = Number(data.amount)
|
||||||
const recipient = data.destinationAddress
|
const recipient = data?.recipient || data.destinationAddress;
|
||||||
const coin = data.coin
|
const coin = data.coin
|
||||||
const xprv58 = parsedData.rvnPrivateKey
|
const xprv58 = parsedData.rvnPrivateKey
|
||||||
const feePerByte = data.fee ? data.fee : rvnFeePerByte
|
const feePerByte = data.fee ? data.fee : rvnFeePerByte
|
||||||
@ -2724,7 +2835,7 @@ export const sendCoin = async (data, isFromExtension) => {
|
|||||||
}
|
}
|
||||||
} else if (checkCoin === "ARRR") {
|
} else if (checkCoin === "ARRR") {
|
||||||
const amount = Number(data.amount)
|
const amount = Number(data.amount)
|
||||||
const recipient = data.destinationAddress
|
const recipient = data?.recipient || data.destinationAddress;
|
||||||
const memo = data.memo
|
const memo = data.memo
|
||||||
const arrrWalletBalance = await getWalletBalance({coin: checkCoin}, true)
|
const arrrWalletBalance = await getWalletBalance({coin: checkCoin}, true)
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user