diff --git a/CHANGELOG.md b/CHANGELOG.md index 27d07b95b..fc8b44ca9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,12 @@ -# 4.0.0 +# 4.0.2 + +## Bug Fixes: +- Fixed: unstake tokens atfer revenue share has been finalized. +- Fixed: transform raw json objects to `jsonb` properties while importing the offchain state. +- Fixed: `bigint` to `number` conversion in `getCumulativeHistoricalShareAllocation` custom resolver. +- Fixed duplicate notifications being received by users for featured NFTs. + +# 4.0.1 ## Misc diff --git a/package-lock.json b/package-lock.json index 33ddfd817..aea4e4852 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "orion", - "version": "4.0.1", + "version": "4.0.2", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "orion", - "version": "4.0.1", + "version": "4.0.2", "hasInstallScript": true, "workspaces": [ "network-tests" diff --git a/package.json b/package.json index 296b8ed6d..0c4d76f52 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "orion", - "version": "4.0.1", + "version": "4.0.2", "engines": { "node": ">=16" }, diff --git a/src/mappings/token/index.ts b/src/mappings/token/index.ts index 270a9288b..9a80905fb 100644 --- a/src/mappings/token/index.ts +++ b/src/mappings/token/index.ts @@ -757,21 +757,15 @@ export async function processRevenueSplitLeftEvent({ }: EventHandlerContext<'ProjectToken.RevenueSplitLeft'>) { const account = await getTokenAccountByMemberByTokenOrFail(overlay, memberId, tokenId) account.stakedAmount -= unstakedAmount - const token = await overlay.getRepository(CreatorToken).getByIdOrFail(tokenId.toString()) - if (token.currentRevenueShareId) { - // TODO: refactor this as should be true all the times, might be a good idea to panic - const revenueShare = await overlay - .getRepository(RevenueShare) - .getByIdOrFail(token.currentRevenueShareId) - revenueShare.participantsNum -= 1 - const qRevenueShareParticipation = ( - await overlay - .getRepository(RevenueShareParticipation) - .getManyByRelation('accountId', account.id) - ).find((participation) => participation.revenueShareId === revenueShare.id) - if (qRevenueShareParticipation) { - qRevenueShareParticipation.recovered = true - } + + const revenueShareParticipation = ( + await overlay + .getRepository(RevenueShareParticipation) + .getManyByRelation('accountId', account.id) + ).find((participation) => participation.recovered === false) + + if (revenueShareParticipation) { + revenueShareParticipation.recovered = true } } diff --git a/src/server-extension/resolvers/CreatorToken/index.ts b/src/server-extension/resolvers/CreatorToken/index.ts index f1af2769b..b2ee3b72e 100644 --- a/src/server-extension/resolvers/CreatorToken/index.ts +++ b/src/server-extension/resolvers/CreatorToken/index.ts @@ -57,7 +57,7 @@ export class TokenResolver { cumulativeAllocationAmount += share.allocation } return { - cumulativeHistoricalAllocation: Number(cumulativeAllocationAmount), + cumulativeHistoricalAllocation: cumulativeAllocationAmount.toString(), } } diff --git a/src/server-extension/resolvers/CreatorToken/types.ts b/src/server-extension/resolvers/CreatorToken/types.ts index f988f2b9c..249689d30 100644 --- a/src/server-extension/resolvers/CreatorToken/types.ts +++ b/src/server-extension/resolvers/CreatorToken/types.ts @@ -23,8 +23,8 @@ export class GetCumulativeHistoricalShareAllocationArgs { @ObjectType() export class GetCumulativeHistoricalShareAllocationResult { - @Field(() => Int, { nullable: false }) - cumulativeHistoricalAllocation!: number + @Field(() => String, { nullable: false }) + cumulativeHistoricalAllocation!: string } @ArgsType() diff --git a/src/utils/offchainState.ts b/src/utils/offchainState.ts index 481e69475..7360ed2c3 100644 --- a/src/utils/offchainState.ts +++ b/src/utils/offchainState.ts @@ -2,8 +2,9 @@ import { createLogger } from '@subsquid/logger' import assert from 'assert' import { createParseStream, createStringifyStream } from 'big-json' import fs from 'fs' +import { snakeCase } from 'lodash' import path from 'path' -import { EntityManager } from 'typeorm' +import { EntityManager, ValueTransformer } from 'typeorm' import * as model from '../model' import { AccountNotificationPreferences, @@ -35,7 +36,7 @@ type ClassConstructors = { type ExportedStateMap = { [K in keyof ClassConstructors]?: | true - | (keyof SnakeCaseKeys[K]>>)[] + | (keyof InstanceType[K]>)[] } const exportedStateMap: ExportedStateMap = { @@ -59,17 +60,17 @@ const exportedStateMap: ExportedStateMap = { EmailDeliveryAttempt: true, Token: true, NextEntityId: true, - Channel: ['is_excluded', 'video_views_num', 'follows_num', 'ypp_status', 'channel_weight'], - Video: ['is_excluded', 'views_num'], - Comment: ['is_excluded'], - OwnedNft: ['is_featured'], - VideoCategory: ['is_supported'], + Channel: ['isExcluded', 'videoViewsNum', 'followsNum', 'yppStatus', 'channelWeight'], + Video: ['isExcluded', 'viewsNum'], + Comment: ['isExcluded'], + OwnedNft: ['isFeatured'], + VideoCategory: ['isSupported'], } type ExportedData = { [K in keyof typeof exportedStateMap]?: { type: 'insert' | 'update' - values: Record[] + values: InstanceType[K]>[] } } @@ -88,20 +89,20 @@ function migrateExportDataToV300(data: ExportedData): ExportedData { id: `${V2_MIGRATION_USER_PREFIX}${uniqueId()}`, isRoot: false, } - data.User = { type: 'insert', values: [migrationUser] } + data.User = { type: 'insert', values: [migrationUser as model.User] } const replaceIpWithUserId = (v: Record) => { delete v.ip v.userId = migrationUser.id } - data.VideoViewEvent?.values.forEach(replaceIpWithUserId) - data.Report?.values.forEach(replaceIpWithUserId) - data.NftFeaturingRequest?.values.forEach(replaceIpWithUserId) + data.VideoViewEvent?.values.forEach(replaceIpWithUserId as any) + data.Report?.values.forEach(replaceIpWithUserId as any) + data.NftFeaturingRequest?.values.forEach(replaceIpWithUserId as any) // We don't migrate channel follows from v2, because in v3 // an account is required in order to follow a channel delete data.ChannelFollow data.Channel?.values.forEach((v) => { - v.follows_num = 0 + v.followsNum = 0 }) return data @@ -111,8 +112,6 @@ function migrateExportDataToV320(data: ExportedData): ExportedData { data.Account?.values.forEach((account) => { // account will find himself with all notification pref. enabled by default account.notificationPreferences = defaultNotificationPreferences() - // referrer channel id is set to null - account.referrerChannelId = null }) // all channels will start as unverified because they are re-synched from mappings @@ -197,7 +196,10 @@ export class OffchainState { ? await em .getRepository(entityName) .createQueryBuilder() - .select(['id', ...(fields as unknown as string)]) + .select([ + 'id', + ...fields.map((field) => `${snakeCase(String(field))} AS "${String(field)}"`), + ]) .getRawMany() : await em.getRepository(entityName).find({}) if (!values.length) { @@ -234,8 +236,36 @@ export class OffchainState { return parseInt(major) * (1000 * 1000) + parseInt(minor) * 1000 + parseInt(patch) } + private transformJsonbProperties(data: ExportedData, em: EntityManager): ExportedData { + // construct proper JSONB objects from raw data + return Object.fromEntries( + Object.entries(data).map(([entityName, { type, values }]) => { + const metadata = em.connection.getMetadata(entityName) + const jsonbColumns = metadata.columns.filter((c) => c.type === 'jsonb') + + values = (values as any[]).map((value) => { + jsonbColumns.forEach((column) => { + const propertyName = column.propertyName + const transformer = column.transformer as ValueTransformer | undefined + if (value[propertyName] && transformer) { + const rawValue = value[propertyName] + const transformedValue = transformer.from(rawValue) + value[propertyName] = transformedValue + } + }) + return value + }) + + return [entityName, { type, values }] + }) + ) + } + public prepareExportData(exportState: ExportedState, em: EntityManager): ExportedData { let { data } = exportState + + data = this.transformJsonbProperties(data, em) + Object.entries(this.migrations) .sort(([a], [b]) => this.versionToNumber(a) - this.versionToNumber(b)) // sort in increasing order .forEach(([version, fn]) => { @@ -250,7 +280,7 @@ export class OffchainState { private async importNextEntityIdCounters( overlay: EntityManagerOverlay, entityName: string, - data: Record[] + data: model.NextEntityId[] ) { const em = overlay.getEm() assert(entityName === 'NextEntityId') @@ -297,7 +327,7 @@ export class OffchainState { const fieldTypes = Object.fromEntries( fieldNames.map((fieldName) => { const metaType = meta.columns.find( - (c) => c.databaseNameWithoutPrefixes === fieldName + (c) => c.databaseNameWithoutPrefixes === snakeCase(fieldName) )?.type return [fieldName, metaType === String ? 'text' : metaType] }) @@ -314,7 +344,7 @@ export class OffchainState { `UPDATE "${meta.tableName}" SET ${fieldNames .filter((f) => f !== 'id') - .map((f) => `"${f}" = "data"."${f}"`) + .map((f) => `"${snakeCase(f)}" = "data"."${f}"`) .join(', ')} FROM ( SELECT @@ -326,7 +356,7 @@ export class OffchainState { .join(', ')} ) AS "data" WHERE "${meta.tableName}"."id" = "data"."id"`, - fieldNames.map((fieldName) => batch.map((v) => v[fieldName])) + fieldNames.map((fieldName) => batch.map((v) => v[fieldName as keyof typeof v])) ) } } else { @@ -344,7 +374,11 @@ export class OffchainState { // UPSERT operation specifically for NextEntityId if (entityName === 'NextEntityId') { - await this.importNextEntityIdCounters(overlay, entityName, batch) + await this.importNextEntityIdCounters( + overlay, + entityName, + batch as model.NextEntityId[] + ) } else { await em.getRepository(entityName).insert(batch) }