File tree 5 files changed +40
-2
lines changed
5 files changed +40
-2
lines changed Original file line number Diff line number Diff line change @@ -51,10 +51,11 @@ redis==2.10.6
51
51
requests == 2.21.0
52
52
rsa == 4.0
53
53
sendgrid == 6.0.4
54
+ serpy == 0.3.1
54
55
six == 1.12.0
55
56
SQLAlchemy == 1.3.4
56
57
structlog == 19.1.0
57
- -e git+https://github.com/spaceshipearth/tasktiger.git@exceptions_as_context #egg=tasktiger
58
+ -e git+https://github.com/spaceshipearth/tasktiger.git@2f159cec740acc8035da136dfa4253723a40886d #egg=tasktiger
58
59
typed-ast == 1.3.1
59
60
urllib3 == 1.24.2
60
61
webassets == 0.12.1
Original file line number Diff line number Diff line change 1
1
2
+ import serpy
2
3
3
4
GOALS_BY_CATEGORY = {
4
5
"diet" : {
153
154
}
154
155
}
155
156
157
+ class GoalSerializer (serpy .DictSerializer ):
158
+ name = serpy .StrField ()
159
+ icon = serpy .StrField ()
160
+ alt = serpy .StrField ()
161
+ short_description = serpy .StrField ()
162
+ description = serpy .StrField ()
163
+ category = serpy .StrField ()
164
+
156
165
# let goals know their category
157
166
for category_name , category_info in GOALS_BY_CATEGORY .items ():
158
167
category_info ["name" ] = category_name
Original file line number Diff line number Diff line change 1
1
2
+ import serpy
2
3
from sqlalchemy .exc import DatabaseError
3
4
4
5
from flask_sqlalchemy .model import Model
5
6
6
7
from spaceship .db import db
7
8
8
9
class Base (Model ):
10
+ class Serializer (serpy .Serializer ):
11
+ id = serpy .IntField ()
12
+
13
+ def serialize (self ):
14
+ return self .Serializer (self ).data
15
+
9
16
@property
10
17
def session (self ):
11
18
return db .session
Original file line number Diff line number Diff line change 1
1
2
2
import pendulum
3
+ import serpy
3
4
4
5
from spaceship .db import db
6
+ from spaceship .goals import GOALS_BY_CATEGORY , GoalSerializer
5
7
from spaceship .models .custom_fields import PendulumDateTimeField
6
8
from sqlalchemy .ext .hybrid import hybrid_property
7
9
@@ -16,6 +18,16 @@ class Goal(db.Model):
16
18
visible_after = db .Column (PendulumDateTimeField (), nullable = True )
17
19
hidden_after = db .Column (PendulumDateTimeField (), nullable = True )
18
20
21
+ class Serializer (db .Model .Serializer ):
22
+ short_description = serpy .StrField ()
23
+ category = serpy .StrField ()
24
+ actual_goal = GoalSerializer ()
25
+
26
+ @property
27
+ def actual_goal (self ):
28
+ cat_goals = GOALS_BY_CATEGORY [self .category ]
29
+ return [g for g in cat_goals ['goals' ] if g ['name' ] == self .short_description ][0 ]
30
+
19
31
@hybrid_property
20
32
def is_visible (self ):
21
33
now = pendulum .now ('UTC' )
Original file line number Diff line number Diff line change 1
1
import pendulum
2
+ import serpy
2
3
from sqlalchemy .ext .hybrid import hybrid_property
3
4
from sqlalchemy .ext .associationproxy import association_proxy
4
5
import uuid
5
6
6
7
from spaceship .db import db
7
- from spaceship .models import MissionGoal
8
+ from spaceship .models import MissionGoal , Goal
8
9
from spaceship .models .custom_fields import PendulumDateTimeField
9
10
10
11
class Mission (db .Model ):
@@ -27,6 +28,14 @@ class Mission(db.Model):
27
28
created_at = db .Column (PendulumDateTimeField (), default = lambda : pendulum .now ('UTC' ))
28
29
deleted_at = db .Column (PendulumDateTimeField (), nullable = True )
29
30
31
+ class Serializer (db .Model .Serializer ):
32
+ uuid = serpy .StrField ()
33
+ title = serpy .StrField ()
34
+ short_description = serpy .StrField ()
35
+ duration_in_weeks = serpy .IntField ()
36
+
37
+ goals = Goal .Serializer (many = True )
38
+
30
39
@property
31
40
def is_deleted (self ):
32
41
return self .deleted_at != None
You can’t perform that action at this time.
0 commit comments