Merge remote branch 'remotes/jwandborg/f477_cloudfiles'
[mediagoblin.git] / mediagoblin / storage.py
CommitLineData
8e1e744d 1# GNU MediaGoblin -- federated, autonomous media hosting
a6b378ef
CAW
2# Copyright (C) 2011 Free Software Foundation, Inc
3#
4# This program is free software: you can redistribute it and/or modify
5# it under the terms of the GNU Affero General Public License as published by
6# the Free Software Foundation, either version 3 of the License, or
7# (at your option) any later version.
8#
9# This program is distributed in the hope that it will be useful,
10# but WITHOUT ANY WARRANTY; without even the implied warranty of
11# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12# GNU Affero General Public License for more details.
13#
14# You should have received a copy of the GNU Affero General Public License
15# along with this program. If not, see <http://www.gnu.org/licenses/>.
16
779f2b94 17import os
ffa22935 18import re
6a07362d 19import shutil
f61a41b8 20import urlparse
2fdec827 21import uuid
851c51a3 22import cloudfiles
a6b378ef
CAW
23
24from werkzeug.utils import secure_filename
25
ffa22935
CAW
26from mediagoblin import util
27
d807b725
CAW
28########
29# Errors
30########
a6b378ef 31
770c12be 32
aa797ca1
JW
33class Error(Exception):
34 pass
35
36
37class InvalidFilepath(Error):
38 pass
39
40
41class NoWebServing(Error):
42 pass
43
44
45class NotImplementedError(Error):
46 pass
797be93c 47
770c12be 48
d807b725
CAW
49###############################################
50# Storage interface & basic file implementation
51###############################################
a6b378ef 52
797be93c
CAW
53class StorageInterface(object):
54 """
55 Interface for the storage API.
56
57 This interface doesn't actually provide behavior, but it defines
58 what kind of storage patterns subclasses should provide.
59
60 It is important to note that the storage API idea of a "filepath"
61 is actually like ['dir1', 'dir2', 'file.jpg'], so keep that in
62 mind while reading method documentation.
5afb9227
CAW
63
64 You should set up your __init__ method with whatever keyword
65 arguments are appropriate to your storage system, but you should
66 also passively accept all extraneous keyword arguments like:
67
68 def __init__(self, **kwargs):
69 pass
70
71 See BasicFileStorage as a simple implementation of the
72 StorageInterface.
797be93c 73 """
797be93c 74
3a89c23e
CAW
75 # Whether this file store is on the local filesystem.
76 local_storage = False
77
797be93c
CAW
78 def __raise_not_implemented(self):
79 """
80 Raise a warning about some component not implemented by a
81 subclass of this interface.
82 """
83 raise NotImplementedError(
84 "This feature not implemented in this storage API implementation.")
85
86 def file_exists(self, filepath):
87 """
88 Return a boolean asserting whether or not file at filepath
89 exists in our storage system.
90
91 Returns:
92 True / False depending on whether file exists or not.
93 """
94 # Subclasses should override this method.
95 self.__raise_not_implemented()
96
cee7a1c1 97 def get_file(self, filepath, mode='r'):
b0de01cf
CAW
98 """
99 Return a file-like object for reading/writing from this filepath.
100
101 Should create directories, buckets, whatever, as necessary.
102 """
0b9cf289
CAW
103 # Subclasses should override this method.
104 self.__raise_not_implemented()
105
106 def delete_file(self, filepath):
b0de01cf
CAW
107 """
108 Delete or dereference the file at filepath.
109
110 This might need to delete directories, buckets, whatever, for
111 cleanliness. (Be sure to avoid race conditions on that though)
112 """
0b9cf289
CAW
113 # Subclasses should override this method.
114 self.__raise_not_implemented()
115
f61a41b8 116 def file_url(self, filepath):
644614d4
CAW
117 """
118 Get the URL for this file. This assumes our storage has been
119 mounted with some kind of URL which makes this possible.
120 """
121 # Subclasses should override this method.
122 self.__raise_not_implemented()
123
2d1a6073 124 def get_unique_filepath(self, filepath):
797be93c
CAW
125 """
126 If a filename at filepath already exists, generate a new name.
127
128 Eg, if the filename doesn't exist:
129 >>> storage_handler.get_unique_filename(['dir1', 'dir2', 'fname.jpg'])
130 [u'dir1', u'dir2', u'fname.jpg']
aa797ca1 131
797be93c
CAW
132 But if a file does exist, let's get one back with at uuid tacked on:
133 >>> storage_handler.get_unique_filename(['dir1', 'dir2', 'fname.jpg'])
ef10e3a2 134 [u'dir1', u'dir2', u'd02c3571-dd62-4479-9d62-9e3012dada29-fname.jpg']
797be93c 135 """
b0bfb766
CAW
136 # Make sure we have a clean filepath to start with, since
137 # we'll be possibly tacking on stuff to the filename.
138 filepath = clean_listy_filepath(filepath)
139
0b9cf289
CAW
140 if self.file_exists(filepath):
141 return filepath[:-1] + ["%s-%s" % (uuid.uuid4(), filepath[-1])]
142 else:
143 return filepath
779f2b94 144
3a89c23e
CAW
145 def get_local_path(self, filepath):
146 """
147 If this is a local_storage implementation, give us a link to
148 the local filesystem reference to this file.
149
150 >>> storage_handler.get_local_path(['foo', 'bar', 'baz.jpg'])
151 u'/path/to/mounting/foo/bar/baz.jpg'
152 """
153 # Subclasses should override this method, if applicable.
154 self.__raise_not_implemented()
155
6a07362d
CAW
156 def copy_locally(self, filepath, dest_path):
157 """
158 Copy this file locally.
159
160 A basic working method for this is provided that should
161 function both for local_storage systems and remote storge
162 systems, but if more efficient systems for copying locally
163 apply to your system, override this method with something more
164 appropriate.
165 """
166 if self.local_storage:
167 shutil.copy(
168 self.get_local_path(filepath), dest_path)
169 else:
170 with self.get_file(filepath, 'rb') as source_file:
171 with file(dest_path, 'wb') as dest_file:
172 dest_file.write(source_file.read())
173
779f2b94
CAW
174
175class BasicFileStorage(StorageInterface):
176 """
177 Basic local filesystem implementation of storage API
178 """
179
3a89c23e
CAW
180 local_storage = True
181
5afb9227 182 def __init__(self, base_dir, base_url=None, **kwargs):
779f2b94
CAW
183 """
184 Keyword arguments:
185 - base_dir: Base directory things will be served out of. MUST
186 be an absolute path.
b1bb050b 187 - base_url: URL files will be served from
779f2b94
CAW
188 """
189 self.base_dir = base_dir
b1bb050b 190 self.base_url = base_url
779f2b94
CAW
191
192 def _resolve_filepath(self, filepath):
193 """
194 Transform the given filepath into a local filesystem filepath.
195 """
196 return os.path.join(
197 self.base_dir, *clean_listy_filepath(filepath))
aa797ca1 198
779f2b94
CAW
199 def file_exists(self, filepath):
200 return os.path.exists(self._resolve_filepath(filepath))
201
cee7a1c1
CAW
202 def get_file(self, filepath, mode='r'):
203 # Make directories if necessary
204 if len(filepath) > 1:
205 directory = self._resolve_filepath(filepath[:-1])
d0e3a534 206 if not os.path.exists(directory):
cee7a1c1
CAW
207 os.makedirs(directory)
208
209 # Grab and return the file in the mode specified
210 return open(self._resolve_filepath(filepath), mode)
211
779f2b94 212 def delete_file(self, filepath):
b1bb050b
CAW
213 # TODO: Also delete unused directories if empty (safely, with
214 # checks to avoid race conditions).
215 os.remove(self._resolve_filepath(filepath))
644614d4 216
f61a41b8 217 def file_url(self, filepath):
b1bb050b
CAW
218 if not self.base_url:
219 raise NoWebServing(
220 "base_url not set, cannot provide file urls")
221
222 return urlparse.urljoin(
223 self.base_url,
224 '/'.join(clean_listy_filepath(filepath)))
ffa22935 225
3a89c23e
CAW
226 def get_local_path(self, filepath):
227 return self._resolve_filepath(filepath)
228
ffa22935 229
aa797ca1
JW
230class CloudFilesStorage(StorageInterface):
231 def __init__(self, **kwargs):
232 self.param_container = kwargs.get('cloudfiles_container')
233 self.param_user = kwargs.get('cloudfiles_user')
234 self.param_api_key = kwargs.get('cloudfiles_api_key')
235 self.param_host = kwargs.get('cloudfiles_host')
236 self.param_use_servicenet = kwargs.get('cloudfiles_use_servicenet')
237
238 if not self.param_host:
239 print('No CloudFiles host URL specified, '
240 'defaulting to Rackspace US')
241
242 self.connection = cloudfiles.get_connection(
243 username=self.param_user,
244 api_key=self.param_api_key,
245 servicenet=True if self.param_use_servicenet == 'true' or \
246 self.param_use_servicenet == True else False)
247
248 if not self.param_container == \
249 self.connection.get_container(self.param_container):
250 self.container = self.connection.create_container(
251 self.param_container)
252 self.container.make_public(
253 ttl=60 * 60 * 2)
254 else:
255 self.container = self.connection.get_container(
256 self.param_container)
257
258 def _resolve_filepath(self, filepath):
259 return '/'.join(
260 clean_listy_filepath(filepath))
261
262 def file_exists(self, filepath):
263 try:
264 object = self.container.get_object(
265 self._resolve_filepath(filepath))
266 return True
267 except cloudfiles.errors.NoSuchObject:
268 return False
269
270 def get_file(self, filepath, mode='r'):
271 try:
272 obj = self.container.get_object(
273 self._resolve_filepath(filepath))
274 except cloudfiles.errors.NoSuchObject:
275 obj = self.container.create_object(
276 self._resolve_filepath(filepath))
277
278 return obj
279
280 def delete_file(self, filepath):
281 # TODO: Also delete unused directories if empty (safely, with
282 # checks to avoid race conditions).
283 self.container.delete_object(filepath)
284
285 def file_url(self, filepath):
286 return self.get_file(filepath).public_uri()
287
288
d807b725
CAW
289###########
290# Utilities
291###########
292
293def clean_listy_filepath(listy_filepath):
294 """
295 Take a listy filepath (like ['dir1', 'dir2', 'filename.jpg']) and
296 clean out any nastiness from it.
297
3a89c23e 298
d807b725
CAW
299 >>> clean_listy_filepath([u'/dir1/', u'foo/../nasty', u'linooks.jpg'])
300 [u'dir1', u'foo_.._nasty', u'linooks.jpg']
301
302 Args:
303 - listy_filepath: a list of filepath components, mediagoblin
304 storage API style.
305
306 Returns:
307 A cleaned list of unicode objects.
308 """
309 cleaned_filepath = [
310 unicode(secure_filename(filepath))
311 for filepath in listy_filepath]
312
313 if u'' in cleaned_filepath:
314 raise InvalidFilepath(
315 "A filename component could not be resolved into a usable name.")
316
317 return cleaned_filepath
318
319
3c7d11ff 320def storage_system_from_config(paste_config, storage_prefix):
ffa22935
CAW
321 """
322 Utility for setting up a storage system from the paste app config.
323
324 Note that a special argument may be passed in to the paste_config
325 which is "${storage_prefix}_storage_class" which will provide an
326 import path to a storage system. This defaults to
327 "mediagoblin.storage:BasicFileStorage" if otherwise undefined.
328
329 Arguments:
330 - paste_config: dictionary of config parameters
331 - storage_prefix: the storage system we're setting up / will be
332 getting keys/arguments from. For example 'publicstore' will
333 grab all arguments that are like 'publicstore_FOO'.
334
335 Returns:
336 An instantiated storage system.
337
338 Example:
3c7d11ff 339 storage_system_from_config(
ffa22935
CAW
340 {'publicstore_base_url': '/media/',
341 'publicstore_base_dir': '/var/whatever/media/'},
342 'publicstore')
343
344 Will return:
345 BasicFileStorage(
346 base_url='/media/',
347 base_dir='/var/whatever/media')
348 """
349 prefix_re = re.compile('^%s_(.+)$' % re.escape(storage_prefix))
350
351 config_params = dict(
352 [(prefix_re.match(key).groups()[0], value)
353 for key, value in paste_config.iteritems()
354 if prefix_re.match(key)])
355
aa797ca1 356 if 'storage_class' in config_params:
ffa22935
CAW
357 storage_class = config_params['storage_class']
358 config_params.pop('storage_class')
359 else:
360 storage_class = "mediagoblin.storage:BasicFileStorage"
361
362 storage_class = util.import_component(storage_class)
363 return storage_class(**config_params)