-
Notifications
You must be signed in to change notification settings - Fork 53
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Event views #147
Event views #147
Changes from all commits
bc91d68
5cd8bf7
b66d557
fb3ca39
9a5b045
8bef554
0f8da74
83a7562
cfc17dd
4e751c8
779050c
effeca7
f17f519
fa23c9a
9bdba30
40829a3
c5830de
14ffe84
530f958
dd33ed8
50d72a1
53f59d9
cced982
dff5bd6
b31e770
7c18e6d
db2d538
deebee3
3311616
da70d6e
8e9f6d3
5c3766e
dd332a9
815d81a
125b852
046529f
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,3 +9,4 @@ | |
from .venue import * | ||
from .session import * | ||
from .profile import * | ||
from .participant import * |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
# -*- coding: utf-8 -*- | ||
import os | ||
import wtforms | ||
import baseframe.forms as forms | ||
from baseframe import __ | ||
from wtforms.ext.sqlalchemy.fields import QuerySelectMultipleField | ||
from wtforms.widgets import CheckboxInput, ListWidget | ||
|
||
__all__ = ['ParticipantForm', 'ParticipantBadgeForm'] | ||
|
||
|
||
class ParticipantForm(forms.Form): | ||
fullname = forms.StringField(__("Full Name"), validators=[forms.validators.DataRequired()]) | ||
email = forms.EmailField(__("Email"), validators=[forms.validators.DataRequired(), forms.validators.Length(max=80)]) | ||
phone = forms.StringField(__("Phone number"), validators=[forms.validators.Length(max=80)]) | ||
city = forms.StringField(__("City"), validators=[forms.validators.Length(max=80)]) | ||
company = forms.StringField(__("Company"), validators=[forms.validators.Length(max=80)]) | ||
job_title = forms.StringField(__("Job Title"), validators=[forms.validators.Length(max=80)]) | ||
twitter = forms.StringField(__("Twitter"), validators=[forms.validators.Length(max=15)]) | ||
events = QuerySelectMultipleField(__("Events"), | ||
widget=ListWidget(), option_widget=CheckboxInput(), | ||
get_label='title', | ||
validators=[forms.validators.DataRequired(u"Select at least one event")]) | ||
|
||
|
||
class ParticipantBadgeForm(forms.Form): | ||
choices = [('', "Badge printing status"), ('t', "Printed"), ('f', "Not printed")] | ||
badge_printed = forms.SelectField("", choices=[(val_title[0], val_title[1]) for val_title in choices]) |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,13 +2,15 @@ | |
|
||
import re | ||
from coaster.utils import sorted_timezones | ||
from wtforms.widgets import CheckboxInput, ListWidget | ||
from wtforms.ext.sqlalchemy.fields import QuerySelectMultipleField | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I think we should expose the SQLAlchemy fields in Baseframe forms so they don't need specific import here. |
||
from baseframe import _, __ | ||
import baseframe.forms as forms | ||
from baseframe.forms.sqlalchemy import AvailableName, QuerySelectField | ||
from .profile import profile_teams | ||
from ..models import RSVP_STATUS | ||
|
||
__all__ = ['ProposalSpaceForm', 'RsvpForm'] | ||
__all__ = ['ProposalSpaceForm', 'RsvpForm', 'EventForm', 'TicketTypeForm', 'TicketClientForm'] | ||
|
||
|
||
valid_color_re = re.compile("^[a-fA-F\d]{6}|[a-fA-F\d]{3}$") | ||
|
@@ -74,3 +76,21 @@ def validate_bg_color(self, field): | |
|
||
class RsvpForm(forms.Form): | ||
status = forms.RadioField("Status", choices=[(k, RSVP_STATUS[k].title) for k in RSVP_STATUS.USER_CHOICES]) | ||
|
||
|
||
class EventForm(forms.Form): | ||
title = forms.StringField(__("Title"), validators=[forms.validators.DataRequired()]) | ||
|
||
|
||
class TicketClientForm(forms.Form): | ||
name = forms.StringField(__("Name"), validators=[forms.validators.DataRequired()]) | ||
clientid = forms.StringField(__("Client id"), validators=[forms.validators.DataRequired()]) | ||
client_eventid = forms.StringField(__("Client event id"), validators=[forms.validators.DataRequired()]) | ||
client_secret = forms.StringField(__("Client event secret"), validators=[forms.validators.DataRequired()]) | ||
client_access_token = forms.StringField(__("Client access token"), validators=[forms.validators.DataRequired()]) | ||
|
||
|
||
class TicketTypeForm(forms.Form): | ||
title = forms.StringField(__("Title"), validators=[forms.validators.DataRequired()]) | ||
events = QuerySelectMultipleField(__("Events"), | ||
widget=ListWidget(), option_widget=CheckboxInput(), allow_blank=True, get_label='title', query_factory=lambda: []) |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
# -*- coding: utf-8 -*- | ||
|
||
from .jobs import * |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
from ..models import (db, TicketClient, SyncTicket) | ||
from ..extapi.explara import ExplaraAPI | ||
from flask.ext.rq import job | ||
from funnel import app | ||
|
||
|
||
@job('funnel') | ||
def import_tickets(ticket_client_id): | ||
with app.test_request_context(): | ||
ticket_client = TicketClient.query.get(ticket_client_id) | ||
if ticket_client and ticket_client.name == u'explara': | ||
ticket_list = ExplaraAPI(access_token=ticket_client.client_access_token).get_tickets(ticket_client.client_eventid) | ||
# cancelled tickets are excluded from the list returned by get_tickets | ||
cancel_list = SyncTicket.exclude(ticket_client, [ticket.get('ticket_no') for ticket in ticket_list]).all() | ||
ticket_client.import_from_list(ticket_list, cancel_list=cancel_list) | ||
db.session.commit() |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -16,3 +16,4 @@ | |
from .venue import * | ||
from .rsvp import * | ||
from .event import * | ||
from .contact_exchange import * |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -168,6 +168,12 @@ def permissions(self, user, inherited=None): | |
'view-rsvps', | ||
'new-session', | ||
'edit-session', | ||
'new-event', | ||
'new-ticket-type', | ||
'new-ticket-client', | ||
'edit-ticket-client', | ||
'edit-event', | ||
'admin' | ||
]) | ||
if self.review_team and user in self.review_team.users: | ||
perms.update([ | ||
|
@@ -180,6 +186,12 @@ def permissions(self, user, inherited=None): | |
'edit-schedule', | ||
'new-session', | ||
'edit-session', | ||
'checkin-event', | ||
'view-event', | ||
'view-ticket-type', | ||
'edit-participant', | ||
'view-participant', | ||
'new-participant' | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. We'll need to be consistent with |
||
]) | ||
return perms | ||
|
||
|
@@ -226,6 +238,22 @@ def url_for(self, action='view', _external=False): | |
return url_for('rsvp', profile=self.profile.name, space=self.name) | ||
elif action == 'rsvp-list': | ||
return url_for('rsvp_list', profile=self.profile.name, space=self.name) | ||
elif action == 'admin': | ||
return url_for('admin', profile=self.profile.name, space=self.name) | ||
elif action == 'events': | ||
return url_for('events', profile=self.profile.name, space=self.name) | ||
elif action == 'participants': | ||
return url_for('participants', profile=self.profile.name, space=self.name) | ||
elif action == 'new-participant': | ||
return url_for('new_participant', profile=self.profile.name, space=self.name) | ||
elif action == 'new-ticket-type-participant': | ||
return url_for('new_ticket_type_participant', profile=self.profile.name, space=self.name) | ||
elif action == 'new-event': | ||
return url_for('new_event', profile=self.profile.name, space=self.name) | ||
elif action == 'new-ticket-type': | ||
return url_for('new_ticket_type', profile=self.profile.name, space=self.name) | ||
elif action == 'new-ticket-client': | ||
return url_for('new_ticket_client', profile=self.profile.name, space=self.name) | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Hopefully we'll clean this up in hasgeek/coaster#77. :) |
||
|
||
@classmethod | ||
def all(cls): | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Doesn't this need a model or query factory?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Because of the concerns in hasgeek/baseframe#112, I'd move this context into this file itself if possible.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The events need to be scoped by the proposal space, which is why they're set in the view.