from email import message
import json
# from urllib.request import Request
from fastapi_login import LoginManager
from fastapi import APIRouter, Form, Depends, HTTPException, File, UploadFile,Request
from typing import List,Optional,Union
from fastapi.responses import FileResponse
from random import randint
from fastapi.security import OAuth2PasswordRequestForm
from app.models.models import Registration,User,User_information,Class_list,Class_name,Schools,Class_date,User_resume,Class_detail,User_point
from app.api import deps
from sqlalchemy.orm import Session
from typing import Any, Dict
import secrets
from fastapi_login.exceptions import InvalidCredentialsException
from fastapi_login import LoginManager
from datetime import timedelta,datetime,date
from jose import jwt
from emails.template import JinjaTemplate
from tortoise.queryset import Q
from fastapi.responses import HTMLResponse
import rpyc
from app.log import my_log
from app.api.classes import count_point
registration = APIRouter()
IMAGEDIR = "/var/www/ntcri/assets/resume_pic/"
IMAGEDIR_short = "assets/resume_pic/"
def send_email(
email_to: str,
token: str,
subject_template: str = "",
html_template: str = "",
environment: Dict[str, Any] = {},
):
# message = emails.Message(
# subject=JinjaTemplate(subject_template),
# html=JinjaTemplate(html_template),
# mail_from=(settings.EMAILS_FROM_NAME, settings.EMAILS_FROM_EMAIL),
# )
subject=subject_template
html=html_template
mailobj={}
mailobj['toaddr']=email_to
mailobj['title']=subject
mailobj['totext']=html
conn = rpyc.connect("192.168.192.80", 12345)
conn.root.mailto(mailobj)
return {"message":f"send email"}
@registration.post("/upload_user_resume_imgs")
async def upload_user_resume_imgs(files:Optional[List[UploadFile]] = File(None),old_file:Optional[str]=None):
files_url = []
if old_file:
old_list = eval(old_file)
for file_name in old_list:
files_url.append(file_name)
if files :
for file in files:
contents = await file.read()
#save the file
with open(f"{IMAGEDIR}{file.filename}", "wb") as f:
f.write(contents)
files_url.append(f"{IMAGEDIR_short}{file.filename}" )
return files_url
async def check_token(access_token: str):
result = await User.filter(token=access_token).first()
if not result:
print("no access")
return None
user_id = result.id
return user_id
async def check_permissions(user_id):
user = await User.get(id=user_id)
if user.is_superuser:
return True
else:
return False
# @registration.get("/protected")
# def protected_route(user_id=Depends(check_token)):
# if not user_id:
# return {"message": "no access"}
# return {'user': user_id}
@registration.get("/get_registration_class")
async def get_registration_class(
event_id : Optional[int] = None,
check_user_id = Depends(check_token)
):
#inform_list = await Registration.filter(event_id=event_id,is_del=0,reg_confirm=1).all() #use for 8/25 after
check_list1 = await User.get(id = check_user_id).all()
check_list2 = await Class_list.get(id = event_id).all()
if 2!=check_list1.is_superuser:
if check_list2.create_user_id !=check_user_id:
return {"msg": "permissions denied", "code": 200,"registrations":[]}
inform_list = await Registration.filter(event_id=event_id,is_del=0).all()
class_data =[]
for infor in inform_list:
reg_data = {
"event_id" : infor.event_id,
"user_id" : infor.user_id,
"is_attend" : infor.is_attend,
"payment_status":infor.payment_status,
"five_digits":infor.five_digits,
"reg_confirm":infor.reg_confirm,
}
user = await User.get(id=infor.user_id)
inform = await User_information.get(user_id=infor.user_id)
reg_data["real_name"] = inform.name
reg_data["phone"] = inform.phone
reg_data["email"] = user.email
class_data.append(reg_data )
return {"msg": "success", "code": 200,"registrations":class_data}
@registration.post("/update_registration_class")
async def update_registration_class(
event_id : Optional[int] ,
user_id : Optional[int] ,
is_attend : int = Form(default=None),
payment_status : int = Form(default=None),
reg_confirm : int = Form(default=None),
five_digits : str = Form(default=None),
check_user_id = Depends(check_token),
):
#inform_list = await Registration.filter(event_id=event_id,is_del=0,reg_confirm=1,user_id=user_id).all() #use for 8/25 after
inform_list = await Registration.filter(event_id=event_id,is_del=0,user_id=user_id).all()
check_list1 = await User.get(id = check_user_id).all()
check_list2 = await Class_list.get(id = event_id).all()
if 2!=check_list1.is_superuser:
if check_list2.create_user_id !=check_user_id:
return {"msg": "permissions denied", "code": 500}
class_data =[]
for infor in inform_list:
if is_attend is not None:
infor.is_attend = is_attend
if payment_status is not None:
infor.payment_status = payment_status
if reg_confirm is not None:
infor.reg_confirm = reg_confirm
if five_digits is not None :
if len(five_digits)==5:
infor.five_digits = five_digits
if five_digits=='00000':
infor.five_digits = None
else:
return {"msg": "five_digits must be five_digits", "code": 500}
await infor.save()
return {"msg": "success", "code": 200, "user_id": infor.user_id,"event_id": infor.event_id}
@registration.get("/get_registration")
async def get_registration(
user_id = Depends(check_token),
get_all : Optional[int] = None,
event_id : Optional[int] = None,
registration_id : Optional[int] = None,
is_check : Optional[int] = None
):
try :
if not user_id :
return {"msg": "please log in", "code": 200}
if get_all:
inform_list = Registration.all()
else:
inform_list = Registration.filter(user_id=user_id).all()
if event_id:
inform_list = inform_list.filter(event_id=event_id)
if is_check != None:
inform_list = inform_list.filter(reg_confirm=is_check)
if registration_id:
reg_list_tmp = await inform_list.filter(id=registration_id,is_del=0).all().order_by("-event_id","create_time")
else:
reg_list_tmp = await inform_list.filter(is_del=0).all().order_by("-event_id","create_time")
reg_list = []
for infor in reg_list_tmp:
try :
reg_data = {
"Registration_id" : infor.id,
"event_id" : infor.event_id,
"user_id" : infor.user_id,
"reg_confirm" : infor.reg_confirm,
"create_time" : infor.create_time
}
except:
reg_data = {
"msg" : "fail to get data"
}
try:
class_detail = await Class_detail.filter(class_list_id = infor.event_id)
hours = 0.0
for detail in class_detail:
hours += float(detail.hour)
reg_data["hours"] = hours
except Exception as e:
print(str(e))
try :
class_obj = await Class_list.get(id = infor.event_id)
class_name_obj = await Class_name.get(id = class_obj.name_id)
school_obj = await Schools.get(id = class_name_obj.school_id)
reg_data["school_name"] = school_obj.name
reg_data["class_name"] = class_name_obj.name
reg_data["class_event"] = class_obj.event
reg_data["start_time"] = str(class_obj.start_time)
reg_data["end_time"] =str(class_obj.end_time)
except Exception as e:
await Registration.filter(id =infor.id).delete()
reg_data = {
"event_id" : infor.event_id,
"msg" : "no this class (auto delete)"
}
reg_list.append(reg_data)
continue
try:
user = await User.get(id=infor.user_id)
inform = await User_information.get(user_id=infor.user_id)
reg_data["real_name"] = inform.name
reg_data["phone"] = inform.phone
reg_data["email"] = user.email
except Exception as e:
reg_data["user_data"] = str(e)
reg_list.append(reg_data)
return {"msg": "success", "code": 200,"registrations":reg_list}
except Exception as e:
return {"msg": str(e), "code": 500}
@registration.post("/input_information")
async def input_information(
name : str = Form(default=''),
user_name : str = Form(default=''),
birthday : date = Form(default=datetime.now().date()),
gender : str = Form(default=''),
phone : str = Form(default=''),
address : str = Form(default=''),
user_id = Depends(check_token),
position: str = Form(default='[1]'),
identity:str = Form(default='[]')
):
try :
if not user_id :
return {"msg": "no access", "code": 200}
position_list = json.loads(position)
d = {"學員":0,"開課工藝家":0,"其他":0}
if 1 in position_list:
d["學員"] = 1
if 2 in position_list:
d["開課工藝家"] = 1
if 3 in position_list:
d["其他"] = 1
infor,created = await User_information.get_or_create(
user_id=user_id,
defaults={
'name': name,
'birthday' :birthday,
'gender': gender,
'phone': phone,
'address': address,
'position': d,
"identity": identity
}
)
if not created:
if name != '':
infor.name = name
if birthday != datetime.now().date():
infor.birthday = birthday
if gender != '':
infor.gender = gender
if phone != '':
infor.phone = phone
if address != '':
infor.address = address
if identity != None :
infor.identity = identity
if user_name != '':
global user
user = await User.get(id = user_id)
user.username = user_name
if position != '':
infor.position = d
await infor.save()
await user.save()
msg = "Update success"
else :
msg = "input success"
return {"msg": "success", "code": 200, "user_inform_id": infor.id,"is_exist":not created}
except Exception as e:
return {"msg": str(e), "code": 500}
@registration.post("/update_information")
async def update_information(
user_name : str = Form(default=''),
name : str = Form(default=''),
birthday : date = Form(default=None),
gender : str = Form(default=''),
phone : str = Form(default=''),
address : str = Form(default=''),
user_id = Depends(check_token),
position : str = Form(default='[1]'),
is_superuser : int = Form(default=None),
identity : str = Form(default=None),
change_user_id : int = Form(default=None)
):
try :
if not user_id :
return {"msg": "no access", "code": 200}
if change_user_id is None:
change_user_id = user_id
infor = await User_information.get(user_id = change_user_id)
user = await User.get(id = change_user_id)
operator = await User.get(id = user_id)
position_list = json.loads(position)
d = {"學員":0,"開課工藝家":0,"其他":0}
if 1 in position_list:
d["學員"] = 1
if 2 in position_list:
d["開課工藝家"] = 1
if 3 in position_list:
d["其他"] = 1
if is_superuser != None :
if is_superuser == 2:
if operator.is_superuser != 2:
return {"msg": "no access", "code": 500}
user.is_superuser = is_superuser
await user.save()
if name != '':
infor.name = name
if birthday != None:
infor.birthday = birthday
if gender != '':
infor.gender = gender
if phone != '':
infor.phone = phone
if address != '':
infor.address = address
if user_name != '':
user.username = user_name
if position != '':
infor.position = d
if identity != None :
infor.identity = identity
await infor.save()
await user.save()
return {"msg": "success", "code": 200, "user_inform_id": infor.id}
except Exception as e:
return {"msg": str(e), "code": 500}
@registration.get("/get_user_information")
async def get_user_information(
user_id = Depends(check_token),
get_all : int = 0,
get_detail_information : int = 1
):
try:
if not user_id :
return {"msg": "no access", "code": 200}
try:
if get_all == 1:
user_list = await User.all()
else:
user_list = await User.filter(id = user_id).all()
except:
return {"msg": "user table run fail", "code": 500}
user_inform_list = []
for user_obj in user_list:
user_point = await User_point.get_or_none(user_id=user_obj.id)
points = 0
if user_point is not None :
points = user_point.points
user_inform = {
"user_id" : user_obj.id,
"user_name" : user_obj.username,
"email" : user_obj.email,
"points" : points,
"is_superuser" :user_obj.is_superuser
}
if get_detail_information:
try :
inform = await User_information.get(user_id=user_obj.id)
user_inform["name"] = inform.name
user_inform["birthday"] = inform.birthday
user_inform["gender"] = inform.gender
user_inform["phone"] = inform.phone
user_inform["address"] = inform.address
user_inform["msg"] = "user information exist"
user_inform["exist"] = True
user_inform["position"] = inform.position
user_inform["identify"] = inform.identity
except:
user_inform["msg"] = "no user information"
user_inform["exist"] = False
user_inform_list.append(user_inform)
return {"msg":"success","code":200,"user_inform": user_inform_list}
except Exception as e:
return {"msg": str(e), "code": 500}
# @registration.post("/update_superuser")
# async def update_superuser(
# change_id : int ,
# is_superuser : int ,
# user_id = Depends(check_token),
# ):
# if not user_id :
# return {"msg": "no exit", "code": 200}
# user = await User.get(id=user_id)
# if user.is_superuser != 2:
# return {"msg": "no access", "code": 200}
# user_list = await User.filter(id = change_id).all()
# for infor in user_list:
# if is_superuser is not None:
# infor.is_superuser = is_superuser
# await infor.save()
# return {"msg": "success", "code": 200}
@registration.get("/change_class_reg_number")
async def change_class_reg_number(
event_id: int = 0,
reduce_number : int = 1,
check_in_time : bool = True
):
try:
if event_id:
try:
await Class_list.get(id = event_id)
except Exception as e:
return {"msg": "no this event", "code": 200}
try:
class_date = await Class_date.get(class_list_id = event_id)
except Exception as e:
return {"msg": "no this class' number limit", "code": 200}
#確認是否在報名時間內
if check_in_time:
today = datetime.now()
if today <= class_date.registration_end.replace(tzinfo=None) and today >= class_date.registration_start.replace(tzinfo=None):
print("尚可報名")
else :
return {"msg": "未在報名時間內", "code": 200}
#if class_date.amount_left ==0 and reduce_number>0:
if class_date.amount_left ==0:
return {"msg": "課程報名已滿", "code": 200,"amount_left":-1}
elif class_date.amount_left == class_date.number_limit and reduce_number<0:
return {"msg": "class is empty", "code": 200,"amount_left":class_date.amount_left }
else:
class_date.amount_left = class_date.amount_left-reduce_number
await class_date.save()
return {"msg": "success", "code": 200,"amount_left":class_date.amount_left}
except Exception as e:
return {"msg": str(e), "code": 500}
@registration.post("/input_registration")
async def input_registration(
request : Request,
event_id : int = Form(default=0),
user_id = Depends(check_token)
):
try :
if not user_id :
return {"msg": "please log in", "code": 500}
try:
event = await Class_list.get(id = event_id)
class_name = await Class_name.get(id = event.name_id)
except Exception as e:
return {"msg": "no this event", "code": 500}
# if check_if_id_exeit(User_information,user_inform_id):
# return {"msg": "no user information", "code": 200}
# if check_if_id_exeit(Class_list,event_id):
# return {"msg": "no class list", "code": 200}
try:
user = await User_information.get(user_id=user_id)
except:
return {"msg": "no user information", "code": 500}
try:
existing_registration = await Registration.get(
event_id=event_id,
user_id=user_id
)
new_registration = existing_registration
is_register = 0
except:
existing_registration = None
if existing_registration is None:
is_register = 1
if is_register:
amount_left_obj = await change_class_reg_number(event_id=event_id)
msg = amount_left_obj["msg"]
else:
msg = "已經有報名過了"
if msg == 'success':
new_registration = await Registration.create(
event_id=event_id,
user_id=user_id,
reg_confirm=0,
is_del=0,
create_time=datetime.now(),
is_attend = 0,
payment_status = 0
)
if event.create_user_id: # 取得課程創建者資料
try:
creater = await User.get(id=event.create_user_id)
email = creater.email
message = f"報名人姓名:{user.name}
報名課程名稱:{class_name.name}
場次名稱:{event.event}"
subject = '報名通知'
send_email(email,"",subject,message)
except:
print("creater no exixt,no sending email")
try:
user_email = await User.get(id=user_id)
user_info = await User_information.get_or_none(user_id=user_id)
email = user_email.email
# message = f"親愛的學員{user.name}您好,
\
# 恭喜您在工藝學校找到心儀的課程,課程名稱為:{class_name.name}!
\
# 工藝老師正在確認您的報名資料,將盡快給您後續通知。
\
# 若於開課前10日尚未收到通知,請將後台畫面、聯絡資訊等截圖寄送至客服信箱:
\
# craftology@ntcri.gov.tw,以便客服為您查詢。
\
# 註:此封信件為系統自動發送,請勿回信,謝謝。"
with open("/var/www/ntcri/assets/edm/sign_up/index.html", 'r', encoding='utf-8') as html_file:
html_template = html_file.read()
message = html_template.replace("{username}",user_info.name)
subject = '報名通知'
send_email(email,"",subject,message)
except:
client_ip = request.client.host
my_log("error",__name__,f"Client IP: {client_ip} - send email fail")
return {"msg": msg, "code": 200,"new_registration_id":new_registration.id,"is_already_exist":not is_register}
else:
return {"msg": msg, "code": 200,"new_registration_id":None,"is_already_exist":not is_register}
#new_registration = await Registration.get_or_create(
# event_id = event_id,
# user_id = user_id,
# defaults = {
# "reg_confirm" : 0,
# "is_del" : 0 ,
# "create_time" : datetime.now(),
#
# }
#)
#print(new_registration)
#if new_registration[1]:
#return {"msg": msg, "code": 200,"new_registration_id":new_registration[0].id,"is_already_exist":not new_registration[1]}
#return {"msg": msg, "code": 200,"new_registration_id":new_registration.id,"is_already_exist":not is_register}
except Exception as e:
return {"msg": str(e), "code": 500}
@registration.post("/confirm_reg")
async def confirm_reg(
#user_id = Depends(check_token),
# request = Request,
registration_id : int = 0
):
try:
try:
registration_obj = await Registration.get(id=registration_id)
except:
return {"msg": "can't find registration", "code": 500}
registration_obj.reg_confirm = 1
await registration_obj.save()
student = await User.get(id = registration_obj.user_id)
student_info = await User_information.get(user_id = registration_obj.user_id)
class_event = await Class_list.get(id = registration_obj.event_id)
class_name = await Class_name.get(id = class_event.name_id)
subject = "報名確認通知信"
# message = f"報名人:{student_info.name}
課程名稱:{class_name.name}"
# message = f'親愛的學員 {student_info.name}您好,
\
# 感謝您報名課程:{class_name.name},
\
# 課程費用完成付款後請聯絡您的工藝老師!
\
# 以下是匯款資訊及聯絡方式:
\
# (帳戶資訊)
\
# (聯絡電話或e-mail)
\
# *若需臨時改期請於開課前10日主動聯繫工藝老師,以便老師準備材料包數量
\
# 註:此封信件為系統自動發送,請勿回信,謝謝。'
with open("/var/www/ntcri/assets/edm/pass_sign_up/index.html", 'r', encoding='utf-8') as html_file:
html_template = html_file.read()
message = html_template.replace("{username}",student_info.name)
message =message.replace("{classname}",class_name.name)
try:
send_email(student.email,"",subject,message)
except:
client_ip = "0.0.0.0"#request.client.host
my_log("info",__name__,f"Client IP: {client_ip} - error to send email")
return {"msg": "success", "code": 200,"registration_id":registration_obj.id}
except Exception as e:
return {"msg": str(e), "code": 500}
@registration.post("/recover_registration")
async def delete_registration(
user_id = Depends(check_token),
event_id : int = 0
):
try:
if not user_id :
return {"msg": "please log in", "code": 200}
registration_obj = await Registration.get(event_id=event_id,user_id=user_id)
amount_left_obj = await change_class_reg_number(event_id=registration_obj.event_id)
msg = amount_left_obj["msg"]
if msg == "class is full":
return {"msg": msg+" cannot recover registration", "code": 200}
registration_obj.is_del = 0
await registration_obj.save()
return {"msg": msg, "code": 200}
except Exception as e:
return {"msg": str(e), "code": 500}
@registration.post("/delete_registration")
async def delete_registration(
user_id = Depends(check_token),
super_ad_input_user_id : int = 0,
event_id : int = 0
):
try:
if not user_id :
return {"msg": "please log in", "code": 200}
if super_ad_input_user_id:
registration_obj = await Registration.get(event_id=event_id,user_id=super_ad_input_user_id)
else:
registration_obj = await Registration.get(event_id=event_id,user_id=user_id)
registration_obj.is_del = 1
amount_left_obj = await change_class_reg_number(event_id=registration_obj.event_id,reduce_number=-1)
msg = amount_left_obj["msg"]
await registration_obj.save()
return {"msg": msg , "code": 200}
except Exception as e:
return {"msg": str(e), "code": 500}
@registration.post("/input_user_resume")
async def input_user_resume(
user_id = Depends(check_token),
imgs = Depends(upload_user_resume_imgs),
teacher_name : str = Form(default=''),
work_type : str = Form(default=''),
experience : str = Form(default=''),
expertise : str = Form(default=''),
license : str = Form(default=''),
media : str = Form(default=''),
introduction: str = Form(default='')
):
try:
if not user_id :
return {"msg": "please log in", "code": 200}
msg = ''
user_resume, created = await User_resume.get_or_create(
user_id = user_id,
defaults = {
"teacher_name": teacher_name,
"work_type": work_type,
"experience": experience,
"expertise": expertise,
"license": license,
"media": media,
"imgs": imgs,
"introduction": introduction
}
)
if not created:
if teacher_name.strip() != '' :
user_resume.teacher_name = teacher_name
if work_type.strip() != '' :
user_resume.work_type= work_type
if experience.strip() != '' :
user_resume.experience= experience
if expertise.strip() != '' :
user_resume.expertise= expertise
if license.strip() != '' :
user_resume.license= license
if media.strip() != '' :
user_resume.media= media
if imgs != '[]' :
user_resume.imgs= imgs
if introduction.strip() != '' :
user_resume.introduction= introduction
await user_resume.save()
msg = "Update success"
else :
msg = "input success"
return {"msg": msg , "code": 200}
except Exception as e:
return {"msg": str(e), "code": 500}
@registration.get("/get_user_resume")
async def get_user_resume(
user_id = Depends(check_token)
):
try:
if not user_id :
return {"msg": "please log in", "code": 200}
user_resume = await User_resume.get(user_id = user_id)
data = user_resume.show_data()
return {"msg": "success" , "code": 200,"user_resume":data}
except Exception as e:
return {"msg": str(e), "code": 500}
@registration.post("/check_is_user")
async def check_is_user(
email : str = None
):
try:
try:
await User.get(email=email,is_active=1)
except:
return {"msg": "error" , "code": 200,"result":"此使用者未註冊,請先去註冊"}
return {"msg": "success" , "code": 200,"result":"此使用者已註冊,可以使用"}
except Exception as e:
return {"msg": str(e), "code": 500}
@registration.post("/delete_user")
async def get_user_resume(
user_id : Optional[int] = None,
check_user_id = Depends(check_token)
):
try:
#inform_list = await Registration.filter(event_id=event_id,is_del=0,reg_confirm=1).all() #use for 8/25 after
check_list1 = await User.get(id = check_user_id).all()
if 2!=check_list1.is_superuser:
if check_list1.create_user_id !=check_user_id:
return {"msg": "permissions denied", "code": 200,"registrations":[]}
await User.filter(user_id = user_id).delete()
return {"msg": "success" , "code": 200}
except Exception as e:
return {"msg": str(e), "code": 500}
@registration.get("/get_registration_count")
async def get_registration_count(
class_id_list : str = None
):
try:
result = []
distinct_class_name_ids = []
if class_id_list :
distinct_class_name_ids = eval(class_id_list)
else:
# 使用 Tortoise ORM 的 count 方法進行統計
distinct_class_name_ids = await Registration.all().values_list('event_id')
print(distinct_class_name_ids)
for entry in distinct_class_name_ids:
class_list = await Class_list.get_or_none(id = entry[0])
class_name = await Class_name.get_or_none(id = class_list.name_id)
if class_name != None :
count = await Registration.filter(event_id=entry[0]).count()
result.append({"class_name":class_name.name,"name_id":class_list.name_id,"event_id":entry[0],"count":count})
return {"msg": "success" , "code": 200,"result":result}
except Exception as e:
return {"msg": str(e), "code": 500}