Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/sugar_network/db/blobs.py
blob: 6426341fbd9d13d89e87af0deb82ab39eed81721 (plain)
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
# Copyright (C) 2014 Aleksey Lim
#
# 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 <http://www.gnu.org/licenses/>.

import os
import logging
import hashlib
import mimetypes
from contextlib import contextmanager
from os.path import exists, abspath, join, dirname, isdir

from sugar_network import toolkit, assets
from sugar_network.toolkit.router import File
from sugar_network.toolkit import http, ranges, enforce


_META_SUFFIX = '.meta'

_logger = logging.getLogger('db.blobs')


class Blobs(object):

    def __init__(self, root, seqno):
        self._root = abspath(root)
        self._seqno = seqno

    @property
    def root(self):
        return self._root

    def path(self, path=None):
        if path is None:
            return join(self._root, 'files')
        if isinstance(path, File):
            return self._blob_path(path.digest)
        if isinstance(path, basestring):
            path = path.split(os.sep)
        if len(path) == 1 and len(path[0]) == 40 and '.' not in path[0]:
            return self._blob_path(path[0])
        if path[0] == 'assets':
            return join(assets.PATH, *path[1:])
        return join(self._root, 'files', *path)

    def walk(self, path=None, include=None, recursive=True, all_files=False):
        if path is None:
            is_files = False
            root = self._blob_path()
        else:
            path = path.strip('/').split('/')
            enforce(not [i for i in path if i == '..'],
                    http.BadRequest, 'Relative paths are not allowed')
            is_files = True
            root = self.path(path)

        for root, __, files in os.walk(root):
            if include is not None and \
                    not ranges.contains(include, int(os.stat(root).st_mtime)):
                continue
            api_path = root[len(self._root) + 7:] if is_files else None
            for filename in files:
                if filename.endswith(_META_SUFFIX):
                    if not all_files:
                        digest = filename[:-len(_META_SUFFIX)]
                        path = join(root, digest)
                        yield File(path, digest, _read_meta(path))
                        continue
                elif not all_files:
                    continue
                yield root, api_path, filename
            if not recursive:
                break

    def post(self, content, mime_type=None, digest_to_assert=None, meta=None):
        if isinstance(content, File):
            seqno = self._seqno.next()
            meta = content.meta.copy()
            meta['x-seqno'] = str(seqno)
            path = self._blob_path(content.digest)
            if not exists(dirname(path)):
                os.makedirs(dirname(path))
            os.link(content.path, path)
            _write_meta(path, meta, seqno)
            return File(path, content.digest, meta)

        if meta is None:
            meta = []
            meta.append(('content-type',
                mime_type or 'application/octet-stream'))
        else:
            meta = meta.items()
            if mime_type:
                meta.append(('content-type', mime_type))

        @contextmanager
        def write_blob():
            tmp_path = join(self._blob_path(), 'post')
            if hasattr(content, 'read'):
                with toolkit.new_file(tmp_path) as blob:
                    digest = hashlib.sha1()
                    while True:
                        chunk = content.read(toolkit.BUFFER_SIZE)
                        if not chunk:
                            break
                        blob.write(chunk)
                        digest.update(chunk)
                    yield blob, digest.hexdigest()
            elif isinstance(content, dict):
                enforce('location' in content, http.BadRequest, 'No location')
                enforce('digest' in content, http.BadRequest, 'No digest')
                enforce('content-length' in content, http.BadRequest,
                        'No content-length')
                meta.append(('status', '301 Moved Permanently'))
                meta.append(('location', content['location']))
                meta.append(('content-length', content['content-length']))
                yield None, content['digest']
            else:
                with toolkit.new_file(tmp_path) as blob:
                    blob.write(content)
                    yield blob, hashlib.sha1(content).hexdigest()

        with write_blob() as (blob, digest):
            if digest_to_assert and digest != digest_to_assert:
                if blob is not None:
                    blob.unlink()
                raise http.BadRequest('Digest mismatch')
            path = self._blob_path(digest)
            seqno = self._seqno.next()
            meta.append(('x-seqno', str(seqno)))
            if blob is not None:
                meta.append(('content-length', str(blob.tell())))
                blob.name = path
        _write_meta(path, meta, seqno)

        _logger.debug('Post %r file', path)

        if not exists(path):
            path = None
        return File(path, digest, meta)

    def update(self, path, meta):
        path = self.path(path)
        enforce(exists(path + _META_SUFFIX), http.NotFound, 'No such blob')
        orig_meta = _read_meta(path)
        orig_meta.update(meta)
        _write_meta(path, orig_meta, None)

    def get(self, digest):
        path = self.path(digest)
        if exists(path + _META_SUFFIX):
            meta = _read_meta(path)
            if not exists(path):
                path = None
            return File(path, digest, meta)
        elif isdir(path):
            return _lsdir(path, digest)
        elif exists(path):
            blob = File(path, digest)
            blob.meta.set('content-length', str(blob.size))
            blob.meta.set('content-type', _guess_mime(path))
            return blob

    def delete(self, path):
        self._delete(self.path(path), None)

    def wipe(self, path):
        path = self.path(path)
        if exists(path + _META_SUFFIX):
            os.unlink(path + _META_SUFFIX)
        if exists(path):
            _logger.debug('Wipe %r file', path)
            os.unlink(path)

    def populate(self, path=None):
        for __ in self.diff([[1, None]], path or '', yield_files=False):
            yield

    def diff(self, r, path=None, recursive=True, yield_files=True):
        is_files = path is not None
        checkin_seqno = None

        for root, rel_root, filename in self.walk(path, r, recursive, True):
            path = join(root, filename)
            if filename.endswith(_META_SUFFIX):
                seqno = int(os.stat(path).st_mtime)
                path = path[:-len(_META_SUFFIX)]
                meta = None
                if exists(path):
                    stat = os.stat(path)
                    if seqno != int(stat.st_mtime):
                        _logger.debug('Found updated %r blob', path)
                        seqno = self._seqno.next()
                        meta = _read_meta(path)
                        meta['x-seqno'] = str(seqno)
                        meta['content-length'] = str(stat.st_size)
                        _write_meta(path, meta, seqno)
                if not ranges.contains(r, seqno):
                    continue
                if meta is None:
                    meta = _read_meta(path)
                if is_files:
                    digest = join(rel_root, filename[:-len(_META_SUFFIX)])
                    meta['path'] = digest
                else:
                    digest = filename[:-len(_META_SUFFIX)]
            elif not is_files or exists(path + _META_SUFFIX):
                continue
            else:
                _logger.debug('Found new %r blob', path)
                if checkin_seqno is None:
                    checkin_seqno = self._seqno.next()
                seqno = checkin_seqno
                meta = [('content-type', _guess_mime(filename)),
                        ('content-length', str(os.stat(path).st_size)),
                        ('x-seqno', str(seqno)),
                        ]
                _write_meta(path, meta, seqno)
                if not ranges.contains(r, seqno):
                    continue
                digest = join(rel_root, filename)
                meta.append(('path', digest))
            if yield_files:
                if not exists(path):
                    path = None
                yield File(path, digest, meta)
            else:
                yield

    def patch(self, patch, seqno=0):
        if 'path' in patch.meta:
            path = self.path(patch.meta.pop('path'))
        else:
            path = self._blob_path(patch.digest)
        if not patch.size:
            self._delete(path, seqno)
            return
        if not exists(dirname(path)):
            os.makedirs(dirname(path))
        os.rename(patch.path, path)
        if exists(path + _META_SUFFIX):
            meta = _read_meta(path)
            meta.update(patch.meta)
        else:
            meta = patch.meta
        meta['x-seqno'] = str(seqno)
        _write_meta(path, meta, seqno)

    def _delete(self, path, seqno):
        if exists(path + _META_SUFFIX):
            if seqno is None:
                seqno = self._seqno.next()
            meta = _read_meta(path)
            meta['status'] = '410 Gone'
            meta['x-seqno'] = str(seqno)
            _write_meta(path, meta, seqno)
        if exists(path):
            _logger.debug('Delete %r file', path)
            os.unlink(path)

    def _blob_path(self, digest=None):
        if not digest:
            return join(self._root, 'blobs')
        return join(self._root, 'blobs', digest[:3], digest)


def _write_meta(path, meta, seqno):
    if seqno and exists(path):
        os.utime(path, (seqno, seqno))
    path += _META_SUFFIX
    with toolkit.new_file(path) as f:
        for key, value in meta.items() if isinstance(meta, dict) else meta:
            if seqno is None and key == 'x-seqno':
                seqno = int(value)
            f.write('%s: %s\n' % (key, toolkit.ascii(value)))
    os.utime(path, (seqno, seqno))


def _read_meta(path):
    meta = {}
    with file(path + _META_SUFFIX) as f:
        for line in f:
            key, value = line.split(':', 1)
            meta[key] = value.strip()
    return meta


def _lsdir(root, rel_root):
    for filename in os.listdir(root):
        path = join(root, filename)
        if exists(path + _META_SUFFIX):
            yield File(path, join(rel_root, filename), _read_meta(path))


def _guess_mime(path):
    return mimetypes.guess_type(path)[0] or 'application/octet-stream'