def create(): form = StudentForm(request.form) # get all the schools from the schools table school_list = [(str(row.id), row.name) for row in School.objects()] form.school.choices = school_list if request.method == 'POST' and form.validate(): # check if a user exist with the given email or not existing_user = User.objects().filter(email=form.email.data).first() if existing_user is None: # have to hash password #get the school id here. hash_password = bcrypt.hashpw(form.password.data.encode('utf-8'), bcrypt.gensalt()) # check if the school is listed or not school_id = form.school.data user = User() # create instance of User model and assign form data to it user.user_type = 'student' user.name = form.name.data user.surname = form.surname.data user.email = form.email.data user.password = hash_password user.approved = False user.login_counter = 1 user.login_array = [datetime.datetime.now()] user.school = ObjectId(school_id) user.save() session['email'] = user.email return redirect(url_for('students.PersonalQuestion')) else: flash('User with this email already exist') return redirect(url_for('students.create')) return render_template('student-create.html', form=form)
def create(): form = TeacherForm(request.form) # get all the schools from the schools table school_list = [(str(row.id), row.name) for row in School.objects()] school_list.append(("not-listed", "My school is not listed")) form.school.choices = school_list if request.method == 'POST' and form.validate(): # check if a user exist with the given email or not existing_user = User.objects().filter(email=form.email.data).first() if existing_user is None: # before inserting the document into database we have to hash password hash_password = bcrypt.hashpw(form.password.data.encode('utf-8'), bcrypt.gensalt()) # check if the school is listed or not school_id = form.school.data if form.school.data == 'not-listed': # if the school name isn't listed when signing up: # get the name of the school school_name = request.form.get('school_name') # insert the school into the database school = School() school.name = school_name # need to create document in Module1, Module2, Module3 collections for this school module1 = Module1() module1.save() # blank module1 document is saved to the database school.module1 = module1.id # saving the id for the module1 document created for this school. # school.module1 is of type ReferenceField meaning that this will be a reference to the document in the Module1 collection for this school. module2 = Module2() module2.save() school.module2 = module2.id # same idea again, collection Module2 contains all information about all Module2s for every school # school.module1 is of type ReferenceField meaning that this will be a reference to the document in the Module1 collection for this school. module3 = Module3() module3.save() school.module3 = module3.id school.save() school_id = school.id user = User() # finally create document in User collection containing information about the registering user user.title = form.title.data user.user_type = 'instructor' user.name = form.name.data user.surname = form.surname.data user.email = form.email.data user.password = hash_password user.school = ObjectId(school_id) # save the user user.save() session['email'] = user.email return redirect(url_for('teachers.profile')) else: flash('User with this email already exist') return redirect(url_for('teachers.create')) return render_template('teacher-create.html', form=form)
def create_admin(): form = AdminForm(request.form) # get all the schools from the schools table school_list = [(str(row.id), row.name) for row in School.objects()] school_list.append(("not-listed", "My school is not listed")) form.school.choices = school_list if request.method == 'POST' and form.validate(): # check if a user exist with the given email or not existing_user = User.objects().filter(email=form.email.data).first() # Here check the SECRET KEY if existing_user is None and form.secret.data == 'some_super_secret_text_here': # before inserting the document into database we have to hash password hash_password = bcrypt.hashpw(form.password.data.encode('utf-8'), bcrypt.gensalt()) # check if the school is listed or not school_id = form.school.data if form.school.data == 'not-listed': # get the name of the school school_name = request.form.get('school_name') # insert the school into the database school = School() school.name = school_name # here create the module1, module2, module3 module1 = Module1() module1.save() school.module1 = module1.id module2 = Module2() module2.save() school.module2 = module2.id module3 = Module3() module3.save() school.module3 = module3.id school.save() school_id = school.id user = User() # create document in User collection to contain information about registering user user.title = form.title.data user.user_type = 'admin' user.name = form.name.data user.surname = form.surname.data user.email = form.email.data user.password = hash_password user.school = ObjectId(school_id) user.save() session['email'] = user.email return redirect(url_for('teachers.profile')) else: if form.secret.data != 'some_super_secret_text_here': flash('Wrong secret key !') else: flash('User with this email already exist') return redirect(url_for('teachers.create_admin')) return render_template('admin-create.html', form=form)