/** * This file is part of Radicale Server - Calendar Server * Copyright © 2017-2024 Unrud * Copyright © 2023-2024 Matthew Hana * Copyright © 2024-2025 Peter Bieringer * Copyright © 2026-2026 Max Berger * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ /** * @param {XMLHttpRequest} request * @returns {string} */ export function to_error_message(request) { let have_status_text = (request.statusText != null && request.statusText != undefined && request.statusText != '') if ((request.status == 0) && (!have_status_text)) { return "Could not connect to server"; } return request.status + " " + request.statusText; } /** * @param {?string} user * @param {?string} password * @returns {?string} */ export function get_auth_header(user, password) { if (user !== null && password !== null && password !== "") { return 'Basic ' + btoa(user + ':' + encodeURIComponent(password)); } return null; } /** * @param {string} method * @param {string} url * @param {?string} user * @param {?string} password * @returns {XMLHttpRequest} */ export function create_request(method, url, user, password) { let request = new XMLHttpRequest(); request.open(method, url, true); let auth = get_auth_header(user, password); if (auth !== null) { request.setRequestHeader('Authorization', auth); } return request; }