pasteque/paste/tools.py

39 lines
972 B
Python
Raw Normal View History

2013-04-04 17:37:30 +00:00
import string
2018-05-12 21:23:57 +00:00
import random
2013-04-04 17:37:30 +00:00
import shortuuid
import os
from webtools import settings
2018-05-06 22:35:52 +00:00
from .models import Paste
2018-05-12 21:23:57 +00:00
2018-05-06 22:35:52 +00:00
def random_id(model):
"""Returns a short uuid for the slug of the given model."""
2018-05-12 21:23:57 +00:00
uuid = random.choice('0123456789') + shortuuid.uuid()
2018-05-06 22:35:52 +00:00
for i in range(3, len(uuid)):
2018-05-12 21:23:57 +00:00
potential_uuid = uuid[:i]
if not model.objects.filter(slug=potential_uuid):
return potential_uuid
2018-05-06 22:35:52 +00:00
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()