Fix for initial/clean Radicale setup

This fixes a problem with the contacts app displaying an error on a clean install, due to the fact that `tsdav`'s address book listing didn't ask for a main address first, so Radicale wouldn't create the user directory.

It also upgrades `deno`'s version.
This commit is contained in:
Bruno Bernardino
2025-08-27 14:57:19 +01:00
parent c950e34c36
commit 263cdf544a
5 changed files with 46 additions and 11 deletions

View File

@@ -135,7 +135,32 @@ export class ContactModel {
): Promise<AddressBook[]> {
const client = await getClient(userId);
const davAddressBooks: DAVObject[] = await client.fetchAddressBooks();
let davAddressBooks: DAVObject[] = [];
try {
davAddressBooks = await client.fetchAddressBooks();
} catch (_error) {
// It's possible the user doesn't exist in Radicale yet, so try creating it by doing a simple PROPFIND request for the main addressbook's address (Radicale will automatically create the user)
const userUrl = `${contactsConfig.cardDavUrl}/${userId}/`;
const xmlBody = `<?xml version="1.0" encoding="utf-8"?>
<propfind xmlns="DAV:" xmlns:card="urn:ietf:params:xml:ns:carddav">
<prop>
<card:addressbook-home-set/>
</prop>
</propfind>`;
await fetch(userUrl, {
method: 'PROPFIND',
headers: {
'Content-Type': 'application/xml; charset=utf-8',
'X-Remote-User': userId,
},
body: xmlBody,
});
davAddressBooks = await client.fetchAddressBooks();
}
const addressBooks: AddressBook[] = davAddressBooks.map((davAddressBook) => {
const uid = davAddressBook.url.split('/').filter(Boolean).pop()!;