Skip to content

Commit 51070d2

Browse files
user api tested
1 parent ce082ad commit 51070d2

File tree

7 files changed

+85
-16
lines changed

7 files changed

+85
-16
lines changed

.idea/OAuth2.0.iml

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/dataSources.xml

+17
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/misc.xml

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

03 _User Registration/models.py

+25
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
from sqlalchemy import Column, Integer, String
2+
from sqlalchemy.ext.declarative import declarative_base
3+
from sqlalchemy.orm import relationship, sessionmaker
4+
from sqlalchemy import create_engine
5+
from passlib.apps import custom_app_context as pwd_context
6+
7+
Base = declarative_base()
8+
9+
10+
class User(Base):
11+
__tablename__ = 'user'
12+
id = Column(Integer, primary_key=True)
13+
username = Column(String(32), index=True)
14+
password_hash = Column(String(64))
15+
16+
def hash_password(self, password):
17+
self.password_hash = pwd_context.encrypt(password)
18+
19+
def verify_password(self, password):
20+
return pwd_context.verify(password, self.password_hash)
21+
22+
23+
engine = create_engine('sqlite:///users.db')
24+
25+
Base.metadata.create_all(engine)

03 _User Registration/users.db

3 KB
Binary file not shown.

03 _User Registration/views.py

+41
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
from models import Base, User
2+
from flask import Flask, jsonify, request, url_for, abort
3+
from sqlalchemy.ext.declarative import declarative_base
4+
from sqlalchemy.orm import relationship, sessionmaker
5+
from sqlalchemy import create_engine
6+
7+
from flask import Flask
8+
9+
engine = create_engine('sqlite:///users.db')
10+
11+
Base.metadata.bind = engine
12+
DBSession = sessionmaker(bind=engine)
13+
session = DBSession()
14+
app = Flask(__name__)
15+
16+
@app.route('/api/users', methods = ['POST'])
17+
def new_user():
18+
username = request.json.get('username')
19+
password = request.json.get('password')
20+
if username is None or password is None:
21+
abort(400) # missing arguments
22+
elif session.query(User).filter_by(username = username).first() is not None:
23+
abort(400) # existing user
24+
25+
user = User(username = username)
26+
user.hash_password(password)
27+
session.add(user)
28+
session.commit()
29+
return jsonify({ 'username': user.username }), 201, {'Location': url_for('get_user', id = user.id, _external = True)}
30+
31+
@app.route('/api/users/<int:id>')
32+
def get_user(id):
33+
user = session.query(User).filter_by(id=id).one()
34+
if not user:
35+
abort(400)
36+
return jsonify({'username': user.username})
37+
38+
39+
if __name__ == '__main__':
40+
app.debug = True
41+
app.run(host='0.0.0.0', port=5000,threaded=False)

models.py

-14
Original file line numberDiff line numberDiff line change
@@ -43,19 +43,5 @@ def serialize(self):
4343
}
4444

4545

46-
class User(Base):
47-
__tablename__ = 'user'
48-
49-
id = Column(Integer, primary_key=True)
50-
username = Column(String(32), index=True)
51-
password_hash = Column(String(64))
52-
53-
def hash_password(self, password):
54-
self.password_hash = pwd_context.encrypt(password)
55-
56-
def verify_password(self, password):
57-
return pwd_context.verify(password, self.password_hash)
58-
59-
6046
engine = create_engine('sqlite:///puppies.db')
6147
Base.metadata.create_all(engine)

0 commit comments

Comments
 (0)