1 ;;; url-dav.el --- WebDAV support
3 ;; Copyright (C) 2001, 2004-2011 Free Software Foundation, Inc.
5 ;; Author: Bill Perry <wmperry@gnu.org>
6 ;; Maintainer: Bill Perry <wmperry@gnu.org>
9 ;; This file is part of GNU Emacs.
11 ;; GNU Emacs is free software: you can redistribute it and/or modify
12 ;; it under the terms of the GNU General Public License as published by
13 ;; the Free Software Foundation, either version 3 of the License, or
14 ;; (at your option) any later version.
16 ;; GNU Emacs is distributed in the hope that it will be useful,
17 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
18 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 ;; GNU General Public License for more details.
21 ;; You should have received a copy of the GNU General Public License
22 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
24 ;; DAV is in RFC 2518.
35 (require 'url-handlers
)
37 (defvar url-dav-supported-protocols
'(1 2)
38 "List of supported DAV versions.")
40 (defun url-intersection (l1 l2
)
41 "Return a list of the elements occurring in both of the lists L1 and L2."
46 (if (member (car l1
) l2
)
47 (setq result
(cons (pop l1
) result
))
52 (defun url-dav-supported-p (url)
54 (fboundp 'xml-expand-namespace
)
55 (url-intersection url-dav-supported-protocols
56 (plist-get (url-http-options url
) 'dav
))))
58 (defun url-dav-node-text (node)
59 "Return the text data from the XML node NODE."
60 (mapconcat (lambda (txt)
63 "")) (xml-node-children node
) " "))
66 ;;; Parsing routines for the actual node contents.
68 ;; I am not incredibly happy with how this code looks/works right
69 ;; now, but it DOES work, and if we get the API right, our callers
70 ;; won't have to worry about the internal representation.
72 (defconst url-dav-datatype-attribute
73 'urn
:uuid
:c2f41010-65b3-11d1-a29f-00aa00c14882
/dt
)
75 (defun url-dav-process-integer-property (node)
76 (truncate (string-to-number (url-dav-node-text node
))))
78 (defun url-dav-process-number-property (node)
79 (string-to-number (url-dav-node-text node
)))
81 (defconst url-dav-iso8601-regexp
84 (4digit "\\([0-9][0-9][0-9][0-9]\\)")
85 (2digit "\\([0-9][0-9]\\)")
86 (date-fullyear 4digit
)
92 (time-secfrac "\\(\\.[0-9]+\\)?")
93 (time-numoffset (concat "[-+]\\(" time-hour
"\\):" time-minute
))
94 (time-offset (concat "Z" time-numoffset
))
95 (partial-time (concat time-hour colon time-minute colon time-second
97 (full-date (concat date-fullyear dash date-month dash date-mday
))
98 (full-time (concat partial-time time-offset
))
99 (date-time (concat full-date
"T" full-time
)))
100 (list (concat "^" full-date
)
101 (concat "T" partial-time
)
102 (concat "Z" time-numoffset
)))
103 "List of regular expressions matching ISO 8601 dates.
104 1st regular expression matches the date.
105 2nd regular expression matches the time.
106 3rd regular expression matches the (optional) timezone specification.")
108 (defun url-dav-process-date-property (node)
109 (require 'parse-time
)
110 (let* ((date-re (nth 0 url-dav-iso8601-regexp
))
111 (time-re (nth 1 url-dav-iso8601-regexp
))
112 (tz-re (nth 2 url-dav-iso8601-regexp
))
113 (date-string (url-dav-node-text node
))
115 time seconds minute hour fractional-seconds
116 day month year day-of-week dst tz
)
117 ;; We need to populate 'time' with
118 ;; (SEC MIN HOUR DAY MON YEAR DOW DST TZ)
120 ;; Nobody else handles iso8601 correctly, lets do it ourselves.
121 (when (string-match date-re date-string re-start
)
122 (setq year
(string-to-number (match-string 1 date-string
))
123 month
(string-to-number (match-string 2 date-string
))
124 day
(string-to-number (match-string 3 date-string
))
125 re-start
(match-end 0))
126 (when (string-match time-re date-string re-start
)
127 (setq hour
(string-to-number (match-string 1 date-string
))
128 minute
(string-to-number (match-string 2 date-string
))
129 seconds
(string-to-number (match-string 3 date-string
))
130 fractional-seconds
(string-to-number (or
131 (match-string 4 date-string
)
133 re-start
(match-end 0))
134 (when (string-match tz-re date-string re-start
)
135 (setq tz
(match-string 1 date-string
)))
136 (url-debug 'dav
"Parsed iso8601%s date" (if tz
"tz" ""))
137 (setq time
(list seconds minute hour day month year day-of-week dst tz
))))
139 ;; Fall back to having Gnus do fancy things for us.
141 (setq time
(parse-time-string date-string
)))
144 (setq time
(apply 'encode-time time
))
145 (url-debug 'dav
"Unable to decode date (%S) (%s)"
146 (xml-node-name node
) date-string
))
149 (defun url-dav-process-boolean-property (node)
150 (/= 0 (string-to-number (url-dav-node-text node
))))
152 (defun url-dav-process-uri-property (node)
153 ;; Returns a parsed representation of the URL...
154 (url-generic-parse-url (url-dav-node-text node
)))
156 (defun url-dav-find-parser (node)
157 "Find a function to parse the XML node NODE."
158 (or (get (xml-node-name node
) 'dav-parser
)
159 (let ((fn (intern (format "url-dav-process-%s" (xml-node-name node
)))))
160 (if (not (fboundp fn
))
161 (setq fn
'url-dav-node-text
)
162 (put (xml-node-name node
) 'dav-parser fn
))
165 (defmacro url-dav-dispatch-node
(node)
166 `(funcall (url-dav-find-parser ,node
) ,node
))
168 (defun url-dav-process-DAV:prop
(node)
169 ;; A prop node has content model of ANY
171 ;; Some predefined nodes have special meanings though.
173 ;; DAV:supportedlock - list of DAV:lockentry
175 ;; DAV:iscollection - boolean
176 ;; DAV:getcontentlength - integer
177 ;; DAV:ishidden - boolean
178 ;; DAV:getcontenttype - string
179 ;; DAV:resourcetype - node who's name is the resource type
180 ;; DAV:getlastmodified - date
181 ;; DAV:creationdate - date
182 ;; DAV:displayname - string
183 ;; DAV:getetag - unknown
184 (let ((children (xml-node-children node
))
190 (error "No child nodes in DAV:prop"))
193 (setq node
(car children
)
196 (cdr-safe (assq url-dav-datatype-attribute
197 (xml-node-attributes node
)))
207 date
) ; date is our 'special' one...
208 ;; Some type of date/time string.
209 (setq value
(url-dav-process-date-property node
)))
212 (setq value
(url-dav-process-integer-property node
)))
214 (setq value
(url-dav-process-number-property node
)))
216 (setq value
(url-dav-process-boolean-property node
)))
218 (setq value
(url-dav-process-uri-property node
)))
220 (if (not (eq node-type
'unknown
))
221 (url-debug 'dav
"Unknown data type in url-dav-process-prop: %s"
223 (setq value
(url-dav-dispatch-node node
))))
225 (setq props
(plist-put props
(xml-node-name node
) value
)
226 children
(cdr children
)))
229 (defun url-dav-process-DAV:supportedlock
(node)
230 ;; DAV:supportedlock is a list of DAV:lockentry items.
231 ;; DAV:lockentry in turn contains a DAV:lockscope and DAV:locktype.
232 ;; The DAV:lockscope must have a single node beneath it, ditto for
234 (let ((children (xml-node-children node
))
238 (when (and (not (stringp (car children
)))
239 (eq (xml-node-name (car children
)) 'DAV
:lockentry
))
240 (setq scope
(assq 'DAV
:lockscope
(xml-node-children (car children
)))
241 type
(assq 'DAV
:locktype
(xml-node-children (car children
))))
242 (when (and scope type
)
243 (setq scope
(xml-node-name (car (xml-node-children scope
)))
244 type
(xml-node-name (car (xml-node-children type
))))
245 (push (cons type scope
) results
)))
246 (setq children
(cdr children
)))
249 (defun url-dav-process-subnode-property (node)
250 ;; Returns a list of child node names.
251 (delq nil
(mapcar 'car-safe
(xml-node-children node
))))
253 (defalias 'url-dav-process-DAV
:depth
'url-dav-process-integer-property
)
254 (defalias 'url-dav-process-DAV
:resourcetype
'url-dav-process-subnode-property
)
255 (defalias 'url-dav-process-DAV
:locktype
'url-dav-process-subnode-property
)
256 (defalias 'url-dav-process-DAV
:lockscope
'url-dav-process-subnode-property
)
257 (defalias 'url-dav-process-DAV
:getcontentlength
'url-dav-process-integer-property
)
258 (defalias 'url-dav-process-DAV
:getlastmodified
'url-dav-process-date-property
)
259 (defalias 'url-dav-process-DAV
:creationdate
'url-dav-process-date-property
)
260 (defalias 'url-dav-process-DAV
:iscollection
'url-dav-process-boolean-property
)
261 (defalias 'url-dav-process-DAV
:ishidden
'url-dav-process-boolean-property
)
263 (defun url-dav-process-DAV:locktoken
(node)
264 ;; DAV:locktoken can have one or more DAV:href children.
265 (delq nil
(mapcar (lambda (n)
268 (url-dav-dispatch-node n
)))
269 (xml-node-children node
))))
271 (defun url-dav-process-DAV:owner
(node)
272 ;; DAV:owner can contain anything.
273 (delq nil
(mapcar (lambda (n)
276 (url-dav-dispatch-node n
)))
277 (xml-node-children node
))))
279 (defun url-dav-process-DAV:activelock
(node)
280 ;; DAV:activelock can contain:
284 ;; DAV:owner (optional)
285 ;; DAV:timeout (optional)
286 ;; DAV:locktoken (optional)
287 (let ((children (xml-node-children node
))
290 (if (listp (car children
))
291 (push (cons (xml-node-name (car children
))
292 (url-dav-dispatch-node (car children
)))
294 (setq children
(cdr children
)))
297 (defun url-dav-process-DAV:lockdiscovery
(node)
298 ;; Can only contain a list of DAV:activelock objects.
299 (let ((children (xml-node-children node
))
303 ((stringp (car children
))
306 ((eq (xml-node-name (car children
)) 'DAV
:activelock
)
307 (push (url-dav-dispatch-node (car children
)) results
))
309 ;; Ignore unknown nodes...
311 (setq children
(cdr children
)))
314 (defun url-dav-process-DAV:status
(node)
315 ;; The node contains a standard HTTP/1.1 response line... we really
316 ;; only care about the numeric status code.
317 (let ((status (url-dav-node-text node
)))
318 (if (string-match "\\`[ \r\t\n]*HTTP/[0-9.]+ \\([0-9]+\\)" status
)
319 (string-to-number (match-string 1 status
))
322 (defun url-dav-process-DAV:propstat
(node)
323 ;; A propstate node can have the following children...
325 ;; DAV:prop - a list of properties and values
326 ;; DAV:status - An HTTP/1.1 status line
327 (let ((children (xml-node-children node
))
331 (error "No child nodes in DAV:propstat"))
333 (setq props
(url-dav-dispatch-node (assq 'DAV
:prop children
))
334 status
(url-dav-dispatch-node (assq 'DAV
:status children
)))
336 ;; Need to parse out the HTTP status
337 (setq props
(plist-put props
'DAV
:status status
))
340 (defun url-dav-process-DAV:response
(node)
341 (let ((children (xml-node-children node
))
345 (error "No child nodes in DAV:response"))
347 ;; A response node can have the following children...
349 ;; DAV:href - URL the response is for.
350 ;; DAV:propstat - see url-dav-process-propstat
351 ;; DAV:responsedescription - text description of the response
352 (setq propstat
(assq 'DAV
:propstat children
)
353 href
(assq 'DAV
:href children
))
356 (error "No href in DAV:response"))
359 (error "No propstat in DAV:response"))
361 (setq propstat
(url-dav-dispatch-node propstat
)
362 href
(url-dav-dispatch-node href
))
363 (cons href propstat
)))
365 (defun url-dav-process-DAV:multistatus
(node)
366 (let ((children (xml-node-children node
))
369 (push (url-dav-dispatch-node (car children
)) results
)
370 (setq children
(cdr children
)))
374 ;;; DAV request/response generation/processing
375 (defun url-dav-process-response (buffer url
)
376 "Parse a WebDAV response from BUFFER, interpreting it relative to URL.
378 The buffer must have been retrieved by HTTP or HTTPS and contain an
380 (declare (special url-http-content-type
381 url-http-response-status
382 url-http-end-of-headers
))
384 (overall-status nil
))
387 (with-current-buffer buffer
388 (goto-char url-http-end-of-headers
)
389 (setq overall-status url-http-response-status
)
391 ;; XML documents can be transferred as either text/xml or
392 ;; application/xml, and we are required to accept both of
395 url-http-content-type
396 (string-match "\\`\\(text\\|application\\)/xml"
397 url-http-content-type
))
398 (setq tree
(xml-parse-region (point) (point-max)))))
399 ;; Clean up after ourselves.
400 (kill-buffer buffer
)))
403 (if (eq (xml-node-name (car tree
)) 'DAV
:multistatus
)
404 (url-dav-dispatch-node (car tree
))
405 (url-debug 'dav
"Got back singleton response for URL(%S)" url
)
406 (let ((properties (url-dav-dispatch-node (car tree
))))
407 ;; We need to make sure we have a DAV:status node in there for
408 ;; higher-level code;
409 (setq properties
(plist-put properties
'DAV
:status overall-status
))
410 ;; Make this look like a DAV:multistatus parse tree so that
411 ;; nobody but us needs to know the difference.
412 (list (cons url properties
))))))
414 (defun url-dav-request (url method tag body
415 &optional depth headers namespaces
)
416 "Perform WebDAV operation METHOD on URL. Return the parsed responses.
417 Automatically creates an XML request body if TAG is non-nil.
418 BODY is the XML document fragment to be enclosed by <TAG></TAG>.
420 DEPTH is how deep the request should propogate. Default is 0, meaning
421 it should apply only to URL. A negative number means to use
422 `Infinity' for the depth. Not all WebDAV servers support this depth
425 HEADERS is an assoc list of extra headers to send in the request.
427 NAMESPACES is an assoc list of (NAMESPACE . EXPANSION), and these are
428 added to the <TAG> element. The DAV=DAV: namespace is automatically
429 added to this list, so most requests can just pass in nil."
430 ;; Take care of the default value for depth...
431 (setq depth
(or depth
0))
433 ;; Now lets translate it into something webdav can understand.
435 (setq depth
"Infinity")
436 (setq depth
(int-to-string depth
)))
437 (if (not (assoc "DAV" namespaces
))
438 (setq namespaces
(cons '("DAV" .
"DAV:") namespaces
)))
440 (let* ((url-request-extra-headers `(("Depth" .
,depth
)
441 ("Content-type" .
"text/xml")
443 (url-request-method method
)
447 "<?xml version=\"1.0\" encoding=\"utf-8\" ?>\n"
448 "<" (symbol-name tag
) " "
449 ;; add in the appropriate namespaces...
450 (mapconcat (lambda (ns)
451 (concat "xmlns:" (car ns
) "='" (cdr ns
) "'"))
455 "</" (symbol-name tag
) ">\n"))))
456 (url-dav-process-response (url-retrieve-synchronously url
) url
)))
458 (defun url-dav-get-properties (url &optional attributes depth namespaces
)
459 "Return properties for URL, up to DEPTH levels deep.
461 Returns an assoc list, where the key is the filename (possibly a full
462 URI), and the value is a standard property list of DAV property
463 names (ie: DAV:resourcetype)."
464 (url-dav-request url
"PROPFIND" 'DAV
:propfind
466 (mapconcat (lambda (attr)
467 (concat "<DAV:prop><"
472 depth nil namespaces
))
474 (defmacro url-dav-http-success-p
(status)
475 "Return whether STATUS was the result of a successful DAV request."
476 `(= (/ (or ,status
500) 100) 2))
480 (defvar url-dav-lock-identifier
(concat "mailto:" user-mail-address
)
481 "*URL used as contact information when creating locks in DAV.
482 This will be used as the contents of the DAV:owner/DAV:href tag to
483 identify the owner of a LOCK when requesting it. This will be shown
484 to other users when the DAV:lockdiscovery property is requested, so
485 make sure you are comfortable with it leaking to the outside world.")
487 (defun url-dav-lock-resource (url exclusive
&optional depth
)
488 "Request a lock on URL. If EXCLUSIVE is non-nil, get an exclusive lock.
489 Optional 3rd argument DEPTH says how deep the lock should go, default is 0
490 \(lock only the resource and none of its children\).
492 Returns a cons-cell of (SUCCESSFUL-RESULTS . FAILURE-RESULTS).
493 SUCCESSFUL-RESULTS is a list of (URL STATUS locktoken).
494 FAILURE-RESULTS is a list of (URL STATUS)."
495 (setq exclusive
(if exclusive
"<DAV:exclusive/>" "<DAV:shared/>"))
498 " <DAV:lockscope>" exclusive
"</DAV:lockscope>\n"
499 " <DAV:locktype> <DAV:write/> </DAV:locktype>\n"
501 " <DAV:href>" url-dav-lock-identifier
"</DAV:href>\n"
503 (response nil
) ; Responses to the LOCK request
504 (result nil
) ; For walking thru the response list
507 (failures nil
) ; List of failure cases (URL . STATUS)
508 (successes nil
)) ; List of success cases (URL . STATUS)
509 (setq response
(url-dav-request url
"LOCK" 'DAV
:lockinfo body
510 depth
'(("Timeout" .
"Infinite"))))
512 ;; Get the parent URL ready for expand-file-name
513 (if (not (vectorp url
))
514 (setq url
(url-generic-parse-url url
)))
516 ;; Walk thru the response list, fully expand the URL, and grab the
519 (setq result
(pop response
)
520 child-url
(url-expand-file-name (pop result
) url
)
521 child-status
(or (plist-get result
'DAV
:status
) 500))
522 (if (url-dav-http-success-p child-status
)
523 (push (list url child-status
"huh") successes
)
524 (push (list url child-status
) failures
)))
525 (cons successes failures
)))
527 (defun url-dav-active-locks (url &optional depth
)
528 "Return an assoc list of all active locks on URL."
529 (let ((response (url-dav-get-properties url
'(DAV:lockdiscovery
) depth
))
535 (if (not (vectorp url
))
536 (setq url
(url-generic-parse-url url
)))
539 (setq child
(pop response
)
540 child-url
(pop child
)
542 (when (and (url-dav-http-success-p (plist-get child
'DAV
:status
))
543 (setq child
(plist-get child
'DAV
:lockdiscovery
)))
544 ;; After our parser has had its way with it, The
545 ;; DAV:lockdiscovery property is a list of DAV:activelock
546 ;; objects, which are comprised of DAV:activelocks, which
547 ;; assoc lists of properties and values.
549 (if (assq 'DAV
:locktoken
(car child
))
550 (let ((tokens (cdr (assq 'DAV
:locktoken
(car child
))))
551 (owners (cdr (assq 'DAV
:owner
(car child
)))))
552 (dolist (token tokens
)
553 (dolist (owner owners
)
554 (push (cons token owner
) child-results
)))))
557 (push (cons (url-expand-file-name child-url url
) child-results
)
561 (defun url-dav-unlock-resource (url lock-token
)
562 "Release the lock on URL represented by LOCK-TOKEN.
563 Returns t if the lock was successfully released."
564 (declare (special url-http-response-status
))
565 (let* ((url-request-extra-headers (list (cons "Lock-Token"
566 (concat "<" lock-token
">"))))
567 (url-request-method "UNLOCK")
568 (url-request-data nil
)
569 (buffer (url-retrieve-synchronously url
))
573 (with-current-buffer buffer
574 (setq result
(url-dav-http-success-p url-http-response-status
)))
575 (kill-buffer buffer
)))
579 ;;; file-name-handler stuff
580 (defun url-dav-file-attributes-mode-string (properties)
581 (let ((modes (make-string 10 ?-
))
582 (supported-locks (plist-get properties
'DAV
:supportedlock
))
583 (executable-p (equal (plist-get properties
'http
://apache.org
/dav
/props
/executable
)
585 (directory-p (memq 'DAV
:collection
(plist-get properties
'DAV
:resourcetype
)))
588 ;; Assume we can read this, otherwise the PROPFIND would have
603 (while supported-locks
604 (setq lock
(car supported-locks
)
605 supported-locks
(cdr supported-locks
))
609 (DAV:shared
; group permissions (possibly world)
612 (aset modes
2 ?w
)) ; owner permissions?
614 (url-debug 'dav
"Unrecognized DAV:lockscope (%S)" (cdr lock
)))))
616 (url-debug 'dav
"Unrecognized DAV:locktype (%S)" (car lock
)))))
619 (autoload 'url-http-head-file-attributes
"url-http")
621 (defun url-dav-file-attributes (url &optional id-format
)
622 (let ((properties (cdar (url-dav-get-properties url
))))
624 (url-dav-http-success-p (plist-get properties
'DAV
:status
)))
625 ;; We got a good DAV response back..
627 ;; t for directory, string for symbolic link, or nil
628 ;; Need to support DAV Bindings to figure out the
629 ;; symbolic link issues.
630 (if (memq 'DAV
:collection
(plist-get properties
'DAV
:resourcetype
)) t nil
)
632 ;; Number of links to file... Needs DAV Bindings.
635 ;; File uid - no way to figure out?
638 ;; File gid - no way to figure out?
641 ;; Last access time - ???
644 ;; Last modification time
645 (plist-get properties
'DAV
:getlastmodified
)
647 ;; Last status change time... just reuse last-modified
649 (plist-get properties
'DAV
:getlastmodified
)
652 (or (plist-get properties
'DAV
:getcontentlength
) 0)
654 ;; file modes as a string like `ls -l'
656 ;; Should be able to build this up from the
657 ;; DAV:supportedlock attribute pretty easily. Getting
658 ;; the group info could be impossible though.
659 (url-dav-file-attributes-mode-string properties
)
661 ;; t if file's gid would change if it were deleted &
662 ;; recreated. No way for us to know that thru DAV.
665 ;; inode number - meaningless
668 ;; device number - meaningless
670 ;; Fall back to just the normal http way of doing things.
671 (url-http-head-file-attributes url id-format
))))
673 (defun url-dav-save-resource (url obj
&optional content-type lock-token
)
674 "Save OBJ as URL using WebDAV.
675 URL must be a fully qualified URL.
676 OBJ may be a buffer or a string."
677 (declare (special url-http-response-status
))
680 (url-request-extra-headers nil
)
681 (url-request-method "PUT")
685 (with-current-buffer obj
690 (error "Invalid object to url-dav-save-resource")))))
694 (cons "If" (concat "(<" lock-token
">)"))
695 url-request-extra-headers
))
697 ;; Everything must always have a content-type when we submit it.
699 (cons "Content-type" (or content-type
"application/octet-stream"))
700 url-request-extra-headers
)
703 (setq buffer
(url-retrieve-synchronously url
))
708 (with-current-buffer buffer
709 (setq result
(url-dav-http-success-p url-http-response-status
)))
710 (kill-buffer buffer
)))
714 (defmacro url-dav-delete-something
(url lock-token
&rest error-checking
)
715 "Delete URL completely, with no sanity checking whatsoever. DO NOT USE.
716 This is defined as a macro that will not be visible from compiled files.
717 Use with care, and even then think three times."
720 (url-dav-request ,url
"DELETE" nil nil -
1
724 (concat "(<" ,lock-token
">)"))))))))
727 (defun url-dav-delete-directory (url &optional recursive lock-token
)
728 "Delete the WebDAV collection URL.
729 If optional second argument RECURSIVE is non-nil, then delete all
730 files in the collection as well."
734 (setq props
(url-dav-delete-something
736 (setq props
(url-dav-get-properties url
'(DAV:getcontenttype
) 1))
737 (if (and (not recursive
)
738 (/= (length props
) 1))
739 (signal 'file-error
(list "Removing directory"
740 "directory not empty" url
)))))
742 (mapc (lambda (result)
743 (setq status
(plist-get (cdr result
) 'DAV
:status
))
744 (if (not (url-dav-http-success-p status
))
745 (signal 'file-error
(list "Removing directory"
747 (car result
) status
))))
751 (defun url-dav-delete-file (url &optional lock-token
)
752 "Delete file named URL."
755 (setq props
(url-dav-delete-something
757 (setq props
(url-dav-get-properties url
))
758 (if (eq (plist-get (cdar props
) 'DAV
:resourcetype
) 'DAV
:collection
)
759 (signal 'file-error
(list "Removing old name" "is a collection" url
)))))
761 (mapc (lambda (result)
762 (setq status
(plist-get (cdr result
) 'DAV
:status
))
763 (if (not (url-dav-http-success-p status
))
764 (signal 'file-error
(list "Removing old name"
766 (car result
) status
))))
770 (defun url-dav-directory-files (url &optional full match nosort files-only
)
771 "Return a list of names of files in URL.
772 There are three optional arguments:
773 If FULL is non-nil, return absolute file names. Otherwise return names
774 that are relative to the specified directory.
775 If MATCH is non-nil, mention only file names that match the regexp MATCH.
776 If NOSORT is non-nil, the list is not sorted--its order is unpredictable.
777 NOSORT is useful if you plan to sort the result yourself."
778 (let ((properties (url-dav-get-properties url
'(DAV:resourcetype
) 1))
782 (parsed-url (url-generic-parse-url url
)))
784 (if (= (length properties
) 1)
785 (signal 'file-error
(list "Opening directory" "not a directory" url
)))
788 (setq child-props
(pop properties
)
789 child-url
(pop child-props
))
790 (if (and (eq (plist-get child-props
'DAV
:resourcetype
) 'DAV
:collection
)
792 ;; It is a directory, and we were told to return just files.
795 ;; Fully expand the URL and then rip off the beginning if we
796 ;; are not supposed to return fully-qualified names.
797 (setq child-url
(url-expand-file-name child-url parsed-url
))
799 (setq child-url
(substring child-url
(length url
))))
801 ;; We don't want '/' as the last character in filenames...
802 (if (string-match "/$" child-url
)
803 (setq child-url
(substring child-url
0 -
1)))
805 ;; If we have a match criteria, then apply it.
806 (if (or (and match
(not (string-match match child-url
)))
807 (string= child-url
"")
808 (string= child-url url
))
810 (push child-url files
))))
814 (sort files
'string-lessp
))))
816 (defun url-dav-file-directory-p (url)
817 "Return t if URL names an existing DAV collection."
818 (let ((properties (cdar (url-dav-get-properties url
'(DAV:resourcetype
)))))
819 (eq (plist-get properties
'DAV
:resourcetype
) 'DAV
:collection
)))
821 (defun url-dav-make-directory (url &optional parents
)
822 "Create the directory DIR and any nonexistent parent dirs."
823 (declare (special url-http-response-status
))
824 (let* ((url-request-extra-headers nil
)
825 (url-request-method "MKCOL")
826 (url-request-data nil
)
827 (buffer (url-retrieve-synchronously url
))
831 (with-current-buffer buffer
832 (case url-http-response-status
833 (201 ; Collection created in its entirety
837 (405 ; Method not allowed
841 (415 ; Unsupported media type (WTF?)
843 (507 ; Insufficient storage
847 (kill-buffer buffer
)))
850 (defun url-dav-rename-file (oldname newname
&optional overwrite
)
851 (if (not (and (string-match url-handler-regexp oldname
)
852 (string-match url-handler-regexp newname
)))
854 (list "Cannot rename between different URL backends"
860 (directory-p (url-dav-file-directory-p oldname
))
861 (exists-p (url-http-file-exists-p newname
)))
866 (and (numberp overwrite
)
868 (format "File %s already exists; rename to it anyway? "
870 (signal 'file-already-exists
(list "File already exists" newname
)))
872 ;; Honor the overwrite flag...
873 (if overwrite
(push '("Overwrite" .
"T") headers
))
875 ;; Have to tell them where to copy it to!
876 (push (cons "Destination" newname
) headers
)
878 ;; Always send a depth of -1 in case we are moving a collection.
879 (setq props
(url-dav-request oldname
"MOVE" nil nil
(if directory-p -
1 0)
882 (mapc (lambda (result)
883 (setq status
(plist-get (cdr result
) 'DAV
:status
))
885 (if (not (url-dav-http-success-p status
))
886 (signal 'file-error
(list "Renaming" oldname newname status
))))
890 (defun url-dav-file-name-all-completions (file url
)
891 "Return a list of all completions of file name FILE in URL.
892 These are all file names in URL which begin with FILE."
893 (url-dav-directory-files url nil
(concat "^" file
".*")))
895 (defun url-dav-file-name-completion (file url
)
896 "Complete file name FILE in URL.
897 Returns the longest string common to all file names in URL
898 that start with FILE.
899 If there is only one and FILE matches it exactly, returns t.
900 Returns nil if URL contains no name starting with FILE."
901 (let ((matches (url-dav-file-name-all-completions file url
))
907 ((and (= (length matches
) 1)
908 (string= file
(car matches
)))
909 ;; Only one file and FILE matches it exactly...
912 ;; Need to figure out the longest string that they have in commmon
913 (setq matches
(sort matches
(lambda (a b
) (> (length a
) (length b
)))))
914 (let ((n (length file
))
918 (while (and searching
919 (< n
(length (car matches
))))
920 (setq regexp
(concat "^" (substring (car matches
) 0 (1+ n
)))
922 (dolist (potential matches
)
923 (if (not (string-match regexp potential
))
928 (substring (car matches
) 0 n
))))))
930 (defun url-dav-register-handler (op)
931 (put op
'url-file-handlers
(intern-soft (format "url-dav-%s" op
))))
933 (mapc 'url-dav-register-handler
934 ;; These handlers are disabled because they incorrectly presume that
935 ;; the URL specifies an HTTP location and thus break FTP URLs.
936 '(;; file-name-all-completions
937 ;; file-name-completion
948 ;;; Version Control backend cruft
950 ;(put 'vc-registered 'url-file-handlers 'url-dav-vc-registered)
953 (defun url-dav-vc-registered (url)
954 (if (and (string-match "\\`https?" url
)
955 (plist-get (url-http-options url
) 'dav
))
957 (vc-file-setprop url
'vc-backend
'dav
)
961 ;;; Miscellaneous stuff.
965 ;;; url-dav.el ends here