* test: fix timestamp construction in several doc tests * refactor: rename date2datetime to datetime_from_date and clarify code * chore: helper to get tzinfo for PRODUCTION_TIMEZONE * fix: fix timezone handling in make_last_call() * test: fix datetime generation in doc.tests_charter * refactor: remove PRODUCTION_TIMEZONE setting Replaces the PRODUCTION_TIMEZONE setting with a constant, DEADLINE_TZINFO, in ietf.utils.timezone. * test: be more careful about timezone in tests_charter.py * test: be more careful about timezone in doc/tests.py * fix: fix timezone handling affecting doc.tests_draft * fix: fix timezone handling affecting tests_irsg_ballot.py * fix: fix timezone handling affecting tests_review.py * fix: fix timezone handling affecting last ietf.doc tests * fix: fix timezone handling affecting last ietf.group tests * fix: fix timezone handling affecting ietf.iesg tests * fix: handle timezones in get_8989_eligibility_querysets * fix: handle timezones affecting ietfauth tests * fix: return tz-aware datetime from utc_from_string * fix: specify timezone for constants in ipr_rfc_number() * fix: specify tz for ipr deadlines * fix: handle timezones affecting liaisons tests * fix: treat leap day in get_8989_eligibility_querysets() Manual cherry-pick of 248d6474 * test: treat leap day properly in nomcom tests * fix: fix timezone handling affecting nomcom tests * test: fix timezone handling in review tests * fix: fix timezone handling affecting secr.meetings tests * fix: handle both pytz and zoneinfo timezones in ietf.utils.timezone * fix: fix timezone handling affecting secr.proceedings tests * refactor: use make_aware() helper in secr.meetings tests * test: fix timezone handling in secr.telechat tests * fix: fix timezone handling affecting stats tests * fix: eliminate tz-naive helpers affecting sync email parsing * fix: include timezone data when serializing DeletedEvent data * fix: fix timezone handling affecting sync tests * style: remove unused import
26 lines
694 B
Python
26 lines
694 B
Python
import datetime
|
|
|
|
from django.db import models
|
|
|
|
def object_as_shallow_dict(obj):
|
|
"""Turn a Django model object into a dict suitable for passing to
|
|
create and for serializing to JSON."""
|
|
|
|
d = {}
|
|
for f in obj._meta.fields:
|
|
n = f.name
|
|
if isinstance(f, models.ForeignKey):
|
|
n = f.name + "_id"
|
|
|
|
v = getattr(obj, n)
|
|
if isinstance(f, models.ManyToManyField):
|
|
v = list(v.values_list("pk", flat=True))
|
|
elif isinstance(f, models.DateTimeField):
|
|
v = v.astimezone(datetime.timezone.utc).isoformat()
|
|
elif isinstance(f, models.DateField):
|
|
v = v.strftime('%Y-%m-%d')
|
|
|
|
d[n] = v
|
|
|
|
return d
|