mirror of
https://github.com/pretix/pretix.git
synced 2025-12-07 22:42:26 +00:00
115 lines
5.3 KiB
Python
115 lines
5.3 KiB
Python
#
|
|
# This file is part of pretix (Community Edition).
|
|
#
|
|
# Copyright (C) 2014-2020 Raphael Michel and contributors
|
|
# Copyright (C) 2020-2021 rami.io GmbH and contributors
|
|
#
|
|
# This program is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General
|
|
# Public License as published by the Free Software Foundation in version 3 of the License.
|
|
#
|
|
# ADDITIONAL TERMS APPLY: Pursuant to Section 7 of the GNU Affero General Public License, additional terms are
|
|
# applicable granting you additional permissions and placing additional restrictions on your usage of this software.
|
|
# Please refer to the pretix LICENSE file to obtain the full terms applicable to this work. If you did not receive
|
|
# this file, see <https://pretix.eu/about/en/license>.
|
|
#
|
|
# This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied
|
|
# warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License for more
|
|
# details.
|
|
#
|
|
# You should have received a copy of the GNU Affero General Public License along with this program. If not, see
|
|
# <https://www.gnu.org/licenses/>.
|
|
#
|
|
from django.utils.translation import gettext as _
|
|
from rest_framework import serializers
|
|
from rest_framework.exceptions import ValidationError
|
|
|
|
from pretix.api.serializers.event import SubEventSerializer
|
|
from pretix.api.serializers.i18n import I18nAwareModelSerializer
|
|
from pretix.base.media import MEDIA_TYPES
|
|
from pretix.base.models import Checkin, CheckinList, SalesChannel
|
|
|
|
|
|
class CheckinListSerializer(I18nAwareModelSerializer):
|
|
checkin_count = serializers.IntegerField(read_only=True)
|
|
position_count = serializers.IntegerField(read_only=True)
|
|
auto_checkin_sales_channels = serializers.SlugRelatedField(
|
|
slug_field="identifier",
|
|
queryset=SalesChannel.objects.none(),
|
|
required=False,
|
|
allow_empty=True,
|
|
many=True,
|
|
)
|
|
|
|
class Meta:
|
|
model = CheckinList
|
|
fields = ('id', 'name', 'all_products', 'limit_products', 'subevent', 'checkin_count', 'position_count',
|
|
'include_pending', 'auto_checkin_sales_channels', 'allow_multiple_entries', 'allow_entry_after_exit',
|
|
'rules', 'exit_all_at', 'addon_match', 'ignore_in_statistics', 'consider_tickets_used')
|
|
|
|
def __init__(self, *args, **kwargs):
|
|
super().__init__(*args, **kwargs)
|
|
|
|
self.fields['auto_checkin_sales_channels'].child_relation.queryset = self.context['event'].organizer.sales_channels.all()
|
|
|
|
if 'subevent' in self.context['request'].query_params.getlist('expand'):
|
|
self.fields['subevent'] = SubEventSerializer(read_only=True)
|
|
|
|
for exclude_field in self.context['request'].query_params.getlist('exclude'):
|
|
p = exclude_field.split('.')
|
|
if p[0] in self.fields:
|
|
if len(p) == 1:
|
|
del self.fields[p[0]]
|
|
elif len(p) == 2:
|
|
self.fields[p[0]].child.fields.pop(p[1])
|
|
|
|
def validate(self, data):
|
|
data = super().validate(data)
|
|
event = self.context['event']
|
|
|
|
full_data = self.to_internal_value(self.to_representation(self.instance)) if self.instance else {}
|
|
full_data.update(data)
|
|
|
|
for item in full_data.get('limit_products', []):
|
|
if event != item.event:
|
|
raise ValidationError(_('One or more items do not belong to this event.'))
|
|
|
|
if event.has_subevents:
|
|
if full_data.get('subevent') and event != full_data.get('subevent').event:
|
|
raise ValidationError(_('The subevent does not belong to this event.'))
|
|
else:
|
|
if full_data.get('subevent'):
|
|
raise ValidationError(_('The subevent does not belong to this event.'))
|
|
|
|
CheckinList.validate_rules(data.get('rules'))
|
|
|
|
return data
|
|
|
|
|
|
class CheckinRPCRedeemInputSerializer(serializers.Serializer):
|
|
lists = serializers.PrimaryKeyRelatedField(required=True, many=True, queryset=CheckinList.objects.none())
|
|
secret = serializers.CharField(required=True, allow_null=False)
|
|
force = serializers.BooleanField(default=False, required=False)
|
|
source_type = serializers.ChoiceField(choices=[(k, v) for k, v in MEDIA_TYPES.items()], default='barcode')
|
|
type = serializers.ChoiceField(choices=Checkin.CHECKIN_TYPES, default=Checkin.TYPE_ENTRY)
|
|
ignore_unpaid = serializers.BooleanField(default=False, required=False)
|
|
questions_supported = serializers.BooleanField(default=True, required=False)
|
|
nonce = serializers.CharField(required=False, allow_null=True)
|
|
datetime = serializers.DateTimeField(required=False, allow_null=True)
|
|
answers = serializers.JSONField(required=False, allow_null=True)
|
|
|
|
def __init__(self, *args, **kwargs):
|
|
super().__init__(*args, **kwargs)
|
|
self.fields['lists'].child_relation.queryset = CheckinList.objects.filter(event__in=self.context['events']).select_related('event')
|
|
|
|
|
|
class MiniCheckinListSerializer(I18nAwareModelSerializer):
|
|
event = serializers.SlugRelatedField(slug_field='slug', read_only=True)
|
|
subevent = serializers.PrimaryKeyRelatedField(read_only=True)
|
|
|
|
class Meta:
|
|
model = CheckinList
|
|
fields = ('id', 'name', 'event', 'subevent', 'include_pending')
|
|
|
|
def __init__(self, *args, **kwargs):
|
|
super().__init__(*args, **kwargs)
|