Brak opisu

views.py 15KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337
  1. import sys
  2. import json
  3. sys.path.insert(1,'C:/Users/diego/Documents/companion_app/organizar/')
  4. from organizar import files3, proxSemFiles
  5. from rest_auth.registration.views import SocialLoginView
  6. from allauth.socialaccount.providers.google.views import GoogleOAuth2Adapter
  7. from django.db import connection
  8. from django.http.response import JsonResponse
  9. from rest_framework.parsers import JSONParser
  10. from rest_framework import status
  11. from .models import Facultad, Curso, ProximoSemestre
  12. from .serializers import FacultadSerializer, CursoSerializer
  13. from rest_framework.decorators import api_view
  14. # clientID: 965339169610-8et02d4qpfk96vclngd0otths1rs8661.apps.googleusercontent.com
  15. # clientSecret: zeY8NoW6ORBHP8pDQLE2x_Z2
  16. # Create your views here.
  17. class GoogleLogin(SocialLoginView):
  18. adapter_class = GoogleOAuth2Adapter
  19. @api_view(['POST',])
  20. def insertarFacultades(request):
  21. faculties = [ 'Administración de Empresas', 'Administración de Empresas graduado', 'Arquitectura', 'Arquitectura Graduado', 'Asuntos Académicos',
  22. 'Ciencias Militares', 'Ciencias Naturales', 'Ciencias Naturales Graduado', 'Ciencias Sociales', 'Ciencias Sociales Graduado',
  23. 'Escuela de Comunicación', 'Escuela de Comunicación Graduada', 'Educación', 'Educación Continua (BEOF)', 'Educación Graduado',
  24. 'Escuela de Derecho', 'Escuela Graduada de Ciencias y Tecnologías de la Información', 'Estudios Generales', 'Humanidades',
  25. 'Humanidades Graduado', 'Planificación']
  26. if request.method == 'POST':
  27. for faculty in faculties:
  28. facultad_serializer = FacultadSerializer(data={'fname': faculty})
  29. if facultad_serializer.is_valid():
  30. facultad_serializer.save()
  31. return JsonResponse({"message": 'se crearon todas las facultades'}, status=status.HTTP_201_CREATED)
  32. @api_view(['POST',])
  33. def insertarTodosLosCursos(request):
  34. if request.method == 'POST':
  35. i = 1
  36. for file in files3:
  37. check = file['file'].split('.')
  38. path = "C:/Users/diego/Documents/companion_app/segundo_sem" if check[0][-1] == '2' else "C:/Users/diego/Documents/companion_app/primer_sem"
  39. with open(path + '/' + file['file']) as f:
  40. data = json.load(f)
  41. fac_id = file['num']
  42. for key in data:
  43. if key != 'Horario ':
  44. code = key
  45. name = data[key][0]
  46. creds = data[key][1]
  47. # si la clase es un laboratorio de 0 creditos
  48. if 'LAB' in key and (name == 'LABORATORIO' or name == 'LABORATORIO ' or name == 'TALLER' or name == 'TALLER ' or name == 'CONFERENCIA' or name == 'CONFERENCIA '):
  49. creds = 0
  50. try:
  51. curso = Curso.objects.get(code = code)
  52. except Curso.DoesNotExist:
  53. curso = None
  54. if curso == None:
  55. curso_serializer = CursoSerializer(data={'name': name, 'code': code, 'creditos': creds, 'fac_id': fac_id})
  56. if curso_serializer.is_valid():
  57. curso_serializer.save()
  58. else:
  59. print('ya se creo del lab', i)
  60. i += 1
  61. elif 'LAB in key' and (name != 'LABORATORIO' or name != 'LABORATORIO ' or name != 'TALLER' or name != 'TALLER ' or name != 'CONFERENCIA' or name != 'CONFERENCIA '):
  62. continue
  63. # todas las otras clases que no tengan _LAB en su codigo
  64. else:
  65. try:
  66. curso = Curso.objects.get(code = code)
  67. except Curso.DoesNotExist:
  68. curso = None
  69. if curso == None:
  70. curso_serializer = CursoSerializer(data={'name': name, 'code': code, 'creditos': creds, 'fac_id': fac_id})
  71. if curso_serializer.is_valid():
  72. curso_serializer.save()
  73. else:
  74. print('ya se creo', i)
  75. i += 1
  76. return JsonResponse({'message': 'se insertaron todos los cursos'}, status=status.HTTP_201_CREATED)
  77. @api_view(['POST',])
  78. def insertarTodosLosCursosProxSemestre(request):
  79. if request.method == 'POST':
  80. for file in proxSemFiles:
  81. path = "C:/Users/diego/Documents/companion_app/Miupi Parser"
  82. with open(path + '/' + file['file']) as f:
  83. data = json.load(f)
  84. fac_id = file["num"] # this id comes from the file organizar. If the course does not exist in table Curso, use this id
  85. for course in data:
  86. name = course["Nombre"]
  87. code = course["Curso"]
  88. creditos = int(course["Creditos"])
  89. section = course["Seccion"]
  90. prof = course["Profesor"]
  91. hours = course["Horario"]
  92. days = course["Dias"]
  93. rooms = course["Salones"]
  94. # seeing if course from json file already exists in table Curso
  95. cursor = connection.cursor()
  96. cursor.execute(f'SELECT id from "CompanionApp_curso" where code = \'{code}\'')
  97. course_id = cursor.fetchone()
  98. # if course does not exist in table Curso, create the course in table Course and create the course in table ProximoSemestre
  99. if course_id == None:
  100. # create course
  101. cursor = connection.cursor()
  102. cursor.execute(f'INSERT INTO "CompanionApp_curso" (name, code, creditos, fac_id_id) VALUES (\'{name}\', \'{code}\', {creditos}, {fac_id})')
  103. # seeing again if course from json file already exists in table Curso to fetch course_id
  104. cursor = connection.cursor()
  105. cursor.execute(f'SELECT id from "CompanionApp_curso" where code = \'{code}\'')
  106. course_id = cursor.fetchone()
  107. # insert course to the table ProxSemestre
  108. course_id = course_id[0]
  109. cursor = connection.cursor()
  110. cursor.execute(f'INSERT INTO "CompanionApp_proximosemestre" (name, code, creditos, section, prof, hours, days, rooms, course_id_id) VALUES (\'{name}\', \'{code}\', {creditos}, \'{section}\', \'{prof}\', \'{hours}\', \'{days}\', \'{rooms}\', {course_id})')
  111. return JsonResponse({'message': 'se insertaron todos los cursos'}, status=status.HTTP_201_CREATED)
  112. @api_view(['PATCH',])
  113. def updateFaculty(request):
  114. if request.method == 'PATCH':
  115. # params from request
  116. fac_id = int(request.data['fac_id_id'])
  117. user_id = int(request.data['id'])
  118. print(type(fac_id))
  119. print('backend', fac_id)
  120. # update faculty
  121. cursor = connection.cursor()
  122. cursor.execute(f'UPDATE "CompanionApp_user" set fac_id_id = {fac_id} where id = {user_id}')
  123. return JsonResponse({'list': 'updated'}, status=status.HTTP_201_CREATED)
  124. # find courses in our Curso table
  125. @api_view(['GET',])
  126. def findCourse(request):
  127. # alternative to .filter
  128. # cursor = connection.cursor()
  129. # cursor.execute(f'SELECT id, code from "CompanionApp_curso" where code LIKE \'{course_code}%\' LIMIT 10')
  130. # courses = cursor.fetchall()
  131. if request.method == 'GET':
  132. course_code = request.query_params['code'].upper()
  133. courses = Curso.objects.filter(code__contains=course_code)[:10]
  134. courses = list(courses.values())
  135. return JsonResponse({'list': courses}, status=status.HTTP_200_OK)
  136. # find courses in our ProximoSemestre table
  137. @api_view(['GET',])
  138. def selectCourseProxSemestre(request):
  139. if request.method == 'GET':
  140. course_code = request.query_params['code'].upper()
  141. courses = ProximoSemestre.objects.filter(code__contains=course_code)[:10]
  142. courses = list(courses.values())
  143. return JsonResponse({'list': courses}, status=status.HTTP_200_OK)
  144. @api_view(['POST',])
  145. def addTakenCourse(request):
  146. if request.method == 'POST':
  147. # request params
  148. user_id = int(request.data['user_id'])
  149. course_id = int(request.data['course_id'])
  150. grade = request.data['grade'].upper()
  151. year = int(request.data['year'])
  152. semester = int(request.data['semester'])
  153. repeating = False
  154. # set point of grade
  155. points = 0
  156. if grade == 'A':
  157. points = 4
  158. elif grade == 'B':
  159. points = 3
  160. elif grade == 'C':
  161. points = 2
  162. elif grade == 'D':
  163. points = 1
  164. elif grade == 'F':
  165. points = 0
  166. else:
  167. return JsonResponse({'msg': 'Insert A, B, C, D or F' }, status=status.HTTP_406_NOT_ACCEPTABLE)
  168. # find course credits
  169. cursor = connection.cursor()
  170. cursor.execute(f'Select creditos from "CompanionApp_curso" where id = {course_id} ')
  171. course = cursor.fetchone()
  172. creditos = int(course[0])
  173. # check if student already took that class in the same year and semester he/she is trying to post
  174. cursor = connection.cursor()
  175. cursor.execute(f'select semestre, year, grade, course_id_id from "CompanionApp_matricula" where semestre = {semester} and year = {year} and course_id_id = {course_id} and user_id_id = {user_id}')
  176. check = cursor.fetchone()
  177. if check != None:
  178. check = list(check)
  179. if int(check[0]) == semester and int(check[1]) == year and check[3] == course_id:
  180. return JsonResponse({'msg': 'You already took the course that year and semester.' }, status=status.HTTP_406_NOT_ACCEPTABLE)
  181. elif int(check[1]) != year:
  182. pass
  183. elif int(check[1] == year) and int(check[0]) != semester:
  184. pass
  185. # matricular al estudiante
  186. cursor = connection.cursor()
  187. cursor.execute(f'INSERT INTO "CompanionApp_matricula" (semestre, year, grade, user_id_id, course_id_id) VALUES ({semester}, {year}, \'{grade}\', {user_id}, {course_id})')
  188. # find credits taken
  189. cursor = connection.cursor()
  190. cursor.execute(f'Select credits_taken from "CompanionApp_user" where id={user_id}')
  191. credits_taken = cursor.fetchone()
  192. credits_taken = int(credits_taken[0])
  193. # find last credits_taken_score
  194. cursor = connection.cursor()
  195. cursor.execute(f'Select credits_taken_score from "CompanionApp_user" where id={user_id}')
  196. credits_taken_score = cursor.fetchone()
  197. credits_taken_score = int(credits_taken_score[0])
  198. # update credits taken
  199. credits_taken += creditos
  200. cursor = connection.cursor()
  201. cursor.execute(f'UPDATE "CompanionApp_user" set credits_taken = {credits_taken} where id ={user_id}')
  202. # update credits_taken_score
  203. credits_taken_score = credits_taken_score + (creditos * points)
  204. cursor = connection.cursor()
  205. cursor.execute(f'UPDATE "CompanionApp_user" set credits_taken_score = {credits_taken_score} where id ={user_id}')
  206. # set GPA and insert it in user
  207. credit_score = credits_taken * 4
  208. gpa = (credits_taken_score / credit_score) * 4.0
  209. gpa = float("{:.2f}".format(gpa))
  210. cursor = connection.cursor()
  211. cursor.execute(f'UPDATE "CompanionApp_user" set gpa = {gpa} where id={user_id}')
  212. return JsonResponse({'list': 'se matriculo al estudiante'}, status=status.HTTP_201_CREATED)
  213. @api_view(['GET'])
  214. def getUserId(request):
  215. if request.method == 'GET':
  216. authorization = request.META.get('HTTP_AUTHORIZATION')
  217. authorization = authorization.split()
  218. token = authorization[1]
  219. cursor = connection.cursor()
  220. cursor.execute(f'SELECT user_id from "authtoken_token" where key = \'{token}\'')
  221. user_id = cursor.fetchone()
  222. user_id = user_id[0]
  223. return JsonResponse({'user_id': user_id}, status=status.HTTP_200_OK)
  224. @api_view(['GET'])
  225. def getFacultyUser(request):
  226. if request.method == 'GET':
  227. print(request.query_params)
  228. user_id = request.query_params['id']
  229. user_id = int(user_id)
  230. cursor = connection.cursor()
  231. cursor.execute(f'select fname from "CompanionApp_facultad" where id in (select fac_id_id from "CompanionApp_user" where id={user_id})')
  232. facultyName = cursor.fetchone()
  233. return JsonResponse({'FacultyName': facultyName}, status=status.HTTP_200_OK)
  234. @api_view(['GET'])
  235. def getAllCoursesUserHasTaken(request):
  236. if request.method == 'GET':
  237. user_id = int(request.query_params['user_id'])
  238. cursor = connection.cursor()
  239. cursor.execute(f'SELECT c.name, c.code, c.creditos, m.user_id_id, m.year, m.semestre, m.grade FROM "CompanionApp_curso" c INNER JOIN "CompanionApp_matricula" m ON (c.id = m.course_id_id) where m.user_id_id = {user_id} and m.grade <> \'N%\' order by m.year ASC, m.semestre ASC')
  240. fetchCourses = cursor.fetchall()
  241. courses = []
  242. # convert courses to an array of objects
  243. for i in range(0, len(fetchCourses)):
  244. dic = {'name': fetchCourses[i][0], 'code': fetchCourses[i][1], 'creditos': fetchCourses[i][2], 'year': fetchCourses[i][4], 'semestre': fetchCourses[i][5], 'grade': fetchCourses[i][6]}
  245. courses.append(dic)
  246. return JsonResponse({'list': courses}, status=status.HTTP_200_OK)
  247. @api_view(['GET'])
  248. def getAllCoursesBySemester(request):
  249. if request.method == 'GET':
  250. user_id = int(request.query_params['user_id'])
  251. year = int(request.query_params['year'])
  252. semestre = int(request.query_params['semestre'])
  253. cursor = connection.cursor()
  254. cursor.execute(f'SELECT c.name, c.code, c.creditos, m.user_id_id, m.year, m.semestre, m.grade FROM "CompanionApp_curso" c INNER JOIN "CompanionApp_matricula" m ON (c.id = m.course_id_id) where m.user_id_id = {user_id} and m.year = {year} and m.semestre = {semestre} and m.grade <> \'N%\' ')
  255. fetchCourses = cursor.fetchall()
  256. courses = []
  257. # convert courses to an array of objects
  258. for i in range(0, len(fetchCourses)):
  259. dic = {'name': fetchCourses[i][0], 'code': fetchCourses[i][1], 'creditos': fetchCourses[i][2], 'year': fetchCourses[i][4], 'semestre': fetchCourses[i][5], 'grade': fetchCourses[i][6]}
  260. courses.append(dic)
  261. return JsonResponse({'list': courses}, status=status.HTTP_200_OK)
  262. @api_view(['POST',])
  263. def seeGPA(request):
  264. if request.method == 'POST':
  265. user_id = int(request.data['user_id'])
  266. cursor = connection.cursor()
  267. cursor.execute(f'SELECT gpa from "CompanionApp_user" where id={user_id}')
  268. GPA = cursor.fetchone()
  269. return JsonResponse({'gpa': GPA}, status = status.HTTP_200_OK)
  270. @api_view(['GET', 'POST'])
  271. def hello_world(request):
  272. # if request.user.is_authenticated:
  273. if request.method == 'GET':
  274. return JsonResponse({'msg': request.user.email}, status = status.HTTP_200_OK)
  275. return JsonResponse({'msg': 'no'})