Fix ownership change
This commit is contained in:
parent
1ca9f7c3f7
commit
f92e7f76d4
4 changed files with 12 additions and 10 deletions
|
@ -15,7 +15,7 @@ import { forwardVideoRelatedActivity } from '../send/utils'
|
|||
import { PlaylistObject } from '../../../../shared/models/activitypub/objects/playlist-object'
|
||||
import { createOrUpdateVideoPlaylist } from '../playlist'
|
||||
import { APProcessorOptions } from '../../../typings/activitypub-processor.model'
|
||||
import { MActorSignature } from '../../../typings/models'
|
||||
import { MActorSignature, MAccountIdActor } from '../../../typings/models'
|
||||
|
||||
async function processUpdateActivity (options: APProcessorOptions<ActivityUpdate>) {
|
||||
const { activity, byActor } = options
|
||||
|
@ -64,10 +64,13 @@ async function processUpdateVideo (actor: MActorSignature, activity: ActivityUpd
|
|||
const { video } = await getOrCreateVideoAndAccountAndChannel({ videoObject: videoObject.id, allowRefresh: false, fetchType: 'all' })
|
||||
const channelActor = await getOrCreateVideoChannelFromVideoObject(videoObject)
|
||||
|
||||
const account = actor.Account as MAccountIdActor
|
||||
account.Actor = actor
|
||||
|
||||
const updateOptions = {
|
||||
video,
|
||||
videoObject,
|
||||
account: channelActor.VideoChannel.Account,
|
||||
account,
|
||||
channel: channelActor.VideoChannel,
|
||||
overrideTo: activity.to
|
||||
}
|
||||
|
|
|
@ -53,13 +53,13 @@ import { FilteredModelAttributes } from '../../typings/sequelize'
|
|||
import { autoBlacklistVideoIfNeeded } from '../video-blacklist'
|
||||
import { ActorFollowScoreCache } from '../files-cache'
|
||||
import {
|
||||
MAccountActor,
|
||||
MAccountIdActor,
|
||||
MChannelAccountLight,
|
||||
MChannelDefault,
|
||||
MChannelId,
|
||||
MVideo,
|
||||
MVideoAccountLightBlacklistAllFiles,
|
||||
MVideoAccountLight,
|
||||
MVideoAccountLightBlacklistAllFiles,
|
||||
MVideoAP,
|
||||
MVideoAPWithoutCaption,
|
||||
MVideoFile,
|
||||
|
@ -265,7 +265,7 @@ async function getOrCreateVideoAndAccountAndChannel (options: {
|
|||
async function updateVideoFromAP (options: {
|
||||
video: MVideoAccountLightBlacklistAllFiles,
|
||||
videoObject: VideoTorrentObject,
|
||||
account: MAccountActor,
|
||||
account: MAccountIdActor,
|
||||
channel: MChannelDefault,
|
||||
overrideTo?: string[]
|
||||
}) {
|
||||
|
|
|
@ -191,7 +191,7 @@ describe('Test video change ownership - nominal', function () {
|
|||
await waitJobs(servers)
|
||||
})
|
||||
|
||||
it('Should have video channel updated', async function () {
|
||||
it('Should have the channel of the video updated', async function () {
|
||||
for (const server of servers) {
|
||||
const res = await getVideo(server.url, servers[0].video.uuid)
|
||||
|
||||
|
|
|
@ -1,17 +1,16 @@
|
|||
import { AccountModel } from '../../../models/account/account'
|
||||
import {
|
||||
MActor,
|
||||
MActorAccountChannelId,
|
||||
MActorAPI,
|
||||
MActorAudience,
|
||||
MActorDefault,
|
||||
MActorDefaultLight,
|
||||
MActorFormattable,
|
||||
MActorId,
|
||||
MActorServer,
|
||||
MActorSummary,
|
||||
MActorSummaryFormattable,
|
||||
MActorUrl,
|
||||
MActorFormattable
|
||||
MActorUrl
|
||||
} from './actor'
|
||||
import { FunctionProperties, PickWith } from '../../utils'
|
||||
import { MAccountBlocklistId } from './account-blocklist'
|
||||
|
@ -35,7 +34,7 @@ export type MAccountUrl = Use<'Actor', MActorUrl>
|
|||
export type MAccountAudience = Use<'Actor', MActorAudience>
|
||||
|
||||
export type MAccountIdActor = MAccountId &
|
||||
Use<'Actor', MActorAccountChannelId>
|
||||
Use<'Actor', MActor>
|
||||
|
||||
export type MAccountIdActorId = MAccountId &
|
||||
Use<'Actor', MActorId>
|
||||
|
|
Loading…
Reference in a new issue