Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

enh(dav): Allow to set custom headers when creating the DAV client #849

Merged
merged 1 commit into from
Dec 21, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions lib/dav/dav.ts
Original file line number Diff line number Diff line change
Expand Up @@ -56,16 +56,18 @@
* Get a WebDAV client configured to include the Nextcloud request token
*
* @param remoteURL The DAV server remote URL
* @param headers Optional additional headers to set for every request
*/
export const davGetClient = function(remoteURL = davRemoteURL) {
const client = createClient(remoteURL)
export const davGetClient = function(remoteURL = davRemoteURL, headers: Record<string, string> = {}) {
const client = createClient(remoteURL, { headers })

Check warning on line 62 in lib/dav/dav.ts

View check run for this annotation

Codecov / codecov/patch

lib/dav/dav.ts#L62

Added line #L62 was not covered by tests

/**
* Set headers for DAV requests
* @param token CSRF token
*/
function setHeaders(token: string | null) {
client.setHeaders({
...headers,
// Add this so the server knows it is an request from the browser
'X-Requested-With': 'XMLHttpRequest',
// Inject user auth
Expand Down
Loading