123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298 |
- /*
- * This file is part of the storage node for the Joystream project.
- * Copyright (C) 2019 Joystream Contributors
- *
- * This program is free software: you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation, either version 3 of the License, or
- * (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program. If not, see <https://www.gnu.org/licenses/>.
- */
- 'use strict'
- const debug = require('debug')('joystream:runtime:roles')
- const BN = require('bn.js')
- const { Worker } = require('@joystream/types/working-group')
- /*
- * Add worker related functionality to the substrate API.
- */
- class WorkersApi {
- static async create (base) {
- const ret = new WorkersApi()
- ret.base = base
- await ret.init()
- return ret
- }
- // eslint-disable-next-line class-methods-use-this, require-await
- async init () {
- debug('Init')
- }
- /*
- * Check whether the given account and id represent an enrolled storage provider
- */
- async isRoleAccountOfStorageProvider (storageProviderId, roleAccountId) {
- const id = new BN(storageProviderId)
- const roleAccount = this.base.identities.keyring.decodeAddress(roleAccountId)
- const providerAccount = await this.storageProviderRoleAccount(id)
- return providerAccount && providerAccount.eq(roleAccount)
- }
- /*
- * Returns true if the provider id is enrolled
- */
- async isStorageProvider (storageProviderId) {
- const worker = await this.storageWorkerByProviderId(storageProviderId)
- return worker !== null
- }
- /*
- * Returns a provider's role account or null if provider doesn't exist
- */
- async storageProviderRoleAccount (storageProviderId) {
- const worker = await this.storageWorkerByProviderId(storageProviderId)
- return worker ? worker.role_account_id : null
- }
- /*
- * Returns a Worker instance or null if provider does not exist
- */
- async storageWorkerByProviderId (storageProviderId) {
- const id = new BN(storageProviderId)
- const { providers } = await this.getAllProviders()
- return providers[id.toNumber()] || null
- }
- /*
- * Returns the the first found provider id with a role account or null if not found
- */
- async findProviderIdByRoleAccount (roleAccount) {
- const { ids, providers } = await this.getAllProviders()
- for (let i = 0; i < ids.length; i++) {
- const id = ids[i]
- if (providers[id].role_account_id.eq(roleAccount)) {
- return id
- }
- }
- return null
- }
- /*
- * Returns the set of ids and Worker instances of providers enrolled on the network
- */
- async getAllProviders () {
- // const workerEntries = await this.base.api.query.storageWorkingGroup.workerById()
- // can't rely on .isEmpty or isNone property to detect empty map
- // return workerEntries.isNone ? [] : workerEntries[0]
- // return workerEntries.isEmpty ? [] : workerEntries[0]
- // So we iterate over possible ids which may or may not exist, by reading directly
- // from storage value
- const nextWorkerId = (await this.base.api.query.storageWorkingGroup.nextWorkerId()).toNumber()
- const ids = []
- const providers = {}
- for (let id = 0; id < nextWorkerId; id++) {
- // We get back an Option. Will be None if value doesn't exist
- // eslint-disable-next-line no-await-in-loop
- let value = await this.base.api.rpc.state.getStorage(
- this.base.api.query.storageWorkingGroup.workerById.key(id)
- )
- if (!value.isNone) {
- // no need to read from storage again!
- // const worker = (await this.base.api.query.storageWorkingGroup.workerById(id))[0]
- value = value.unwrap()
- // construct the Worker type from raw data
- // const worker = createType('WorkerOf', value)
- // const worker = new Worker(value)
- ids.push(id)
- providers[id] = new Worker(value)
- }
- }
- return { ids, providers }
- }
- async getLeadRoleAccount() {
- const currentLead = await this.base.api.query.storageWorkingGroup.currentLead()
- if (currentLead.isSome) {
- const leadWorkerId = currentLead.unwrap()
- const worker = await this.base.api.query.storageWorkingGroup.workerById(leadWorkerId)
- return worker[0].role_account_id
- }
- return null
- }
- // Helper methods below don't really belong in the colossus runtime api library.
- // They are only used by the dev-init command in the cli to setup a development environment
- /*
- * Add a new storage group opening using the lead account. Returns the
- * new opening id.
- */
- async dev_addStorageOpening() {
- const openTx = this.dev_makeAddOpeningTx('Worker')
- return this.dev_submitAddOpeningTx(openTx, await this.getLeadRoleAccount())
- }
- /*
- * Add a new storage working group lead opening using sudo account. Returns the
- * new opening id.
- */
- async dev_addStorageLeadOpening() {
- const openTx = this.dev_makeAddOpeningTx('Leader')
- const sudoTx = this.base.api.tx.sudo.sudo(openTx)
- return this.dev_submitAddOpeningTx(sudoTx, await this.base.identities.getSudoAccount())
- }
- /*
- * Constructs an addOpening tx of openingType
- */
- dev_makeAddOpeningTx(openingType) {
- return this.base.api.tx.storageWorkingGroup.addOpening(
- 'CurrentBlock',
- {
- application_rationing_policy: {
- 'max_active_applicants': 1
- },
- max_review_period_length: 1000
- // default values for everything else..
- },
- 'dev-opening',
- openingType
- )
- }
- /*
- * Submits a tx (expecting it to dispatch storageWorkingGroup.addOpening) and returns
- * the OpeningId from the resulting event.
- */
- async dev_submitAddOpeningTx(tx, senderAccount) {
- return this.base.signAndSendThenGetEventResult(senderAccount, tx, {
- eventModule: 'storageWorkingGroup',
- eventName: 'OpeningAdded',
- eventProperty: 'OpeningId'
- })
- }
- /*
- * Apply on an opening, returns the application id.
- */
- async dev_applyOnOpening(openingId, memberId, memberAccount, roleAccount) {
- const applyTx = this.base.api.tx.storageWorkingGroup.applyOnOpening(
- memberId, openingId, roleAccount, null, null, `colossus-${memberId}`
- )
- return this.base.signAndSendThenGetEventResult(memberAccount, applyTx, {
- eventModule: 'storageWorkingGroup',
- eventName: 'AppliedOnOpening',
- eventProperty: 'ApplicationId'
- })
- }
- /*
- * Move lead opening to review state using sudo account
- */
- async dev_beginLeadOpeningReview(openingId) {
- const beginReviewTx = this.dev_makeBeginOpeningReviewTx(openingId)
- const sudoTx = this.base.api.tx.sudo.sudo(beginReviewTx)
- return this.base.signAndSend(await this.base.identities.getSudoAccount(), sudoTx)
- }
- /*
- * Move a storage opening to review state using lead account
- */
- async dev_beginStorageOpeningReview(openingId) {
- const beginReviewTx = this.dev_makeBeginOpeningReviewTx(openingId)
- return this.base.signAndSend(await this.getLeadRoleAccount(), beginReviewTx)
- }
- /*
- * Constructs a beingApplicantReview tx for openingId, which puts an opening into the review state
- */
- dev_makeBeginOpeningReviewTx(openingId) {
- return this.base.api.tx.storageWorkingGroup.beginApplicantReview(openingId)
- }
- /*
- * Fill a lead opening, return the assigned worker id, using the sudo account
- */
- async dev_fillLeadOpening(openingId, applicationId) {
- const fillTx = this.dev_makeFillOpeningTx(openingId, applicationId)
- const sudoTx = this.base.api.tx.sudo.sudo(fillTx)
- const filled = await this.dev_submitFillOpeningTx(
- await this.base.identities.getSudoAccount(), sudoTx)
- return getWorkerIdFromApplicationIdToWorkerIdMap(filled, applicationId)
- }
- /*
- * Fill a storage opening, return the assigned worker id, using the lead account
- */
- async dev_fillStorageOpening(openingId, applicationId) {
- const fillTx = this.dev_makeFillOpeningTx(openingId, applicationId)
- const filled = await this.dev_submitFillOpeningTx(await this.getLeadRoleAccount(), fillTx)
- return getWorkerIdFromApplicationIdToWorkerIdMap(filled, applicationId)
- }
- /*
- * Constructs a FillOpening transaction
- */
- dev_makeFillOpeningTx(openingId, applicationId) {
- return this.base.api.tx.storageWorkingGroup.fillOpening(openingId, [applicationId], null)
- }
- /*
- * Dispatches a fill opening tx and returns a map of the application id to their new assigned worker ids.
- */
- async dev_submitFillOpeningTx(senderAccount, tx) {
- return this.base.signAndSendThenGetEventResult(senderAccount, tx, {
- eventModule: 'storageWorkingGroup',
- eventName: 'OpeningFilled',
- eventProperty: 'ApplicationIdToWorkerIdMap'
- })
- }
- }
- /*
- * Finds assigned worker id corresponding to the application id from the resulting
- * ApplicationIdToWorkerIdMap map in the OpeningFilled event. Expects map to
- * contain at least one entry.
- */
- function getWorkerIdFromApplicationIdToWorkerIdMap (filledMap, applicationId) {
- if (filledMap.size === 0) {
- throw new Error('Expected opening to be filled!')
- }
- let ourApplicationIdKey
- for (let key of filledMap.keys()) {
- if (key.eq(applicationId)) {
- ourApplicationIdKey = key
- break
- }
- }
- if (!ourApplicationIdKey) {
- throw new Error('Expected application id to have been filled!')
- }
- const workerId = filledMap.get(ourApplicationIdKey)
- return workerId
- }
- module.exports = {
- WorkersApi
- }
|