Skip to content

Commit cb6b2a8

Browse files
committedAug 19, 2023
fix(adapters): allow async sqlite client libs when using drizzle adapter
1 parent 99035b9 commit cb6b2a8

File tree

1 file changed

+27
-27
lines changed

1 file changed

+27
-27
lines changed
 

‎packages/adapter-drizzle/src/lib/sqlite.ts

+27-27
Original file line numberDiff line numberDiff line change
@@ -74,38 +74,38 @@ export function SQLiteDrizzleAdapter(
7474
createTables(tableFn)
7575

7676
return {
77-
createUser(data) {
77+
async createUser(data) {
7878
return client
7979
.insert(users)
8080
.values({ ...data, id: crypto.randomUUID() })
8181
.returning()
8282
.get()
8383
},
84-
getUser(data) {
85-
return client.select().from(users).where(eq(users.id, data)).get() ?? null
84+
async getUser(data) {
85+
return (await client.select().from(users).where(eq(users.id, data)).get()) ?? null
8686
},
87-
getUserByEmail(data) {
87+
async getUserByEmail(data) {
8888
return (
89-
client.select().from(users).where(eq(users.email, data)).get() ?? null
89+
(await client.select().from(users).where(eq(users.email, data)).get()) ?? null
9090
)
9191
},
92-
createSession(data) {
92+
async createSession(data) {
9393
return client.insert(sessions).values(data).returning().get()
9494
},
95-
getSessionAndUser(data) {
95+
async getSessionAndUser(data) {
9696
return (
97-
client
97+
(await client
9898
.select({
9999
session: sessions,
100100
user: users,
101101
})
102102
.from(sessions)
103103
.where(eq(sessions.sessionToken, data))
104104
.innerJoin(users, eq(users.id, sessions.userId))
105-
.get() ?? null
105+
.get()) ?? null
106106
)
107107
},
108-
updateUser(data) {
108+
async updateUser(data) {
109109
if (!data.id) {
110110
throw new Error("No user id.")
111111
}
@@ -117,20 +117,20 @@ export function SQLiteDrizzleAdapter(
117117
.returning()
118118
.get()
119119
},
120-
updateSession(data) {
120+
async updateSession(data) {
121121
return client
122122
.update(sessions)
123123
.set(data)
124124
.where(eq(sessions.sessionToken, data.sessionToken))
125125
.returning()
126126
.get()
127127
},
128-
linkAccount(rawAccount) {
129-
const updatedAccount = client
128+
async linkAccount(rawAccount) {
129+
const updatedAccount = await (client
130130
.insert(accounts)
131131
.values(rawAccount)
132132
.returning()
133-
.get()
133+
.get())
134134

135135
const account: AdapterAccount = {
136136
...updatedAccount,
@@ -146,8 +146,8 @@ export function SQLiteDrizzleAdapter(
146146

147147
return account
148148
},
149-
getUserByAccount(account) {
150-
const results = client
149+
async getUserByAccount(account) {
150+
const results = await (client
151151
.select()
152152
.from(accounts)
153153
.leftJoin(users, eq(users.id, accounts.userId))
@@ -157,26 +157,26 @@ export function SQLiteDrizzleAdapter(
157157
eq(accounts.providerAccountId, account.providerAccountId)
158158
)
159159
)
160-
.get()
160+
.get())
161161

162162
return results?.user ?? null
163163
},
164-
deleteSession(sessionToken) {
164+
async deleteSession(sessionToken) {
165165
return (
166-
client
166+
(await client
167167
.delete(sessions)
168168
.where(eq(sessions.sessionToken, sessionToken))
169169
.returning()
170-
.get() ?? null
170+
.get()) ?? null
171171
)
172172
},
173-
createVerificationToken(token) {
173+
async createVerificationToken(token) {
174174
return client.insert(verificationTokens).values(token).returning().get()
175175
},
176-
useVerificationToken(token) {
176+
async useVerificationToken(token) {
177177
try {
178178
return (
179-
client
179+
(await client
180180
.delete(verificationTokens)
181181
.where(
182182
and(
@@ -185,17 +185,17 @@ export function SQLiteDrizzleAdapter(
185185
)
186186
)
187187
.returning()
188-
.get() ?? null
188+
.get()) ?? null
189189
)
190190
} catch (err) {
191191
throw new Error("No verification token found.")
192192
}
193193
},
194-
deleteUser(id) {
194+
async deleteUser(id) {
195195
return client.delete(users).where(eq(users.id, id)).returning().get()
196196
},
197-
unlinkAccount(account) {
198-
client
197+
async unlinkAccount(account) {
198+
await client
199199
.delete(accounts)
200200
.where(
201201
and(

0 commit comments

Comments
 (0)
Please sign in to comment.