mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-11-13 11:53:08 +02:00
d071d18dd7
* wip * wip * fix * clean up * Update tsconfig.json * Update activitypub.ts * wip
67 lines
2 KiB
TypeScript
67 lines
2 KiB
TypeScript
import bcrypt from 'bcryptjs';
|
|
import { v4 as uuid } from 'uuid';
|
|
import generateNativeUserToken from '../server/api/common/generate-native-user-token.js';
|
|
import { genRsaKeyPair } from '@/misc/gen-key-pair.js';
|
|
import { User } from '@/models/entities/user.js';
|
|
import { UserProfile } from '@/models/entities/user-profile.js';
|
|
import { getConnection, ObjectLiteral } from 'typeorm';
|
|
import { genId } from '@/misc/gen-id.js';
|
|
import { UserKeypair } from '@/models/entities/user-keypair.js';
|
|
import { UsedUsername } from '@/models/entities/used-username.js';
|
|
|
|
export async function createSystemUser(username: string) {
|
|
const password = uuid();
|
|
|
|
// Generate hash of password
|
|
const salt = await bcrypt.genSalt(8);
|
|
const hash = await bcrypt.hash(password, salt);
|
|
|
|
// Generate secret
|
|
const secret = generateNativeUserToken();
|
|
|
|
const keyPair = await genRsaKeyPair(4096);
|
|
|
|
let account!: User | ObjectLiteral;
|
|
|
|
// Start transaction
|
|
await getConnection().transaction(async transactionalEntityManager => {
|
|
const exist = await transactionalEntityManager.findOne(User, {
|
|
usernameLower: username.toLowerCase(),
|
|
host: null,
|
|
});
|
|
|
|
if (exist) throw new Error('the user is already exists');
|
|
|
|
account = await transactionalEntityManager.insert(User, {
|
|
id: genId(),
|
|
createdAt: new Date(),
|
|
username: username,
|
|
usernameLower: username.toLowerCase(),
|
|
host: null,
|
|
token: secret,
|
|
isAdmin: false,
|
|
isLocked: true,
|
|
isExplorable: false,
|
|
isBot: true,
|
|
}).then(x => transactionalEntityManager.findOneOrFail(User, x.identifiers[0]));
|
|
|
|
await transactionalEntityManager.insert(UserKeypair, {
|
|
publicKey: keyPair.publicKey,
|
|
privateKey: keyPair.privateKey,
|
|
userId: account.id,
|
|
});
|
|
|
|
await transactionalEntityManager.insert(UserProfile, {
|
|
userId: account.id,
|
|
autoAcceptFollowed: false,
|
|
password: hash,
|
|
});
|
|
|
|
await transactionalEntityManager.insert(UsedUsername, {
|
|
createdAt: new Date(),
|
|
username: username.toLowerCase(),
|
|
});
|
|
});
|
|
|
|
return account;
|
|
}
|