parameciofm/paramecio/citoplasma/datetime.py
2016-01-10 04:02:28 +01:00

299 lines
No EOL
6.1 KiB
Python

import time
from datetime import date, datetime
from babel.dates import format_date, format_datetime, format_time, get_timezone, UTC
from settings import config
from bottle import hook
from paramecio.citoplasma.sessions import get_session
from os import environ
#t=datetime.utcnow()
#format_date(t, locale='es_ES')
#format_time(t, locale='es_ES')
# eastern = get_timezone('Europe/Madrid')
# format_time(t, locale='es_ES', tzdata=eastern)
# 20141112030455
# format_datetime(t, "yyyyLLddhhmmss")
# format_datetime(t, "yyyyLLddhhmmss", tzinfo=eastern
# class datetime(year, month, day, hour=0, minute=0, second=0, microsecond=0, tzinfo=None)
# Is saved in format_datetime utc with utcnow if the field is clear.
# format_datetime(t, locale="es_ES", tzinfo=eastern)
# Next convert to
# Change
#os.environ['TZ'] = 'America/New_York'
#time.tzset()
#>>> time.timezone
#-3600
#>>> int(time.time())
#1451356872
#>>> time.mktime((2015, 12, 29, 12, 25, 36, 0, 1, 0))
#1451384736.0
# strftime
#time.gmtime()
#time.struct_time(tm_year=2015, tm_mon=12, tm_mday=30, tm_hour=2, tm_min=6, tm_sec=56, tm_wday=2, tm_yday=364, tm_isdst=0)
sql_format_time='%Y%m%d%H%M%S'
format_date_txt="%Y/%m/%d"
format_time_txt="%H:%M:%S"
timezone='Europe/Madrid'
if hasattr(config, 'format_date'):
format_date_txt=config.format_date
if hasattr(config, 'format_time'):
format_time_txt=config.format_time
if hasattr(config, 'timezone'):
timezone=config.timezone
@hook('before_request')
def set_timezone():
s=get_session()
timezone_local=timezone
if s!=None:
timezone_local=s.get('timezone', timezone)
environ['TZ']=environ.get('TZ', timezone_local)
if environ['TZ']!=timezone_local:
environ['TZ']=timezone_local
time.tzset()
#request.environ['TIMEZONE'] = request.environ['PATH_INFO'].rstrip('/')
def format_timedata(time):
year=0
month=0
day=0
hour=0
minute=0
second=0
ampm=''
try:
year=int(time[:4])
month=int(time[4:6])
day=int(time[6:8])
hour=int(time[8:10])
minute=int(time[10:12])
second=int(time[12:14])
ampm=int(time[14:16])
except:
pass
if ampm=='PM' or ampm=='pm':
if hour>0:
hour+=12
return (year, month, day, hour, minute, second)
def checkdatetime(y, m, d, h, mi, s):
try:
test=datetime.strptime(str(y)+'-'+str(m)+'-'+str(d)+' '+str(h)+'-'+str(mi)+'-'+str(s), '%Y-%m-%d %H-%M-%S')
return True
except:
return False
# Obtain the actual time in gmt
def now():
actual=datetime.today()
return actual.strftime(sql_format_time)
def obtain_timestamp(timeform):
y, m, d, h, mi, s=format_timedata(timeform)
if checkdatetime(y, m, d, h, mi, s):
return int(time.mktime((y, m, d, h, mi, s, 0, 1, 0)))
#return mktime($h, $mi, $s, $m, $d, $y);
else:
return False
def format_datetime(format_time, timestamp, func_utc_return):
timestamp=obtain_timestamp(timestamp)
if timestamp:
#offset=time.timezone
#timestamp=func_utc_return(timestamp, offset)
# Return utc
time_set=func_utc_return(timestamp)
return time.strftime(format_time, time_set)
else:
return False
def local_to_gmt(timeform):
return format_datetime(sql_format_time, timeform, time.gmtime)
def format_time(timeform):
return format_datetime(format_time_txt, timeform, time.localtime)
def format_date(timeform):
return format_datetime(format_date_txt, timeform, time.localtime)
def sum_utc(timestamp, offset):
return timestamp+offset
def substract_utc(timestamp, offset):
return timestamp-offset
"""
if hasattr(config, 'timezone'):
timezone=config.timezone
tzutc=get_timezone('UTC')
tz=get_timezone(timezone)
# In utc
def timenow():
t=datetime.utcnow()
return format_datetime(t, "yyyyLLddHHmmss", tzutc)
def timegmt(time, tzc=None):
if tzc==None:
tzc=tz
year, month, day, hour, minute, second=obtain_fields_time(time)
t=datetime(year, month, day, hour, minute, second)
return format_datetime(t, "yyyyLLddHHmmss", tzutc)
#In utc
def normalize_time(year, month, day, hour, minute, second, tz=None):
try:
t=datetime(year, month, day, hour, minute, second)
return format_datetime(t, "yyyyLLddHHmmss", tzutc)
except ValueError:
return timenow()
def obtain_fields_time(time):
#year, month, day, hour, minute, second=time
year=int(time[:4])
month=int(time[4:6])
day=int(time[6:8])
hour=int(time[8:10])
minute=int(time[10:12])
second=int(time[12:14])
return year, month, day, hour, minute, second
# In the format of tzinfo
def format_tztime(time, tzc=None):
if tzc==None:
tzc=tz
year, month, day, hour, minute, second=obtain_fields_time(time)
t=datetime(year, month, day, hour, minute, second)
return format_datetime(t, format_time, tzinfo=tzc)
def format_tzdate(time, tzc=None):
if tzc==None:
tzc=tz
year, month, day, hour, minute, second=obtain_fields_time(time)
t=datetime(year, month, day, hour, minute, second)
return format_datetime(t, format_date, tzinfo=tzc)
def local_to_utc(date, tzc=None):
if tzc==None:
tzc=tz
year, month, day, hour, minute, second=obtain_fields_time(date)
t=datetime(year, month, day, hour, minute, second, tzinfo=get_timezone('Europe/Madrid'))
print(t)
#timestamp=int(time.mktime((year, month, day, hour, minute, second, 0, 1, 0)))
#timezone_sum=time.timezone
#timestamp-=timezone_sum
print(format_datetime(t, "yyyyLLddHHmmss", tzinfo=tzutc))
# return timenow()
def obtain_timezone(timezone):
return get_timezone(timezone)
"""