1
0
Fork 0
peertube/server/lib/user.ts

86 lines
3.1 KiB
TypeScript
Raw Normal View History

2017-11-10 16:27:49 +00:00
import * as Sequelize from 'sequelize'
2018-08-17 13:45:42 +00:00
import * as uuidv4 from 'uuid/v4'
2017-12-14 16:38:41 +00:00
import { ActivityPubActorType } from '../../shared/models/activitypub'
import { sequelizeTypescript, SERVER_ACTOR_NAME } from '../initializers'
2017-12-12 16:53:50 +00:00
import { AccountModel } from '../models/account/account'
import { UserModel } from '../models/account/user'
2017-12-14 16:38:41 +00:00
import { buildActorInstance, getAccountActivityPubUrl, setAsyncActorKeys } from './activitypub'
2017-10-24 17:41:09 +00:00
import { createVideoChannel } from './video-channel'
2018-04-25 08:21:38 +00:00
import { VideoChannelModel } from '../models/video/video-channel'
import { FilteredModelAttributes } from 'sequelize-typescript/lib/models/Model'
2018-08-17 13:45:42 +00:00
import { ActorModel } from '../models/activitypub/actor'
2017-10-24 17:41:09 +00:00
async function createUserAccountAndChannel (userToCreate: UserModel, validateUser = true) {
const { user, account, videoChannel } = await sequelizeTypescript.transaction(async t => {
2017-10-24 17:41:09 +00:00
const userOptions = {
transaction: t,
validate: validateUser
}
const userCreated = await userToCreate.save(userOptions)
const accountCreated = await createLocalAccountWithoutKeys(userToCreate.username, userToCreate.id, null, t)
userCreated.Account = accountCreated
2018-08-17 13:45:42 +00: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`
const videoChannelInfo = {
2018-08-17 13:45:42 +00:00
name: channelName,
2018-04-26 14:11:38 +00:00
displayName: videoChannelDisplayName
}
2017-11-09 16:51:58 +00:00
const videoChannel = await createVideoChannel(videoChannelInfo, accountCreated, t)
return { user: userCreated, account: accountCreated, videoChannel }
2017-10-24 17:41:09 +00:00
})
2017-12-14 16:38:41 +00:00
account.Actor = await setAsyncActorKeys(account.Actor)
videoChannel.Actor = await setAsyncActorKeys(videoChannel.Actor)
2017-11-16 17:40:50 +00:00
2018-04-25 08:21:38 +00:00
return { user, account, videoChannel } as { user: UserModel, account: AccountModel, videoChannel: VideoChannelModel }
2017-10-24 17:41:09 +00:00
}
2017-12-14 16:38:41 +00:00
async function createLocalAccountWithoutKeys (
name: string,
userId: number | null,
applicationId: number | null,
t: Sequelize.Transaction | undefined,
2017-12-14 16:38:41 +00:00
type: ActivityPubActorType= 'Person'
) {
2017-11-20 08:43:39 +00:00
const url = getAccountActivityPubUrl(name)
2017-11-10 16:27:49 +00:00
2017-12-14 16:38:41 +00:00
const actorInstance = buildActorInstance(type, url, name)
2017-12-14 10:18:49 +00:00
const actorInstanceCreated = await actorInstance.save({ transaction: t })
const accountInstance = new AccountModel({
name,
2017-11-10 16:27:49 +00:00
userId,
applicationId,
2018-03-13 15:00:39 +00:00
actorId: actorInstanceCreated.id
} as FilteredModelAttributes<AccountModel>)
2017-11-10 16:27:49 +00:00
2017-12-14 10:18:49 +00:00
const accountInstanceCreated = await accountInstance.save({ transaction: t })
accountInstanceCreated.Actor = actorInstanceCreated
return accountInstanceCreated
2017-11-10 16:27:49 +00:00
}
2017-12-14 16:38:41 +00: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 17:41:09 +00:00
// ---------------------------------------------------------------------------
export {
2017-12-14 16:38:41 +00:00
createApplicationActor,
2017-11-10 16:27:49 +00:00
createUserAccountAndChannel,
2017-11-16 17:40:50 +00:00
createLocalAccountWithoutKeys
2017-10-24 17:41:09 +00:00
}