123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555 |
- import BN from 'bn.js'
- import { types } from '@joystream/types/'
- import { ApiPromise, WsProvider } from '@polkadot/api'
- import { QueryableStorageMultiArg, SubmittableExtrinsic, QueryableStorageEntry } from '@polkadot/api/types'
- import { formatBalance } from '@polkadot/util'
- import { Balance, Moment, BlockNumber } from '@polkadot/types/interfaces'
- import { KeyringPair } from '@polkadot/keyring/types'
- import { Codec, CodecArg } from '@polkadot/types/types'
- import { Option, Vec, UInt } from '@polkadot/types'
- import {
- AccountSummary,
- CouncilInfoObj,
- CouncilInfoTuple,
- createCouncilInfoObj,
- WorkingGroups,
- Reward,
- GroupMember,
- OpeningStatus,
- GroupOpeningStage,
- GroupOpening,
- GroupApplication,
- openingPolicyUnstakingPeriodsKeys,
- UnstakingPeriods,
- StakingPolicyUnstakingPeriodKey,
- } from './Types'
- import { DeriveBalancesAll } from '@polkadot/api-derive/types'
- import { CLIError } from '@oclif/errors'
- import ExitCodes from './ExitCodes'
- import {
- Worker,
- WorkerId,
- RoleStakeProfile,
- Opening as WGOpening,
- Application as WGApplication,
- StorageProviderId,
- } from '@joystream/types/working-group'
- import {
- Opening,
- Application,
- OpeningStage,
- ApplicationStageKeys,
- ApplicationId,
- OpeningId,
- StakingPolicy,
- } from '@joystream/types/hiring'
- import { MemberId, Membership } from '@joystream/types/members'
- import { RewardRelationship, RewardRelationshipId } from '@joystream/types/recurring-rewards'
- import { Stake, StakeId } from '@joystream/types/stake'
- import { InputValidationLengthConstraint } from '@joystream/types/common'
- import { Class, ClassId, CuratorGroup, CuratorGroupId, Entity, EntityId } from '@joystream/types/content-directory'
- import { ContentId, DataObject } from '@joystream/types/media'
- import { ServiceProviderRecord, Url } from '@joystream/types/discovery'
- import _ from 'lodash'
- export const DEFAULT_API_URI = 'ws://localhost:9944/'
- const DEFAULT_DECIMALS = new BN(12)
- // Mapping of working group to api module
- export const apiModuleByGroup: { [key in WorkingGroups]: string } = {
- [WorkingGroups.StorageProviders]: 'storageWorkingGroup',
- [WorkingGroups.Curators]: 'contentDirectoryWorkingGroup',
- }
- // Api wrapper for handling most common api calls and allowing easy API implementation switch in the future
- export default class Api {
- private _api: ApiPromise
- private _cdClassesCache: [ClassId, Class][] | null = null
- private constructor(originalApi: ApiPromise) {
- this._api = originalApi
- }
- public getOriginalApi(): ApiPromise {
- return this._api
- }
- private static async initApi(apiUri: string = DEFAULT_API_URI): Promise<ApiPromise> {
- const wsProvider: WsProvider = new WsProvider(apiUri)
- const api = await ApiPromise.create({ provider: wsProvider, types })
- // Initializing some api params based on pioneer/packages/react-api/Api.tsx
- const [properties] = await Promise.all([api.rpc.system.properties()])
- const tokenSymbol = properties.tokenSymbol.unwrapOr('DEV').toString()
- const tokenDecimals = properties.tokenDecimals.unwrapOr(DEFAULT_DECIMALS).toNumber()
- // formatBlanace config
- formatBalance.setDefaults({
- decimals: tokenDecimals,
- unit: tokenSymbol,
- })
- return api
- }
- static async create(apiUri: string = DEFAULT_API_URI): Promise<Api> {
- const originalApi: ApiPromise = await Api.initApi(apiUri)
- return new Api(originalApi)
- }
- private queryMultiOnce(queries: Parameters<typeof ApiPromise.prototype.queryMulti>[0]): Promise<Codec[]> {
- return new Promise((resolve, reject) => {
- let unsub: () => void
- this._api
- .queryMulti(queries, (res) => {
- // unsub should already be set at this point
- if (!unsub) {
- reject(new CLIError('API queryMulti issue - unsub method not set!', { exit: ExitCodes.ApiError }))
- }
- unsub()
- resolve(res)
- })
- .then((unsubscribe) => (unsub = unsubscribe))
- .catch((e) => reject(e))
- })
- }
- async bestNumber(): Promise<number> {
- return (await this._api.derive.chain.bestNumber()).toNumber()
- }
- async getAccountsBalancesInfo(accountAddresses: string[]): Promise<DeriveBalancesAll[]> {
- const accountsBalances: DeriveBalancesAll[] = await Promise.all(
- accountAddresses.map((addr) => this._api.derive.balances.all(addr))
- )
- return accountsBalances
- }
- // Get on-chain data related to given account.
- // For now it's just account balances
- async getAccountSummary(accountAddresses: string): Promise<AccountSummary> {
- const balances: DeriveBalancesAll = (await this.getAccountsBalancesInfo([accountAddresses]))[0]
- // TODO: Some more information can be fetched here in the future
- return { balances }
- }
- async getCouncilInfo(): Promise<CouncilInfoObj> {
- const queries: { [P in keyof CouncilInfoObj]: QueryableStorageMultiArg<'promise'> } = {
- activeCouncil: this._api.query.council.activeCouncil,
- termEndsAt: this._api.query.council.termEndsAt,
- autoStart: this._api.query.councilElection.autoStart,
- newTermDuration: this._api.query.councilElection.newTermDuration,
- candidacyLimit: this._api.query.councilElection.candidacyLimit,
- councilSize: this._api.query.councilElection.councilSize,
- minCouncilStake: this._api.query.councilElection.minCouncilStake,
- minVotingStake: this._api.query.councilElection.minVotingStake,
- announcingPeriod: this._api.query.councilElection.announcingPeriod,
- votingPeriod: this._api.query.councilElection.votingPeriod,
- revealingPeriod: this._api.query.councilElection.revealingPeriod,
- round: this._api.query.councilElection.round,
- stage: this._api.query.councilElection.stage,
- }
- const results: CouncilInfoTuple = (await this.queryMultiOnce(Object.values(queries))) as CouncilInfoTuple
- return createCouncilInfoObj(...results)
- }
- async estimateFee(account: KeyringPair, tx: SubmittableExtrinsic<'promise'>): Promise<Balance> {
- const paymentInfo = await tx.paymentInfo(account)
- return paymentInfo.partialFee
- }
- createTransferTx(recipient: string, amount: BN) {
- return this._api.tx.balances.transfer(recipient, amount)
- }
- // Working groups
- // TODO: This is a lot of repeated logic from "/pioneer/joy-utils/transport"
- // It will be refactored to "joystream-js" soon
- async entriesByIds<IDType extends UInt, ValueType extends Codec>(
- apiMethod: QueryableStorageEntry<'promise'>,
- firstKey?: CodecArg // First key in case of double maps
- ): Promise<[IDType, ValueType][]> {
- const entries: [IDType, ValueType][] = (await apiMethod.entries<ValueType>(firstKey)).map(([storageKey, value]) => [
- // If double-map (first key is provided), we map entries by second key
- storageKey.args[firstKey !== undefined ? 1 : 0] as IDType,
- value,
- ])
- return entries.sort((a, b) => a[0].toNumber() - b[0].toNumber())
- }
- protected async blockHash(height: number): Promise<string> {
- const blockHash = await this._api.rpc.chain.getBlockHash(height)
- return blockHash.toString()
- }
- protected async blockTimestamp(height: number): Promise<Date> {
- const blockTime = (await this._api.query.timestamp.now.at(await this.blockHash(height))) as Moment
- return new Date(blockTime.toNumber())
- }
- protected workingGroupApiQuery(group: WorkingGroups) {
- const module = apiModuleByGroup[group]
- return this._api.query[module]
- }
- protected async membershipById(memberId: MemberId): Promise<Membership | null> {
- const profile = (await this._api.query.members.membershipById(memberId)) as Membership
- // Can't just use profile.isEmpty because profile.suspended is Bool (which isEmpty method always returns false)
- return profile.handle.isEmpty ? null : profile
- }
- async groupLead(group: WorkingGroups): Promise<GroupMember | null> {
- const optLeadId = (await this.workingGroupApiQuery(group).currentLead()) as Option<WorkerId>
- if (!optLeadId.isSome) {
- return null
- }
- const leadWorkerId = optLeadId.unwrap()
- const leadWorker = await this.workerByWorkerId(group, leadWorkerId.toNumber())
- return await this.parseGroupMember(leadWorkerId, leadWorker)
- }
- protected async stakeValue(stakeId: StakeId): Promise<Balance> {
- const stake = await this._api.query.stake.stakes<Stake>(stakeId)
- return stake.value
- }
- protected async workerStake(stakeProfile: RoleStakeProfile): Promise<Balance> {
- return this.stakeValue(stakeProfile.stake_id)
- }
- protected async workerReward(relationshipId: RewardRelationshipId): Promise<Reward> {
- const rewardRelationship = await this._api.query.recurringRewards.rewardRelationships<RewardRelationship>(
- relationshipId
- )
- return {
- totalRecieved: rewardRelationship.total_reward_received,
- value: rewardRelationship.amount_per_payout,
- interval: rewardRelationship.payout_interval.unwrapOr(undefined)?.toNumber(),
- nextPaymentBlock: rewardRelationship.next_payment_at_block.unwrapOr(new BN(0)).toNumber(),
- }
- }
- protected async parseGroupMember(id: WorkerId, worker: Worker): Promise<GroupMember> {
- const roleAccount = worker.role_account_id
- const memberId = worker.member_id
- const profile = await this.membershipById(memberId)
- if (!profile) {
- throw new Error(`Group member profile not found! (member id: ${memberId.toNumber()})`)
- }
- let stake: Balance | undefined
- if (worker.role_stake_profile && worker.role_stake_profile.isSome) {
- stake = await this.workerStake(worker.role_stake_profile.unwrap())
- }
- let reward: Reward | undefined
- if (worker.reward_relationship && worker.reward_relationship.isSome) {
- reward = await this.workerReward(worker.reward_relationship.unwrap())
- }
- return {
- workerId: id,
- roleAccount,
- memberId,
- profile,
- stake,
- reward,
- }
- }
- async workerByWorkerId(group: WorkingGroups, workerId: number): Promise<Worker> {
- const nextId = await this.workingGroupApiQuery(group).nextWorkerId<WorkerId>()
- // This is chain specfic, but if next id is still 0, it means no workers have been added yet
- if (workerId < 0 || workerId >= nextId.toNumber()) {
- throw new CLIError('Invalid worker id!')
- }
- const worker = await this.workingGroupApiQuery(group).workerById<Worker>(workerId)
- if (worker.isEmpty) {
- throw new CLIError('This worker is not active anymore')
- }
- return worker
- }
- async groupMember(group: WorkingGroups, workerId: number) {
- const worker = await this.workerByWorkerId(group, workerId)
- return await this.parseGroupMember(this._api.createType('WorkerId', workerId), worker)
- }
- async groupMembers(group: WorkingGroups): Promise<GroupMember[]> {
- const workerEntries = await this.groupWorkers(group)
- const groupMembers: GroupMember[] = await Promise.all(
- workerEntries.map(([id, worker]) => this.parseGroupMember(id, worker))
- )
- return groupMembers.reverse() // Sort by newest
- }
- groupWorkers(group: WorkingGroups): Promise<[WorkerId, Worker][]> {
- return this.entriesByIds<WorkerId, Worker>(this.workingGroupApiQuery(group).workerById)
- }
- async openingsByGroup(group: WorkingGroups): Promise<GroupOpening[]> {
- let openings: GroupOpening[] = []
- const nextId = await this.workingGroupApiQuery(group).nextOpeningId<OpeningId>()
- // This is chain specfic, but if next id is still 0, it means no openings have been added yet
- if (!nextId.eq(0)) {
- const ids = Array.from(Array(nextId.toNumber()).keys()).reverse() // Sort by newest
- openings = await Promise.all(ids.map((id) => this.groupOpening(group, id)))
- }
- return openings
- }
- protected async hiringOpeningById(id: number | OpeningId): Promise<Opening> {
- const result = await this._api.query.hiring.openingById<Opening>(id)
- return result
- }
- protected async hiringApplicationById(id: number | ApplicationId): Promise<Application> {
- const result = await this._api.query.hiring.applicationById<Application>(id)
- return result
- }
- async wgApplicationById(group: WorkingGroups, wgApplicationId: number): Promise<WGApplication> {
- const nextAppId = await this.workingGroupApiQuery(group).nextApplicationId<ApplicationId>()
- if (wgApplicationId < 0 || wgApplicationId >= nextAppId.toNumber()) {
- throw new CLIError('Invalid working group application ID!')
- }
- const result = await this.workingGroupApiQuery(group).applicationById<WGApplication>(wgApplicationId)
- return result
- }
- protected async parseApplication(wgApplicationId: number, wgApplication: WGApplication): Promise<GroupApplication> {
- const appId = wgApplication.application_id
- const application = await this.hiringApplicationById(appId)
- const { active_role_staking_id: roleStakingId, active_application_staking_id: appStakingId } = application
- return {
- wgApplicationId,
- applicationId: appId.toNumber(),
- wgOpeningId: wgApplication.opening_id.toNumber(),
- member: await this.membershipById(wgApplication.member_id),
- roleAccout: wgApplication.role_account_id,
- stakes: {
- application: appStakingId.isSome ? (await this.stakeValue(appStakingId.unwrap())).toNumber() : 0,
- role: roleStakingId.isSome ? (await this.stakeValue(roleStakingId.unwrap())).toNumber() : 0,
- },
- humanReadableText: application.human_readable_text.toString(),
- stage: application.stage.type as ApplicationStageKeys,
- }
- }
- async groupApplication(group: WorkingGroups, wgApplicationId: number): Promise<GroupApplication> {
- const wgApplication = await this.wgApplicationById(group, wgApplicationId)
- return await this.parseApplication(wgApplicationId, wgApplication)
- }
- protected async groupOpeningApplications(group: WorkingGroups, wgOpeningId: number): Promise<GroupApplication[]> {
- const wgApplicationEntries = await this.entriesByIds<ApplicationId, WGApplication>(
- this.workingGroupApiQuery(group).applicationById
- )
- return Promise.all(
- wgApplicationEntries
- .filter(([, /* id */ wgApplication]) => wgApplication.opening_id.eqn(wgOpeningId))
- .map(([id, wgApplication]) => this.parseApplication(id.toNumber(), wgApplication))
- )
- }
- async groupOpening(group: WorkingGroups, wgOpeningId: number): Promise<GroupOpening> {
- const nextId = ((await this.workingGroupApiQuery(group).nextOpeningId()) as OpeningId).toNumber()
- if (wgOpeningId < 0 || wgOpeningId >= nextId) {
- throw new CLIError('Invalid working group opening ID!')
- }
- const groupOpening = await this.workingGroupApiQuery(group).openingById<WGOpening>(wgOpeningId)
- const openingId = groupOpening.hiring_opening_id.toNumber()
- const opening = await this.hiringOpeningById(openingId)
- const applications = await this.groupOpeningApplications(group, wgOpeningId)
- const stage = await this.parseOpeningStage(opening.stage)
- const type = groupOpening.opening_type
- const { application_staking_policy: applSP, role_staking_policy: roleSP } = opening
- const stakes = {
- application: applSP.unwrapOr(undefined),
- role: roleSP.unwrapOr(undefined),
- }
- const unstakingPeriod = (period: Option<BlockNumber>) => period.unwrapOr(new BN(0)).toNumber()
- const spUnstakingPeriod = (sp: Option<StakingPolicy>, key: StakingPolicyUnstakingPeriodKey) =>
- sp.isSome ? unstakingPeriod(sp.unwrap()[key]) : 0
- const unstakingPeriods: Partial<UnstakingPeriods> = {
- 'review_period_expired_application_stake_unstaking_period_length': spUnstakingPeriod(
- applSP,
- 'review_period_expired_unstaking_period_length'
- ),
- 'crowded_out_application_stake_unstaking_period_length': spUnstakingPeriod(
- applSP,
- 'crowded_out_unstaking_period_length'
- ),
- 'review_period_expired_role_stake_unstaking_period_length': spUnstakingPeriod(
- roleSP,
- 'review_period_expired_unstaking_period_length'
- ),
- 'crowded_out_role_stake_unstaking_period_length': spUnstakingPeriod(
- roleSP,
- 'crowded_out_unstaking_period_length'
- ),
- }
- openingPolicyUnstakingPeriodsKeys.forEach((key) => {
- unstakingPeriods[key] = unstakingPeriod(groupOpening.policy_commitment[key])
- })
- return {
- wgOpeningId,
- openingId,
- opening,
- stage,
- stakes,
- applications,
- type,
- unstakingPeriods: unstakingPeriods as UnstakingPeriods,
- }
- }
- async parseOpeningStage(stage: OpeningStage): Promise<GroupOpeningStage> {
- let status: OpeningStatus | undefined, stageBlock: number | undefined, stageDate: Date | undefined
- if (stage.isOfType('WaitingToBegin')) {
- const stageData = stage.asType('WaitingToBegin')
- const currentBlockNumber = (await this._api.derive.chain.bestNumber()).toNumber()
- const expectedBlockTime = (this._api.consts.babe.expectedBlockTime as Moment).toNumber()
- status = OpeningStatus.WaitingToBegin
- stageBlock = stageData.begins_at_block.toNumber()
- stageDate = new Date(Date.now() + (stageBlock - currentBlockNumber) * expectedBlockTime)
- }
- if (stage.isOfType('Active')) {
- const stageData = stage.asType('Active')
- const substage = stageData.stage
- if (substage.isOfType('AcceptingApplications')) {
- status = OpeningStatus.AcceptingApplications
- stageBlock = substage.asType('AcceptingApplications').started_accepting_applicants_at_block.toNumber()
- }
- if (substage.isOfType('ReviewPeriod')) {
- status = OpeningStatus.InReview
- stageBlock = substage.asType('ReviewPeriod').started_review_period_at_block.toNumber()
- }
- if (substage.isOfType('Deactivated')) {
- status = substage.asType('Deactivated').cause.isOfType('Filled')
- ? OpeningStatus.Complete
- : OpeningStatus.Cancelled
- stageBlock = substage.asType('Deactivated').deactivated_at_block.toNumber()
- }
- if (stageBlock) {
- stageDate = new Date(await this.blockTimestamp(stageBlock))
- }
- }
- return {
- status: status || OpeningStatus.Unknown,
- block: stageBlock,
- date: stageDate,
- }
- }
- async getMemberIdsByControllerAccount(address: string): Promise<MemberId[]> {
- const ids = await this._api.query.members.memberIdsByControllerAccountId<Vec<MemberId>>(address)
- return ids.toArray()
- }
- async workerExitRationaleConstraint(group: WorkingGroups): Promise<InputValidationLengthConstraint> {
- return await this.workingGroupApiQuery(group).workerExitRationaleText<InputValidationLengthConstraint>()
- }
- // Content directory
- async availableClasses(useCache = true): Promise<[ClassId, Class][]> {
- return useCache && this._cdClassesCache
- ? this._cdClassesCache
- : await this.entriesByIds<ClassId, Class>(this._api.query.contentDirectory.classById)
- }
- availableCuratorGroups(): Promise<[CuratorGroupId, CuratorGroup][]> {
- return this.entriesByIds<CuratorGroupId, CuratorGroup>(this._api.query.contentDirectory.curatorGroupById)
- }
- async curatorGroupById(id: number): Promise<CuratorGroup | null> {
- const exists = !!(await this._api.query.contentDirectory.curatorGroupById.size(id)).toNumber()
- return exists ? await this._api.query.contentDirectory.curatorGroupById<CuratorGroup>(id) : null
- }
- async nextCuratorGroupId(): Promise<number> {
- return (await this._api.query.contentDirectory.nextCuratorGroupId<CuratorGroupId>()).toNumber()
- }
- async classById(id: number): Promise<Class | null> {
- const c = await this._api.query.contentDirectory.classById<Class>(id)
- return c.isEmpty ? null : c
- }
- async entitiesByClassId(classId: number): Promise<[EntityId, Entity][]> {
- const entityEntries = await this.entriesByIds<EntityId, Entity>(this._api.query.contentDirectory.entityById)
- return entityEntries.filter(([, entity]) => entity.class_id.toNumber() === classId)
- }
- async entityById(id: number): Promise<Entity | null> {
- const exists = !!(await this._api.query.contentDirectory.curatorGroupById.size(id))
- return exists ? await this._api.query.contentDirectory.entityById<Entity>(id) : null
- }
- async dataObjectByContentId(contentId: ContentId): Promise<DataObject | null> {
- const dataObject = await this._api.query.dataDirectory.dataObjectByContentId<Option<DataObject>>(contentId)
- return dataObject.unwrapOr(null)
- }
- async ipnsIdentity(storageProviderId: number): Promise<string | null> {
- const accountInfo = await this._api.query.discovery.accountInfoByStorageProviderId<ServiceProviderRecord>(
- storageProviderId
- )
- return accountInfo.isEmpty || accountInfo.expires_at.toNumber() <= (await this.bestNumber())
- ? null
- : accountInfo.identity.toString()
- }
- async getRandomBootstrapEndpoint(): Promise<string | null> {
- const endpoints = await this._api.query.discovery.bootstrapEndpoints<Vec<Url>>()
- const randomEndpoint = _.sample(endpoints.toArray())
- return randomEndpoint ? randomEndpoint.toString() : null
- }
- async isAnyProviderAvailable(): Promise<boolean> {
- const accounInfoEntries = await this.entriesByIds<StorageProviderId, ServiceProviderRecord>(
- this._api.query.discovery.accountInfoByStorageProviderId
- )
- const bestNumber = await this.bestNumber()
- return !!accounInfoEntries.filter(([, info]) => info.expires_at.toNumber() > bestNumber)
- }
- }
|