-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapi.py
440 lines (351 loc) · 15.3 KB
/
api.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
# -*- coding: utf-8 -*-
from tastypie.resources import ModelResource, ALL_WITH_RELATIONS, ALL
from tastypie import fields
from handball.models import *
from django.contrib.auth.models import User
from tastypie.authorization import DjangoAuthorization, Authorization
from tastypie.authentication import Authentication, ApiKeyAuthentication
from django.http import HttpResponse, HttpResponseBadRequest
from tastypie.http import HttpUnauthorized
from tastypie.serializers import Serializer
from tastypie.utils.mime import determine_format
from auth.api import UserResource
from django.core.mail import send_mail
class UnionResource(ModelResource):
class Meta:
queryset = Union.objects.all()
allowed_methods = ['get']
authorization = Authorization()
authentication = Authentication()
filtering = {
'name': ('exact')
}
def obj_create(self, bundle, request=None, **kwargs):
# The user to create a union becomes its first manager (for lack of other people)
bundle.data['managers'] = ['/handball/api/v1/person/' + str(request.user.get_profile().id) + '/']
return super(UnionResource, self).obj_create(bundle, request)
class DistrictResource(ModelResource):
union = fields.ForeignKey(UnionResource, 'union', full=True)
class Meta:
queryset = District.objects.all()
allowed_methods = ['get']
authorization = Authorization()
authentication = Authentication()
filtering = {
'union': ALL_WITH_RELATIONS
}
def obj_create(self, bundle, request=None, **kwargs):
# The user to create a union becomes its first manager (for lack of other people)
bundle.data['managers'] = ['/handball/api/v1/person/' + str(request.user.get_profile().id) + '/']
return super(DistrictResource, self).obj_create(bundle, request)
def dehydrate(self, bundle):
bundle.data['display_name'] = str(bundle.obj)
return bundle
class GroupResource(ModelResource):
union = fields.ForeignKey(UnionResource, 'union', blank=True, null=True, full=True)
district = fields.ForeignKey(DistrictResource, 'district', blank=True, null=True, full=True)
level = fields.ForeignKey('handball.api.LeagueLevelResource', 'level', blank=True, null=True, full=True)
class Meta:
queryset = Group.objects.all()
# allowed_methods = ['get', '']
authentication = Authentication()
authorization = Authorization()
filtering = {
'union': ALL_WITH_RELATIONS,
'district': ALL_WITH_RELATIONS,
'kind': ALL,
'age_group': ALL,
'gender': ALL
}
class PersonResource(ModelResource):
user = fields.OneToOneField(UserResource, 'user', blank=True, null=True, related_name='handball_profile')
class Meta:
queryset = Person.objects.all()
authorization = Authorization()
authentication = Authentication()
excludes = ['activation_key', 'key_expires']
filtering = {
'user': ALL_WITH_RELATIONS,
# 'clubs': ALL_WITH_RELATIONS,
'clubs_managed': ALL_WITH_RELATIONS,
# 'teams': ALL_WITH_RELATIONS,
'teams_managed': ALL_WITH_RELATIONS,
# 'teams_coached': ALL_WITH_RELATIONS,
'first_name': ['exact'],
'last_name': ['exact']
}
always_return_data = True
def dehydrate(self, bundle):
bundle.data['display_name'] = str(bundle.obj)
bundle.data['clubs'] = []
resource = ClubResource()
for membership in ClubMemberRelation.objects.filter(member=bundle.obj):
clubBundle = resource.build_bundle(obj=membership.club, request=bundle.request)
bundle.data['clubs'].append(resource.full_dehydrate(clubBundle))
return bundle
class ClubResource(ModelResource):
district = fields.ForeignKey(DistrictResource, 'district', full=True)
home_site = fields.ForeignKey('handball.api.SiteResource', 'home_site', full=True, null=True)
class Meta:
queryset = Club.objects.all()
allowed_methods = ['get', 'post', 'put']
authorization = Authorization()
authentication = Authentication()
filtering = {
'district': ALL_WITH_RELATIONS,
'managers': ALL_WITH_RELATIONS
}
# def obj_create(self, bundle, request=None, **kwargs):
# # The user to create a club becomes its first manager (for lack of other people)
# try:
# person = Person.objects.get(user=request.user)
# person_resource = PersonResource()
# bundle.data['managers'] = [person_resource.get_resource_uri(person)]
# except Person.DoesNotExist:
# pass
# return super(ClubResource, self).obj_create(bundle, request)
class TeamResource(ModelResource):
club = fields.ForeignKey(ClubResource, 'club', full=True)
class Meta:
queryset = Team.objects.all()
allowed_methods = ['get', 'post', 'put']
authorization = Authorization()
authentication = Authentication()
filtering = {
'club': ALL_WITH_RELATIONS,
'managers': ALL_WITH_RELATIONS
}
# def obj_create(self, bundle, request=None, **kwargs):
# # The user to create a team becomes its first manager (for lack of other people)
# try:
# person = Person.objects.get(user=request.user)
# person_resource = PersonResource()
# bundle.data['managers'] = [person_resource.get_resource_uri(person)]
# except Person.DoesNotExist:
# pass
# return super(TeamResource, self).obj_create(bundle, request)
def dehydrate(self, bundle):
bundle.data['display_name'] = str(bundle.obj)
bundle.data['players'] = []
resource = PersonResource()
for membership in TeamPlayerRelation.objects.filter(player=bundle.obj, validated=True):
playerBundle = resource.build_bundle(obj=membership.player, request=bundle.request)
bundle.data['players'].append(resource.full_dehydrate(playerBundle))
return bundle
class SiteResource(ModelResource):
class Meta:
queryset = Site.objects.all()
authorization = Authorization()
authentication = Authentication()
class GameResource(ModelResource):
home = fields.ForeignKey(TeamResource, 'home')
away = fields.ForeignKey(TeamResource, 'away')
referee = fields.ForeignKey(PersonResource, 'referee')
timer = fields.ForeignKey(PersonResource, 'timer')
secretary = fields.ForeignKey(PersonResource, 'secretary')
supervisor = fields.ForeignKey(PersonResource, 'supervisor')
winner = fields.ForeignKey(TeamResource, 'winner', null=True)
group = fields.ForeignKey(GroupResource, 'group')
site = fields.ForeignKey(SiteResource, 'site')
events = fields.ToManyField('handball.api.EventResource', 'events', full=True)
class Meta:
queryset = Game.objects.all()
authorization = Authorization()
authentication = Authentication()
always_return_data = True
def hydrate_m2m(self, bundle):
for item in bundle.data['events']:
item[u'game'] = self.get_resource_uri(bundle)
return super(GameResource, self).hydrate_m2m(bundle)
class EventResource(ModelResource):
person = fields.ForeignKey(PersonResource, 'person', full=True)
game = fields.ForeignKey(GameResource, 'game')
team = fields.ForeignKey(TeamResource, 'team')
class Meta:
queryset = Event.objects.all()
authorization = Authorization()
authentication = Authentication()
include_resource_uri = False
class ClubMemberRelationResource(ModelResource):
club = fields.ForeignKey(ClubResource, 'club', full=True)
member = fields.ForeignKey(PersonResource, 'member', full=True)
class Meta:
queryset = ClubMemberRelation.objects.all()
authorization = Authorization()
authentication = Authentication()
always_return_data = True
filtering = {
'member': ALL_WITH_RELATIONS,
'club': ALL_WITH_RELATIONS,
'validated': ALL
}
class GamePlayerRelationResource(ModelResource):
game = fields.ForeignKey(GameResource, 'game', full=True)
player = fields.ForeignKey(PersonResource, 'player', full=True)
team = fields.ForeignKey(TeamResource, 'team')
class Meta:
queryset = GamePlayerRelation.objects.all()
authorization = Authorization()
authentication = Authentication()
always_return_data = True
class TeamPlayerRelationResource(ModelResource):
team = fields.ForeignKey(TeamResource, 'team', full=True)
player = fields.ForeignKey(PersonResource, 'player', full=True)
class Meta:
queryset = TeamPlayerRelation.objects.all()
authorization = Authorization()
authentication = Authentication()
always_return_data = True
filtering = {
'player': ALL_WITH_RELATIONS,
'team': ALL_WITH_RELATIONS,
'validated': ALL
}
class TeamCoachRelationResource(ModelResource):
team = fields.ForeignKey(TeamResource, 'team', full=True)
coach = fields.ForeignKey(PersonResource, 'coach', full=True)
class Meta:
queryset = TeamCoachRelation.objects.all()
authorization = Authorization()
authentication = Authentication()
always_return_data = True
filtering = {
'coach': ALL_WITH_RELATIONS,
'team': ALL_WITH_RELATIONS,
'validated': ALL
}
class ClubManagerRelationResource(ModelResource):
club = fields.ForeignKey(ClubResource, 'club', full=True)
manager = fields.ForeignKey(PersonResource, 'manager', full=True)
class Meta:
queryset = ClubManagerRelation.objects.all()
authorization = Authorization()
authentication = Authentication()
always_return_data = True
filtering = {
'club': ALL_WITH_RELATIONS,
'manager': ALL_WITH_RELATIONS,
'validated': ALL
}
class TeamManagerRelationResource(ModelResource):
team = fields.ForeignKey(TeamResource, 'team', full=True)
manager = fields.ForeignKey(PersonResource, 'manager', full=True)
class Meta:
queryset = TeamManagerRelation.objects.all()
authorization = Authorization()
authentication = Authentication()
always_return_data = True
filtering = {
'team': ALL_WITH_RELATIONS,
'manager': ALL_WITH_RELATIONS,
'validated': ALL
}
class LeagueLevelResource(ModelResource):
class Meta:
queryset = LeagueLevel.objects.all()
authorization = Authorization()
authentication = Authentication()
always_return_data = True
allowed_methods = ['get']
class GroupTeamRelationResource(ModelResource):
team = fields.ForeignKey(TeamResource, 'team', full=True)
group = fields.ForeignKey(GroupResource, 'group', full=True)
class Meta:
queryset = GroupTeamRelation.objects.all()
authorization = Authorization()
authentication = Authentication()
always_return_data = True
filtering = {
'group': ALL_WITH_RELATIONS,
'team': ALL_WITH_RELATIONS,
'validated': ALL
}
# class LeagueManagerRelationResource(ModelResource):
# league = fields.ForeignKey(LeagueResource, 'league', full=True)
# manager = fields.ForeignKey(PersonResource, 'manager', full=True)
# class Meta:
# queryset = LeagueManagerRelation.objects.all()
# authorization = Authorization()
# authentication = Authentication()
# always_return_data = True
# filtering = {
# 'league': ALL_WITH_RELATIONS,
# 'manager': ALL_WITH_RELATIONS
# }
# class DistrictManagerRelationResource(ModelResource):
# district = fields.ForeignKey(DistrictResource, 'club', full=True)
# manager = fields.ForeignKey(PersonResource, 'manager', full=True)
# class Meta:
# queryset = DistrictManagerRelation.objects.all()
# authorization = Authorization()
# authentication = Authentication()
# always_return_data = True
# filtering = {
# 'district': ALL_WITH_RELATIONS,
# 'manager': ALL_WITH_RELATIONS
# }
# class UnionManagerRelationResource(ModelResource):
# union = fields.ForeignKey(ClubResource, 'union', full=True)
# manager = fields.ForeignKey(PersonResource, 'manager', full=True)
# class Meta:
# queryset = ClubManagerRelation.objects.all()
# authorization = Authorization()
# authentication = Authentication()
# always_return_data = True
# filtering = {
# 'union': ALL_WITH_RELATIONS,
# 'manager': ALL_WITH_RELATIONS
# }
class SiteResource(ModelResource):
class Meta:
queryset = Site.objects.all()
authorization = Authorization()
authentication = Authentication()
always_return_data = True
def dehydrate(self, bundle):
bundle.data['display_name'] = str(bundle.obj)
return bundle
"""
Non-resource api endpoints
"""
def is_unique(request):
data = {}
if 'pass_number' in request.GET:
pass_number = request.GET['pass_number']
try:
Person.objects.get(pass_number=pass_number)
unique = False
except Person.DoesNotExist:
unique = True
except Person.MultipleObjectsReturned:
unique = False
data['pass_number'] = unique
serializer = Serializer()
format = determine_format(request, serializer, default_format='application/json')
return HttpResponse(serializer.serialize(data, format, {}))
def send_invitation(request):
if request.user.is_authenticated() and request.user.is_active:
if 'email' in request.POST:
email = request.POST['email']
else:
return HttpResponseBadRequest('Mandatory email parameter not provided.')
if 'message' in request.POST:
message = request.POST['message']
else:
message = 'Tritt Score.it bei und sehe deine Handballergebnisse online!'
profile = None
if 'profile' in request.POST:
serializer = Serializer()
profile = serializer.deserialize(request.POST['profile'])
subject = '{0} {1} lädt dich zu Score.it ein!'.format(request.user.first_name, request.user.last_name)
if profile:
profile_link = 'http://score-it.de/?a=invite&p={0}'.format(profile.id)
body = '{0} {1} hat ein Spielerprofil bei Score.it für dich erstellt. Melde dich jetzt bei Score.it an, um deine Handballergebnisse online abzurufen! Zum anmelden, klicke einfach folgenden Link: {3}'.format(request.user.first_name, request.user.last_name, profile_link)
else:
body = '{0} {1} hat dir eine Einladung zu der Sportplatform Score.it geschickt:<br>{2}Um dich anzumelden, besuche einfach http://score-it.de/!'.format(request.user.first_name, request.user.last_name, message)
sender = 'noreply@score-it.de'
recipients = [email]
send_mail(subject, body, sender, recipients)
return HttpResponse('')
else:
return HttpUnauthorized('Authentication through active user required.')