2016-09-30 10:46:05 +00:00
|
|
|
from collections import namedtuple
|
|
|
|
from datetime import datetime
|
|
|
|
from datetime import timedelta
|
|
|
|
from decimal import Decimal
|
|
|
|
from django.contrib.auth.models import Group
|
|
|
|
from django.core.exceptions import ObjectDoesNotExist
|
2017-03-05 07:34:15 +00:00
|
|
|
from django.core.management.base import BaseCommand
|
2016-09-30 10:46:05 +00:00
|
|
|
|
|
|
|
from registrasion.models import inventory as inv
|
|
|
|
from registrasion.models import conditions as cond
|
|
|
|
from symposion import proposals
|
|
|
|
|
2017-03-05 07:34:15 +00:00
|
|
|
|
2016-09-30 10:46:05 +00:00
|
|
|
class Command(BaseCommand):
|
2017-03-05 07:34:15 +00:00
|
|
|
|
2017-09-27 13:46:13 +00:00
|
|
|
help = 'Populates the inventory with the LCA2018 inventory model'
|
2016-09-30 10:46:05 +00:00
|
|
|
|
|
|
|
def add_arguments(self, parser):
|
|
|
|
pass
|
|
|
|
|
|
|
|
def handle(self, *args, **options):
|
|
|
|
|
|
|
|
kinds = []
|
|
|
|
for i in ("Talk", "Tutorial", "Miniconf"):
|
|
|
|
kinds.append(proposals.models.ProposalKind.objects.get(name=i))
|
|
|
|
self.main_conference_proposals = kinds
|
|
|
|
|
|
|
|
self.populate_groups()
|
|
|
|
self.populate_inventory()
|
|
|
|
self.populate_restrictions()
|
|
|
|
self.populate_discounts()
|
|
|
|
|
|
|
|
def populate_groups(self):
|
|
|
|
self.group_team = self.find_or_make(
|
|
|
|
Group,
|
|
|
|
("name", ),
|
|
|
|
name="Conference organisers",
|
|
|
|
)
|
|
|
|
self.group_volunteers = self.find_or_make(
|
|
|
|
Group,
|
|
|
|
("name", ),
|
|
|
|
name="Conference volunteers",
|
|
|
|
)
|
|
|
|
self.group_unpublish = self.find_or_make(
|
|
|
|
Group,
|
|
|
|
("name", ),
|
|
|
|
name="Can see unpublished products",
|
|
|
|
)
|
2017-09-24 02:30:35 +00:00
|
|
|
self.group_prepurchase = self.find_or_make(
|
|
|
|
Group,
|
|
|
|
("name", ),
|
|
|
|
name="Pre-purchase",
|
|
|
|
)
|
2016-09-30 10:46:05 +00:00
|
|
|
|
|
|
|
def populate_inventory(self):
|
|
|
|
# Categories
|
|
|
|
|
|
|
|
self.ticket = self.find_or_make(
|
|
|
|
inv.Category,
|
|
|
|
("name",),
|
|
|
|
name="Ticket",
|
|
|
|
description="Each type of ticket has different included products. "
|
|
|
|
"For details of what products are included, see our "
|
2017-09-24 02:30:35 +00:00
|
|
|
"<a href='https://lca2018.org/attend'>registration page</a>",
|
2017-03-05 07:34:15 +00:00
|
|
|
required=True,
|
2016-09-30 10:46:05 +00:00
|
|
|
render_type=inv.Category.RENDER_TYPE_RADIO,
|
|
|
|
limit_per_user=1,
|
|
|
|
order=1,
|
|
|
|
)
|
2017-10-01 08:14:37 +00:00
|
|
|
self.terms = self.find_or_make(
|
|
|
|
inv.Category,
|
|
|
|
("name",),
|
|
|
|
name="Terms, Conditions, and Code of Conduct Acceptance",
|
|
|
|
description="I agree to the "
|
|
|
|
"<a href=\"https://linux.conf.au/attend/terms-and-conditions\"> "
|
|
|
|
"terms and conditions of attendance</a>, and I have read, "
|
|
|
|
"understood, and agree to act according to the standards set "
|
|
|
|
"forth in our <a href=\"https://linux.conf.au/attend/code-of-conduct\">"
|
|
|
|
"Code of Conduct</a>.",
|
|
|
|
required=True,
|
|
|
|
render_type=inv.Category.RENDER_TYPE_CHECKBOX,
|
|
|
|
order=10,
|
|
|
|
)
|
2016-09-30 10:46:05 +00:00
|
|
|
self.penguin_dinner = self.find_or_make(
|
|
|
|
inv.Category,
|
|
|
|
("name",),
|
|
|
|
name="Penguin Dinner Ticket",
|
|
|
|
description="Tickets to our conference dinner on the evening of "
|
2017-09-24 02:30:35 +00:00
|
|
|
"Wednesday 24 January. All attendees may purchase "
|
2016-09-30 10:46:05 +00:00
|
|
|
"seats at the dinner, even if a dinner ticket is not "
|
|
|
|
"included in your conference ticket price.",
|
2017-03-05 07:34:15 +00:00
|
|
|
required=False,
|
2016-09-30 10:46:05 +00:00
|
|
|
render_type=inv.Category.RENDER_TYPE_QUANTITY,
|
|
|
|
limit_per_user=10,
|
2017-10-01 08:14:37 +00:00
|
|
|
order=20,
|
2016-09-30 10:46:05 +00:00
|
|
|
)
|
|
|
|
self.speakers_dinner_ticket = self.find_or_make(
|
|
|
|
inv.Category,
|
|
|
|
("name",),
|
|
|
|
name="Speakers' Dinner Ticket",
|
|
|
|
description="Tickets to our exclusive Speakers' Dinner on the "
|
2017-09-24 02:30:35 +00:00
|
|
|
"evening of Tuesday 23 January. You may purchase up "
|
|
|
|
"to 5 tickets in total, for significant others and "
|
2016-09-30 10:46:05 +00:00
|
|
|
"family members.",
|
2017-03-05 07:34:15 +00:00
|
|
|
required=False,
|
2016-09-30 10:46:05 +00:00
|
|
|
render_type=inv.Category.RENDER_TYPE_QUANTITY,
|
|
|
|
limit_per_user=5,
|
2017-10-01 08:14:37 +00:00
|
|
|
order=30,
|
2016-09-30 10:46:05 +00:00
|
|
|
)
|
2017-09-24 02:30:35 +00:00
|
|
|
self.pdns_category = self.find_or_make(
|
2016-09-30 10:46:05 +00:00
|
|
|
inv.Category,
|
|
|
|
("name",),
|
2017-09-24 02:30:35 +00:00
|
|
|
name="Professional Delegates Networking Session Ticket",
|
|
|
|
description="Tickets to our Professional Delegates Networking session."
|
|
|
|
"This event will be held on the evening of Thursday 25th "
|
2016-09-30 10:46:05 +00:00
|
|
|
"January, and is restricted to Professional Ticket "
|
|
|
|
"holders, speakers, miniconf organisers, and invited "
|
|
|
|
"guests.",
|
2017-03-05 07:34:15 +00:00
|
|
|
required=False,
|
2016-09-30 10:46:05 +00:00
|
|
|
render_type=inv.Category.RENDER_TYPE_RADIO,
|
|
|
|
limit_per_user=1,
|
2017-10-01 08:14:37 +00:00
|
|
|
order=40,
|
2016-09-30 10:46:05 +00:00
|
|
|
)
|
|
|
|
self.t_shirt = self.find_or_make(
|
|
|
|
inv.Category,
|
|
|
|
("name",),
|
2017-09-30 13:40:46 +00:00
|
|
|
name="Shirt",
|
|
|
|
description="Commemorative conference polo shirts, featuring the "
|
2017-09-24 02:30:35 +00:00
|
|
|
"linux.conf.au 2018 artwork.",
|
2017-03-05 07:34:15 +00:00
|
|
|
required=False,
|
2016-09-30 10:46:05 +00:00
|
|
|
render_type=inv.Category.RENDER_TYPE_ITEM_QUANTITY,
|
2017-10-01 08:14:37 +00:00
|
|
|
order=50,
|
2016-09-30 10:46:05 +00:00
|
|
|
)
|
2017-09-24 02:30:35 +00:00
|
|
|
# self.accommodation = self.find_or_make(
|
|
|
|
# inv.Category,
|
|
|
|
# ("name",),
|
|
|
|
# name="Accommodation at University of Tasmania",
|
|
|
|
# description="Accommodation at the University of Tasmania colleges "
|
|
|
|
# "and apartments. You can come back and book your "
|
|
|
|
# "accommodation at a later date, provided rooms remain "
|
|
|
|
# "available. Rooms may only be booked from Sunday 15 "
|
|
|
|
# "January--Saturday 21 January. If you wish to stay "
|
|
|
|
# "for only a part of the 6-day period, you must book "
|
|
|
|
# "accommodation for the full 6-day period. Rooms at "
|
|
|
|
# "other hotels, including Wrest Point can be booked "
|
|
|
|
# "elsewhere. For full details, see [LINK]our "
|
|
|
|
# "accommodation page.[/LINK]",
|
|
|
|
# required=False,
|
|
|
|
# render_type=inv.Category.RENDER_TYPE_RADIO,
|
|
|
|
# limit_per_user=1,
|
|
|
|
# order=50,
|
|
|
|
# )
|
2016-09-30 10:46:05 +00:00
|
|
|
self.extras = self.find_or_make(
|
|
|
|
inv.Category,
|
|
|
|
("name",),
|
|
|
|
name="Extras",
|
|
|
|
description="Other items that can improve your conference "
|
|
|
|
"experience.",
|
2017-03-05 07:34:15 +00:00
|
|
|
required=False,
|
2016-09-30 10:46:05 +00:00
|
|
|
render_type=inv.Category.RENDER_TYPE_QUANTITY,
|
|
|
|
order=60,
|
|
|
|
)
|
|
|
|
|
|
|
|
# Tickets
|
|
|
|
|
|
|
|
self.ticket_fairy = self.find_or_make(
|
|
|
|
inv.Product,
|
|
|
|
("name", "category",),
|
|
|
|
category=self.ticket,
|
|
|
|
name="Fairy Penguin Sponsor",
|
|
|
|
price=Decimal("1999.00"),
|
|
|
|
reservation_duration=hours(24),
|
|
|
|
order=1,
|
|
|
|
)
|
|
|
|
self.ticket_professional = self.find_or_make(
|
|
|
|
inv.Product,
|
|
|
|
("name", "category",),
|
|
|
|
category=self.ticket,
|
|
|
|
name="Professional",
|
|
|
|
price=Decimal("999.00"),
|
|
|
|
reservation_duration=hours(24),
|
|
|
|
order=10,
|
|
|
|
)
|
|
|
|
self.ticket_hobbyist = self.find_or_make(
|
|
|
|
inv.Product,
|
|
|
|
("name", "category",),
|
|
|
|
category=self.ticket,
|
|
|
|
name="Hobbyist",
|
|
|
|
price=Decimal("449.00"),
|
|
|
|
reservation_duration=hours(24),
|
|
|
|
order=20,
|
|
|
|
)
|
|
|
|
self.ticket_student = self.find_or_make(
|
|
|
|
inv.Product,
|
|
|
|
("name", "category",),
|
|
|
|
category=self.ticket,
|
|
|
|
name="Student",
|
2017-09-24 02:30:35 +00:00
|
|
|
price=Decimal("149.00"),
|
2016-09-30 10:46:05 +00:00
|
|
|
reservation_duration=hours(24),
|
|
|
|
order=30,
|
|
|
|
)
|
|
|
|
self.ticket_miniconfs_mt = self.find_or_make(
|
|
|
|
inv.Product,
|
|
|
|
("name", "category",),
|
|
|
|
category=self.ticket,
|
|
|
|
name="Monday and Tuesday Only",
|
|
|
|
price=Decimal("198.00"),
|
|
|
|
reservation_duration=hours(24),
|
|
|
|
order=40,
|
|
|
|
)
|
|
|
|
self.ticket_miniconfs_mon = self.find_or_make(
|
|
|
|
inv.Product,
|
|
|
|
("name", "category",),
|
|
|
|
category=self.ticket,
|
|
|
|
name="Monday Only",
|
|
|
|
price=Decimal("99.00"),
|
|
|
|
reservation_duration=hours(24),
|
|
|
|
order=42,
|
|
|
|
)
|
|
|
|
self.ticket_miniconfs_tue = self.find_or_make(
|
|
|
|
inv.Product,
|
|
|
|
("name", "category",),
|
|
|
|
category=self.ticket,
|
|
|
|
name="Tuesday Only",
|
|
|
|
price=Decimal("99.00"),
|
|
|
|
reservation_duration=hours(24),
|
|
|
|
order=44,
|
|
|
|
)
|
|
|
|
self.ticket_speaker = self.find_or_make(
|
|
|
|
inv.Product,
|
|
|
|
("name", "category",),
|
|
|
|
category=self.ticket,
|
|
|
|
name="Speaker",
|
|
|
|
price=Decimal("00.00"),
|
|
|
|
reservation_duration=hours(24),
|
|
|
|
order=50,
|
|
|
|
)
|
|
|
|
self.ticket_media = self.find_or_make(
|
|
|
|
inv.Product,
|
|
|
|
("name", "category",),
|
|
|
|
category=self.ticket,
|
|
|
|
name="Media",
|
|
|
|
price=Decimal("00.00"),
|
|
|
|
reservation_duration=hours(24),
|
|
|
|
order=60,
|
|
|
|
)
|
|
|
|
self.ticket_sponsor = self.find_or_make(
|
|
|
|
inv.Product,
|
|
|
|
("name", "category",),
|
|
|
|
category=self.ticket,
|
|
|
|
name="Sponsor",
|
|
|
|
price=Decimal("00.00"),
|
|
|
|
reservation_duration=hours(24),
|
|
|
|
order=70,
|
|
|
|
)
|
|
|
|
self.ticket_team = self.find_or_make(
|
|
|
|
inv.Product,
|
|
|
|
("name", "category",),
|
|
|
|
category=self.ticket,
|
|
|
|
name="Conference Organiser",
|
|
|
|
price=Decimal("00.00"),
|
|
|
|
reservation_duration=hours(24),
|
|
|
|
order=80,
|
|
|
|
)
|
|
|
|
self.ticket_volunteer = self.find_or_make(
|
|
|
|
inv.Product,
|
|
|
|
("name", "category",),
|
|
|
|
category=self.ticket,
|
|
|
|
name="Conference Volunteer",
|
|
|
|
price=Decimal("00.00"),
|
|
|
|
reservation_duration=hours(24),
|
|
|
|
order=90,
|
|
|
|
)
|
|
|
|
|
2017-10-01 08:14:37 +00:00
|
|
|
# Agreements
|
|
|
|
self.accept_terms = self.find_or_make(
|
|
|
|
inv.Product,
|
|
|
|
("name","category",),
|
|
|
|
category = self.terms,
|
|
|
|
name="I Accept",
|
|
|
|
price=Decimal("00.00"),
|
|
|
|
reservation_duration=hours(24),
|
|
|
|
order=10,
|
|
|
|
limit_per_user=1,
|
|
|
|
)
|
2016-09-30 10:46:05 +00:00
|
|
|
# Penguin dinner
|
|
|
|
|
|
|
|
self.penguin_adult = self.find_or_make(
|
|
|
|
inv.Product,
|
|
|
|
("name", "category",),
|
|
|
|
category=self.penguin_dinner,
|
|
|
|
name="Adult",
|
|
|
|
description="Includes an adult's meal and full beverage service.",
|
|
|
|
price=Decimal("95.00"),
|
|
|
|
reservation_duration=hours(1),
|
|
|
|
order=10,
|
|
|
|
)
|
|
|
|
self.penguin_child = self.find_or_make(
|
|
|
|
inv.Product,
|
|
|
|
("name", "category",),
|
|
|
|
category=self.penguin_dinner,
|
|
|
|
name="Child",
|
2017-09-24 02:30:35 +00:00
|
|
|
description="Children 14 and under. Includes a child's meal and soft drink service.",
|
2016-09-30 10:46:05 +00:00
|
|
|
price=Decimal("50.00"),
|
|
|
|
reservation_duration=hours(1),
|
|
|
|
order=20,
|
|
|
|
)
|
|
|
|
self.penguin_infant = self.find_or_make(
|
|
|
|
inv.Product,
|
|
|
|
("name", "category",),
|
|
|
|
category=self.penguin_dinner,
|
|
|
|
name="Infant",
|
|
|
|
description="Includes no food or beverage service.",
|
|
|
|
price=Decimal("00.00"),
|
|
|
|
reservation_duration=hours(1),
|
|
|
|
order=30,
|
|
|
|
)
|
|
|
|
|
|
|
|
# Speakers' dinner
|
|
|
|
|
|
|
|
self.speakers_adult = self.find_or_make(
|
|
|
|
inv.Product,
|
|
|
|
("name", "category",),
|
|
|
|
category=self.speakers_dinner_ticket,
|
|
|
|
name="Adult",
|
|
|
|
description="Includes an adult's meal and full beverage service.",
|
|
|
|
price=Decimal("100.00"),
|
|
|
|
reservation_duration=hours(1),
|
|
|
|
order=10,
|
|
|
|
)
|
|
|
|
self.speakers_child = self.find_or_make(
|
|
|
|
inv.Product,
|
|
|
|
("name", "category",),
|
|
|
|
category=self.speakers_dinner_ticket,
|
|
|
|
name="Child",
|
2017-09-24 02:30:35 +00:00
|
|
|
description="Children 14 and under. Includes a child's meal and soft drink service.",
|
2016-09-30 10:46:05 +00:00
|
|
|
price=Decimal("60.00"),
|
|
|
|
reservation_duration=hours(1),
|
|
|
|
order=20,
|
|
|
|
)
|
|
|
|
self.speaker_infant = self.find_or_make(
|
|
|
|
inv.Product,
|
|
|
|
("name", "category",),
|
|
|
|
category=self.speakers_dinner_ticket,
|
|
|
|
name="Infant",
|
|
|
|
description="Infant must be seated in an adult's lap. No food or "
|
|
|
|
"beverage service.",
|
|
|
|
price=Decimal("00.00"),
|
|
|
|
reservation_duration=hours(1),
|
|
|
|
order=30,
|
|
|
|
)
|
|
|
|
|
2017-09-24 02:30:35 +00:00
|
|
|
# PDNS
|
2016-09-30 10:46:05 +00:00
|
|
|
|
|
|
|
self.pdns = self.find_or_make(
|
|
|
|
inv.Product,
|
|
|
|
("name", "category",),
|
2017-09-24 02:30:35 +00:00
|
|
|
category=self.pdns_category,
|
2016-09-30 10:46:05 +00:00
|
|
|
name="Conference Attendee",
|
|
|
|
price=Decimal("00.00"),
|
|
|
|
reservation_duration=hours(1),
|
|
|
|
limit_per_user=1,
|
|
|
|
order=10,
|
|
|
|
)
|
|
|
|
|
2017-09-24 02:30:35 +00:00
|
|
|
# # Accommodation
|
2016-09-30 10:46:05 +00:00
|
|
|
|
2017-09-24 02:30:35 +00:00
|
|
|
# self.accommodation_week = self.find_or_make(
|
|
|
|
# inv.Product,
|
|
|
|
# ("name", "category",),
|
|
|
|
# category=self.accommodation,
|
|
|
|
# name="Single Bedroom with Shared Bathrooms, includes full "
|
|
|
|
# "breakfast, Sunday 15 January 2017--Saturday 21 January 2017",
|
|
|
|
# price=Decimal("396.00"),
|
|
|
|
# reservation_duration=hours(24),
|
|
|
|
# limit_per_user=1,
|
|
|
|
# order=10,
|
|
|
|
# )
|
2016-09-30 10:46:05 +00:00
|
|
|
|
|
|
|
# Extras
|
|
|
|
|
|
|
|
self.carbon_offset = self.find_or_make(
|
|
|
|
inv.Product,
|
|
|
|
("name", "category",),
|
|
|
|
category=self.extras,
|
2017-09-30 13:40:16 +00:00
|
|
|
name="Offset the carbon pollution generated by your attendance, "
|
2016-09-30 10:46:05 +00:00
|
|
|
"thanks to fifteen trees.",
|
|
|
|
price=Decimal("5.00"),
|
|
|
|
reservation_duration=hours(1),
|
|
|
|
order=10,
|
|
|
|
)
|
|
|
|
|
|
|
|
# Shirts
|
|
|
|
ShirtGroup = namedtuple("ShirtGroup", ("prefix", "sizes"))
|
|
|
|
shirt_names = {
|
|
|
|
"mens": ShirtGroup(
|
2017-09-30 13:40:46 +00:00
|
|
|
"Men's/Straight Cut",
|
|
|
|
("S", "M", "L", "XL", "2XL", "3XL", "4XL"),
|
2016-09-30 10:46:05 +00:00
|
|
|
),
|
2017-09-24 02:30:35 +00:00
|
|
|
"womens": ShirtGroup(
|
2016-09-30 10:46:05 +00:00
|
|
|
"Women's Classic Fit",
|
2017-09-30 13:40:46 +00:00
|
|
|
("8", "10", "12", "14", "16", "18"),
|
2016-09-30 10:46:05 +00:00
|
|
|
),
|
|
|
|
}
|
|
|
|
|
|
|
|
self.shirts = {}
|
|
|
|
order = 0
|
|
|
|
for name, group in shirt_names.items():
|
|
|
|
self.shirts[name] = {}
|
|
|
|
prefix = group.prefix
|
|
|
|
for size in group.sizes:
|
|
|
|
product_name = "%s %s" % (prefix, size)
|
|
|
|
order += 10
|
|
|
|
self.shirts[name][size] = self.find_or_make(
|
|
|
|
inv.Product,
|
|
|
|
("name", "category",),
|
|
|
|
name=product_name,
|
|
|
|
category=self.t_shirt,
|
|
|
|
price=Decimal("25.00"),
|
|
|
|
reservation_duration=hours(1),
|
|
|
|
order=order,
|
|
|
|
)
|
|
|
|
|
|
|
|
def populate_restrictions(self):
|
|
|
|
|
|
|
|
# Hide the products that will eventually need a voucher
|
|
|
|
hide_voucher_products = self.find_or_make(
|
|
|
|
cond.GroupMemberFlag,
|
|
|
|
("description", ),
|
|
|
|
description="Can see hidden products",
|
|
|
|
condition=cond.FlagBase.ENABLE_IF_TRUE,
|
|
|
|
)
|
|
|
|
hide_voucher_products.group.set([self.group_unpublish])
|
|
|
|
hide_voucher_products.products.set([
|
|
|
|
self.ticket_media,
|
|
|
|
self.ticket_sponsor,
|
2017-09-24 02:30:35 +00:00
|
|
|
self.ticket_miniconfs_mt,
|
|
|
|
self.ticket_miniconfs_mon,
|
|
|
|
self.ticket_miniconfs_tue,
|
|
|
|
])
|
|
|
|
|
|
|
|
hide_all_tickets = self.find_or_make(
|
|
|
|
cond.GroupMemberFlag,
|
|
|
|
("description", ),
|
|
|
|
description="Can pre-purchase tickets",
|
|
|
|
condition=cond.FlagBase.ENABLE_IF_TRUE,
|
|
|
|
)
|
|
|
|
hide_all_tickets.group.set([self.group_prepurchase])
|
|
|
|
hide_all_tickets.products.set([
|
|
|
|
self.ticket_fairy,
|
|
|
|
self.ticket_professional,
|
|
|
|
self.ticket_hobbyist,
|
|
|
|
self.ticket_student,
|
2016-09-30 10:46:05 +00:00
|
|
|
])
|
|
|
|
|
|
|
|
# Set limits.
|
|
|
|
public_ticket_cap = self.find_or_make(
|
|
|
|
cond.TimeOrStockLimitFlag,
|
|
|
|
("description", ),
|
|
|
|
description="Public ticket cap",
|
|
|
|
condition=cond.FlagBase.DISABLE_IF_FALSE,
|
2017-09-24 02:30:35 +00:00
|
|
|
limit=600,
|
2016-09-30 10:46:05 +00:00
|
|
|
)
|
|
|
|
public_ticket_cap.products.set([
|
|
|
|
self.ticket_fairy,
|
|
|
|
self.ticket_professional,
|
|
|
|
self.ticket_hobbyist,
|
|
|
|
self.ticket_student,
|
|
|
|
])
|
|
|
|
|
2017-09-24 02:30:35 +00:00
|
|
|
student_ticket_cap = self.find_or_make(
|
2016-09-30 10:46:05 +00:00
|
|
|
cond.TimeOrStockLimitFlag,
|
|
|
|
("description", ),
|
2017-09-24 02:30:35 +00:00
|
|
|
description="Student ticket cap",
|
2016-09-30 10:46:05 +00:00
|
|
|
condition=cond.FlagBase.DISABLE_IF_FALSE,
|
2017-09-24 02:30:35 +00:00
|
|
|
limit=100,
|
2016-09-30 10:46:05 +00:00
|
|
|
)
|
2017-09-24 02:30:35 +00:00
|
|
|
public_ticket_cap.products.set([
|
|
|
|
self.ticket_fairy,
|
|
|
|
self.ticket_professional,
|
|
|
|
self.ticket_hobbyist,
|
|
|
|
self.ticket_student,
|
|
|
|
])
|
|
|
|
|
|
|
|
sponsor_ticket_cap = self.find_or_make(
|
|
|
|
cond.TimeOrStockLimitFlag,
|
|
|
|
("description", ),
|
|
|
|
description="Reserved for sponsors",
|
|
|
|
condition=cond.FlagBase.DISABLE_IF_FALSE,
|
|
|
|
limit=70,
|
|
|
|
)
|
|
|
|
sponsor_ticket_cap.products.set([
|
2016-09-30 10:46:05 +00:00
|
|
|
self.ticket_sponsor,
|
2017-09-24 02:30:35 +00:00
|
|
|
])
|
|
|
|
|
|
|
|
volunteer_ticket_cap = self.find_or_make(
|
|
|
|
cond.TimeOrStockLimitFlag,
|
|
|
|
("description", ),
|
|
|
|
description="Reserrved for volunteers and organizers",
|
|
|
|
condition=cond.FlagBase.DISABLE_IF_FALSE,
|
|
|
|
limit=62,
|
|
|
|
)
|
|
|
|
volunteer_ticket_cap.products.set([
|
2016-09-30 10:46:05 +00:00
|
|
|
self.ticket_team,
|
|
|
|
self.ticket_volunteer,
|
|
|
|
])
|
|
|
|
|
2017-09-24 02:30:35 +00:00
|
|
|
media_ticket_cap = self.find_or_make(
|
|
|
|
cond.TimeOrStockLimitFlag,
|
|
|
|
("description", ),
|
|
|
|
description="Reserved for media",
|
|
|
|
condition=cond.FlagBase.DISABLE_IF_FALSE,
|
|
|
|
limit=10,
|
|
|
|
)
|
|
|
|
media_ticket_cap.products.set([
|
|
|
|
self.ticket_media,
|
|
|
|
])
|
|
|
|
|
|
|
|
speaker_ticket_cap = self.find_or_make(
|
|
|
|
cond.TimeOrStockLimitFlag,
|
|
|
|
("description", ),
|
|
|
|
description="Reserved for speakers (and miniconf organisers)",
|
|
|
|
condition=cond.FlagBase.DISABLE_IF_FALSE,
|
|
|
|
limit=104,
|
|
|
|
)
|
|
|
|
speaker_ticket_cap.products.set([
|
|
|
|
self.ticket_speaker,
|
|
|
|
])
|
|
|
|
|
2016-09-30 10:46:05 +00:00
|
|
|
penguin_dinner_cap = self.find_or_make(
|
|
|
|
cond.TimeOrStockLimitFlag,
|
|
|
|
("description", ),
|
|
|
|
description="Penguin dinner ticket cap",
|
|
|
|
condition=cond.FlagBase.DISABLE_IF_FALSE,
|
2017-09-24 02:30:35 +00:00
|
|
|
limit=900,
|
2016-09-30 10:46:05 +00:00
|
|
|
)
|
|
|
|
penguin_dinner_cap.categories.set([
|
|
|
|
self.penguin_dinner,
|
|
|
|
])
|
|
|
|
|
|
|
|
speakers_dinner_cap = self.find_or_make(
|
|
|
|
cond.TimeOrStockLimitFlag,
|
|
|
|
("description", ),
|
|
|
|
description="Speakers dinner ticket cap",
|
|
|
|
condition=cond.FlagBase.DISABLE_IF_FALSE,
|
2017-09-24 02:30:35 +00:00
|
|
|
limit=135,
|
2016-09-30 10:46:05 +00:00
|
|
|
)
|
|
|
|
speakers_dinner_cap.categories.set([
|
|
|
|
self.speakers_dinner_ticket,
|
|
|
|
])
|
|
|
|
|
|
|
|
pdns_cap = self.find_or_make(
|
|
|
|
cond.TimeOrStockLimitFlag,
|
|
|
|
("description", ),
|
2017-09-24 02:30:35 +00:00
|
|
|
description="PDNS ticket cap",
|
2016-09-30 10:46:05 +00:00
|
|
|
condition=cond.FlagBase.DISABLE_IF_FALSE,
|
|
|
|
limit=400,
|
|
|
|
)
|
|
|
|
pdns_cap.categories.set([
|
2017-09-24 02:30:35 +00:00
|
|
|
self.pdns_category,
|
2016-09-30 10:46:05 +00:00
|
|
|
])
|
|
|
|
|
|
|
|
# Volunteer tickets are for volunteers only
|
|
|
|
volunteers = self.find_or_make(
|
|
|
|
cond.GroupMemberFlag,
|
|
|
|
("description", ),
|
|
|
|
description="Volunteer tickets",
|
|
|
|
condition=cond.FlagBase.ENABLE_IF_TRUE,
|
|
|
|
)
|
|
|
|
volunteers.group.set([self.group_volunteers])
|
|
|
|
volunteers.products.set([
|
|
|
|
self.ticket_volunteer,
|
|
|
|
])
|
|
|
|
|
|
|
|
# Team tickets are for team members only
|
|
|
|
team = self.find_or_make(
|
|
|
|
cond.GroupMemberFlag,
|
|
|
|
("description", ),
|
|
|
|
description="Team tickets",
|
|
|
|
condition=cond.FlagBase.ENABLE_IF_TRUE,
|
|
|
|
)
|
|
|
|
team.group.set([self.group_team])
|
|
|
|
team.products.set([
|
|
|
|
self.ticket_team,
|
|
|
|
])
|
|
|
|
|
|
|
|
# Speaker tickets are for primary speakers only
|
|
|
|
speaker_tickets = self.find_or_make(
|
|
|
|
cond.SpeakerFlag,
|
|
|
|
("description", ),
|
|
|
|
description="Speaker tickets",
|
|
|
|
condition=cond.FlagBase.ENABLE_IF_TRUE,
|
|
|
|
is_presenter=True,
|
|
|
|
is_copresenter=False,
|
|
|
|
)
|
|
|
|
speaker_tickets.proposal_kind.set(self.main_conference_proposals)
|
|
|
|
speaker_tickets.products.set([self.ticket_speaker, ])
|
|
|
|
|
|
|
|
# Speaker dinner tickets are for primary and secondary speakers
|
|
|
|
speaker_dinner_tickets = self.find_or_make(
|
|
|
|
cond.SpeakerFlag,
|
|
|
|
("description", ),
|
|
|
|
description="Speaker dinner tickets",
|
|
|
|
condition=cond.FlagBase.ENABLE_IF_TRUE,
|
|
|
|
is_presenter=True,
|
|
|
|
is_copresenter=True,
|
|
|
|
)
|
|
|
|
speaker_dinner_tickets.proposal_kind.set(self.main_conference_proposals)
|
|
|
|
speaker_dinner_tickets.categories.set([self.speakers_dinner_ticket, ])
|
|
|
|
|
|
|
|
# PDNS tickets are complicated.
|
|
|
|
# They can be enabled by tickets
|
|
|
|
pdns_by_ticket = self.find_or_make(
|
|
|
|
cond.ProductFlag,
|
|
|
|
("description", ),
|
|
|
|
description="PDNS available by ticket",
|
|
|
|
condition=cond.FlagBase.ENABLE_IF_TRUE,
|
|
|
|
)
|
|
|
|
pdns_by_ticket.enabling_products.set([
|
|
|
|
self.ticket_professional,
|
|
|
|
self.ticket_fairy,
|
|
|
|
self.ticket_media,
|
|
|
|
self.ticket_sponsor,
|
|
|
|
])
|
2017-09-24 02:30:35 +00:00
|
|
|
pdns_by_ticket.categories.set([self.pdns_category, ])
|
2016-09-30 10:46:05 +00:00
|
|
|
|
|
|
|
# They are available to speakers
|
|
|
|
pdns_by_speaker = self.find_or_make(
|
|
|
|
cond.SpeakerFlag,
|
|
|
|
("description", ),
|
|
|
|
description="PDNS available to speakers",
|
|
|
|
condition=cond.FlagBase.ENABLE_IF_TRUE,
|
|
|
|
is_presenter=True,
|
|
|
|
is_copresenter=True,
|
|
|
|
|
|
|
|
)
|
|
|
|
pdns_by_speaker.proposal_kind.set(self.main_conference_proposals)
|
2017-09-24 02:30:35 +00:00
|
|
|
pdns_by_speaker.categories.set([self.pdns_category, ])
|
2016-09-30 10:46:05 +00:00
|
|
|
|
|
|
|
# They are available to staff
|
|
|
|
pdns_by_staff = self.find_or_make(
|
|
|
|
cond.GroupMemberFlag,
|
|
|
|
("description", ),
|
|
|
|
description="PDNS available to staff",
|
|
|
|
condition=cond.FlagBase.ENABLE_IF_TRUE,
|
|
|
|
)
|
|
|
|
pdns_by_staff.group.set([
|
|
|
|
self.group_team,
|
|
|
|
self.group_volunteers,
|
|
|
|
])
|
2017-09-24 02:30:35 +00:00
|
|
|
pdns_by_staff.categories.set([self.pdns_category, ])
|
|
|
|
|
|
|
|
#Don't allow people to get anything if they don't have a ticket first
|
|
|
|
needs_a_ticket = self.find_or_make(
|
|
|
|
cond.CategoryFlag,
|
|
|
|
("description", ),
|
|
|
|
description="GottaGettaTicketFirst",
|
|
|
|
condition=cond.FlagBase.ENABLE_IF_TRUE,
|
|
|
|
enabling_category = self.ticket
|
|
|
|
)
|
|
|
|
needs_a_ticket.categories.set([
|
|
|
|
self.extras,
|
|
|
|
self.t_shirt,
|
|
|
|
self.penguin_dinner,
|
2017-10-01 08:14:37 +00:00
|
|
|
self.pdns_category,
|
2017-09-24 02:30:35 +00:00
|
|
|
])
|
2017-10-01 08:14:37 +00:00
|
|
|
# Require attendees to accept the T&Cs and Code of Conduct
|
|
|
|
needs_agreement = self.find_or_make(
|
|
|
|
cond.CategoryFlag,
|
|
|
|
("description", ),
|
|
|
|
description="Must Accept Terms",
|
|
|
|
condition=cond.FlagBase.DISABLE_IF_FALSE,
|
|
|
|
enabling_category = self.terms,
|
|
|
|
)
|
|
|
|
needs_agreement.categories.set([
|
|
|
|
self.extras,
|
|
|
|
self.t_shirt,
|
|
|
|
self.penguin_dinner,
|
|
|
|
self.pdns_category,
|
|
|
|
])
|
|
|
|
|
2016-09-30 10:46:05 +00:00
|
|
|
|
|
|
|
def populate_discounts(self):
|
|
|
|
|
|
|
|
def add_early_birds(discount):
|
|
|
|
self.find_or_make(
|
|
|
|
cond.DiscountForProduct,
|
|
|
|
("discount", "product"),
|
|
|
|
discount=discount,
|
|
|
|
product=self.ticket_fairy,
|
|
|
|
price=Decimal("150.00"),
|
|
|
|
quantity=1, # Per user
|
|
|
|
)
|
|
|
|
self.find_or_make(
|
|
|
|
cond.DiscountForProduct,
|
|
|
|
("discount", "product"),
|
|
|
|
discount=discount,
|
|
|
|
product=self.ticket_professional,
|
|
|
|
price=Decimal("150.00"),
|
|
|
|
quantity=1, # Per user
|
|
|
|
)
|
|
|
|
|
|
|
|
def free_category(parent_discount, category, quantity=1):
|
|
|
|
self.find_or_make(
|
|
|
|
cond.DiscountForCategory,
|
|
|
|
("discount", "category",),
|
|
|
|
discount=parent_discount,
|
|
|
|
category=category,
|
|
|
|
percentage=Decimal("100.00"),
|
|
|
|
quantity=quantity,
|
|
|
|
)
|
|
|
|
|
|
|
|
# Early Bird Discount (general public)
|
2017-09-24 02:30:35 +00:00
|
|
|
early_bird_hobbyist_discount = self.find_or_make(
|
|
|
|
cond.TimeOrStockLimitDiscount,
|
|
|
|
("description", ),
|
2017-10-01 03:50:53 +00:00
|
|
|
description="Early Bird Discount - Hobbyist",
|
2017-09-24 02:30:35 +00:00
|
|
|
end_time=datetime(year=2017, month=11, day=1),
|
|
|
|
limit=150, # Across all users
|
|
|
|
)
|
|
|
|
self.find_or_make(
|
|
|
|
cond.DiscountForProduct,
|
|
|
|
("discount", "product"),
|
|
|
|
discount=early_bird_hobbyist_discount,
|
|
|
|
product=self.ticket_hobbyist,
|
|
|
|
price=Decimal("100.00"),
|
|
|
|
quantity=1, # Per user
|
|
|
|
)
|
|
|
|
|
2016-09-30 10:46:05 +00:00
|
|
|
early_bird = self.find_or_make(
|
|
|
|
cond.TimeOrStockLimitDiscount,
|
|
|
|
("description", ),
|
2017-10-01 03:50:53 +00:00
|
|
|
description="Early Bird Discount - Professional",
|
2017-09-24 02:30:35 +00:00
|
|
|
end_time=datetime(year=2017, month=11, day=1),
|
2017-10-01 03:50:53 +00:00
|
|
|
limit=200, # Across professionals and fairy sponsors
|
2016-09-30 10:46:05 +00:00
|
|
|
)
|
|
|
|
add_early_birds(early_bird)
|
|
|
|
|
|
|
|
# Early bird rates for speakers
|
|
|
|
speaker_ticket_discounts = self.find_or_make(
|
|
|
|
cond.SpeakerDiscount,
|
|
|
|
("description", ),
|
|
|
|
description="Speaker Ticket Discount",
|
|
|
|
is_presenter=True,
|
|
|
|
is_copresenter=True,
|
|
|
|
)
|
|
|
|
speaker_ticket_discounts.proposal_kind.set(
|
|
|
|
self.main_conference_proposals,
|
|
|
|
)
|
|
|
|
add_early_birds(speaker_ticket_discounts)
|
|
|
|
|
|
|
|
# Primary speaker gets a free speaker dinner ticket
|
|
|
|
primary_speaker = self.find_or_make(
|
|
|
|
cond.SpeakerDiscount,
|
|
|
|
("description", ),
|
|
|
|
description="Complimentary for primary proposer",
|
|
|
|
is_presenter=True,
|
|
|
|
is_copresenter=False,
|
|
|
|
)
|
|
|
|
primary_speaker.proposal_kind.set(self.main_conference_proposals)
|
|
|
|
free_category(primary_speaker, self.speakers_dinner_ticket)
|
|
|
|
|
|
|
|
# Professional-Like ticket inclusions
|
|
|
|
ticket_prolike_inclusions = self.find_or_make(
|
|
|
|
cond.IncludedProductDiscount,
|
|
|
|
("description", ),
|
|
|
|
description="Complimentary for ticket holder (Professional-level)",
|
|
|
|
)
|
|
|
|
ticket_prolike_inclusions.enabling_products.set([
|
|
|
|
self.ticket_fairy,
|
|
|
|
self.ticket_professional,
|
|
|
|
self.ticket_media,
|
|
|
|
self.ticket_sponsor,
|
|
|
|
self.ticket_speaker,
|
|
|
|
])
|
|
|
|
free_category(ticket_prolike_inclusions, self.penguin_dinner)
|
|
|
|
free_category(ticket_prolike_inclusions, self.t_shirt)
|
|
|
|
|
|
|
|
# Hobbyist ticket inclusions
|
|
|
|
ticket_hobbyist_inclusions = self.find_or_make(
|
|
|
|
cond.IncludedProductDiscount,
|
|
|
|
("description", ),
|
|
|
|
description="Complimentary for ticket holder (Hobbyist-level)",
|
|
|
|
)
|
|
|
|
ticket_hobbyist_inclusions.enabling_products.set([
|
|
|
|
self.ticket_hobbyist,
|
|
|
|
])
|
|
|
|
free_category(ticket_hobbyist_inclusions, self.t_shirt)
|
|
|
|
|
|
|
|
# Student ticket inclusions
|
|
|
|
ticket_student_inclusions = self.find_or_make(
|
|
|
|
cond.IncludedProductDiscount,
|
|
|
|
("description", ),
|
|
|
|
description="Complimentary for ticket holder (Student-level)",
|
|
|
|
)
|
|
|
|
ticket_student_inclusions.enabling_products.set([
|
|
|
|
self.ticket_student,
|
|
|
|
])
|
|
|
|
free_category(ticket_student_inclusions, self.t_shirt)
|
|
|
|
|
|
|
|
# Team & volunteer ticket inclusions
|
|
|
|
ticket_staff_inclusions = self.find_or_make(
|
|
|
|
cond.IncludedProductDiscount,
|
|
|
|
("description", ),
|
|
|
|
description="Complimentary for ticket holder (staff/volunteer)",
|
|
|
|
)
|
|
|
|
ticket_staff_inclusions.enabling_products.set([
|
|
|
|
self.ticket_team,
|
|
|
|
self.ticket_volunteer,
|
|
|
|
])
|
|
|
|
free_category(ticket_staff_inclusions, self.penguin_dinner)
|
|
|
|
|
2017-09-30 13:40:46 +00:00
|
|
|
# Team & volunteer shirts, regardless of ticket type
|
2016-09-30 10:46:05 +00:00
|
|
|
staff_t_shirts = self.find_or_make(
|
|
|
|
cond.GroupMemberDiscount,
|
|
|
|
("description", ),
|
2017-09-30 13:40:46 +00:00
|
|
|
description="Shirts complimentary for staff and volunteers",
|
2016-09-30 10:46:05 +00:00
|
|
|
)
|
|
|
|
staff_t_shirts.group.set([
|
|
|
|
self.group_team,
|
|
|
|
self.group_volunteers,
|
|
|
|
])
|
|
|
|
free_category(staff_t_shirts, self.t_shirt, quantity=5)
|
|
|
|
|
|
|
|
def find_or_make(self, model, search_keys, **k):
|
|
|
|
''' Either makes or finds an object of type _model_, with the given
|
|
|
|
kwargs.
|
|
|
|
|
|
|
|
Arguments:
|
|
|
|
search_keys ([str, ...]): A sequence of keys that are used to search
|
|
|
|
for an existing version in the database. The remaining arguments are
|
|
|
|
only used when creating a new object.
|
|
|
|
'''
|
|
|
|
|
|
|
|
try:
|
|
|
|
keys = dict((key, k[key]) for key in search_keys)
|
|
|
|
a = model.objects.get(**keys)
|
|
|
|
self.stdout.write("FOUND : " + str(keys))
|
|
|
|
model.objects.filter(id=a.id).update(**k)
|
|
|
|
a.refresh_from_db()
|
|
|
|
return a
|
|
|
|
except ObjectDoesNotExist:
|
|
|
|
a = model.objects.create(**k)
|
|
|
|
self.stdout.write("CREATED: " + str(k))
|
|
|
|
return a
|
|
|
|
|
|
|
|
|
|
|
|
def hours(n):
|
|
|
|
return timedelta(hours=n)
|