pasteque/paste/tools.py

36 lines
881 B
Python
Raw Normal View History

2013-04-04 17:37:30 +00:00
import string
import shortuuid
import os
from webtools import settings
2018-05-06 22:35:52 +00:00
from .models import Paste
def random_id(model):
"""Returns a short uuid for the slug of the given model."""
uuid = shortuuid.uuid()
for i in range(3, len(uuid)):
if not model.objects.filter(slug=uuid[:i]):
return uuid[:i]
return uuid
2013-04-04 17:37:30 +00:00
def cache_get_filepath(key):
"""Returns cache path."""
return os.path.join(settings.CACHE_PATH, key)
def cache_exists(key):
"""Says if cache exists for key."""
return os.path.isfile(cache_get_filepath(key))
def cache_store(key, value):
"""Store cache value for key."""
with open(cache_get_filepath(key), 'w') as cache_file:
2018-05-06 21:19:49 +00:00
cache_file.write(value)
2013-04-04 17:37:30 +00:00
def cache_fetch(key):
"""Fetch cache value for key."""
with open(cache_get_filepath(key), 'r') as cache_file:
return cache_file.read()