2 ;;;; Copyright (c) 2012 Zachary Beane, All Rights Reserved
4 ;;;; Redistribution and use in source and binary forms, with or without
5 ;;;; modification, are permitted provided that the following conditions
8 ;;;; * Redistributions of source code must retain the above copyright
9 ;;;; notice, this list of conditions and the following disclaimer.
11 ;;;; * Redistributions in binary form must reproduce the above
12 ;;;; copyright notice, this list of conditions and the following
13 ;;;; disclaimer in the documentation and/or other materials
14 ;;;; provided with the distribution.
16 ;;;; THIS SOFTWARE IS PROVIDED BY THE AUTHOR 'AS IS' AND ANY EXPRESSED
17 ;;;; OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
18 ;;;; WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
19 ;;;; ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY
20 ;;;; DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
21 ;;;; DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE
22 ;;;; GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
23 ;;;; INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
24 ;;;; WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
25 ;;;; NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
26 ;;;; SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
32 ;;; Object expiration for buckets
34 (defbinder lifecycle-configuration
35 ("LifecycleConfiguration"
39 ("Prefix" (bind :prefix
))
40 ("Status" (bind :status
))
42 ("Days" (bind :days
)))))))
44 (defclass lifecycle-rule
()
58 (defmethod print-object ((rule lifecycle-rule
) stream
)
59 (print-unreadable-object (rule stream
:type t
)
60 (format stream
"~S expire prefix ~S in ~D day~:P (~:[disabled~;enabled~])"
66 ;;; FIXME: The GFs for ENABLE and DISABLE should really be moved
67 ;;; somewhere out of cloudfront.lisp now that I'm adding more methods.
69 (defmethod disable ((rule lifecycle-rule
))
70 (setf (enabledp rule
) nil
))
72 (defmethod enable ((rule lifecycle-rule
))
73 (setf (enabledp rule
) t
))
75 (defun lifecycle-rule (&key id prefix
(enabled t
) days
)
77 (setf id
(string (gensym))))
79 (error "Missing PREFIX argument"))
81 (error "Missing DAYS argument"))
82 (make-instance 'lifecycle-rule
88 (defun lifecycle-document (rules)
89 (cxml:with-xml-output
(cxml:make-octet-vector-sink
)
90 (cxml:with-element
"LifecycleConfiguration"
92 (cxml:with-element
"Rule"
93 (cxml:with-element
"ID"
94 (cxml:text
(id rule
)))
95 (cxml:with-element
"Prefix"
96 (cxml:text
(prefix rule
)))
97 (cxml:with-element
"Status"
98 (cxml:text
(if (enabledp rule
)
101 (cxml:with-element
"Expiration"
102 (cxml:with-element
"Days"
103 (cxml:text
(princ-to-string (days rule
))))))))))
105 (defun bindings-lifecycle-rules (bindings)
107 (dolist (rule-bindings (bvalue :rules bindings
) (nreverse rules
))
108 (alist-bind (id prefix status days
)
110 (push (make-instance 'lifecycle-rule
113 :enabledp
(string= status
"Enabled")
114 :days
(parse-integer days
))
117 (define-specific-error (no-such-lifecycle-configuration
118 "NoSuchLifecycleConfiguration")
121 (defun bucket-lifecycle (bucket)
123 (submit-request (make-instance 'request
126 :sub-resource
"lifecycle"))))
127 (bindings-lifecycle-rules
128 (xml-bind 'lifecycle-configuration
(body response
)))))
130 (defun delete-bucket-lifecycle (bucket)
131 (submit-request (make-instance 'request
134 :sub-resource
"lifecycle")))
136 (defun (setf bucket-lifecycle
) (rules bucket
)
138 (return-from bucket-lifecycle
139 (delete-bucket-lifecycle bucket
)))
140 (unless (listp rules
)
141 (setf rules
(list rules
)))
142 (let* ((content (lifecycle-document rules
))
143 (md5 (vector-md5/b64 content
)))
144 (submit-request (make-instance 'request
147 :sub-resource
"lifecycle"