X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=server%2Flib%2Fuser.ts;h=0e40077707fc823a8719674a891437821e004def;hb=13176a07a95984a53cc59aec5217f2ce9806d1bc;hp=8609e72d8ea1611b86347719f2e8b53544810e61;hpb=72c7248b6fdcdb2175e726ff51b42e7555f2bd84;p=github%2FChocobozzz%2FPeerTube.git diff --git a/server/lib/user.ts b/server/lib/user.ts index 8609e72d8..0e4007770 100644 --- a/server/lib/user.ts +++ b/server/lib/user.ts @@ -1,46 +1,161 @@ -import { database as db } from '../initializers' -import { UserInstance } from '../models' -import { addVideoAuthorToFriends } from './friends' +import * as uuidv4 from 'uuid/v4' +import { ActivityPubActorType } from '../../shared/models/activitypub' +import { SERVER_ACTOR_NAME, WEBSERVER } from '../initializers/constants' +import { AccountModel } from '../models/account/account' +import { UserModel } from '../models/account/user' +import { buildActorInstance, getAccountActivityPubUrl, setAsyncActorKeys } from './activitypub' import { createVideoChannel } from './video-channel' +import { VideoChannelModel } from '../models/video/video-channel' +import { ActorModel } from '../models/activitypub/actor' +import { UserNotificationSettingModel } from '../models/account/user-notification-setting' +import { UserNotificationSetting, UserNotificationSettingValue } from '../../shared/models/users' +import { createWatchLaterPlaylist } from './video-playlist' +import { sequelizeTypescript } from '../initializers/database' +import { Transaction } from 'sequelize/types' +import { Redis } from './redis' +import { Emailer } from './emailer' -function createUserAuthorAndChannel (user: UserInstance, validateUser = true) { - return db.sequelize.transaction(t => { +type ChannelNames = { name: string, displayName: string } +async function createUserAccountAndChannelAndPlaylist (parameters: { + userToCreate: UserModel, + userDisplayName?: string, + channelNames?: ChannelNames, + validateUser?: boolean +}) { + const { userToCreate, userDisplayName, channelNames, validateUser = true } = parameters + + const { user, account, videoChannel } = await sequelizeTypescript.transaction(async t => { const userOptions = { transaction: t, validate: validateUser } - return user.save(userOptions) - .then(user => { - const author = db.Author.build({ - name: user.username, - podId: null, // It is our pod - userId: user.id - }) - - return author.save({ transaction: t }) - .then(author => ({ author, user })) - }) - .then(({ author, user }) => { - const remoteVideoAuthor = author.toAddRemoteJSON() - - // Now we'll add the video channel's meta data to our friends - return addVideoAuthorToFriends(remoteVideoAuthor, t) - .then(() => ({ author, user })) - }) - .then(({ author, user }) => { - const videoChannelInfo = { - name: `Default ${user.username} channel` - } - - return createVideoChannel(videoChannelInfo, author, t) - .then(videoChannel => ({ author, user, videoChannel })) - }) + const userCreated = await userToCreate.save(userOptions) + userCreated.NotificationSetting = await createDefaultUserNotificationSettings(userCreated, t) + + const accountCreated = await createLocalAccountWithoutKeys({ + name: userCreated.username, + displayName: userDisplayName, + userId: userCreated.id, + applicationId: null, + t: t + }) + userCreated.Account = accountCreated + + const channelAttributes = await buildChannelAttributes(userCreated, channelNames) + const videoChannel = await createVideoChannel(channelAttributes, accountCreated, t) + + const videoPlaylist = await createWatchLaterPlaylist(accountCreated, t) + + return { user: userCreated, account: accountCreated, videoChannel, videoPlaylist } + }) + + const [ accountKeys, channelKeys ] = await Promise.all([ + setAsyncActorKeys(account.Actor), + setAsyncActorKeys(videoChannel.Actor) + ]) + + account.Actor = accountKeys + videoChannel.Actor = channelKeys + + return { user, account, videoChannel } as { user: UserModel, account: AccountModel, videoChannel: VideoChannelModel } +} + +async function createLocalAccountWithoutKeys (parameters: { + name: string, + displayName?: string, + userId: number | null, + applicationId: number | null, + t: Transaction | undefined, + type?: ActivityPubActorType +}) { + const { name, displayName, userId, applicationId, t, type = 'Person' } = parameters + const url = getAccountActivityPubUrl(name) + + const actorInstance = buildActorInstance(type, url, name) + const actorInstanceCreated = await actorInstance.save({ transaction: t }) + + const accountInstance = new AccountModel({ + name: displayName || name, + userId, + applicationId, + actorId: actorInstanceCreated.id + }) + + const accountInstanceCreated = await accountInstance.save({ transaction: t }) + accountInstanceCreated.Actor = actorInstanceCreated + + return accountInstanceCreated +} + +async function createApplicationActor (applicationId: number) { + const accountCreated = await createLocalAccountWithoutKeys({ + name: SERVER_ACTOR_NAME, + userId: null, + applicationId: applicationId, + t: undefined, + type: 'Application' }) + + accountCreated.Actor = await setAsyncActorKeys(accountCreated.Actor) + + return accountCreated +} + +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) } // --------------------------------------------------------------------------- export { - createUserAuthorAndChannel + createApplicationActor, + createUserAccountAndChannelAndPlaylist, + createLocalAccountWithoutKeys, + sendVerifyUserEmail +} + +// --------------------------------------------------------------------------- + +function createDefaultUserNotificationSettings (user: UserModel, t: Transaction | undefined) { + const values: UserNotificationSetting & { userId: number } = { + userId: user.id, + newVideoFromSubscription: UserNotificationSettingValue.WEB, + newCommentOnMyVideo: UserNotificationSettingValue.WEB, + myVideoImportFinished: UserNotificationSettingValue.WEB, + myVideoPublished: UserNotificationSettingValue.WEB, + videoAbuseAsModerator: UserNotificationSettingValue.WEB | UserNotificationSettingValue.EMAIL, + videoAutoBlacklistAsModerator: UserNotificationSettingValue.WEB | UserNotificationSettingValue.EMAIL, + blacklistOnMyVideo: UserNotificationSettingValue.WEB | UserNotificationSettingValue.EMAIL, + newUserRegistration: UserNotificationSettingValue.WEB, + commentMention: UserNotificationSettingValue.WEB, + newFollow: UserNotificationSettingValue.WEB, + newInstanceFollower: UserNotificationSettingValue.WEB + } + + return UserNotificationSettingModel.create(values, { transaction: t }) +} + +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 + } }