2018-08-17 09:45:42 -04:00
|
|
|
import * as uuidv4 from 'uuid/v4'
|
2017-12-14 11:38:41 -05:00
|
|
|
import { ActivityPubActorType } from '../../shared/models/activitypub'
|
2019-06-11 05:54:33 -04:00
|
|
|
import { SERVER_ACTOR_NAME, WEBSERVER } from '../initializers/constants'
|
2017-12-12 11:53:50 -05:00
|
|
|
import { AccountModel } from '../models/account/account'
|
|
|
|
import { UserModel } from '../models/account/user'
|
2017-12-14 11:38:41 -05:00
|
|
|
import { buildActorInstance, getAccountActivityPubUrl, setAsyncActorKeys } from './activitypub'
|
2017-10-24 13:41:09 -04:00
|
|
|
import { createVideoChannel } from './video-channel'
|
2018-04-25 04:21:38 -04:00
|
|
|
import { VideoChannelModel } from '../models/video/video-channel'
|
2018-08-17 09:45:42 -04:00
|
|
|
import { ActorModel } from '../models/activitypub/actor'
|
2018-12-26 04:36:24 -05:00
|
|
|
import { UserNotificationSettingModel } from '../models/account/user-notification-setting'
|
2019-01-04 02:56:20 -05:00
|
|
|
import { UserNotificationSetting, UserNotificationSettingValue } from '../../shared/models/users'
|
2019-03-05 04:58:44 -05:00
|
|
|
import { createWatchLaterPlaylist } from './video-playlist'
|
2019-04-11 08:26:41 -04:00
|
|
|
import { sequelizeTypescript } from '../initializers/database'
|
2019-06-07 10:59:53 -04:00
|
|
|
import { Transaction } from 'sequelize/types'
|
2019-06-11 05:54:33 -04:00
|
|
|
import { Redis } from './redis'
|
|
|
|
import { Emailer } from './emailer'
|
2017-10-24 13:41:09 -04:00
|
|
|
|
2019-05-28 04:46:32 -04:00
|
|
|
type ChannelNames = { name: string, displayName: string }
|
2019-06-07 10:59:53 -04:00
|
|
|
async function createUserAccountAndChannelAndPlaylist (parameters: {
|
|
|
|
userToCreate: UserModel,
|
|
|
|
userDisplayName?: string,
|
|
|
|
channelNames?: ChannelNames,
|
|
|
|
validateUser?: boolean
|
|
|
|
}) {
|
|
|
|
const { userToCreate, userDisplayName, channelNames, validateUser = true } = parameters
|
|
|
|
|
2018-01-18 04:53:54 -05:00
|
|
|
const { user, account, videoChannel } = await sequelizeTypescript.transaction(async t => {
|
2017-10-24 13:41:09 -04:00
|
|
|
const userOptions = {
|
|
|
|
transaction: t,
|
|
|
|
validate: validateUser
|
|
|
|
}
|
|
|
|
|
2018-11-19 11:08:18 -05:00
|
|
|
const userCreated = await userToCreate.save(userOptions)
|
2018-12-26 04:36:24 -05:00
|
|
|
userCreated.NotificationSetting = await createDefaultUserNotificationSettings(userCreated, t)
|
|
|
|
|
2019-06-07 10:59:53 -04:00
|
|
|
const accountCreated = await createLocalAccountWithoutKeys({
|
|
|
|
name: userCreated.username,
|
|
|
|
displayName: userDisplayName,
|
|
|
|
userId: userCreated.id,
|
|
|
|
applicationId: null,
|
|
|
|
t: t
|
|
|
|
})
|
2018-07-31 08:04:26 -04:00
|
|
|
userCreated.Account = accountCreated
|
2017-10-25 10:03:33 -04:00
|
|
|
|
2019-05-28 04:46:32 -04:00
|
|
|
const channelAttributes = await buildChannelAttributes(userCreated, channelNames)
|
|
|
|
const videoChannel = await createVideoChannel(channelAttributes, accountCreated, t)
|
2017-10-25 10:03:33 -04:00
|
|
|
|
2019-03-05 04:58:44 -05:00
|
|
|
const videoPlaylist = await createWatchLaterPlaylist(accountCreated, t)
|
|
|
|
|
|
|
|
return { user: userCreated, account: accountCreated, videoChannel, videoPlaylist }
|
2017-10-24 13:41:09 -04:00
|
|
|
})
|
2017-10-25 10:03:33 -04:00
|
|
|
|
2018-11-19 09:21:09 -05:00
|
|
|
const [ accountKeys, channelKeys ] = await Promise.all([
|
|
|
|
setAsyncActorKeys(account.Actor),
|
|
|
|
setAsyncActorKeys(videoChannel.Actor)
|
|
|
|
])
|
|
|
|
|
|
|
|
account.Actor = accountKeys
|
|
|
|
videoChannel.Actor = channelKeys
|
2017-11-16 12:40:50 -05:00
|
|
|
|
2018-04-25 04:21:38 -04:00
|
|
|
return { user, account, videoChannel } as { user: UserModel, account: AccountModel, videoChannel: VideoChannelModel }
|
2017-10-24 13:41:09 -04:00
|
|
|
}
|
|
|
|
|
2019-06-07 10:59:53 -04:00
|
|
|
async function createLocalAccountWithoutKeys (parameters: {
|
2017-12-14 11:38:41 -05:00
|
|
|
name: string,
|
2019-06-07 10:59:53 -04:00
|
|
|
displayName?: string,
|
2018-07-25 16:01:25 -04:00
|
|
|
userId: number | null,
|
|
|
|
applicationId: number | null,
|
2019-06-07 10:59:53 -04:00
|
|
|
t: Transaction | undefined,
|
|
|
|
type?: ActivityPubActorType
|
|
|
|
}) {
|
|
|
|
const { name, displayName, userId, applicationId, t, type = 'Person' } = parameters
|
2017-11-20 03:43:39 -05:00
|
|
|
const url = getAccountActivityPubUrl(name)
|
2017-11-10 11:27:49 -05:00
|
|
|
|
2017-12-14 11:38:41 -05:00
|
|
|
const actorInstance = buildActorInstance(type, url, name)
|
2017-12-14 05:18:49 -05:00
|
|
|
const actorInstanceCreated = await actorInstance.save({ transaction: t })
|
|
|
|
|
|
|
|
const accountInstance = new AccountModel({
|
2019-06-07 10:59:53 -04:00
|
|
|
name: displayName || name,
|
2017-11-10 11:27:49 -05:00
|
|
|
userId,
|
|
|
|
applicationId,
|
2018-03-13 11:00:39 -04:00
|
|
|
actorId: actorInstanceCreated.id
|
2019-04-18 05:28:17 -04:00
|
|
|
})
|
2017-11-10 11:27:49 -05:00
|
|
|
|
2017-12-14 05:18:49 -05:00
|
|
|
const accountInstanceCreated = await accountInstance.save({ transaction: t })
|
|
|
|
accountInstanceCreated.Actor = actorInstanceCreated
|
|
|
|
|
|
|
|
return accountInstanceCreated
|
2017-11-10 11:27:49 -05:00
|
|
|
}
|
|
|
|
|
2017-12-14 11:38:41 -05:00
|
|
|
async function createApplicationActor (applicationId: number) {
|
2019-06-07 10:59:53 -04:00
|
|
|
const accountCreated = await createLocalAccountWithoutKeys({
|
|
|
|
name: SERVER_ACTOR_NAME,
|
|
|
|
userId: null,
|
|
|
|
applicationId: applicationId,
|
|
|
|
t: undefined,
|
|
|
|
type: 'Application'
|
|
|
|
})
|
2017-12-14 11:38:41 -05:00
|
|
|
|
|
|
|
accountCreated.Actor = await setAsyncActorKeys(accountCreated.Actor)
|
|
|
|
|
|
|
|
return accountCreated
|
|
|
|
}
|
|
|
|
|
2019-06-11 05:54:33 -04:00
|
|
|
async function sendVerifyUserEmail (user: UserModel, isPendingEmail = false) {
|
|
|
|
const verificationString = await Redis.Instance.setVerifyEmailVerificationString(user.id)
|
|
|
|
let url = WEBSERVER.URL + '/verify-account/email?userId=' + user.id + '&verificationString=' + verificationString
|
|
|
|
|
|
|
|
if (isPendingEmail) url += '&isPendingEmail=true'
|
|
|
|
|
|
|
|
const email = isPendingEmail ? user.pendingEmail : user.email
|
|
|
|
|
|
|
|
await Emailer.Instance.addVerifyEmailJob(email, url)
|
|
|
|
}
|
|
|
|
|
2017-10-24 13:41:09 -04:00
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
|
|
|
|
export {
|
2017-12-14 11:38:41 -05:00
|
|
|
createApplicationActor,
|
2019-03-05 04:58:44 -05:00
|
|
|
createUserAccountAndChannelAndPlaylist,
|
2019-06-11 05:54:33 -04:00
|
|
|
createLocalAccountWithoutKeys,
|
|
|
|
sendVerifyUserEmail
|
2017-10-24 13:41:09 -04:00
|
|
|
}
|
2018-12-26 04:36:24 -05:00
|
|
|
|
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
|
2019-06-07 10:59:53 -04:00
|
|
|
function createDefaultUserNotificationSettings (user: UserModel, t: Transaction | undefined) {
|
2019-01-04 02:56:20 -05:00
|
|
|
const values: UserNotificationSetting & { userId: number } = {
|
2018-12-26 04:36:24 -05:00
|
|
|
userId: user.id,
|
2019-01-08 05:26:41 -05:00
|
|
|
newVideoFromSubscription: UserNotificationSettingValue.WEB,
|
|
|
|
newCommentOnMyVideo: UserNotificationSettingValue.WEB,
|
|
|
|
myVideoImportFinished: UserNotificationSettingValue.WEB,
|
|
|
|
myVideoPublished: UserNotificationSettingValue.WEB,
|
|
|
|
videoAbuseAsModerator: UserNotificationSettingValue.WEB | UserNotificationSettingValue.EMAIL,
|
2019-04-02 05:26:47 -04:00
|
|
|
videoAutoBlacklistAsModerator: UserNotificationSettingValue.WEB | UserNotificationSettingValue.EMAIL,
|
2019-01-08 05:26:41 -05:00
|
|
|
blacklistOnMyVideo: UserNotificationSettingValue.WEB | UserNotificationSettingValue.EMAIL,
|
|
|
|
newUserRegistration: UserNotificationSettingValue.WEB,
|
|
|
|
commentMention: UserNotificationSettingValue.WEB,
|
2019-04-08 11:26:01 -04:00
|
|
|
newFollow: UserNotificationSettingValue.WEB,
|
|
|
|
newInstanceFollower: UserNotificationSettingValue.WEB
|
2019-01-04 02:56:20 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
return UserNotificationSettingModel.create(values, { transaction: t })
|
2018-12-26 04:36:24 -05:00
|
|
|
}
|
2019-05-28 04:46:32 -04:00
|
|
|
|
|
|
|
async function buildChannelAttributes (user: UserModel, channelNames?: ChannelNames) {
|
|
|
|
if (channelNames) return channelNames
|
|
|
|
|
|
|
|
let channelName = user.username + '_channel'
|
|
|
|
|
|
|
|
// Conflict, generate uuid instead
|
|
|
|
const actor = await ActorModel.loadLocalByName(channelName)
|
|
|
|
if (actor) channelName = uuidv4()
|
|
|
|
|
|
|
|
const videoChannelDisplayName = `Main ${user.username} channel`
|
|
|
|
|
|
|
|
return {
|
|
|
|
name: channelName,
|
|
|
|
displayName: videoChannelDisplayName
|
|
|
|
}
|
|
|
|
}
|