1
0
mirror of https://github.com/Tygs/0bin.git synced 2023-08-10 21:13:00 +03:00
0bin/zerobin/paste.py

195 lines
5.4 KiB
Python
Raw Normal View History

2012-04-24 22:15:38 +04:00
# -*- coding: utf-8 -*-
import os
2012-05-21 19:14:01 +04:00
import fcntl
import sys
2012-04-24 22:15:38 +04:00
import hashlib
2012-05-21 19:14:01 +04:00
2012-04-24 22:15:38 +04:00
from datetime import datetime, timedelta
2012-05-14 19:17:49 +04:00
from utils import settings
2012-04-24 22:15:38 +04:00
class Paste(object):
"""
A paste objet to deal with the file opening/parsing/saving and the
calculation of the expiration date.
"""
DIR_CACHE = set()
DURATIONS = {
u'1_day': 24 * 3600,
u'1_month': 30 * 24 * 3600,
u'never': 365 * 24 * 3600 * 100,
}
def __init__(self, uuid=None, content=None,
2012-05-14 19:17:49 +04:00
expiration=None):
2012-04-24 22:15:38 +04:00
2012-04-26 17:26:58 +04:00
self.content = content
self.expiration = expiration
2012-04-26 17:26:58 +04:00
if isinstance(self.content, unicode):
2012-05-12 12:33:01 +04:00
self.content = self.content.encode('utf8')
2012-04-26 17:26:58 +04:00
self.expiration = self.get_expiration(expiration)
2012-04-24 22:15:38 +04:00
self.uuid = uuid or hashlib.sha1(self.content).hexdigest()
2012-04-24 22:15:38 +04:00
2012-04-26 13:38:55 +04:00
def get_expiration(self, expiration):
2012-04-24 22:15:38 +04:00
"""
Return a tuple with the date at which the Paste will expire
or if it should be destroyed after first reading.
Do not modify the value if it's already a date object or
if it's burn_after_reading
2012-04-24 22:15:38 +04:00
"""
if (isinstance(expiration, datetime) or
'burn_after_reading' in str(expiration)):
return expiration
2012-04-24 22:15:38 +04:00
try:
2012-04-26 13:38:55 +04:00
return datetime.now() + timedelta(seconds=self.DURATIONS[expiration])
2012-04-24 22:15:38 +04:00
except KeyError:
return u'burn_after_reading'
@classmethod
def build_path(cls, *dirs):
"""
Generic static content path builder. Return a path to
a location in the static content file dir.
"""
return os.path.join(settings.PASTE_FILES_ROOT, *dirs)
2012-04-24 22:15:38 +04:00
@classmethod
def get_path(cls, uuid):
"""
Return the file path of a paste given uuid
"""
return cls.build_path(uuid[:2], uuid[2:4], uuid)
@property
def path(self):
"""
Return the file path for this path. Use get_path().
"""
return self.get_path(self.uuid)
@classmethod
def load_from_file(cls, path):
"""
Return an instance of the paste object with the content of the
given file.
"""
try:
paste = open(path)
uuid = os.path.basename(path)
2012-04-26 17:26:58 +04:00
expiration = paste.next().strip()
content = paste.next().strip()
if "burn_after_reading" not in str(expiration):
2012-05-12 12:33:01 +04:00
expiration = datetime.strptime(expiration, '%Y-%m-%d %H:%M:%S.%f')
2012-04-24 22:15:38 +04:00
except StopIteration:
raise TypeError(u'File %s is malformed' % path)
except (IOError, OSError):
raise ValueError(u'Can not open paste from file %s' % path)
2012-05-14 19:17:49 +04:00
return Paste(uuid=uuid, expiration=expiration, content=content)
2012-04-24 22:15:38 +04:00
@classmethod
def load(cls, uuid):
"""
Return an instance of the paste object with the content of the
file matching this uuid. Use load_from_file() and get_path()
"""
return cls.load_from_file(cls.get_path(uuid))
2012-05-21 19:14:01 +04:00
def increment_counter(self):
"""
Increment pastes counter
"""
# simple counter incrementation
# using lock file to prevent multi access to the file
# could be improved.
path = settings.PASTE_FILES_ROOT
counter_file = os.path.join(path, 'counter')
fd = os.open(counter_file, os.O_RDWR | os.O_CREAT)
fcntl.lockf(fd, fcntl.LOCK_EX)
s = os.read(fd, 4096)
try:
n = long(float(s))
except ValueError:
raise ValueError(u"Couldn't read value from counter file " + counter_file + ", assuming 0")
n = 0
fnn = counter_file + ".new"
f = open(fnn, "w")
f.write(str(n + 1))
f.close()
os.rename(fnn, counter_file)
os.close(fd)
2012-04-24 22:15:38 +04:00
def save(self):
"""
Save the content of this paste to a file.
"""
head, tail = self.uuid[:2], self.uuid[2:4]
# the static files are saved in project_dir/static/xx/yy/uuid
# xx and yy are generated from the uuid (see get_path())
# we need to check if they are created before writting
# but since we want to prevent to many writes, we create
# an in memory cache that will hold the result of this check fo
# each worker. If the dir is not in cache, we check the FS, and
# if the dir is not in there, we create the dir
if head not in self.DIR_CACHE:
2012-04-26 23:04:36 +04:00
self.DIR_CACHE.add(head)
2012-04-24 22:15:38 +04:00
2012-04-26 23:04:36 +04:00
if not os.path.isdir(self.build_path(head)):
os.makedirs(self.build_path(head, tail))
self.DIR_CACHE.add((head, tail))
if (head, tail) not in self.DIR_CACHE:
path = self.build_path(head, tail)
self.DIR_CACHE.add((head, tail))
if not os.path.isdir(path):
os.mkdir(path)
2012-04-26 23:04:36 +04:00
# add a timestamp to burn after reading to allow
# a quick period of time where you can redirect to the page without
# deleting the paste
if self.expiration == "burn_after_reading":
self.expiration = self.expiration + '#%s' % datetime.now()
2012-05-12 12:33:01 +04:00
# write the paste
2012-05-01 17:20:10 +04:00
with open(self.path, 'w') as f:
f.write(unicode(self.expiration) + '\n')
f.write(self.content + '\n')
2012-05-12 12:33:01 +04:00
2012-04-24 22:15:38 +04:00
return self
def delete(self):
"""
Delete the paste file.
"""
os.remove(self.path)
2012-04-24 22:15:38 +04:00