From 4100860d10e2fb015db01d22bbf3f4735bcf10ec Mon Sep 17 00:00:00 2001 From: yo mama Date: Fri, 13 Feb 2015 01:33:31 -0800 Subject: first --- impattern/im/cgi-bin/imweb/hexdirer.py | 38 ++++++++++++++++++++++++++++++++++ 1 file changed, 38 insertions(+) create mode 100755 impattern/im/cgi-bin/imweb/hexdirer.py (limited to 'impattern/im/cgi-bin/imweb/hexdirer.py') diff --git a/impattern/im/cgi-bin/imweb/hexdirer.py b/impattern/im/cgi-bin/imweb/hexdirer.py new file mode 100755 index 0000000..af6f60e --- /dev/null +++ b/impattern/im/cgi-bin/imweb/hexdirer.py @@ -0,0 +1,38 @@ +#!/usr/bin/python + +import sys +import os +import time +import string +import sha +BASE_DIR = "/var/www/asdf.us/httpdocs/im/" +OTHER_BASE = "http://asdf.us/im/" + +#THIS MODULE RETURNS A COMPLETE PATH! ALL YOU HAVE TO DO IS +#SPECIFY THE BASE DIRECTORY +#the hash works like this: +#0 is private path +#1 is the public path + + + +def hash_dir (s): + return sha.new(s).hexdigest()[:2] + +def now (): + return int(time.mktime(time.localtime())) + +def hexdir(): + time = now() + time = str(time) + ending = hash_dir(time) + dirs = [] + dirs.append(BASE_DIR+ending+'/') + dirs.append(OTHER_BASE+ending+'/') + print str(dirs) + return dirs + sys.exit() + +if __name__ == "__main__": + hexdir() + -- cgit v1.2.3-70-g09d2