7
7
from icalendar import Event as vEvent
8
8
from sedate import utcnow , to_timezone
9
9
from sqlalchemy import (
10
- Column , Boolean , SmallInteger , Enum , Text , Interval , ForeignKey , or_ , and_ ,
11
- select )
10
+ Column , Boolean , SmallInteger , Enum , Text , Interval , ForeignKey , or_ , and_ )
12
11
from sqlalchemy .ext .hybrid import hybrid_property
13
- from sqlalchemy .orm import relationship , backref , object_session , join
12
+ from sqlalchemy .orm import relationship , backref , object_session
14
13
from uuid import uuid4
15
14
16
15
from onegov .core .mail import Attachment
17
16
from onegov .core .orm import Base
18
17
from onegov .core .orm .mixins import TimestampMixin
19
18
from onegov .core .orm .types import UUID , UTCDateTime
20
19
from onegov .fsi import _
21
- from onegov .fsi .models .course import Course
22
20
from onegov .fsi .models .course_attendee import CourseAttendee
23
21
from onegov .fsi .models .course_subscription import CourseSubscription
24
22
from onegov .fsi .models .course_subscription import subscription_table
25
23
from onegov .search import ORMSearchable
26
24
27
25
from typing import TYPE_CHECKING
28
-
29
26
if TYPE_CHECKING :
30
27
from .course import Course
31
28
from .course_notification_template import (
43
40
44
41
# for forms...
45
42
def course_status_choices (request = None , as_dict = False ):
43
+
46
44
if request :
47
45
translations = (
48
46
request .translate (v ) for v in COURSE_EVENT_STATUSES_TRANSLATIONS )
@@ -56,14 +54,14 @@ def course_status_choices(request=None, as_dict=False):
56
54
57
55
58
56
class CourseEvent (Base , TimestampMixin , ORMSearchable ):
57
+
59
58
default_reminder_before = datetime .timedelta (days = 14 )
60
59
61
60
__tablename__ = 'fsi_course_events'
62
61
63
62
es_properties = {
64
- # expression for name and desc implementiert aber subquery issue
65
63
'name' : {'type' : 'localized' },
66
- # 'description': {'type': 'localized'},
64
+ 'description' : {'type' : 'localized' },
67
65
'location' : {'type' : 'localized' },
68
66
'presenter_name' : {'type' : 'text' },
69
67
'presenter_company' : {'type' : 'text' },
@@ -91,41 +89,6 @@ def title(self):
91
89
def name (self ):
92
90
return self .course .name
93
91
94
- @name .expression
95
- def name (cls ):
96
- # both variants lead to the same error:
97
- # sqlalchemy.exc.NotSupportedError: (psycopg2.errors.FeatureNotSupported) cannot use subquery in column generation expression
98
- # subquery issue probably produced due where clause
99
-
100
- # expr = select([Course.name])
101
- # expr = expr.where(Course.id == cls.course_id)
102
- # expr = expr.label('name')
103
- # return expr
104
-
105
- # expr = (select([Course.name]).where(Course.id == cls.course_id).
106
- # select_from(join(cls, Course)).label('name'))
107
-
108
- # the variant below are closer to the final version (explicit
109
- # join) but throw: 'Can't find any foreign key relationships between
110
- # 'Select object' and 'fsi_courses'
111
- expr = select ([Course .name ]).select_from (cls ).join (
112
- Course ).where (Course .id == cls .course_id ).label ('name' )
113
-
114
- # throws: subquery in FROM must-have an alias
115
- # j = select([cls.course_id]).join(Course, Course.id ==
116
- # cls.course_id).alias('j')
117
- # expr = select([Course.name]).select_from(j).label('name')
118
-
119
- # example https://docs.sqlalchemy.org/en/20/orm/queryguide/select.html#joining-to-subqueries
120
- # throwing: TypeError: 'DeclarativeMeta' object is not iterable
121
- # subq = select(Address).where(Address.email_address == "[email protected] ").subquery()
122
- # stmt = select(User).join(subq, User.id == subq.c.user_id)
123
- # subquery = select(cls).where(cls.course_id == Course.id).subquery()
124
- # expr = select(Course).join(subquery, Course.id == subquery.course_id)
125
-
126
- print (expr )
127
- return expr
128
-
129
92
@property
130
93
def lead (self ):
131
94
return (
@@ -138,13 +101,6 @@ def lead(self):
138
101
def description (self ):
139
102
return self .course .description
140
103
141
- @description .expression
142
- def description (cls ):
143
- expr = select ([Course .description ])
144
- expr = expr .where (Course .id == cls .course_id )
145
- expr = expr .label ('description' )
146
- return expr
147
-
148
104
def __str__ (self ):
149
105
start = to_timezone (
150
106
self .start , 'Europe/Zurich' ).strftime ('%d.%m.%Y %H:%M' )
0 commit comments