profile/management/commands/seed_db.py
author Nishanth Amuluru <nishanth@fossee.in>
Fri, 07 Jan 2011 12:42:22 +0530
changeset 279 d84a3781b979
parent 263 48d68e75e9cc
child 281 20f411241654
permissions -rw-r--r--
now seed_db created notifications also

import sys
from datetime import datetime
from django.core.management.base import NoArgsCommand

from django.contrib.auth.models import User

from pytask.profile.models import Profile, Notification

def seed_db():
    """ a method to seed the database with random data """
    
    
    for i in range(21,1,-1):
        
        username = 'user'+str(i)
        email = username+'@example.com'
        password = '123456'
        dob = datetime.now()
        gender = "M"
        aboutme = "I am User"+str(i)
        address = "I live in street"+str(i)
        phonenum = "1234567890"

        new_user = User.objects.create_user(username=username,
                                            email=email,
                                            password=password)

        new_profile = Profile()
        new_profile.user = new_user
        new_profile.dob = dob
        new_profile.aboutme = aboutme
        new_profile.gender = gender
        new_profile.address = address
        new_profile.phonenum = phonenum
        if i%2 == 0:
            new_profile.rights = "CT"
        elif i%3 == 0:
            new_profile.rights = "CR"
        new_profile.save()

    new_user.is_superuser = True
    new_user.is_staff = True
    new_user.save()

    for i in range(10):
        Notification(sent_to=new_user, sent_date=datetime.now(), 
                     subject="A subject here for"+str(i),
                     message="A message with mess"+str(i)+" html inside.\
                     <br /><b>a bold text</b>"
                    ).save()

class Command(NoArgsCommand):
    
    def handle_noargs(self, **options):
        """ Just copied the code from seed_db.py """
        
        seed_db()