Chandra
Chandra
BABetter Auth
Created by parweb on 2/28/2025 in #help
NextAuth password migration
does it feel ok to you?
10 replies
BABetter Auth
Created by parweb on 2/28/2025 in #help
NextAuth password migration
I tested it works, but just to double check. I have updated the has fn;
10 replies
BABetter Auth
Created by parweb on 2/28/2025 in #help
NextAuth password migration
@bekacru I wrote this migration script, I have 190 users. so just need you to verify the code:
import { generateUUID } from '@/lib/chat/utils';
import { PrismaClient, User } from '@prisma/client';

const prisma = new PrismaClient();

async function main() {
console.log('Migrating to better auth');
const users = (await prisma.user.findRaw({})) as unknown as {
_id: {
$oid: string;
};
emailVerified: Date;
}[];
const verifiyUsers = users.map((user) => ({
id: user._id?.$oid,
emailVerified: !!user.emailVerified,
}));
console.log('Users', verifiyUsers.slice(0, 4));

for (const user of verifiyUsers) {
await prisma.user.update({
where: { id: user.id },
data: { emailVerified: user.emailVerified },
});
}
const date = new Date();
const accounts = (await prisma.account.findRaw({})) as unknown as {
_id: {
$oid: string;
};
scope?: string;
}[];

const updateaccounts = accounts.map((acc) => ({
...acc,
id: acc._id?.$oid,
createdAt: date,
scope: acc.scope?.startsWith('openid ')
? acc.scope.replace('openid ', '')
: acc.scope,
}));

console.log(
'Accounts',
updateaccounts.filter((acc) => !acc.id),
);

for (const account of updateaccounts) {
await prisma.account.update({
where: { id: account.id },
data: { createdAt: date, scope: account.scope },
});
}

const userForAccounts = await prisma.user.findMany();

await prisma.account.createMany({
data: userForAccounts.map((user) => ({
id: generateUUID(),
accountId: user.id,
userId: user.id,
password: user.password,
providerId: 'credential',
})),
});

console.log('Migrate completed');
}

void main()
.then(async () => {
await prisma.$disconnect();
})
.catch(async (e) => {
// eslint-disable-next-line no-console
console.error(e);
await prisma.$disconnect();
process.exit(1);
});
import { generateUUID } from '@/lib/chat/utils';
import { PrismaClient, User } from '@prisma/client';

const prisma = new PrismaClient();

async function main() {
console.log('Migrating to better auth');
const users = (await prisma.user.findRaw({})) as unknown as {
_id: {
$oid: string;
};
emailVerified: Date;
}[];
const verifiyUsers = users.map((user) => ({
id: user._id?.$oid,
emailVerified: !!user.emailVerified,
}));
console.log('Users', verifiyUsers.slice(0, 4));

for (const user of verifiyUsers) {
await prisma.user.update({
where: { id: user.id },
data: { emailVerified: user.emailVerified },
});
}
const date = new Date();
const accounts = (await prisma.account.findRaw({})) as unknown as {
_id: {
$oid: string;
};
scope?: string;
}[];

const updateaccounts = accounts.map((acc) => ({
...acc,
id: acc._id?.$oid,
createdAt: date,
scope: acc.scope?.startsWith('openid ')
? acc.scope.replace('openid ', '')
: acc.scope,
}));

console.log(
'Accounts',
updateaccounts.filter((acc) => !acc.id),
);

for (const account of updateaccounts) {
await prisma.account.update({
where: { id: account.id },
data: { createdAt: date, scope: account.scope },
});
}

const userForAccounts = await prisma.user.findMany();

await prisma.account.createMany({
data: userForAccounts.map((user) => ({
id: generateUUID(),
accountId: user.id,
userId: user.id,
password: user.password,
providerId: 'credential',
})),
});

console.log('Migrate completed');
}

void main()
.then(async () => {
await prisma.$disconnect();
})
.catch(async (e) => {
// eslint-disable-next-line no-console
console.error(e);
await prisma.$disconnect();
process.exit(1);
});
10 replies
BABetter Auth
Created by parweb on 2/28/2025 in #help
NextAuth password migration
next auth store password in user table but better auth in credential
10 replies
BABetter Auth
Created by parweb on 2/28/2025 in #help
NextAuth password migration
what about migrating passwords?
10 replies
BABetter Auth
Created by parweb on 2/28/2025 in #help
NextAuth password migration
@parweb do you got the solution?
10 replies
BABetter Auth
Created by roguesherlock on 1/27/2025 in #help
Unable to sign up using email / password
No description
40 replies
BABetter Auth
Created by roguesherlock on 1/27/2025 in #help
Unable to sign up using email / password
is there anyway to have better logs, ?
40 replies
BABetter Auth
Created by roguesherlock on 1/27/2025 in #help
Unable to sign up using email / password
I think Goggle auth gives emailVerified as time, not boolean so just asking if there might be issue
40 replies
BABetter Auth
Created by roguesherlock on 1/27/2025 in #help
Unable to sign up using email / password
and simplified the prisma schema
40 replies
BABetter Auth
Created by roguesherlock on 1/27/2025 in #help
Unable to sign up using email / password
I removed all the plugins but still don't work
40 replies
BABetter Auth
Created by roguesherlock on 1/27/2025 in #help
Unable to sign up using email / password
thanks it worked, now stuck unable_to_create_user haha
40 replies