You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
190 lines
4.9 KiB
190 lines
4.9 KiB
import { forOwn } from 'lodash'
|
|
import { getOriginOfCurrentTab } from './selectors'
|
|
import {
|
|
CAVEAT_NAMES,
|
|
} from '../../../app/scripts/controllers/permissions/enums'
|
|
|
|
// selectors
|
|
|
|
/**
|
|
* Get the permission domains object.
|
|
*
|
|
* @param {Object} state - The current state.
|
|
* @returns {Object} The permissions domains object.
|
|
*/
|
|
export function getPermissionDomains (state) {
|
|
return state.metamask.domains || {}
|
|
}
|
|
|
|
/**
|
|
* Get the permission domains metadata object.
|
|
*
|
|
* @param {Object} state - The current state.
|
|
* @returns {Object} The permission domains metadata object.
|
|
*/
|
|
export function getPermissionDomainsMetadata (state) {
|
|
return state.metamask.domainMetadata || {}
|
|
}
|
|
|
|
/**
|
|
* Selects the permitted accounts from the eth_accounts permission given state
|
|
* and an origin.
|
|
*
|
|
* @param {Object} state - The current state.
|
|
* @param {string} origin - The origin/domain to get the permitted accounts for.
|
|
* @returns {Array<string>} An empty array or an array of accounts.
|
|
*/
|
|
export function getPermittedAccounts (state, origin) {
|
|
return getAccountsFromPermission(
|
|
getAccountsPermissionFromDomain(
|
|
domainSelector(state, origin)
|
|
)
|
|
)
|
|
}
|
|
|
|
/**
|
|
* Selects the permitted accounts from the eth_accounts permission for the
|
|
* origin of the current tab.
|
|
*
|
|
* @param {Object} state - The current state.
|
|
* @returns {Array<string>} An empty array or an array of accounts.
|
|
*/
|
|
export function getPermittedAccountsForCurrentTab (state) {
|
|
return getPermittedAccounts(
|
|
state,
|
|
getOriginOfCurrentTab(state)
|
|
)
|
|
}
|
|
|
|
/**
|
|
* Returns a map of permitted accounts by origin for all origins.
|
|
*
|
|
* @param {Object} state - The current state.
|
|
* @returns {Object} Permitted accounts by origin.
|
|
*/
|
|
export function getPermittedAccountsByOrigin (state) {
|
|
const domains = getPermissionDomains(state)
|
|
return Object.keys(domains).reduce((acc, domainKey) => {
|
|
const accounts = getAccountsFromPermission(
|
|
getAccountsPermissionFromDomain(domains[domainKey])
|
|
)
|
|
if (accounts.length > 0) {
|
|
acc[domainKey] = accounts
|
|
}
|
|
return acc
|
|
}, {})
|
|
}
|
|
|
|
/**
|
|
* Returns an array of connected domain objects, with the following properties:
|
|
* - extensionId
|
|
* - key (i.e. origin)
|
|
* - name
|
|
* - icon
|
|
*
|
|
* @param {Object} state - The current state.
|
|
* @returns {Array<Object>} An array of connected domain objects.
|
|
*/
|
|
export function getConnectedDomainsForSelectedAddress (state) {
|
|
const {
|
|
selectedAddress,
|
|
} = state.metamask
|
|
const domains = getPermissionDomains(state)
|
|
const domainMetadata = getPermissionDomainsMetadata(state)
|
|
|
|
const connectedDomains = []
|
|
|
|
forOwn(domains, (domainValue, domainKey) => {
|
|
const exposedAccounts = getAccountsFromDomain(domainValue)
|
|
if (!exposedAccounts.includes(selectedAddress)) {
|
|
return
|
|
}
|
|
|
|
const {
|
|
extensionId,
|
|
name,
|
|
icon,
|
|
} = domainMetadata[domainKey] || {}
|
|
|
|
connectedDomains.push({
|
|
extensionId,
|
|
key: domainKey,
|
|
name,
|
|
icon,
|
|
})
|
|
})
|
|
|
|
return connectedDomains
|
|
}
|
|
|
|
/**
|
|
* Returns an object mapping addresses to objects mapping origins to connected
|
|
* domain info. Domain info objects have the following properties:
|
|
* - icon
|
|
* - name
|
|
*
|
|
* @param {Object} state - The current state.
|
|
* @returns {Object} A mapping of addresses to a mapping of origins to
|
|
* connected domain info.
|
|
*/
|
|
export function getAddressConnectedDomainMap (state) {
|
|
const domainMetadata = getPermissionDomainsMetadata(state)
|
|
const accountsMap = getPermittedAccountsByOrigin(state)
|
|
const addressConnectedIconMap = {}
|
|
|
|
Object.keys(accountsMap).forEach((domainKey) => {
|
|
|
|
const { icon, name } = domainMetadata[domainKey] || {}
|
|
|
|
accountsMap[domainKey].forEach((address) => {
|
|
|
|
const nameToRender = name || domainKey
|
|
|
|
addressConnectedIconMap[address] = addressConnectedIconMap[address]
|
|
? { ...addressConnectedIconMap[address], [domainKey]: { icon, name: nameToRender } }
|
|
: { [domainKey]: { icon, name: nameToRender } }
|
|
})
|
|
})
|
|
|
|
return addressConnectedIconMap
|
|
}
|
|
|
|
// selector helpers
|
|
|
|
function getAccountsFromDomain (domain) {
|
|
return getAccountsFromPermission(
|
|
getAccountsPermissionFromDomain(domain)
|
|
)
|
|
}
|
|
|
|
function getAccountsPermissionFromDomain (domain = {}) {
|
|
return (
|
|
Array.isArray(domain.permissions)
|
|
? domain.permissions.find(
|
|
(perm) => perm.parentCapability === 'eth_accounts'
|
|
)
|
|
: {}
|
|
)
|
|
}
|
|
|
|
function getAccountsFromPermission (accountsPermission) {
|
|
const accountsCaveat = getAccountsCaveatFromPermission(accountsPermission)
|
|
return (
|
|
accountsCaveat && Array.isArray(accountsCaveat.value)
|
|
? accountsCaveat.value
|
|
: []
|
|
)
|
|
}
|
|
|
|
function getAccountsCaveatFromPermission (accountsPermission = {}) {
|
|
return (
|
|
Array.isArray(accountsPermission.caveats) &&
|
|
accountsPermission.caveats.find(
|
|
(c) => c.name === CAVEAT_NAMES.exposedAccounts
|
|
)
|
|
)
|
|
}
|
|
|
|
function domainSelector (state, origin) {
|
|
return origin && state.metamask?.domains[origin]
|
|
}
|
|
|