Skip to content

Commit 4d796e9

Browse files
authored
Merge pull request #55 from rosscado/social_media
Social media support for clubs and events
2 parents 7f07124 + bacd221 commit 4d796e9

File tree

3 files changed

+53
-3
lines changed

3 files changed

+53
-3
lines changed

apps/api/models.py

+9-2
Original file line numberDiff line numberDiff line change
@@ -22,10 +22,16 @@ def format_iso8601(self, dt):
2222
'url': fields.String(description='The primary URL where notice of the most recent state change was posted', example='http://www.banbridgecc.com/eventcancellation/')
2323
})
2424

25+
social_media = api.model('Social Media', {
26+
'handle': fields.String(description='Twitter style username/account identifier', pattern='@.+', example='@banbridgecc'),
27+
'hashtag': fields.String(description='Twitter style tag/label', pattern='#.+', example='#thebeggs18')
28+
})
29+
2530
a_club = api.model('Club', {
2631
'id': fields.Integer(description='The unique identifier of a club (internal)', readonly=True),
2732
'title': fields.String(required=True, description='The full name of the club', example='Banbridge Cycling Club'),
28-
'url': fields.String(description="The club's primary web address", example='http://www.banbridgecc.com/')
33+
'url': fields.String(description="The club's primary web address", example='http://www.banbridgecc.com/'),
34+
'social_media': fields.Nested(social_media, description="How to follow the club on social media")
2935
})
3036

3137
a_circuit = api.model('Circuit', {
@@ -83,7 +89,8 @@ def format_iso8601(self, dt):
8389
'location': fields.String(description='The address of the event. Should identify at least the town.', example='Donore, Co. Down'),
8490
'event_type': fields.String(required=True,description='Is the event a road race, time trial, etc?', enum=['road race', 'time trial', 'hill climb', 'criterium', 'stage race'], default='road race'),
8591
'status': fields.Nested(event_status, description='Records any schedule changes. If absent assume event is still scheduled normally'),
86-
'organised_by': fields.Nested(organisers, description='Group (club and persons) organising the event')
92+
'organised_by': fields.Nested(organisers, description='Group (club and persons) organising the event'),
93+
'social_media': fields.Nested(social_media, description='Where to follow the event on social media')
8794
})
8895

8996
one_day_event = api.inherit('One Day Event', an_event, {

tests/fvt/test_clubs.tavern.yaml

+28
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,34 @@ stages:
5151
response:
5252
status_code: 204
5353

54+
- name: Add invalid social media
55+
request:
56+
url: "{api.server}/api/clubs/{club_fixture_id}"
57+
json:
58+
title: Lifecycle test club updated
59+
url: https://www.velowarecc.com/welcome/
60+
social_media:
61+
handle: "foo bar"
62+
method: PUT
63+
headers:
64+
content-type: application/json
65+
response:
66+
status_code: 400
67+
68+
- name: Add social media
69+
request:
70+
url: "{api.server}/api/clubs/{club_fixture_id}"
71+
json:
72+
title: Lifecycle test club updated
73+
url: https://www.velowarecc.com/welcome/
74+
social_media:
75+
handle: "@velowarecc"
76+
method: PUT
77+
headers:
78+
content-type: application/json
79+
response:
80+
status_code: 204
81+
5482
- name: Delete the club
5583
request:
5684
url: "{api.server}/api/clubs/{club_fixture_id}"

tests/fvt/test_events.tavern.yaml

+16-1
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ stages:
5555
response:
5656
status_code: 400
5757

58-
- name: Update the event
58+
- name: Update the event with valid urls
5959
request:
6060
url: "{api.server}/api/events/{event_fixture_id}"
6161
json:
@@ -91,6 +91,21 @@ stages:
9191
response:
9292
status_code: 204
9393

94+
- name: Add social media
95+
request:
96+
url: "{api.server}/api/events/{event_fixture_id}"
97+
json:
98+
title: Mondello GP
99+
date: "1970-01-02"
100+
event_type: criterium
101+
social_media:
102+
hashtag: "#mondello"
103+
method: PUT
104+
headers:
105+
content-type: application/json
106+
response:
107+
status_code: 204
108+
94109
- name: Cancel the event
95110
request:
96111
url: "{api.server}/api/events/{event_fixture_id}"

0 commit comments

Comments
 (0)