-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapi.py
590 lines (479 loc) · 19.7 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
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
# -*- coding: utf-8 -*-
"""
Resources for handball models.
TODO: Use ApiKeyAuthentication for models that need authentication. Implement custom authorization based on handball graph.
"""
from tastypie.resources import ModelResource, ALL_WITH_RELATIONS, ALL
from tastypie import fields
from handball.models import *
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):
"""
Resource for Union model
"""
class Meta:
queryset = Union.objects.all()
allowed_methods = ['get']
authorization = Authorization()
authentication = Authentication()
filtering = {
'name': ('exact')
}
class DistrictResource(ModelResource):
"""
Resource for District model
"""
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 dehydrate(self, bundle):
"""
Insert 'display_name' field for use in UI
"""
bundle.data['display_name'] = str(bundle.obj)
return bundle
class GroupResource(ModelResource):
"""
Resource for Group model
"""
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):
"""
Resource for Person model
"""
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):
"""
Insert 'display_name' field for use in UI.
'Manually' add clubs since the ManyToMany field is (for various reasons) not specified in the Resource.
"""
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):
"""
Resource for the Club model
"""
district = fields.ForeignKey(DistrictResource, 'district', full=True)
home_site = fields.ForeignKey('handball.api.SiteResource', 'home_site', full=True, null=True)
created_by = fields.ForeignKey(PersonResource, 'created_by', 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):
"""
Automatically fill created_by field if there is an authenticated user
"""
bundle = super(TeamResource, self).obj_create(bundle, request)
if request.user:
try:
profile = Person.objects.get(user=request.user)
# Set created_by field
bundle.obj.created_by = profile
bundle.obj.save()
except Person.DoesNotExist:
pass
return bundle
class TeamResource(ModelResource):
"""
Resource for Team model
"""
club = fields.ForeignKey(ClubResource, 'club', full=True)
created_by = fields.ForeignKey(PersonResource, 'created_by', null=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):
"""
Automatically fill created_by field and instantly validate under certain conditions
"""
bundle = super(TeamResource, self).obj_create(bundle, request)
if request.user:
try:
profile = Person.objects.get(user=request.user)
# Set created_by field
bundle.obj.created_by = profile
try:
# Instantly validate if user is manager of the respective club
ClubManagerRelation.objects.get(manager=profile, club=bundle.obj.club, validated=True)
bundle.obj.validated = True
except ClubManagerRelation.DoesNotExist:
pass
bundle.obj.save()
except Person.DoesNotExist:
pass
return bundle
def dehydrate(self, bundle):
"""
Insert 'display_name' field for use in UI.
'Manually' add players since the ManyToMany field is (for various reasons) not specified in the Resource.
"""
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):
"""
Resource for Site model
"""
class Meta:
queryset = Site.objects.all()
authorization = Authorization()
authentication = Authentication()
always_return_data = True
def dehydrate(self, bundle):
"""
Add display_name for user in UI
"""
bundle.data['display_name'] = str(bundle.obj)
return bundle
class GameResource(ModelResource):
"""
Resource for the Game model
"""
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 some reason tastypie does not correctly create ManyToMany relations. This is a simple fix for that.
"""
for item in bundle.data['events']:
item[u'game'] = self.get_resource_uri(bundle)
return super(GameResource, self).hydrate_m2m(bundle)
class EventResource(ModelResource):
"""
Resource for the Event model
"""
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):
"""
Resource for the ClubMemberRelation model
"""
club = fields.ForeignKey(ClubResource, 'club', full=True)
member = fields.ForeignKey(PersonResource, 'member', full=True)
class Meta:
queryset = ClubMemberRelation.objects.all()
authorization = Authorization()
authentication = ApiKeyAuthentication()
always_return_data = True
filtering = {
'member': ALL_WITH_RELATIONS,
'club': ALL_WITH_RELATIONS,
'validated': ALL
}
def obj_create(self, bundle, request=None, **kwargs):
"""
Instantly validate relation under certain condititions
"""
bundle = super(ClubMemberRelationResource, self).obj_create(bundle, request)
if request.user:
try:
profile = Person.objects.get(user=request.user)
# Instantly validate if user is a manager or member of the respective club
managers = ClubManagerRelation.objects.filter(manager=profile, club=bundle.obj.club, validated=True)
members = ClubMemberRelation.objects.filter(member=profile, club=bundle.obj.club, validated=True)
if (len(managers) or len(members)):
bundle.obj.validated = True
bundle.obj.save()
except Person.DoesNotExist:
pass
return bundle
class GamePlayerRelationResource(ModelResource):
"""
Resource for GamePlayerRelation resource
"""
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):
"""
Resource for TeamPlayerRelation resource
"""
team = fields.ForeignKey(TeamResource, 'team', full=True)
player = fields.ForeignKey(PersonResource, 'player', full=True)
class Meta:
queryset = TeamPlayerRelation.objects.all()
authorization = Authorization()
authentication = ApiKeyAuthentication()
always_return_data = True
filtering = {
'player': ALL_WITH_RELATIONS,
'team': ALL_WITH_RELATIONS,
'validated': ALL
}
def obj_create(self, bundle, request=None, **kwargs):
"""
Instantly validate relation under certain conditions
"""
bundle = super(TeamPlayerRelationResource, self).obj_create(bundle, request)
if request.user:
try:
profile = Person.objects.get(user=request.user)
club_managers = ClubManagerRelation.objects.filter(manager=profile, club=bundle.obj.team.club, validated=True)
team_managers = TeamManagerRelation.objects.filter(manager=profile, team=bundle.obj.team, validated=True)
players = TeamPlayerRelation.objects.filter(player=profile, team=bundle.obj.team, validated=True)
coaches = TeamCoachRelation.objects.filter(coach=profile, team=bundle.obj.team, validated=True)
if (len(club_managers) or len(team_managers) or len(players) or len(coaches)):
bundle.obj.validated = True
bundle.obj.save()
except Person.DoesNotExist:
pass
return bundle
class TeamCoachRelationResource(ModelResource):
"""
Resource for TeamCoachRelation model
"""
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
}
def obj_create(self, bundle, request=None, **kwargs):
"""
Instantly validate relation under certain conditions
"""
bundle = super(TeamCoachRelationResource, self).obj_create(bundle, request)
if request.user:
try:
profile = Person.objects.get(user=request.user)
club_managers = ClubManagerRelation.objects.filter(manager=profile, club=bundle.obj.team.club, validated=True)
managers = TeamManagerRelation.objects.filter(manager=profile, team=bundle.obj.team, validated=True)
coaches = TeamCoachRelation.objects.filter(coach=profile, team=bundle.obj.team, validated=True)
if (len(managers) or len(club_managers) or len(coaches)):
bundle.obj.validated = True
bundle.obj.save()
except Person.DoesNotExist:
pass
return bundle
class ClubManagerRelationResource(ModelResource):
"""
Resource for ClubManagerRelation model
"""
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
}
def obj_create(self, bundle, request=None, **kwargs):
"""
Instantly validate under certain conditions
"""
bundle = super(ClubManagerRelationResource, self).obj_create(bundle, request)
if request.user:
try:
profile = Person.objects.get(user=request.user)
# Instantly validate if user is a manager of the respective club
ClubManagerRelation.objects.get(manager=profile, club=bundle.obj.club, validated=True)
bundle.obj.validated = True
bundle.obj.save()
except (Person.DoesNotExist, ClubManagerRelation.DoesNotExist):
pass
return bundle
class TeamManagerRelationResource(ModelResource):
"""
Resource for TeamManagerRelation resource
"""
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
}
def obj_create(self, bundle, request=None, **kwargs):
"""
Instantly validate relation under certain conditions
"""
bundle = super(TeamManagerRelationResource, self).obj_create(bundle, request)
if request.user:
try:
profile = Person.objects.get(user=request.user)
# Instantly validate if user is a manager of the respective team
TeamManagerRelation.objects.get(manager=profile, team=bundle.obj.team, validated=True)
bundle.obj.validated = True
bundle.obj.save()
except (Person.DoesNotExist, TeamManagerRelation.DoesNotExist):
pass
return bundle
class LeagueLevelResource(ModelResource):
"""
Resource for LeagueLevel model
"""
class Meta:
queryset = LeagueLevel.objects.all()
authorization = Authorization()
authentication = Authentication()
always_return_data = True
allowed_methods = ['get']
class GroupTeamRelationResource(ModelResource):
"""
Resource for GroupTeamRelation resource
"""
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
}
"""
Non-resource api endpoints
"""
def is_unique(request):
"""
Check if pass number already exists
"""
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):
"""
Send an invitation to another person via email. NOT TESTED YET
"""
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.')