added forgotten 'Shared.js' new file

This commit is contained in:
crowetic 2025-01-29 19:19:53 -08:00
parent 021c99c119
commit 39418f300f

184
assets/js/Shared.js Normal file
View File

@ -0,0 +1,184 @@
// This is a Helper Script that will contain the functions that are accessed from multiple different scripts in the app. Allowing this script to be loaded first, will ensure they all have awareness of them and will allow future development to be simpler.
let blockedNamesIdentifier = 'Q-Mintership-blockedNames'
const fetchBlockList = async () => {
try {
// searchSimple to find all resources for that identifier
const results = await searchSimple(
'BLOG_POST',
blockedNamesIdentifier, // identifier
'', // name
0, // limit=0 => no limit
0, // offset
'', // room
true, // reverse => newest first or oldest first?
true // prefixOnly => depends on whether you want partial matches
)
if (!results || !Array.isArray(results) || results.length === 0) {
console.warn("No blockList resources found via searchSimple.")
return []
}
// We must filter out resources not published by an admin
const adminGroupMembers = await fetchAllAdminGroupsMembers()
const adminAddresses = adminGroupMembers.map(m => m.member)
// The result objects from searchSimple have shape: { name, identifier, service, created, updated, ... }
// We want only those where 'name' is an admin address's name, or the 'address' is in adminAddresses
// But searchSimple doesn't give you the publisher address directly, only the name.
// So we must check if the name belongs to an admin address
const validAdminResults = []
for (const r of results) {
try {
// fetchOwnerAddressFromName or getNameInfo to see if r.name resolves to one of the admin addresses
const nameInfo = await getNameInfo(r.name)
if (!nameInfo || !nameInfo.owner) {
continue
}
if (adminAddresses.includes(nameInfo.owner)) {
validAdminResults.push(r)
}
} catch (err) {
console.warn(`Skipping result from ${r.name} - cannot confirm admin address`, err)
}
}
if (validAdminResults.length === 0) {
console.warn("No valid admin-published blockList resource found.")
return []
}
// pick the newest result among validAdminResults
// Usually you check r.updated or r.created
validAdminResults.sort((a, b) => {
const tA = a.updated || a.created || 0
const tB = b.updated || b.created || 0
return tB - tA // newest first
})
const newestValid = validAdminResults[0]
// fetch the actual data
const resourceData = await qortalRequest({
action: "FETCH_QDN_RESOURCE",
name: newestValid.name,
service: newestValid.service, // "BLOG_POST"
identifier: newestValid.identifier
})
if (!resourceData) {
console.warn("Fetched resource data is null/empty.")
return []
}
// parse resourceData
// If it's a string containing base64 JSON
let blockedList
if (typeof resourceData === 'string') {
// decode base64 => parse JSON
const decoded = atob(resourceData)
blockedList = JSON.parse(decoded)
} else if (Array.isArray(resourceData)) {
// the resource is already an array
blockedList = resourceData
} else {
// maybe resourceData has data64 property or something else
// adapt if needed
console.warn("Unexpected blockList format. Could not parse.")
return []
}
if (!Array.isArray(blockedList)) {
console.warn("Block list is not an array:", blockedList)
return []
}
console.log("Newest block list loaded:", blockedList)
return blockedList
} catch (err) {
console.error("Failed to load block list:", err)
return []
}
}
const publishBlockList = async (blockedNames) => {
if (!Array.isArray(blockedNames)) {
console.warn("publishBlockList requires an array")
return
}
try {
const jsonStr = JSON.stringify(blockedNames)
const data64 = btoa(jsonStr)
// Publish
await qortalRequest({
action: "PUBLISH_QDN_RESOURCE",
name: `${userState.accountName}`, // The name under which your admin can publish
service: "BLOG_POST",
identifier: `${blockedNamesIdentifier}`,
data64
})
alert("Block list published successfully!")
} catch (err) {
console.error("Failed to publish block list:", err)
alert("Error publishing block list.")
}
}
// Function for obtaining all kick/ban transaction data, and separating it into PENDING and NON.
const fetchAllKickBanTxData = async () => {
const kickTxType = "GROUP_KICK"
const banTxType = "GROUP_BAN"
const allKickTx = await searchTransactions({
txTypes: [kickTxType],
confirmationStatus: 'CONFIRMED',
limit: 0,
reverse: true,
offset: 0,
startBlock: 1990000,
blockLimit: 0,
txGroupId: 0,
})
const allBanTx = await searchTransactions({
txTypes: [banTxType],
confirmationStatus: 'CONFIRMED',
limit: 0,
reverse: true,
offset: 0,
startBlock: 1990000,
blockLimit: 0,
txGroupId: 0,
})
const { finalTx: finalKickTxs, pendingTx: pendingKickTxs } = partitionTransactions(allKickTx)
const { finalTx: finalBanTxs, pendingTx: pendingBanTxs } = partitionTransactions(allBanTx)
// We are going to keep all transactions in order to filter more accurately for display purposes.
console.log('Final kickTxs:', finalKickTxs);
console.log('Pending kickTxs:', pendingKickTxs);
console.log('Final banTxs:', finalBanTxs);
console.log('Pending banTxs:', pendingBanTxs);
return {
finalKickTxs,
pendingKickTxs,
finalBanTxs,
pendingBanTxs,
}
}
const partitionTransactions = (txSearchResults) => {
const finalTx = []
const pendingTx = []
for (const tx of txSearchResults) {
if (tx.approvalStatus === 'PENDING') {
pendingTx.push(tx)
} else {
finalTx.push(tx)
}
}
return { finalTx, pendingTx };
}