Sith/core/management/commands/populate.py

172 lines
8.4 KiB
Python
Raw Normal View History

2016-03-22 08:01:24 +00:00
import os
from django.core.management.base import BaseCommand, CommandError
from django.core.management import call_command
from django.conf import settings
from core.models import Group, User, Page, PageRev
from accounting.models import GeneralJournal, BankAccount, ClubAccount, Operation, AccountingType
2016-03-29 08:30:24 +00:00
from club.models import Club, Membership
2016-03-22 08:01:24 +00:00
from subscription.models import Subscription, Subscriber
2016-05-31 17:32:15 +00:00
from counter.models import Customer, ProductType, Product, Counter
2016-03-22 08:01:24 +00:00
class Command(BaseCommand):
help = "Populate a new instance of the Sith AE"
def add_arguments(self, parser):
parser.add_argument('--prod', action="store_true")
def handle(self, *args, **options):
root_path = os.path.dirname(os.path.dirname(os.path.dirname(os.path.dirname(__file__))))
2016-03-22 16:46:26 +00:00
root = User(username='root', last_name="", first_name="Bibou",
2016-03-22 08:01:24 +00:00
email="ae.info@utbm.fr",
date_of_birth="1942-06-12",
is_superuser=True, is_staff=True)
2016-03-22 16:46:26 +00:00
root.set_password("plop")
root.save()
2016-03-31 08:36:00 +00:00
for g in settings.SITH_GROUPS.values():
2016-03-29 10:45:10 +00:00
Group(id=g['id'], name=g['name']).save()
2016-03-31 08:36:00 +00:00
ae = Club(name=settings.SITH_MAIN_CLUB['name'], unix_name=settings.SITH_MAIN_CLUB['unix_name'],
address=settings.SITH_MAIN_CLUB['address'])
ae.save()
2016-03-22 16:46:26 +00:00
p = Page(name='Index')
p.set_lock(root)
p.save()
2016-03-31 08:36:00 +00:00
p.view_groups=[settings.SITH_GROUPS['public']['id']]
2016-03-22 16:46:26 +00:00
p.set_lock(root)
p.save()
PageRev(page=p, title="Wiki index", author=root, content="""
Welcome to the wiki page!
""").save()
2016-03-22 08:01:24 +00:00
# Here we add a lot of test datas, that are not necessary for the Sith, but that provide a basic development environment
if not options['prod']:
# Adding user Skia
2016-05-09 09:49:01 +00:00
skia = User(username='skia', last_name="Kia", first_name="S'",
2016-03-22 08:01:24 +00:00
email="skia@git.an",
date_of_birth="1942-06-12")
2016-05-09 09:49:01 +00:00
skia.set_password("plop")
skia.save()
skia.view_groups=[Group.objects.filter(name=settings.SITH_MAIN_MEMBERS_GROUP).first().id]
skia.save()
2016-05-03 10:06:03 +00:00
# Adding user public
public = User(username='public', last_name="Not subscribed", first_name="Public",
email="public@git.an",
date_of_birth="1942-06-12",
is_superuser=False, is_staff=False)
public.set_password("plop")
public.save()
public.view_groups=[Group.objects.filter(name=settings.SITH_MAIN_MEMBERS_GROUP).first().id]
public.save()
# Adding user Subscriber
subscriber = User(username='subscriber', last_name="User", first_name="Subscribed",
email="Subscribed@git.an",
date_of_birth="1942-06-12",
is_superuser=False, is_staff=False)
subscriber.set_password("plop")
subscriber.save()
subscriber.view_groups=[Group.objects.filter(name=settings.SITH_MAIN_MEMBERS_GROUP).first().id]
subscriber.save()
2016-05-09 09:49:01 +00:00
# Adding user Comptable
comptable = User(username='comptable', last_name="Able", first_name="Compte",
email="compta@git.an",
date_of_birth="1942-06-12",
is_superuser=False, is_staff=False)
comptable.set_password("plop")
comptable.save()
comptable.view_groups=[Group.objects.filter(name=settings.SITH_MAIN_MEMBERS_GROUP).first().id]
comptable.groups=[Group.objects.filter(name=settings.SITH_GROUPS['accounting-admin']['name']).first().id]
comptable.save()
2016-03-22 08:01:24 +00:00
# Adding user Guy
u = User(username='guy', last_name="Carlier", first_name="Guy",
email="guy@git.an",
date_of_birth="1942-06-12",
is_superuser=False, is_staff=False)
u.set_password("plop")
u.save()
2016-03-31 08:36:00 +00:00
u.view_groups=[Group.objects.filter(name=settings.SITH_MAIN_MEMBERS_GROUP).first().id]
2016-03-24 10:55:39 +00:00
u.save()
2016-03-22 08:01:24 +00:00
# Adding user Richard Batsbak
r = User(username='rbatsbak', last_name="Batsbak", first_name="Richard",
email="richard@git.an",
date_of_birth="1982-06-12")
r.set_password("plop")
r.save()
2016-03-31 08:36:00 +00:00
r.view_groups=[Group.objects.filter(name=settings.SITH_MAIN_MEMBERS_GROUP).first().id]
2016-03-24 10:55:39 +00:00
r.save()
2016-03-22 08:01:24 +00:00
# Adding syntax help page
p = Page(name='Aide_sur_la_syntaxe')
p.save()
2016-05-09 09:49:01 +00:00
PageRev(page=p, title="Aide sur la syntaxe", author=skia, content="""
2016-03-22 08:01:24 +00:00
Cette page vise à documenter la syntaxe *Markdown* utilisée sur le site.
""").save()
# Adding README
p = Page(name='README')
p.save()
2016-03-31 08:36:00 +00:00
p.view_groups=[settings.SITH_GROUPS['public']['id']]
2016-05-09 09:49:01 +00:00
p.set_lock(skia)
2016-03-22 08:01:24 +00:00
p.save()
with open(os.path.join(root_path)+'/README.md', 'r') as rm:
2016-05-09 09:49:01 +00:00
PageRev(page=p, title="REAMDE", author=skia, content=rm.read()).save()
2016-03-22 08:01:24 +00:00
# Subscription
2016-03-31 08:36:00 +00:00
## Skia
2016-05-09 09:49:01 +00:00
Subscription(member=Subscriber.objects.filter(pk=skia.pk).first(), subscription_type=list(settings.SITH_SUBSCRIPTIONS.keys())[0],
payment_method=settings.SITH_SUBSCRIPTION_PAYMENT_METHOD[0]).save()
## Comptable
Subscription(member=Subscriber.objects.filter(pk=comptable.pk).first(), subscription_type=list(settings.SITH_SUBSCRIPTIONS.keys())[0],
payment_method=settings.SITH_SUBSCRIPTION_PAYMENT_METHOD[0]).save()
2016-03-31 08:36:00 +00:00
## Richard
Subscription(member=Subscriber.objects.filter(pk=r.pk).first(), subscription_type=list(settings.SITH_SUBSCRIPTIONS.keys())[0],
payment_method=settings.SITH_SUBSCRIPTION_PAYMENT_METHOD[0]).save()
2016-05-03 10:06:03 +00:00
## Subscriber
Subscription(member=Subscriber.objects.filter(pk=subscriber.pk).first(), subscription_type=list(settings.SITH_SUBSCRIPTIONS.keys())[0],
payment_method=settings.SITH_SUBSCRIPTION_PAYMENT_METHOD[0]).save()
2016-03-22 08:01:24 +00:00
# Clubs
Club(name="Bibo'UT", unix_name="bibout",
address="46 de la Boustifaille", parent=ae).save()
guyut = Club(name="Guy'UT", unix_name="guyut",
address="42 de la Boustifaille", parent=ae)
guyut.save()
Club(name="Woenzel'UT", unix_name="woenzel",
address="Woenzel", parent=guyut).save()
Club(name="BdF", unix_name="bdf",
address="Guyéuéyuéyuyé").save()
2016-05-09 09:49:01 +00:00
Membership(user=skia, club=ae, role=3, description="").save()
2016-04-20 01:30:49 +00:00
troll = Club(name="Troll Penché", unix_name="troll",
address="Terre Du Milieu", parent=ae)
troll.save()
2016-03-22 08:01:24 +00:00
2016-05-31 17:32:15 +00:00
# Counters
Customer(user=skia, account_id="6568j", amount=0).save()
Customer(user=r, account_id="4000", amount=0).save()
2016-03-22 08:01:24 +00:00
p = ProductType(name="Bières bouteilles")
p.save()
2016-05-31 17:32:15 +00:00
barb = Product(name="Barbar", code="BARB", product_type=p, purchase_price="1.50", selling_price="1.7",
special_selling_price="1.6", club=ae)
barb.save()
cble = Product(name="Chimay Bleue", code="CBLE", product_type=p, purchase_price="1.50", selling_price="1.7",
special_selling_price="1.6", club=ae)
cble.save()
2016-03-29 08:30:24 +00:00
Product(name="Corsendonk", code="CORS", product_type=p, purchase_price="1.50", selling_price="1.7",
2016-05-09 09:49:01 +00:00
special_selling_price="1.6", club=ae).save()
2016-03-29 08:30:24 +00:00
Product(name="Carolus", code="CARO", product_type=p, purchase_price="1.50", selling_price="1.7",
2016-05-09 09:49:01 +00:00
special_selling_price="1.6", club=ae).save()
2016-05-31 17:32:15 +00:00
mde = Counter(name="MDE", club=ae, type="BAR")
mde.save()
mde.products.add(barb)
mde.products.add(cble)
mde.save()
# Accounting test values:
2016-05-09 09:49:01 +00:00
BankAccount(name="AE TG", club=ae).save()
BankAccount(name="Carte AE", club=ae).save()
ba = BankAccount(name="AE TI", club=ae)
ba.save()
ca = ClubAccount(name="Troll Penché", bank_account=ba, club=troll)
ca.save()
2016-05-09 09:49:01 +00:00
AccountingType(code=666, label="Guy credit", movement_type='credit').save()
AccountingType(code=4000, label="Guy debit", movement_type='debit').save()
2016-03-22 08:01:24 +00:00