Skip to content

Commit f88b0c5

Browse files
committedMar 10, 2020
postgres support added
1 parent bafe4d7 commit f88b0c5

File tree

5 files changed

+64
-1
lines changed

5 files changed

+64
-1
lines changed
 

‎app/__init__.py

+14-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,10 @@
11
from flask import Flask
2-
2+
import os
33
from flask_pymongo import PyMongo
44
from celery import Celery
5+
from flask_sqlalchemy import SQLAlchemy
6+
7+
58

69
mongo = PyMongo()
710
celery = Celery('flask_api')
@@ -22,9 +25,19 @@ def initialize_extensions(application):
2225
mongo.init_app(application)
2326
from app.models.user import User
2427

28+
from app.models.rating import Rating
29+
30+
db = SQLAlchemy(application)
31+
32+
2533

2634
def register_blueprints(application):
2735
from app.controllers import user_blueprints
2836
application.register_blueprint(user_blueprints)
2937

3038

39+
40+
config_filename = os.path.abspath(os.path.dirname(__file__)) + "/../instance/development.cfg"
41+
app = Flask(__name__)
42+
app.config.from_pyfile(config_filename)
43+
db = SQLAlchemy(app)

‎app/controllers/__init__.py

+2
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
from flask import Blueprint, current_app
33

44
from app.controllers.users_controller import index as users_index
5+
from app.controllers.users_controller import ratings as users_ratings
56
from app.controllers.users_controller import home as users_home
67

78

@@ -10,6 +11,7 @@
1011

1112
user_blueprints = Blueprint('users', 'api', template_folder=template_dir)
1213
user_blueprints.add_url_rule('/users', view_func=users_index, methods=['GET'])
14+
user_blueprints.add_url_rule('/ratings', view_func=users_ratings, methods=['GET'])
1315
user_blueprints.add_url_rule('/home', view_func=users_home, methods=['GET'])
1416

1517

‎app/controllers/users_controller.py

+15
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22

33
#from . import user_blueprints
44
from app.models.user import User
5+
from app.models.rating import Rating
6+
57
from app import mongo
68
from app.jobs.user_job import new_task
79
import app.helpers.user_service as us
@@ -13,6 +15,19 @@ def index():
1315
us.say_hello('hello')
1416
return jsonify({'data': users})
1517

18+
19+
def ratings():
20+
user_ratings = Rating.query.all()
21+
ratings = []
22+
for rating in user_ratings:
23+
d1 = {}
24+
d1["user_id"] = rating.user_id
25+
d1["item_id"] = rating.item_id
26+
d1["rating"] = rating.rating
27+
ratings.append(d1)
28+
return jsonify({'data': ratings})
29+
30+
1631
#@user_blueprints.route('/home')
1732
def home():
1833
return render_template('index.html')

‎app/models/rating.py

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
from app import db
2+
from sqlalchemy.dialects.postgresql import JSON
3+
4+
5+
class Rating(db.Model):
6+
__tablename__ = 'ratings'
7+
8+
9+
id = db.Column(db.Integer, primary_key=True)
10+
user_id = db.Column(db.Integer)
11+
item_id = db.Column(db.Integer)
12+
rating = db.Column(db.Integer)
13+
14+
15+
def __repr__(self):
16+
return '<id {}>'.format(self.id)
17+
18+
19+

‎instance/development.cfg

+14
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,18 @@ import os
44

55
basedir = os.path.abspath(os.path.dirname(__file__))
66

7+
# MongoDB
78
MONGO_URI = "mongodb://127.0.0.1:27017/codeitup_team10"
9+
10+
11+
12+
# PostgresSQL
13+
POSTGRES_USER = "postgres"
14+
POSTGRES_PW = "welcome"
15+
POSTGRES_URL = "127.0.0.1:5432"
16+
POSTGRES_DB = "user_system_test"
17+
18+
DB_URL = 'postgresql+psycopg2://{user}:{pw}@{url}/{db}'.format(user=POSTGRES_USER,pw=POSTGRES_PW,url=POSTGRES_URL,db=POSTGRES_DB)
19+
20+
SQLALCHEMY_TRACK_MODIFICATIONS = False
21+
SQLALCHEMY_DATABASE_URI = DB_URL

0 commit comments

Comments
 (0)
Please sign in to comment.