soapbox/app/soapbox/utils/accounts.js

70 wiersze
1.8 KiB
JavaScript
Czysty Zwykły widok Historia

2020-04-21 19:00:31 +00:00
import { Map as ImmutableMap } from 'immutable';
import { List as ImmutableList } from 'immutable';
2020-04-21 19:00:31 +00:00
2021-08-23 19:14:47 +00:00
const getDomainFromURL = account => {
try {
2021-08-23 19:14:47 +00:00
const url = account.get('url');
return new URL(url).host;
} catch {
return '';
}
};
2020-04-18 19:18:04 +00:00
export const getDomain = account => {
2021-08-23 19:14:47 +00:00
const domain = account.get('acct').split('@')[1];
return domain ? domain : getDomainFromURL(account);
2020-04-14 18:44:40 +00:00
};
2020-03-28 18:07:36 +00:00
export const guessFqn = account => {
const [user, domain] = account.get('acct').split('@');
2021-08-23 19:14:47 +00:00
if (!domain) return [user, getDomainFromURL(account)].join('@');
return account.get('acct');
2020-04-14 18:44:40 +00:00
};
2020-04-18 20:09:54 +00:00
export const getBaseURL = account => {
try {
const url = account.get('url');
return new URL(url).origin;
} catch {
return '';
}
};
// user@domain even for local users
export const acctFull = account => (
account.get('fqn') || guessFqn(account)
);
export const getAcct = (account, displayFqn) => (
displayFqn === true ? acctFull(account) : account.get('acct')
);
2020-04-27 20:05:07 +00:00
export const isStaff = (account = ImmutableMap()) => (
[isAdmin, isModerator].some(f => f(account) === true)
);
export const isAdmin = account => (
account.getIn(['pleroma', 'is_admin']) === true
);
export const isModerator = account => (
account.getIn(['pleroma', 'is_moderator']) === true
);
2020-05-28 00:36:23 +00:00
export const getFollowDifference = (state, accountId, type) => {
const listSize = state.getIn(['user_lists', type, accountId, 'items'], ImmutableList()).size;
const counter = state.getIn(['accounts_counters', accountId, `${type}_count`], 0);
return Math.max(counter - listSize, 0);
};
export const isLocal = account => {
const domain = account.get('acct').split('@')[1];
return domain === undefined ? true : false;
};
2021-03-16 02:50:16 +00:00
2021-08-23 19:14:47 +00:00
export const isRemote = account => !isLocal(account);
2021-03-16 02:50:16 +00:00
export const isVerified = account => (
account.getIn(['pleroma', 'tags'], ImmutableList()).includes('verified')
);