mirror of https://github.com/snachodog/mybuddy.git
136 lines
4.1 KiB
Python
136 lines
4.1 KiB
Python
# -*- coding: utf-8 -*-
|
|
from __future__ import unicode_literals
|
|
|
|
from random import randint, choice
|
|
from datetime import timedelta
|
|
from decimal import Decimal
|
|
|
|
from django.core.management.base import BaseCommand
|
|
from django.utils import timezone
|
|
|
|
from faker import Factory
|
|
|
|
from core.models import Child, DiaperChange, Feeding, Sleep, TummyTime
|
|
|
|
|
|
class Command(BaseCommand):
|
|
help = 'Generates fake children and related entries.'
|
|
|
|
def __init__(self, *args, **kwargs):
|
|
super(Command, self).__init__(*args, **kwargs)
|
|
self.faker = Factory.create()
|
|
|
|
def add_arguments(self, parser):
|
|
parser.add_argument(
|
|
'--children',
|
|
dest='children',
|
|
default=1,
|
|
help='The number of fake children to create.'
|
|
)
|
|
parser.add_argument(
|
|
'--days',
|
|
dest='days',
|
|
default=7,
|
|
help='How many days of fake entries to create.'
|
|
)
|
|
|
|
def handle(self, *args, **kwargs):
|
|
verbosity = int(kwargs['verbosity']) or 1
|
|
children = int(kwargs['children']) or 1
|
|
days = int(kwargs['days']) or 7
|
|
|
|
for i in range(0, children):
|
|
child = Child.objects.create(
|
|
first_name=self.faker.first_name(),
|
|
last_name=self.faker.last_name(),
|
|
birth_date=self.faker.date()
|
|
)
|
|
child.save()
|
|
|
|
for j in range(0, days):
|
|
date = (timezone.localtime() - timedelta(days=j)).replace(
|
|
hour=0, minute=0, second=0)
|
|
self._add_child_data(child, date)
|
|
|
|
if verbosity > 0:
|
|
self.stdout.write(
|
|
self.style.SUCCESS('Successfully added fake data.')
|
|
)
|
|
|
|
def _add_child_data(self, child, date):
|
|
now = timezone.localtime()
|
|
|
|
for i in (range(0, randint(5, 20))):
|
|
solid = choice([True, False])
|
|
if solid:
|
|
wet = False
|
|
color = choice(
|
|
DiaperChange._meta.get_field('color').choices)[0]
|
|
else:
|
|
wet = True
|
|
color = ''
|
|
|
|
time = date + timedelta(minutes=randint(0, 60 * 24))
|
|
|
|
if time < now:
|
|
DiaperChange.objects.create(
|
|
child=child,
|
|
time=time,
|
|
wet=wet,
|
|
solid=solid,
|
|
color=color
|
|
).save()
|
|
|
|
last_end = date
|
|
while last_end < date + timedelta(days=1):
|
|
method = choice(Feeding._meta.get_field('method').choices)[0]
|
|
if method is 'bottle':
|
|
amount = Decimal('%d.%d' % (randint(0, 6), randint(0, 9)))
|
|
else:
|
|
amount = None
|
|
|
|
start = last_end + timedelta(minutes=randint(0, 60 * 2))
|
|
end = start + timedelta(minutes=randint(5, 20))
|
|
if end > now:
|
|
break
|
|
|
|
Feeding.objects.create(
|
|
child=child,
|
|
start=start,
|
|
end=end,
|
|
type=choice(Feeding._meta.get_field('type').choices)[0],
|
|
method=method,
|
|
amount=amount
|
|
).save()
|
|
last_end = end
|
|
|
|
last_end = date
|
|
while last_end < date + timedelta(days=1):
|
|
start = last_end + timedelta(minutes=randint(0, 60 * 2))
|
|
end = start + timedelta(minutes=randint(10, 60 * 3))
|
|
if end > now:
|
|
break
|
|
|
|
Sleep.objects.create(child=child, start=start, end=end).save()
|
|
last_end = end
|
|
|
|
last_end = date
|
|
while last_end < date + timedelta(days=1):
|
|
if choice([True, False]):
|
|
milestone = self.faker.sentence()
|
|
else:
|
|
milestone = ''
|
|
|
|
start = last_end + timedelta(minutes=randint(0, 60 * 2))
|
|
end = start + timedelta(minutes=randint(1, 10))
|
|
if end > now:
|
|
break
|
|
|
|
TummyTime.objects.create(
|
|
child=child,
|
|
start=start,
|
|
end=end,
|
|
milestone=milestone
|
|
).save()
|
|
last_end = end
|