2013-09-29 00:09:02 +03:00
|
|
|
import re
|
|
|
|
import os
|
|
|
|
|
|
|
|
|
2013-09-30 17:34:16 +03:00
|
|
|
def mkdir_safe(path):
|
|
|
|
if path and not(os.path.exists(path)):
|
|
|
|
os.makedirs(path)
|
|
|
|
return path
|
|
|
|
|
|
|
|
|
2013-09-29 00:09:02 +03:00
|
|
|
def extract_path(file_path):
|
|
|
|
if not file_path:
|
|
|
|
return None
|
|
|
|
last_slash = file_path.rindex("/")
|
|
|
|
if last_slash:
|
|
|
|
return file_path[0, last_slash]
|
|
|
|
|
|
|
|
|
|
|
|
def clean_path(path):
|
|
|
|
if path:
|
|
|
|
if path[0] != '/':
|
|
|
|
path.insert(0, '/')
|
2013-10-01 07:10:10 +03:00
|
|
|
return re.sub(r"//+", '/', path)
|
2013-09-29 00:09:02 +03:00
|
|
|
|
|
|
|
|
|
|
|
def extract_name(file_path):
|
|
|
|
if file_path[-1] == "/":
|
|
|
|
return None
|
|
|
|
return os.path.basename(file_path)
|
|
|
|
|
|
|
|
|
2013-10-01 07:10:10 +03:00
|
|
|
def remove_ext(path):
|
|
|
|
return os.path.splitext(path)[0]
|
|
|
|
|
|
|
|
|
2013-09-29 00:09:02 +03:00
|
|
|
def clean_url(url):
|
|
|
|
if not url:
|
|
|
|
return url
|
|
|
|
|
|
|
|
url = url.replace('%2F', '/')
|
|
|
|
url = re.sub(r"^/+", "", url)
|
|
|
|
return re.sub(r"//+", '/', url)
|
2013-10-01 07:10:10 +03:00
|
|
|
|
|
|
|
|
|
|
|
def to_canonical(s):
|
|
|
|
"""
|
|
|
|
Double space -> single dash
|
|
|
|
Double dash -> single dash
|
|
|
|
Remove all non alphanumeric and dash
|
|
|
|
Limit to first 64 chars
|
|
|
|
"""
|
|
|
|
s = s.encode('ascii', 'ignore')
|
|
|
|
s = str(s)
|
|
|
|
s = re.sub(r"\s\s+", "-", s)
|
|
|
|
s = re.sub(r"\-\-+", "-", s)
|
|
|
|
s = re.sub(r"[^a-zA-Z0-9\-]", "", s)
|
|
|
|
s = s[:64]
|
|
|
|
return s
|