added some matching functionality

master
Kostanjevec 2022-06-14 02:17:58 +02:00
parent fb67c7a49f
commit b787449905
2 changed files with 68 additions and 0 deletions

49
matches.py 100644
View File

@ -0,0 +1,49 @@
from flask import (
Blueprint, redirect, render_template, request, session, url_for
)
from requests import get
from sqlalchemy import create_engine
from sqlalchemy.orm import sessionmaker
from config import CONFIG
from create_db import Card
bp = Blueprint('matches', __name__, url_prefix='/matches')
engine = create_engine(CONFIG['DB_CONNECTION'])
dbsessionmaker = sessionmaker(bind=engine)
dbsession = dbsessionmaker()
def get_matches(user_id):
list_of_matches = []
#in all shared cards for the ones you votes yes
all_cards = dbsession.query(Card)
all_shared_of_user_of_ir_1 = all_cards.filter(Card.share_id != "0", Card.owner_id == user_id, Card.interest_rate == 1).all()
if all_shared_of_user_of_ir_1 == []:
return list_of_matches
# see who else voted yes
for c in all_shared_of_user_of_ir_1:
others_yes = all_cards.filter(Card.share_id == c.share_id, Card.interest_rate == 1).all()
if others_yes == []:
pass
else:
list_of_matches.append(others_yes)
return list_of_matches
@bp.route("/", methods=("GET", "POST"))
def index():
if not 'user_id' in session:
redirect(url_for('index'))
user_id = session["user_id"]
username = session["username"]
list_of_matches = get_matches(user_id)
#@TODO tu bi morali dodati še nek users object, da own_id pretvorimo v username
return render_template("matches.html", username=username, list_of_matches=list_of_matches)

View File

@ -0,0 +1,19 @@
{% extends 'base.html' %}
{% block header %}
<head>Matches</head>
{% endblock %}
{% block content %}
<p>Hello</p>
{% if list_of_matches %}
{% for match in list_of_matches %}
{% for card in match %}
<p>{{ card['title'] }}</p>
{% endfor %}
{% endfor %}
{% else %}
<p>You have no matches at the moment</p>
{% endif %}
{% endblock %}