File: webdav.rb

package info (click to toggle)
mhc 1.1.1-2
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 2,320 kB
  • ctags: 3,529
  • sloc: ruby: 12,404; lisp: 7,448; makefile: 70; sh: 69
file content (320 lines) | stat: -rw-r--r-- 7,947 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
#!/usr/bin/env ruby

require "net/https"
require "uri"
require "rexml/document"
require "fileutils"
require "pathname"

module Mhc
  class WebDav
    # WebDAV protocol: RFC4918
    # see http://tools.ietf.org/html/rfc4918
    # 
    class Client
      attr_reader :top_directory

      def initialize(base_url, proxy_host = nil, proxy_port = nil)
        uri = URI.parse(base_url)
        @top_directory = uri.path
        @http = Net::HTTP.new(uri.host, uri.port, proxy_host, proxy_port)
        @http.use_ssl = true if uri.scheme == "https"
        @http.verify_mode = OpenSSL::SSL::VERIFY_PEER
      end

      def set_basic_auth(user, password)
        @auth_user, @auth_password = user, password
        return self
      end

      # 8.1 PROPFIND
      def propfind(path = @top_directory, depth = 1, xml_body = nil)
        req = setup_request(Net::HTTP::Propfind, path)
        req['Depth'] = depth

        if xml_body
          req.content_type = 'application/xml; charset="utf-8"'
          req.content_length = xml_body.size
          req.body = xml_body
        end

        res = @http.request(req)

        if $MHC_DEBUG
          STDERR.print "\n* PROPFIND RESPONSE:\n"
          STDERR.print dump_response(res, true)
        end

        check_status_code(res, 207) # Multi-Status

        return res
      end

      # 8.2 PROPPATCH
      def proppatch
        raise NotImplementedError
      end

      # 8.3 MKCOL
      def mkcol(path)
        req = setup_request(Net::HTTP::Mkcol, path)
        res = @http.request(req)
        check_status_code(res, 201) # Created
        return res
      end

      # 8.4 GET
      def get(path)
        req = setup_request(Net::HTTP::Get, path)
        res = @http.request(req)
        check_status_code(res, 200) # OK
        return res
      end

      # 8.4 HEAD
      def head(path)
        req = setup_request(Net::HTTP::Head, path)
        res = @http.request(req)
        check_status_code(res, 200) # OK
        return res
      end

      # 8.5 POST 
      def post(content, dest_path)
        req = setup_request(Net::HTTP::Post, dest_path)
        req.content_length = content.size
        req.body = content
        res = @http.request(req)

        check_status_code(res, [201, 204]) # Created or No content
        return res
      end

      # 8.6 DELETE
      def delete(path, ifmatch = nil)
        req = setup_request(Net::HTTP::Delete, path)
        req['If-Match'] = ifmatch if ifmatch
        res = @http.request(req)

        check_status_code(res, 204)
        return res
      end

      # 8.7 PUT
      def put(content, dest_path, ifmatch = nil)
        req = setup_request(Net::HTTP::Put, dest_path)
        req.content_length = content.size
        req['If-Match'] = ifmatch if ifmatch
        req.content_type = "text/calendar; charset=utf-8" # xxx
        req.body = content
        res = @http.request(req)

        if $MHC_DEBUG
          STDERR.print "\n* PUT RESPONSE:\n"
          STDERR.print dump_response(res)
          STDERR.print "* HEAD RESPONSE:\n"
          STDERR.print dump_response(head(dest_path))
        end

        check_status_code(res, [201, 204]) # Created or No content
        return res
      end

      # 8.8 COPY
      def copy(src_path, dest_path)
        req = setup_request(Net::HTTP::Copy, src_path)
        req['Destination'] = dest_path

        res = @http.request(req)
        check_status_code(res, 204) # No Content
        return res
      end

      # 8.9 MOVE
      def move(src_path, dest_path)
        req = setup_request(Net::HTTP::Move, src_path)
        req['Destination'] = dest_path

        res = @http.request(req)
        check_status_code(res, 204) # No Content
        return res
      end

      # 8.10 LOCK
      def lock(path)
        raise NotImplementedError
      end

      # 8.11 UNLOCK
      def unlock(path)
        raise NotImplementedError
      end

      ################################################################
      private

      def check_status_code(res, required_status)
        unless ([required_status].flatten.map{|c| c.to_s}).member?(res.code)
          header = "Invalid HttpResponse"
          raise Exception.new("#{res.code} #{header} #{res.message} #{res.body}")
        end
      end

      def setup_request(request, *args)
        req = request.new(*args)
        req.basic_auth @auth_user, @auth_password

        # XXX: should implement re-connection mechanism for Keep-Alive:
        # http://d.hatena.ne.jp/daftbeats/20080321/1206092975
        req["Connection"] = "Keep-Alive"

        return req
      end

      def fetch(uri_str, limit = 10)
        raise StandardError, 'HTTP redirect too deep' if limit == 0

        response = Net::HTTP.get_response(URI.parse(uri_str))
        case response
        when Net::HTTPSuccess
          response
        when Net::HTTPRedirection
          fetch(response['location'], limit - 1)
        else
          response.value
        end
      end

      def dump_response(res, include_body = false)
        string = ""

        res.each do |name, value|
          string += "  #{name}: #{value}\n"
        end
        string += res.body + "\n" if include_body

        return string
      end

    end # class Client

    class Cache
      class DirectoryNotFoundError < StandardError
      end
      
      def initialize(top_directory)
        set_top_directory(top_directory)
      end

      def set_top_directory(path)
        raise DirectoryNotFoundError unless File.directory?(path)
        @local_top_pathname = Pathname.new(path)
        return self
      end

      def set_propfind_cache(path, xml)
        File.open(local_cache_path(path), "w") do |f|
          f.write(xml)
        end
      end

      def set_basic_auth(user, password)
        # nothing to do
        return self
      end

      # 8.1 PROPFIND
      def propfind(path, depth = 1, xml_body = nil)
        File.read(local_cache_path(path)) rescue nil
      end

      # 8.2 PROPPATCH
      def proppatch
        raise NotImplementedError
      end

      # 8.3 MKCOL
      def mkcol(path)
        File.mkdir(local_path(path))
      end

      # 8.4 GET
      def get(path)
        File.read(local_path(path))
      end

      # 8.4 HEAD
      def head(path)
        raise NotImplementedError
      end

      # 8.5 POST 
      def post(content, dest_path)
        raise NotImplementedError
      end

      # 8.6 DELETE
      def delete(path)
        File.unlink(local_path(path))
      end

      # 8.7 PUT
      def put(content, dest_path)
        make_directory_or_higher(File.dirname(local_path(dest_path)))

        File.open(local_path(dest_path), "w") do |f|
          f.write(content)
        end
      end

      # 8.8 COPY
      def copy(src_path, dest_path)
        raise NotImplementedError
      end

      # 8.9 MOVE
      def move(src_path, dest_path)
        raise NotImplementedError
      end

      # 8.10 LOCK
      def lock(path)
        raise NotImplementedError
      end

      # 8.11 UNLOCK
      def unlock(path)
        raise NotImplementedError
      end

      private

      def make_directory_or_higher(directory)
        unless File.directory?(directory)
          parent = File.dirname(directory)
          make_directory_or_higher(parent)
          print "mkdir #{directory}\n"
          return Dir.mkdir(directory)
        end
      end

      def local_pathname(path)
        pathname = Pathname.new(path)
        raise "path (#{path.to_s})should be absolute." unless pathname.absolute?
        (@local_top_pathname + ("./" + pathname)).cleanpath
      end

      def local_path(path)
        local_pathname(path).to_s
      end

      def local_cache_path(path)
        if File.directory?(local_path(path))
          (local_pathname(path) + "propfind-cache.xml").cleanpath.to_s
        else
          local_path(path)
        end
      end
    end # class Cache
  end # class WebDav
end # module Mhc