-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.py
4274 lines (3467 loc) · 175 KB
/
app.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
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
import logging
from flask import (
Flask, render_template, request, redirect, url_for,
flash, session, send_file, jsonify
)
from models import (
db, Kullanici, Rol, Kulup, Brans,
YasKategorisi, Sporcu, Antrenor, IlTemsilcisi,
Hakem, Musabaka, musabaka_hakem, Yonetici, Duyuru, Katilimci,
HakemBelge, HakemBasvuru, HakemBelgeBasvuru,
SporDali, SonucTuru, SporDaliSonuc, BelgeTipi,
OnlineKullanici, OturumAcmaYetkisiOlmayan,
KullaniciGecmis, HakemGorevlendirmeTalebi, GorevlendirmeDurumu
)
from werkzeug.security import generate_password_hash, check_password_hash
from werkzeug.utils import secure_filename
from flask_wtf.csrf import CSRFProtect, generate_csrf
from datetime import datetime, timedelta, timezone
from sqlalchemy.orm import joinedload
from datetime import date
from functools import wraps
from collections import defaultdict
from io import BytesIO
from sqlalchemy import func
from pandas import ExcelWriter
import pandas as pd
from models import convert_utc_to_local
from sqlalchemy.exc import IntegrityError
import xlsxwriter
from flask import current_app
from models import SifreSifirlamaToken
import os
import re
import shutil
import itertools
import requests
import secrets
from math import ceil
app = Flask(__name__)
# Özel loglama filtresi
class IgnoreStaticFilter(logging.Filter):
def filter(self, record):
# Filtrelemek istediğiniz uzantılar ve mesaj içerikleri
extensions = ["/static/", ".jpg", ".jpeg", ".png", ".gif", ".bmp", ".ico"]
ignored_messages = ["Bad request version"]
message = record.getMessage()
if any(ext in message for ext in extensions):
return False
if any(ignored_message in message for ignored_message in ignored_messages):
return False
return True
# Werkzeug loglarını filtrele
log = logging.getLogger('werkzeug')
log.setLevel(logging.INFO)
log.addFilter(IgnoreStaticFilter())
# Fotoğraf yükleme için ayarlar
app.config['UPLOAD_FOLDER'] = 'static/uploads'
app.config['ALLOWED_EXTENSIONS'] = {'jpg', 'jpeg', 'png', 'gif'}
# Belge yükleme için ayarlar
app.config['BELGE_UPLOAD_FOLDER'] = 'static/hakembelge'
app.config['BELGE_ALLOWED_EXTENSIONS'] = {'pdf', 'doc', 'docx'}
app.config['HAKEM_ADAY_UPLOAD_FOLDER'] = 'static/adayhakem'
app.config['HAKEM_ADAY_ALLOWED_EXTENSIONS'] = {'jpg', 'jpeg', 'png', 'gif', 'pdf', 'doc', 'docx'}
def allowed_file(filename, file_type='image'):
if file_type == 'image':
allowed_extensions = app.config['ALLOWED_EXTENSIONS']
elif file_type == 'document':
allowed_extensions = app.config['BELGE_ALLOWED_EXTENSIONS']
else:
return False
return '.' in filename and filename.rsplit('.', 1)[1].lower() in allowed_extensions
# Uygulamanın konfigürasyonlarını ayarla
app.config['SQLALCHEMY_DATABASE_URI'] = 'sqlite:///spor_veritabani.db'
app.config['SQLALCHEMY_TRACK_MODIFICATIONS'] = False
app.secret_key = 'gizli_bir_anahtar'
app.config['WTF_CSRF_ENABLED'] = False
app.config['BASVURULAR_ACIK'] = False # Varsayılan olarak başvurular açık
# CSRF korumasını uygulamayla ilişkilendir
csrf = CSRFProtect(app)
# SQLAlchemy nesnesini uygulamayla ilişkilendir
db.init_app(app)
@app.context_processor
def inject_csrf_token():
return dict(csrf_token=generate_csrf)
def login_required(f):
@wraps(f)
def decorated_function(*args, **kwargs):
if 'user_id' not in session:
flash('Bu sayfayı görüntülemek için oturum açmalısınız.')
return redirect(url_for('login'))
return f(*args, **kwargs)
return decorated_function
def check_permission(*required_roles):
def decorator(inner_func):
@wraps(inner_func)
def wrapper(*args, **kwargs):
role = session.get('role')
if role in required_roles:
return inner_func(*args, **kwargs)
else:
flash('Bu işlemi yapma yetkiniz yok.', 'danger')
return redirect(url_for('dashboard'))
return wrapper
return decorator
# Uygulamanın URL yönlendirmelerini tanımla
@app.route('/')
def home():
return render_template('login.html')
@app.route('/login', methods=['GET', 'POST'])
def login():
if request.method == 'POST':
username = request.form['username']
password = request.form['password']
user = Kullanici.query.filter_by(kullanici_adi=username).first()
if user and check_password_hash(user.sifre, password):
if not user.aktif:
flash('Bu hesap pasifleştirilmiş. Lütfen yönetici ile iletişime geçiniz.', 'danger')
return redirect(url_for('login'))
session['user_id'] = user.id
session['role'] = user.rol.name
# Kullanıcının ilişkili olduğu rollerin ID'lerini oturuma sakla
if user.rol.name == 'Kulup':
kulup = Kulup.query.filter_by(kullanici_id=user.id).first()
if kulup:
session['kulup_id'] = kulup.id
elif user.rol.name == 'Antrenor':
antrenor = Antrenor.query.filter_by(kullanici_id=user.id).first()
if antrenor:
session['antrenor_id'] = antrenor.id
elif user.rol.name == 'Hakem':
hakem = Hakem.query.filter_by(kullanici_id=user.id).first()
if hakem:
session['hakem_id'] = hakem.id
elif user.rol.name == 'IlTemsilcisi':
il_temsilcisi = IlTemsilcisi.query.filter_by(kullanici_id=user.id).first()
if il_temsilcisi:
session['il_temsilcisi_id'] = il_temsilcisi.id
session['il_temsilcisi_il'] = il_temsilcisi.il
# OnlineKullanici tablosunda mevcut bir kayıt olup olmadığını kontrol et
now = datetime.now(timezone.utc)
ip_adresi = request.remote_addr
online_kullanici = OnlineKullanici.query.filter_by(kullanici_id=user.id).first()
if online_kullanici:
# Mevcut kaydı güncelle
online_kullanici.son_aktif_zaman = now
online_kullanici.son_url = '/dashboard'
else:
# Yeni kayıt ekle
online_kullanici = OnlineKullanici(kullanici_id=user.id, son_aktif_zaman=now, son_url='/dashboard')
db.session.add(online_kullanici)
# Aynı IP adresine sahip oturum açmamış kullanıcı kaydını sil
oturum_acmamiss_kullanici = OturumAcmaYetkisiOlmayan.query.filter_by(ip_adresi=ip_adresi).first()
if oturum_acmamiss_kullanici:
db.session.delete(oturum_acmamiss_kullanici)
db.session.commit()
app.logger.info(f"Kullanıcı giriş yaptı. Kullanıcı ID: {user.id}, Rol: {user.rol.name}")
return redirect(url_for('dashboard'))
else:
flash('Geçersiz Kullanıcı Adı veya Şifre!')
return render_template('login.html')
def is_mhk_member(user_id):
hakem = Hakem.query.filter_by(kullanici_id=user_id).first()
return hakem.mhk_uyesi_mi if hakem else False
@app.context_processor
def utility_processor():
return {'is_mhk_member': is_mhk_member}
def not_yetkili_kullanici(hakem_id):
kullanici_id = session.get('user_id')
if session.get('role') == 'Yonetici' or is_mhk_member(kullanici_id):
return False
kullanici_hakem = Hakem.query.filter_by(kullanici_id=kullanici_id).first()
if kullanici_hakem and kullanici_hakem.id == hakem_id:
return False
return True
@app.before_request
def before_request():
user_id = session.get('user_id')
current_url = request.path
now = datetime.now(timezone.utc)
ip_adresi = request.remote_addr
if user_id:
kullanici = db.session.get(Kullanici, user_id)
if kullanici is not None:
kullanici_adi = kullanici.kullanici_adi
kullanici_rol = kullanici.rol.name
online_kullanici = OnlineKullanici.query.filter_by(kullanici_id=user_id).first()
if online_kullanici:
online_kullanici.son_aktif_zaman = now
online_kullanici.son_url = current_url
else:
online_kullanici = OnlineKullanici(kullanici_id=user_id, son_aktif_zaman=now, son_url=current_url)
db.session.add(online_kullanici)
if not current_url.startswith('/static'):
kullanici_gecmis = KullaniciGecmis(kullanici_id=user_id, url=current_url, zaman=now,
ip_adresi=ip_adresi)
db.session.add(kullanici_gecmis)
try:
db.session.commit()
if not current_url.startswith(('/static', '/favicon.ico')):
app.logger.info(
f"Kullanıcı durumu güncellendi. "
f"Kullanıcı Adı: {kullanici_adi}, Rol: {kullanici_rol}, "
f"Son Aktif Zaman: {now}, Son URL: {current_url}"
)
except Exception as e:
db.session.rollback()
app.logger.error(f"Veritabanı hatası: {str(e)}")
else:
app.logger.warning(f"Kullanıcı bulunamadı. User ID: {user_id}")
else:
if not current_url.startswith('/static'):
oturum_acmamiss_kullanici = OturumAcmaYetkisiOlmayan.query.filter_by(ip_adresi=ip_adresi).first()
if oturum_acmamiss_kullanici:
oturum_acmamiss_kullanici.url = current_url
oturum_acmamiss_kullanici.zaman = now
else:
oturum_acmamiss_kullanici = OturumAcmaYetkisiOlmayan(ip_adresi=ip_adresi, url=current_url, zaman=now)
db.session.add(oturum_acmamiss_kullanici)
db.session.commit()
app.logger.info(f"Oturum açmamış kullanıcı. IP Adresi: {ip_adresi}, URL: {current_url}")
@app.route('/online-kullanicilar')
@login_required
@check_permission('Yonetici')
def online_kullanicilar():
online_kullanicilar_list = OnlineKullanici.query.options(
joinedload(OnlineKullanici.kullanici)
).order_by(OnlineKullanici.son_aktif_zaman.desc()).all()
# online.kullanici None olan kayıtları filtrele
online_kullanicilar_list = [online for online in online_kullanicilar_list if online.kullanici is not None]
oturum_acmamiss_kullanicilar_list = OturumAcmaYetkisiOlmayan.query.order_by(
OturumAcmaYetkisiOlmayan.zaman.desc()
).all()
return render_template(
'online_kullanicilar.html',
online_kullanicilar=online_kullanicilar_list,
oturum_acmamiss_kullanicilar=oturum_acmamiss_kullanicilar_list
)
@app.route('/temizle_gecmis', methods=['POST'])
@login_required
@check_permission('Yonetici')
def temizle_gecmis():
try:
db.session.query(OnlineKullanici).delete()
db.session.commit()
flash('Online kullanıcı geçmişi başarıyla temizlendi.', 'success')
except Exception as e:
db.session.rollback()
flash(f'Geçmiş temizlenirken bir hata oluştu: {str(e)}', 'danger')
return redirect(url_for('online_kullanicilar'))
@app.route('/kullanici-gecmis/<int:kullanici_id>')
@login_required
@check_permission('Yonetici') # Bu sayfayı sadece yönetici kullanıcılar görebilir
def kullanici_gecmis_view(kullanici_id): # Adı benzersiz hale getirin
gecmis = KullaniciGecmis.query.filter_by(kullanici_id=kullanici_id).order_by(KullaniciGecmis.zaman.desc()).all()
kullanici = db.session.get(Kullanici, kullanici_id)
return render_template('kullanici_gecmis.html', gecmis=gecmis, kullanici=kullanici)
@app.route('/kullanici-gecmis/temizle/<int:kullanici_id>', methods=['POST'])
@login_required
@check_permission('Yonetici') # Bu işlemi sadece yönetici kullanıcılar yapabilir
def kullanici_gecmis_temizle_view(kullanici_id): # Adı benzersiz hale getirin
KullaniciGecmis.query.filter_by(kullanici_id=kullanici_id).delete()
db.session.commit()
flash('Kullanıcı geçmişi başarıyla temizlendi.', 'success')
return redirect(url_for('kullanici_gecmis_view', kullanici_id=kullanici_id))
@app.route('/oturum-acmamiss-gecmis/<ip_adresi>')
@login_required
@check_permission('Yonetici')
def oturum_acmamiss_gecmis_view(ip_adresi):
gecmis = OturumAcmaYetkisiOlmayan.query.filter_by(ip_adresi=ip_adresi).order_by(
OturumAcmaYetkisiOlmayan.zaman.desc()
).all()
return render_template(
'oturum_acmamiss_gecmis.html',
gecmis=gecmis,
ip_adresi=ip_adresi
)
@app.route('/temizle_oturum_acmamiss_gecmis/<ip_adresi>', methods=['POST'])
@login_required
@check_permission('Yonetici')
def temizle_oturum_acmamiss_gecmis(ip_adresi):
try:
OturumAcmaYetkisiOlmayan.query.filter_by(ip_adresi=ip_adresi).delete()
db.session.commit()
flash('Oturum açmamış kullanıcı geçmişi başarıyla temizlendi.', 'success')
except Exception as e:
db.session.rollback()
flash(f'Geçmiş temizlenirken bir hata oluştu: {str(e)}', 'danger')
return redirect(url_for('online_kullanicilar'))
@app.route('/temizle_oturum_acmamiss_toplu', methods=['POST'])
@login_required
@check_permission('Yonetici')
def temizle_oturum_acmamiss_toplu():
oturum_acmamiss_ids = request.form.getlist('oturum_acmamiss_ids')
for id in oturum_acmamiss_ids:
kayit = OturumAcmaYetkisiOlmayan.query.get(id)
if kayit:
db.session.delete(kayit)
db.session.commit()
flash('Seçili oturum açmamış kullanıcılar başarıyla silindi.', 'success')
return redirect(url_for('online_kullanicilar'))
@app.route('/logout')
def logout():
user_id = session.get('user_id')
# Örneğin, loglama için user_id'yi kullanabilirsiniz
current_app.logger.info(f'User {user_id} logged out.')
session.pop('user_id', None)
session.pop('role', None)
flash('Başarıyla çıkış yaptınız.')
return redirect(url_for('home'))
@app.template_filter('kisalt')
def kisalt_filter(kulup_adi):
return kulup_adi.replace("SPOR KULÜBÜ", "S.K.")
@app.route('/dashboard')
@login_required
def dashboard():
role = session.get('role')
if role == 'Yonetici':
# Verileri hesaplayın
kulup_sayisi = Kulup.query.count()
antrenor_sayisi = Antrenor.query.count()
sporcu_sayisi = Sporcu.query.count()
hakem_sayisi = Hakem.query.count()
kullanici_sayisi = Kullanici.query.count()
musabaka_sayisi = Musabaka.query.count()
son_kulupler = Kulup.query.order_by(Kulup.id.desc()).limit(2).all()
son_antrenorler = Antrenor.query.order_by(Antrenor.id.desc()).limit(2).all()
son_sporcular = Sporcu.query.order_by(Sporcu.id.desc()).limit(2).all()
son_hakemler = Hakem.query.order_by(Hakem.id.desc()).limit(2).all()
son_kullanicilar = Kullanici.query.order_by(Kullanici.id.desc()).limit(2).all()
# Yaklaşan Müsabakalar: Bugünden itibaren sonraki 2 ay içinde başlayacak müsabakalar
today = datetime.today()
two_months_later = today + timedelta(days=60)
yaklasan_musabakalar = Musabaka.query.filter(Musabaka.baslama_tarihi >= today,
Musabaka.baslama_tarihi <= two_months_later).order_by(
Musabaka.baslama_tarihi).all()
# Verileri şablona gönderin
return render_template('yonetici_paneli.html',
kulup_sayisi=kulup_sayisi,
antrenor_sayisi=antrenor_sayisi,
sporcu_sayisi=sporcu_sayisi,
hakem_sayisi=hakem_sayisi,
kullanici_sayisi=kullanici_sayisi,
musabaka_sayisi=musabaka_sayisi,
son_kulupler=son_kulupler,
son_antrenorler=son_antrenorler,
son_sporcular=son_sporcular,
son_hakemler=son_hakemler,
son_kullanicilar=son_kullanicilar,
yaklasan_musabakalar=yaklasan_musabakalar,
title='Yönetici Paneli')
elif role == 'Kulup':
kulup_id = session.get('kulup_id') # Örnek olarak kulüp ID'si oturumda saklanıyor varsayılmıştır.
son_iki_duyuru = Duyuru.query.order_by(Duyuru.yayinlanma_tarihi.desc()).limit(3).all()
# Kulübe ait sporcu sayısı
sporcu_sayisi = Sporcu.query.filter_by(kulup_id=kulup_id).count()
# Kulübe ait antrenör sayısı
antrenor_sayisi = Antrenor.query.filter_by(kulup_id=kulup_id).count()
# Kulübün katıldığı müsabakaların sayısını hesapla
katilimci_musabakalar = db.session.query(Musabaka.id).join(Katilimci).join(Sporcu).filter(
Sporcu.kulup_id == kulup_id).distinct()
musabaka_sayisi = katilimci_musabakalar.count()
# Kulüp bilgilerini çek
kulup_bilgileri = Kulup.query.filter_by(id=kulup_id).first()
# Yaklaşan Müsabakalar: Bugünden itibaren sonraki 2 ay içinde başlayacak müsabakalar
today = datetime.today()
two_months_later = today + timedelta(days=60)
yaklasan_musabakalar = Musabaka.query.filter(Musabaka.baslama_tarihi >= today,
Musabaka.baslama_tarihi <= two_months_later).order_by(
Musabaka.baslama_tarihi).all()
# Verileri şablona gönder
return render_template('kulup_paneli.html',
sporcu_sayisi=sporcu_sayisi,
antrenor_sayisi=antrenor_sayisi,
musabaka_sayisi=musabaka_sayisi,
kulup_bilgileri=kulup_bilgileri,
yaklasan_musabakalar=yaklasan_musabakalar,
duyurular=son_iki_duyuru,
title='Kulüp Paneli')
elif role == 'Antrenor':
antrenor_id = session.get('antrenor_id') # Örnek olarak antrenör ID'si oturumda saklanıyor varsayılmıştır.
# Antrenörün bağlı olduğu kulübü çek
antrenor_bilgileri = Antrenor.query.filter_by(id=antrenor_id).first()
kulup_id = antrenor_bilgileri.kulup_id
# Aynı kulüp ID'sine sahip antrenörleri sayın
kulup_antrenor_sayisi = Antrenor.query.filter_by(kulup_id=kulup_id).count()
# Antrenörün bağlı olduğu kulüpteki sporcu sayısını hesapla
sporcu_sayisi = Sporcu.query.filter_by(kulup_id=kulup_id).count()
# Antrenörün bağlı olduğu kulüpteki müsabaka sayısını hesapla
katilimci_musabakalar = db.session.query(Musabaka.id).join(Katilimci).filter(
Katilimci.antrenor_id == antrenor_id).distinct()
musabaka_sayisi = katilimci_musabakalar.count()
# Yaklaşan Müsabakalar: Bugünden itibaren sonraki 2 ay içinde başlayacak müsabakalar
today = datetime.today()
two_months_later = today + timedelta(days=60)
yaklasan_musabakalar = Musabaka.query.filter(Musabaka.baslama_tarihi >= today,
Musabaka.baslama_tarihi <= two_months_later).order_by(
Musabaka.baslama_tarihi).all()
# Duyuruları çek
son_iki_duyuru = Duyuru.query.order_by(Duyuru.yayinlanma_tarihi.desc()).limit(2).all()
# Verileri şablona gönderin
return render_template('antrenor_paneli.html',
sporcu_sayisi=sporcu_sayisi,
musabaka_sayisi=musabaka_sayisi,
antrenor_bilgileri=antrenor_bilgileri,
yaklasan_musabakalar=yaklasan_musabakalar,
duyurular=son_iki_duyuru, # En son iki duyuru
kulup_antrenor_sayisi=kulup_antrenor_sayisi, # Kulübe bağlı antrenör sayısı
title='Antrenör Paneli')
elif role == 'IlTemsilcisi':
il_temsilcisi_id = session.get('il_temsilcisi_id') # Kullanıcının il temsilcisi ID'si
il_temsilcisi_bilgileri = IlTemsilcisi.query.filter_by(id=il_temsilcisi_id).first()
# İl temsilcisine bağlı sporcu sayısı
sporcu_sayisi = Sporcu.query.filter_by(il_temsilcisi_id=il_temsilcisi_id).count()
katildigi_musabakalar = db.session.query(Musabaka.id) \
.join(Katilimci) \
.filter(Katilimci.sporcu_id == Sporcu.id, Sporcu.il_temsilcisi_id == il_temsilcisi_id) \
.distinct() \
.count()
# İl temsilcisinin ilinde düzenlenen müsabaka sayısı
ildeki_musabaka_sayisi = Musabaka.query.filter_by(il=il_temsilcisi_bilgileri.il).count()
# Yaklaşan Müsabakalar: Bugünden itibaren sonraki 2 ay içinde başlayacak müsabakalar
today = datetime.today()
two_months_later = today + timedelta(days=60)
yaklasan_musabakalar = Musabaka.query.filter(Musabaka.baslama_tarihi >= today,
Musabaka.baslama_tarihi <= two_months_later).order_by(
Musabaka.baslama_tarihi).all()
# Duyuruları çek
son_iki_duyuru = Duyuru.query.order_by(Duyuru.yayinlanma_tarihi.desc()).limit(3).all()
# Verileri şablona gönder
return render_template('iltemsilcisi_paneli.html',
sporcu_sayisi=sporcu_sayisi,
katildigi_musabakalar=katildigi_musabakalar,
ildeki_musabaka_sayisi=ildeki_musabaka_sayisi,
il_temsilcisi_bilgileri=il_temsilcisi_bilgileri,
yaklasan_musabakalar=yaklasan_musabakalar,
duyurular=son_iki_duyuru,
title='İl Temsilcisi Paneli')
elif role == 'Hakem':
hakem_id = session.get('hakem_id')
hakem_bilgileri = Hakem.query.filter_by(id=hakem_id).first()
musabaka_sayisi = Musabaka.query.count()
# Hakemin görev aldığı müsabaka sayısı
hakemin_musabaka_sayisi = db.session.query(Musabaka.id).join(musabaka_hakem).filter(
musabaka_hakem.c.hakem_id == hakem_id).count()
# Hakemin ilinde düzenlenen toplam müsabaka sayısı
ildeki_musabaka_sayisi = Musabaka.query.filter_by(il=hakem_bilgileri.il).count()
# Yaklaşan Müsabakalar
today = datetime.today()
two_months_later = today + timedelta(days=60)
yaklasan_musabakalar = Musabaka.query.filter(Musabaka.baslama_tarihi >= today,
Musabaka.baslama_tarihi <= two_months_later).order_by(
Musabaka.baslama_tarihi).all()
# Son iki duyuru
son_iki_duyuru = Duyuru.query.order_by(Duyuru.yayinlanma_tarihi.desc()).limit(3).all()
# Verileri şablona gönder
return render_template('hakem_paneli.html',
hakem_bilgileri=hakem_bilgileri,
hakemin_musabaka_sayisi=hakemin_musabaka_sayisi,
ildeki_musabaka_sayisi=ildeki_musabaka_sayisi,
yaklasan_musabakalar=yaklasan_musabakalar,
duyurular=son_iki_duyuru,
musabaka_sayisi=musabaka_sayisi,
title='Hakem Paneli')
else:
# Eğer rol tanımlı değilse veya başka bir rol ise, login sayfasına geri yönlendir
flash('Yetkisiz erişim!', 'danger')
return redirect(url_for('login'))
# Yönetici listesi görüntüleme fonksiyonunda, her bir yöneticinin fotoğrafının kontrol edilmesi
@app.route('/yoneticiler')
@login_required
@check_permission('Yonetici')
def yonetici_listesi():
yoneticiler = Yonetici.query.all()
for yonetici in yoneticiler:
if not yonetici.foto:
yonetici.foto = 'default.jpg' # Varsayılan bir fotoğraf adı veya boş bir string
return render_template('yonetici_listesi.html', yoneticiler=yoneticiler, title='Yönetici Listesi')
@app.route('/yonetici/ekle', methods=['GET', 'POST'])
@login_required
@check_permission('Yonetici') # 'Yonetici' rolüne sahip kullanıcılara erişim izni ver
def yonetici_ekle():
if request.method == 'POST':
# Form verilerini al
tc_kimlik_no = request.form.get('tc_kimlik_no')
ad_soyad = request.form.get('ad_soyad')
gorevi = request.form.get('gorevi')
telefon = request.form.get('telefon')
eposta = request.form.get('eposta')
adres = request.form.get('adres')
il = request.form.get('il')
kullanici_adi = request.form.get('kullanici_adi') # Kullanıcı adını formdan al
sifre = request.form.get('sifre') # Şifreyi formdan al
# Fotoğrafı dosya yükleme alanından al
foto = request.files.get('foto')
# Şifreyi hash'le ve yeni kullanıcıyı oluştur
sifre_hashed = generate_password_hash(sifre) if sifre else None
yeni_kullanici = Kullanici(kullanici_adi=kullanici_adi, sifre=sifre_hashed, rol=Rol.Yonetici)
# Fotoğrafı kaydet
filename = None
if foto and allowed_file(foto.filename):
filename = secure_filename(f'yonetici_{tc_kimlik_no}.jpg')
foto.save(os.path.join(app.config['UPLOAD_FOLDER'], filename))
# Kullanıcıyı veritabanına ekle
db.session.add(yeni_kullanici)
db.session.flush() # Yeni kullanıcının ID'sini alabilmek için
# Yeni yöneticiyi oluştur ve veritabanına ekle
yeni_yonetici = Yonetici(
ad_soyad=ad_soyad,
gorevi=gorevi,
telefon=telefon,
eposta=eposta,
adres=adres,
il=il,
kullanici_id=yeni_kullanici.id,
foto=filename,
tc_kimlik_no=tc_kimlik_no
)
db.session.add(yeni_yonetici)
db.session.commit()
return redirect(url_for('yonetici_listesi'))
return render_template('yonetici_ekle.html', title='Yönetici Ekle')
@app.route('/yonetici/duzenle/<int:id>', methods=['GET', 'POST'])
@login_required
@check_permission('Yonetici') # 'Yonetici' rolüne sahip kullanıcılara erişim izni ver
def yonetici_duzenle(id):
yonetici = Yonetici.query.get_or_404(id)
kullanici = Kullanici.query.get_or_404(yonetici.kullanici_id)
if request.method == 'POST':
# Yönetici bilgilerini güncelle
yonetici.ad_soyad = request.form['ad_soyad']
yonetici.gorevi = request.form['gorevi']
yonetici.telefon = request.form['telefon']
yonetici.eposta = request.form['eposta']
yonetici.adres = request.form['adres']
yonetici.il = request.form['il']
yonetici.tc_kimlik_no = request.form['tc_kimlik_no'] # T.C. Kimlik numarasını güncelle
# Kullanıcı adı ve şifre güncelleme
kullanici_adi = request.form['kullanici_adi']
sifre = request.form['sifre']
if kullanici_adi:
kullanici.kullanici_adi = kullanici_adi
if sifre:
kullanici.sifre = generate_password_hash(sifre)
# Fotoğraf güncelleme
foto = request.files.get('foto')
if foto and allowed_file(foto.filename):
if yonetici.foto:
# Eski fotoğrafı sil
eski_foto_path = os.path.join(app.config['UPLOAD_FOLDER'], yonetici.foto)
if os.path.exists(eski_foto_path):
os.remove(eski_foto_path)
# Yeni fotoğrafı kaydet
filename = secure_filename(f'yonetici_{yonetici.tc_kimlik_no}.jpg')
foto_path = os.path.join(app.config['UPLOAD_FOLDER'], filename)
foto.save(foto_path)
yonetici.foto = filename
db.session.commit()
return redirect(url_for('yonetici_listesi'))
return render_template('yonetici_duzenle.html', yonetici=yonetici, kullanici=kullanici, title='Yönetici Düzenle')
@app.route('/yonetici/sil/<int:id>', methods=['POST'])
@login_required
@check_permission('Yonetici')
def yonetici_sil(id):
yonetici = Yonetici.query.get_or_404(id)
kullanici = Kullanici.query.get_or_404(yonetici.kullanici_id)
# Online kullanıcı kayıtlarını sil
online_kullanici_kayitlari = OnlineKullanici.query.filter_by(kullanici_id=kullanici.id).all()
for kayit in online_kullanici_kayitlari:
db.session.delete(kayit)
# Kullanıcı geçmiş kayıtlarını sil
kullanici_gecmis_kayitlari = KullaniciGecmis.query.filter_by(kullanici_id=kullanici.id).all()
for kayit in kullanici_gecmis_kayitlari:
db.session.delete(kayit)
# Eğer bir fotoğraf varsa sil
if yonetici.foto:
foto_path = os.path.join(current_app.config['UPLOAD_FOLDER'], yonetici.foto)
if os.path.exists(foto_path):
os.remove(foto_path)
# Yöneticiyi ve ilgili kullanıcıyı veritabanından sil
db.session.delete(yonetici)
db.session.delete(kullanici)
db.session.commit()
flash(f"{yonetici.ad_soyad} yöneticisi başarıyla silindi.")
return redirect(url_for('yonetici_listesi'))
@app.route('/toggle-user-status/<int:id>', methods=['POST'])
@login_required
@check_permission('Yonetici')
def toggle_user_status(id):
kullanici = Kullanici.query.get_or_404(id)
kullanici.aktif = not kullanici.aktif
db.session.commit()
flash(f"Kullanıcı {'aktifleştirildi' if kullanici.aktif else 'pasifleştirildi'}.")
return redirect(url_for('kullanici_listesi'))
@app.route('/kullanicilar')
@login_required
@check_permission('Yonetici') # 'Yonetici' rolüne sahip kullanıcılara erişim izni ver
def kullanici_listesi():
# Kullanıcı rolünü kontrol et
if session.get('role') != 'Yonetici':
flash('Bu sayfayı görüntüleme yetkiniz yok!')
return redirect(url_for('dashboard'))
# Kullanıcıları ve ilişkili ek bilgileri sorgula
kullanici_listem = db.session.query(
Kullanici
).outerjoin(Kulup, Kullanici.id == Kulup.kullanici_id) \
.outerjoin(IlTemsilcisi, Kullanici.id == IlTemsilcisi.kullanici_id) \
.outerjoin(Antrenor, Kullanici.id == Antrenor.kullanici_id) \
.outerjoin(Hakem, Kullanici.id == Hakem.kullanici_id) \
.outerjoin(Yonetici, Kullanici.id == Yonetici.kullanici_id) \
.add_columns(
Kulup.kulup_adi,
IlTemsilcisi.ad_soyad.label('iltemsilcisi_ad_soyad'),
Antrenor.ad_soyad.label('antrenor_ad_soyad'),
Hakem.ad_soyad.label('hakem_ad_soyad'),
Yonetici.ad_soyad.label('yonetici_ad_soyad'),
).all()
# Döngü içinde kullanıcılar listesini ve ilgili rolleri işleyecek şekilde şablonu güncelleyin
return render_template('kullanici_listesi.html', kullanicilar=kullanici_listem, title='Kullanıcı Listesi')
@app.route('/kullanici-guncelle/<int:id>', methods=['GET', 'POST'])
@login_required
def kullanici_guncelle(id):
# Veritabanından ilgili kullanıcıyı çek
kullanici = Kullanici.query.get_or_404(id)
antrenor = Antrenor.query.filter_by(kullanici_id=id).first()
# Oturum açan kullanıcının ID ve rolünü al
current_user_id = session.get('user_id')
current_user_role = session.get('role')
# Kullanıcı ve antrenörün kulüp yetkilisi kontrolü
if current_user_role != 'Yonetici':
if antrenor and antrenor.kullanici_id == current_user_id:
# Antrenör kendi bilgilerini güncelliyorsa bu izin verilir
pass
elif antrenor:
kulup = Kulup.query.get(antrenor.kulup_id)
if not (kulup and kulup.kullanici_id == current_user_id):
flash('Bu işlem için yetkiniz yok!', 'error')
return redirect(url_for('dashboard'))
elif id != current_user_id:
flash('Bu işlem için yetkiniz yok!', 'error')
return redirect(url_for('dashboard'))
ilgili_isim_tipi = 'Kisi' # Varsayılan olarak 'Kisi' tipinde olduğunu varsayalım
# İlgili isimleri elde etmek için ek sorgulamalar
ilgili_isim = ''
if kullanici.rol == Rol.Kulup:
ilgili_kulup = Kulup.query.filter_by(kullanici_id=kullanici.id).first()
ilgili_isim = ilgili_kulup.kulup_adi if ilgili_kulup else ''
ilgili_isim_tipi = 'Kulup'
elif kullanici.rol == Rol.IlTemsilcisi:
ilgili_il_temsilcisi = IlTemsilcisi.query.filter_by(kullanici_id=kullanici.id).first()
ilgili_isim = ilgili_il_temsilcisi.ad_soyad if ilgili_il_temsilcisi else ''
elif kullanici.rol == Rol.Yonetici:
ilgili_yonetici = Yonetici.query.filter_by(kullanici_id=kullanici.id).first()
ilgili_isim = ilgili_yonetici.ad_soyad if ilgili_yonetici else ''
elif kullanici.rol == Rol.Hakem:
ilgili_hakem = Hakem.query.filter_by(kullanici_id=kullanici.id).first()
ilgili_isim = ilgili_hakem.ad_soyad if ilgili_hakem else ''
elif kullanici.rol == Rol.Antrenor:
ilgili_antrenor = Antrenor.query.filter_by(kullanici_id=kullanici.id).first()
ilgili_isim = ilgili_antrenor.ad_soyad if ilgili_antrenor else ''
# Diğer roller için benzer sorgulamalar...
if request.method == 'POST':
yeni_kullanici_adi = request.form['kullanici_adi']
# Kullanıcı adı benzersizlik kontrolü
mevcut_kullanici = Kullanici.query.filter(
Kullanici.kullanici_adi == yeni_kullanici_adi,
Kullanici.id != id
).first()
if mevcut_kullanici:
# Kullanıcı adı zaten kullanımda, uyarı mesajı göster
flash('Bu kullanıcı adı zaten kullanımda. Lütfen farklı bir kullanıcı adı seçin.', 'error')
else:
# Kullanıcı adı benzersiz, güncelleme işlemini yap
kullanici.kullanici_adi = yeni_kullanici_adi
if request.form['yeni_sifre']:
kullanici.sifre = generate_password_hash(request.form['yeni_sifre'])
db.session.commit()
flash('Kullanıcı başarıyla güncellendi.', 'success')
# GET isteği ve diğer durumlar için kullanıcı güncelleme formunu hazırla
return render_template('kullanici_guncelle.html', kullanici=kullanici,
ilgili_isim=ilgili_isim, ilgili_isim_tipi=ilgili_isim_tipi, title='Kullanıcı Güncelle')
@app.route('/kullanici-sil/<int:id>', methods=['POST'])
@login_required
@check_permission('Yonetici') # 'Yonetici' rolüne sahip kullanıcılara erişim izni ver
def kullanici_sil(id):
kullanici = Kullanici.query.get_or_404(id)
# Kullanıcıya bağlı yöneticiler kayıtlarını sil
yonetici_kayitlari = Yonetici.query.filter_by(kullanici_id=kullanici.id).all()
for yonetici in yonetici_kayitlari:
db.session.delete(yonetici)
# Online kullanıcılara bağlı kayıtları sil
online_kullanici_kayitlari = OnlineKullanici.query.filter_by(kullanici_id=kullanici.id).all()
for online_kullanici in online_kullanici_kayitlari:
db.session.delete(online_kullanici)
# Kullanıcı geçmiş kayıtlarını sil
kullanici_gecmis_kayitlari = KullaniciGecmis.query.filter_by(kullanici_id=kullanici.id).all()
for gecmis in kullanici_gecmis_kayitlari:
db.session.delete(gecmis)
# Kullanıcıyı veritabanından sil
db.session.delete(kullanici)
db.session.commit()
flash('Kullanıcı ve ilgili veriler başarıyla silindi.', 'success')
return redirect(url_for('kullanici_listesi'))
@app.route('/kulupler')
@login_required
def kulup_listesi():
kullanici_id = session.get('user_id')
# Kullanıcıya ait hakemi kontrol et
hakem = Hakem.query.filter_by(kullanici_id=kullanici_id).first()
# Eğer kullanıcı bir hakemse, erişimi engelle
if hakem:
flash('Hakemlerin bu sayfaya erişim yetkisi yok.', 'danger')
return redirect(url_for('dashboard'))
# Kullanıcıya ait antrenörü kontrol et
antrenor = Antrenor.query.filter_by(kullanici_id=kullanici_id).first()
# Eğer kullanıcı bir antrenörse ve bir kulübe aitse, kendi kulübünün detay sayfasına yönlendir
if antrenor:
return redirect(url_for('kulup_detay', kulup_id=antrenor.kulup_id))
# Eğer kullanıcı bir kulüple ilişkilendirilmişse, kendi kulüp detay sayfasına yönlendir
kulup = Kulup.query.filter_by(kullanici_id=kullanici_id).first()
if kulup:
return redirect(url_for('kulup_detay', kulup_id=kulup.id))
# Kullanıcı ne bir kulüple ne de bir antrenörle ilişkilendirilmişse, tüm kulüpleri listeleyin
kulupler = Kulup.query.join(Kullanici, Kulup.kullanici_id == Kullanici.id).add_columns(
Kulup.id,
Kulup.kulup_adi,
Kulup.kutuk_no,
Kulup.baskan_adi,
Kulup.telefon,
Kulup.eposta,
Kulup.il,
Kulup.logo_url, # Logo URL'sini de ekleyin
Kullanici.kullanici_adi
).all()
return render_template('kulup_listesi.html', kulupler=kulupler, title='Kulüpler')
@app.route('/kulup/<int:kulup_id>/detay')
@login_required
def kulup_detay(kulup_id):
kullanici_id = session.get('user_id')
kullanici_rol = session.get('role')
# Kullanıcıya ait kulübü ve antrenör bilgisini al
kullanici_kulup = Kulup.query.filter_by(kullanici_id=kullanici_id).first()
kullanici_antrenor = Antrenor.query.filter_by(kullanici_id=kullanici_id).first()
# Eğer kullanıcı bir kulüp yöneticisi veya antrenör ise ve ilgili kulüp ID'si uyuşuyorsa,
# veya kullanıcı bir yönetici ise detay sayfasını göster
if kullanici_rol == 'Yonetici' or (kullanici_kulup and kullanici_kulup.id == kulup_id) or \
(kullanici_antrenor and kullanici_antrenor.kulup_id == kulup_id):
kulup = Kulup.query.get_or_404(kulup_id)
sporcular = Sporcu.query.filter_by(kulup_id=kulup_id).all()
antrenorler = Antrenor.query.filter_by(kulup_id=kulup_id).all()
sporcu_ids = [sporcu.id for sporcu in sporcular]
musabakalar = Musabaka.query.join(Katilimci, Musabaka.id == Katilimci.musabaka_id) \
.filter(Katilimci.sporcu_id.in_(sporcu_ids)).all()
for musabaka in musabakalar:
musabaka.katilan_sporcular = Sporcu.query.join(Katilimci, Sporcu.id == Katilimci.sporcu_id) \
.filter(Katilimci.musabaka_id == musabaka.id, Sporcu.kulup_id == kulup_id).all()
musabaka.katilan_antrenorler = Antrenor.query.join(Katilimci, Antrenor.id == Katilimci.antrenor_id) \
.filter(Katilimci.musabaka_id == musabaka.id, Antrenor.kulup_id == kulup_id).all()
return render_template('kulup_detay.html', kulup=kulup, sporcular=sporcular,
antrenorler=antrenorler, musabakalar=musabakalar,
title='Kulüp Detay', current_user_id=kullanici_id)
# Eğer kullanıcı yetkili değilse, erişimi reddet ve uyarı mesajı göster
flash('Bu kulübün detaylarına erişim yetkiniz yok.', 'danger')
return redirect(url_for('dashboard'))
@app.route('/kulup-ekle', methods=['GET', 'POST'])
@login_required
@check_permission('Yonetici')
def kulup_ekle():
if request.method == 'POST':
# Kullanıcı bilgilerini al ve işle
kullanici_adi = request.form.get('kullanici_adi')
sifre = request.form.get('sifre')
hashed_sifre = generate_password_hash(sifre)
yeni_kullanici = Kullanici(
kullanici_adi=kullanici_adi,
sifre=hashed_sifre,
rol=Rol.Kulup
)
db.session.add(yeni_kullanici)
db.session.commit()
# Kulüp bilgilerini al
kulup_adi = request.form.get('kulup_adi')
kutuk_no = request.form.get('kutuk_no')
baskan_adi = request.form.get('baskan_adi')
telefon = request.form.get('telefon')
eposta = request.form.get('eposta')
iban = request.form.get('iban')
adres = request.form.get('adres')
il = request.form.get('il')
# Logo dosyasını işle ve kaydet
logo = request.files['logo']
logo_url = None
if logo:
filename = secure_filename(f"kulup_{kutuk_no}.jpg")
logo.save(os.path.join('static/uploads', filename))
logo_url = filename # Sadece dosya adını kaydet
# Yeni kulüp nesnesi oluştur
yeni_kulup = Kulup(
kulup_adi=kulup_adi,
kutuk_no=kutuk_no,
baskan_adi=baskan_adi,
telefon=telefon,
eposta=eposta,
iban=iban,
adres=adres,
il=il,
kullanici_id=yeni_kullanici.id,
logo_url=logo_url # Güncellenmiş logo URL'sini ekle
)
db.session.add(yeni_kulup)
db.session.commit()
flash('Kulüp ve kullanıcı başarıyla eklendi!', 'success')
return redirect(url_for('kulup_listesi'))
return render_template('kulup_ekle.html', title='Kulüp Ekle')