2017-11-10 17:27:49 +01:00
|
|
|
import * as Sequelize from 'sequelize'
|
2018-08-17 15:45:42 +02:00
|
|
|
import * as uuidv4 from 'uuid/v4'
|
2017-12-14 17:38:41 +01:00
|
|
|
import { ActivityPubActorType } from '../../shared/models/activitypub'
|
|
|
|
import { sequelizeTypescript, SERVER_ACTOR_NAME } from '../initializers'
|
2017-12-12 17:53:50 +01:00
|
|
|
import { AccountModel } from '../models/account/account'
|
|
|
|
import { UserModel } from '../models/account/user'
|
2017-12-14 17:38:41 +01:00
|
|
|
import { buildActorInstance, getAccountActivityPubUrl, setAsyncActorKeys } from './activitypub'
|
2017-10-24 19:41:09 +02:00
|
|
|
import { createVideoChannel } from './video-channel'
|
2018-04-25 10:21:38 +02:00
|
|
|
import { VideoChannelModel } from '../models/video/video-channel'
|
2018-07-25 22:01:25 +02:00
|
|
|
import { FilteredModelAttributes } from 'sequelize-typescript/lib/models/Model'
|
2018-08-17 15:45:42 +02:00
|
|
|
import { ActorModel } from '../models/activitypub/actor'
|
2018-12-26 10:36:24 +01:00
|
|
|
import { UserNotificationSettingModel } from '../models/account/user-notification-setting'
|
2019-01-04 08:56:20 +01:00
|
|
|
import { UserNotificationSetting, UserNotificationSettingValue } from '../../shared/models/users'
|
2019-03-05 10:58:44 +01:00
|
|
|
import { createWatchLaterPlaylist } from './video-playlist'
|
2017-10-24 19:41:09 +02:00
|
|
|
|
2019-03-05 10:58:44 +01:00
|
|
|
async function createUserAccountAndChannelAndPlaylist (userToCreate: UserModel, validateUser = true) {
|
2018-01-18 10:53:54 +01:00
|
|
|
const { user, account, videoChannel } = await sequelizeTypescript.transaction(async t => {
|
2017-10-24 19:41:09 +02:00
|
|
|
const userOptions = {
|
|
|
|
transaction: t,
|
|
|
|
validate: validateUser
|
|
|
|
}
|
|
|
|
|
2018-11-19 17:08:18 +01:00
|
|
|
const userCreated = await userToCreate.save(userOptions)
|
2018-12-26 10:36:24 +01:00
|
|
|
userCreated.NotificationSetting = await createDefaultUserNotificationSettings(userCreated, t)
|
|
|
|
|
2018-11-19 17:08:18 +01:00
|
|
|
const accountCreated = await createLocalAccountWithoutKeys(userCreated.username, userCreated.id, null, t)
|
2018-07-31 14:04:26 +02:00
|
|
|
userCreated.Account = accountCreated
|
2017-10-25 16:03:33 +02:00
|
|
|
|
2018-08-17 15:45:42 +02:00
|
|
|
let channelName = userCreated.username + '_channel'
|
|
|
|
|
|
|
|
// Conflict, generate uuid instead
|
|
|
|
const actor = await ActorModel.loadLocalByName(channelName)
|
|
|
|
if (actor) channelName = uuidv4()
|
|
|
|
|
|
|
|
const videoChannelDisplayName = `Main ${userCreated.username} channel`
|
2017-10-25 16:03:33 +02:00
|
|
|
const videoChannelInfo = {
|
2018-08-17 15:45:42 +02:00
|
|
|
name: channelName,
|
2018-04-26 16:11:38 +02:00
|
|
|
displayName: videoChannelDisplayName
|
2017-10-25 16:03:33 +02:00
|
|
|
}
|
2017-11-09 17:51:58 +01:00
|
|
|
const videoChannel = await createVideoChannel(videoChannelInfo, accountCreated, t)
|
2017-10-25 16:03:33 +02:00
|
|
|
|
2019-03-05 10:58:44 +01:00
|
|
|
const videoPlaylist = await createWatchLaterPlaylist(accountCreated, t)
|
|
|
|
|
|
|
|
return { user: userCreated, account: accountCreated, videoChannel, videoPlaylist }
|
2017-10-24 19:41:09 +02:00
|
|
|
})
|
2017-10-25 16:03:33 +02:00
|
|
|
|
2018-11-19 15:21:09 +01:00
|
|
|
const [ accountKeys, channelKeys ] = await Promise.all([
|
|
|
|
setAsyncActorKeys(account.Actor),
|
|
|
|
setAsyncActorKeys(videoChannel.Actor)
|
|
|
|
])
|
|
|
|
|
|
|
|
account.Actor = accountKeys
|
|
|
|
videoChannel.Actor = channelKeys
|
2017-11-16 18:40:50 +01:00
|
|
|
|
2018-04-25 10:21:38 +02:00
|
|
|
return { user, account, videoChannel } as { user: UserModel, account: AccountModel, videoChannel: VideoChannelModel }
|
2017-10-24 19:41:09 +02:00
|
|
|
}
|
|
|
|
|
2017-12-14 17:38:41 +01:00
|
|
|
async function createLocalAccountWithoutKeys (
|
|
|
|
name: string,
|
2018-07-25 22:01:25 +02:00
|
|
|
userId: number | null,
|
|
|
|
applicationId: number | null,
|
|
|
|
t: Sequelize.Transaction | undefined,
|
2017-12-14 17:38:41 +01:00
|
|
|
type: ActivityPubActorType= 'Person'
|
|
|
|
) {
|
2017-11-20 09:43:39 +01:00
|
|
|
const url = getAccountActivityPubUrl(name)
|
2017-11-10 17:27:49 +01:00
|
|
|
|
2017-12-14 17:38:41 +01:00
|
|
|
const actorInstance = buildActorInstance(type, url, name)
|
2017-12-14 11:18:49 +01:00
|
|
|
const actorInstanceCreated = await actorInstance.save({ transaction: t })
|
|
|
|
|
|
|
|
const accountInstance = new AccountModel({
|
|
|
|
name,
|
2017-11-10 17:27:49 +01:00
|
|
|
userId,
|
|
|
|
applicationId,
|
2018-03-13 16:00:39 +01:00
|
|
|
actorId: actorInstanceCreated.id
|
2018-07-25 22:01:25 +02:00
|
|
|
} as FilteredModelAttributes<AccountModel>)
|
2017-11-10 17:27:49 +01:00
|
|
|
|
2017-12-14 11:18:49 +01:00
|
|
|
const accountInstanceCreated = await accountInstance.save({ transaction: t })
|
|
|
|
accountInstanceCreated.Actor = actorInstanceCreated
|
|
|
|
|
|
|
|
return accountInstanceCreated
|
2017-11-10 17:27:49 +01:00
|
|
|
}
|
|
|
|
|
2017-12-14 17:38:41 +01:00
|
|
|
async function createApplicationActor (applicationId: number) {
|
|
|
|
const accountCreated = await createLocalAccountWithoutKeys(SERVER_ACTOR_NAME, null, applicationId, undefined, 'Application')
|
|
|
|
|
|
|
|
accountCreated.Actor = await setAsyncActorKeys(accountCreated.Actor)
|
|
|
|
|
|
|
|
return accountCreated
|
|
|
|
}
|
|
|
|
|
2017-10-24 19:41:09 +02:00
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
|
|
|
|
export {
|
2017-12-14 17:38:41 +01:00
|
|
|
createApplicationActor,
|
2019-03-05 10:58:44 +01:00
|
|
|
createUserAccountAndChannelAndPlaylist,
|
2017-11-16 18:40:50 +01:00
|
|
|
createLocalAccountWithoutKeys
|
2017-10-24 19:41:09 +02:00
|
|
|
}
|
2018-12-26 10:36:24 +01:00
|
|
|
|
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
|
|
|
|
function createDefaultUserNotificationSettings (user: UserModel, t: Sequelize.Transaction | undefined) {
|
2019-01-04 08:56:20 +01:00
|
|
|
const values: UserNotificationSetting & { userId: number } = {
|
2018-12-26 10:36:24 +01:00
|
|
|
userId: user.id,
|
2019-01-08 11:26:41 +01:00
|
|
|
newVideoFromSubscription: UserNotificationSettingValue.WEB,
|
|
|
|
newCommentOnMyVideo: UserNotificationSettingValue.WEB,
|
|
|
|
myVideoImportFinished: UserNotificationSettingValue.WEB,
|
|
|
|
myVideoPublished: UserNotificationSettingValue.WEB,
|
|
|
|
videoAbuseAsModerator: UserNotificationSettingValue.WEB | UserNotificationSettingValue.EMAIL,
|
|
|
|
blacklistOnMyVideo: UserNotificationSettingValue.WEB | UserNotificationSettingValue.EMAIL,
|
|
|
|
newUserRegistration: UserNotificationSettingValue.WEB,
|
|
|
|
commentMention: UserNotificationSettingValue.WEB,
|
|
|
|
newFollow: UserNotificationSettingValue.WEB
|
2019-01-04 08:56:20 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
return UserNotificationSettingModel.create(values, { transaction: t })
|
2018-12-26 10:36:24 +01:00
|
|
|
}
|