]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - server/lib/user.ts
Remove npm run upgrade
[github/Chocobozzz/PeerTube.git] / server / lib / user.ts
CommitLineData
571389d4 1import * as Sequelize from 'sequelize'
50d6de9c
C
2import { ActivityPubActorType } from '../../shared/models/activitypub'
3import { sequelizeTypescript, SERVER_ACTOR_NAME } from '../initializers'
3fd3ab2d
C
4import { AccountModel } from '../models/account/account'
5import { UserModel } from '../models/account/user'
50d6de9c 6import { buildActorInstance, getAccountActivityPubUrl, setAsyncActorKeys } from './activitypub'
72c7248b
C
7import { createVideoChannel } from './video-channel'
8
3fd3ab2d
C
9async function createUserAccountAndChannel (user: UserModel, validateUser = true) {
10 const { account, videoChannel } = await sequelizeTypescript.transaction(async t => {
72c7248b
C
11 const userOptions = {
12 transaction: t,
13 validate: validateUser
14 }
15
f5028693 16 const userCreated = await user.save(userOptions)
47e0652b 17 const accountCreated = await createLocalAccountWithoutKeys(user.username, user.id, null, t)
f5028693 18
e34c85e5 19 const videoChannelName = `Default ${userCreated.username} channel`
f5028693 20 const videoChannelInfo = {
e34c85e5 21 name: videoChannelName
f5028693 22 }
e4f97bab 23 const videoChannel = await createVideoChannel(videoChannelInfo, accountCreated, t)
f5028693 24
571389d4 25 return { account: accountCreated, videoChannel }
72c7248b 26 })
f5028693 27
50d6de9c
C
28 account.Actor = await setAsyncActorKeys(account.Actor)
29 videoChannel.Actor = await setAsyncActorKeys(videoChannel.Actor)
47e0652b
C
30
31 return { account, videoChannel }
72c7248b
C
32}
33
50d6de9c
C
34async function createLocalAccountWithoutKeys (
35 name: string,
36 userId: number,
37 applicationId: number,
38 t: Sequelize.Transaction,
39 type: ActivityPubActorType= 'Person'
40) {
54141398 41 const url = getAccountActivityPubUrl(name)
571389d4 42
50d6de9c 43 const actorInstance = buildActorInstance(type, url, name)
fadf619a
C
44 const actorInstanceCreated = await actorInstance.save({ transaction: t })
45
46 const accountInstance = new AccountModel({
47 name,
571389d4
C
48 userId,
49 applicationId,
fadf619a 50 actorId: actorInstanceCreated.id,
60862425 51 serverId: null // It is our server
571389d4
C
52 })
53
fadf619a
C
54 const accountInstanceCreated = await accountInstance.save({ transaction: t })
55 accountInstanceCreated.Actor = actorInstanceCreated
56
57 return accountInstanceCreated
571389d4
C
58}
59
50d6de9c
C
60async function createApplicationActor (applicationId: number) {
61 const accountCreated = await createLocalAccountWithoutKeys(SERVER_ACTOR_NAME, null, applicationId, undefined, 'Application')
62
63 accountCreated.Actor = await setAsyncActorKeys(accountCreated.Actor)
64
65 return accountCreated
66}
67
72c7248b
C
68// ---------------------------------------------------------------------------
69
70export {
50d6de9c 71 createApplicationActor,
571389d4 72 createUserAccountAndChannel,
47e0652b 73 createLocalAccountWithoutKeys
72c7248b 74}