|
import { collections } from "$lib/server/database"; |
|
import { ObjectId } from "mongodb"; |
|
|
|
|
|
|
|
|
|
export async function acquireLock(key: string): Promise<ObjectId | false> { |
|
try { |
|
const id = new ObjectId(); |
|
|
|
const insert = await collections.semaphores.insertOne({ |
|
_id: id, |
|
key, |
|
createdAt: new Date(), |
|
updatedAt: new Date(), |
|
}); |
|
|
|
return insert.acknowledged ? id : false; |
|
} catch (e) { |
|
|
|
return false; |
|
} |
|
} |
|
|
|
export async function releaseLock(key: string, lockId: ObjectId) { |
|
await collections.semaphores.deleteOne({ |
|
_id: lockId, |
|
key, |
|
}); |
|
} |
|
|
|
export async function isDBLocked(key: string): Promise<boolean> { |
|
const res = await collections.semaphores.countDocuments({ |
|
key, |
|
}); |
|
return res > 0; |
|
} |
|
|
|
export async function refreshLock(key: string, lockId: ObjectId): Promise<boolean> { |
|
const result = await collections.semaphores.updateOne( |
|
{ |
|
_id: lockId, |
|
key, |
|
}, |
|
{ |
|
$set: { |
|
updatedAt: new Date(), |
|
}, |
|
} |
|
); |
|
|
|
return result.matchedCount > 0; |
|
} |
|
|