2011-02-25 12:24:38 +00:00
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
# vi:si:et:sw=4:sts=4:ts=4
|
2010-11-23 09:23:40 +00:00
|
|
|
import time
|
2011-02-24 23:55:07 +00:00
|
|
|
import datetime
|
2010-11-23 09:23:40 +00:00
|
|
|
|
|
|
|
from django.db import models
|
2010-11-23 10:26:14 +00:00
|
|
|
from ox.utils import json
|
2010-11-23 09:23:40 +00:00
|
|
|
|
|
|
|
|
|
|
|
def to_json(python_object):
|
2011-02-24 23:55:07 +00:00
|
|
|
if isinstance(python_object, datetime.datetime):
|
|
|
|
return {'__class__': 'datetime.datetime',
|
|
|
|
'__value__': python_object.strftime('%Y-%m-%dT%H:%M:%SZ')}
|
|
|
|
if isinstance(python_object, time.struct_time):
|
|
|
|
return {'__class__': 'time.asctime',
|
|
|
|
'__value__': time.asctime(python_object)}
|
2011-02-25 12:24:38 +00:00
|
|
|
try:
|
|
|
|
if isinstance(python_object, bytes):
|
|
|
|
return {'__class__': 'bytes',
|
|
|
|
'__value__': list(python_object)}
|
|
|
|
except:
|
|
|
|
pass
|
2010-11-23 09:23:40 +00:00
|
|
|
raise TypeError(repr(python_object) + ' is not JSON serializable')
|
|
|
|
|
2011-02-24 23:55:07 +00:00
|
|
|
def from_json(json_object):
|
|
|
|
if '__class__' in json_object:
|
2010-11-23 09:23:40 +00:00
|
|
|
if json_object['__class__'] == 'bytes':
|
2011-02-24 23:55:07 +00:00
|
|
|
return bytes(json_object['__value__'])
|
|
|
|
if json_object['__class__'] == 'datetime.datetime':
|
|
|
|
return datetime.datetime.strptime(json_object['__value__'], '%Y-%m-%dT%H:%M:%SZ')
|
|
|
|
if json_object['__class__'] == 'time.asctime':
|
|
|
|
return time.strptime(json_object['__value__'])
|
2010-11-23 09:23:40 +00:00
|
|
|
return json_object
|
2011-02-24 23:55:07 +00:00
|
|
|
|
2010-11-23 09:23:40 +00:00
|
|
|
class DictField(models.TextField):
|
|
|
|
"""DictField is a textfield that contains JSON-serialized dictionaries."""
|
|
|
|
|
|
|
|
# Used so to_python() is called
|
|
|
|
__metaclass__ = models.SubfieldBase
|
|
|
|
|
|
|
|
def to_python(self, value):
|
|
|
|
"""Convert our string value to python after we load it from the DB"""
|
2012-09-25 11:26:50 +00:00
|
|
|
if value == None:
|
|
|
|
return value
|
2010-11-23 09:23:40 +00:00
|
|
|
if isinstance(value, dict):
|
|
|
|
return value
|
|
|
|
try:
|
|
|
|
value = json.loads(value, object_hook=from_json)
|
|
|
|
except: #this is required to load fixtures
|
|
|
|
value = eval(value)
|
|
|
|
assert isinstance(value, dict)
|
|
|
|
return value
|
|
|
|
|
2011-03-23 07:03:56 +00:00
|
|
|
def get_db_prep_save(self, value, connection):
|
2010-11-23 09:23:40 +00:00
|
|
|
"""Convert our JSON object to a string before we save"""
|
2012-09-25 11:26:50 +00:00
|
|
|
if value == None:
|
|
|
|
return value
|
2010-11-23 09:23:40 +00:00
|
|
|
assert isinstance(value, dict)
|
|
|
|
value = json.dumps(value, default=to_json)
|
2011-03-24 19:53:22 +00:00
|
|
|
return super(DictField, self).get_db_prep_save(value, connection=connection)
|
2010-11-23 09:23:40 +00:00
|
|
|
|
|
|
|
class TupleField(models.TextField):
|
|
|
|
"""TupleField is a textfield that contains JSON-serialized tuples."""
|
|
|
|
|
|
|
|
# Used so to_python() is called
|
|
|
|
__metaclass__ = models.SubfieldBase
|
|
|
|
|
|
|
|
def to_python(self, value):
|
|
|
|
"""Convert our string value to JSON after we load it from the DB"""
|
|
|
|
if isinstance(value, tuple):
|
|
|
|
return value
|
|
|
|
|
|
|
|
try:
|
|
|
|
value = json.loads(value, object_hook=from_json)
|
|
|
|
except: #this is required to load fixtures
|
|
|
|
value = eval(value)
|
|
|
|
assert isinstance(value, list)
|
|
|
|
return tuple(value)
|
|
|
|
|
2011-03-23 07:03:56 +00:00
|
|
|
def get_db_prep_save(self, value, connection):
|
2010-11-23 09:23:40 +00:00
|
|
|
"""Convert our JSON object to a string before we save"""
|
|
|
|
assert isinstance(value, tuple)
|
|
|
|
value = json.dumps(value, default=to_json)
|
2011-03-24 19:53:22 +00:00
|
|
|
return super(TupleField, self).get_db_prep_save(value, connection=connection)
|
2010-11-23 09:23:40 +00:00
|
|
|
|
|
|
|
try:
|
|
|
|
from south.modelsinspector import add_introspection_rules
|
2011-07-06 22:06:35 +00:00
|
|
|
add_introspection_rules([], ["^ox.django\.fields\.DictField"])
|
|
|
|
add_introspection_rules([], ["^ox.django\.fields\.TupleField"])
|
2010-11-23 09:23:40 +00:00
|
|
|
except:
|
|
|
|
pass
|