Welcome to the Treehouse Community
Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.
Start your free trialElvin Mazwimairi
15,541 Pointsstuck on this challenge. I cant seem to find my fault
iT KEEPS ON BUMMERING ME, WITH A TRY AGAIN, FOR THIS LAST CHALLENGE
import datetime
from argon2 import PasswordHasher
from itsdangerous import (TimedJSONWebSignatureSerializer as Serializer,
BadSignature, SignatureExpired)
from peewee import *
DATABASE = SqliteDatabase('courses.sqlite')
HASHER = PasswordHasher()
class User(Model):
username = CharField(unique=True)
email = CharField(unique=True)
password = CharField()
class Meta:
database = DATABASE
@classmethod
def create_user(cls, username, email, password, **kwargs):
email = email.lower()
try:
cls.select().where(
(cls.email == email) | (cls.username**username)
).get()
except cls.DoesNotExist:
user = cls(username=username, email=email)
user.password = cls.HASHER.hash(password)
user.save()
return user
else:
raise Exception("User with that email or username already exists.")
@staticmethod
def verify_auth_token(token):
serializer = Serializer(config.SECRET_KEY)
try:
data = serializer.loads(token)
except (SignatureExpired, BadSignature):
return None
else:
user = User.get(User.id == data['id'])
return user
@staticmethod
def hash_password(password):
return HASHER.hash(password)
def verify_password(self, password):
return HASHER.verify(self.password, password)
def generate_auth_token(self, expires=3600):
serializer = Serializer(config.SECRET_KEY, expires_in=expires)
return serializer.dumps({'id': self.id})
class Course(Model):
title = CharField()
url = CharField(unique=True)
created_at = DateTimeField(default=datetime.datetime.now)
class Meta:
database = DATABASE
class Review(Model):
course = ForeignKeyField(Course, related_name='review_set')
rating = IntegerField()
comment = TextField(default='')
created_at = DateTimeField(default=datetime.datetime.now)
created_by = ForeignKeyField(User, related_name='review_set')
class Meta:
database = DATABASE
def initialize():
DATABASE.connect()
DATABASE.create_tables([User, Course, Review], safe=True)
DATABASE.close()
1 Answer
Steven Parker
231,248 PointsThe clue is right in the instructions, when they say to set the password "using the User.hash_password method you just created."
But instead of "User.hash_password
", the code here is setting the password by calling "cls.HASHER.hash
" instead.
Also, it looks like several other bits of code have been added that are not part of the challenge! To avoid confusing the validation, always do only what the instructions ask for.
Elvin Mazwimairi
15,541 PointsOkay thanks Steven, Let me revisit the challenge again
Steven Parker
231,248 PointsGlad to help, and I don't recall seeing the word "Bummering" before, but I like it and plan to add it to my vocabulary!
Happy coding!
Elvin Mazwimairi
15,541 PointsElvin Mazwimairi
15,541 PointsSorry, this is the question: Challenge Task 3 of 3 Almost done!
Now I need you to update the create_user method so that it sets the User instance's password using the User.hash_password method you just created. You should see the TODO for where to add this.