Run pre-commit
Co-authored-by: Ezequiel Bellver <ebellver@itba.edu.ar> Co-authored-by: Juan Barmasch <jbarmasch@itba.edu.ar>
This commit is contained in:
parent
9ffd45dfb6
commit
cd27603712
|
@ -4,8 +4,8 @@ from fastapi import APIRouter
|
||||||
from fastapi.responses import JSONResponse
|
from fastapi.responses import JSONResponse
|
||||||
|
|
||||||
from bsition.api.models.document import Document, DocumentUpdate
|
from bsition.api.models.document import Document, DocumentUpdate
|
||||||
from bsition.backend.mongo import documents as mongo
|
|
||||||
from bsition.backend.elastic import search as elastic
|
from bsition.backend.elastic import search as elastic
|
||||||
|
from bsition.backend.mongo import documents as mongo
|
||||||
|
|
||||||
router = APIRouter()
|
router = APIRouter()
|
||||||
|
|
||||||
|
|
|
@ -4,8 +4,8 @@ from fastapi.security import OAuth2PasswordRequestForm
|
||||||
|
|
||||||
from bsition.api.utils.jwt import write_token
|
from bsition.api.utils.jwt import write_token
|
||||||
from bsition.api.utils.password import verify_password
|
from bsition.api.utils.password import verify_password
|
||||||
from bsition.backend.redis.tokens import add_token
|
|
||||||
from bsition.backend.postgres.users import get_user_by_username
|
from bsition.backend.postgres.users import get_user_by_username
|
||||||
|
from bsition.backend.redis.tokens import add_token
|
||||||
|
|
||||||
router = APIRouter()
|
router = APIRouter()
|
||||||
|
|
||||||
|
|
|
@ -4,8 +4,8 @@ from fastapi.responses import JSONResponse
|
||||||
from bsition.api.models.user import User
|
from bsition.api.models.user import User
|
||||||
from bsition.api.utils.password import get_hashed_password
|
from bsition.api.utils.password import get_hashed_password
|
||||||
from bsition.api.utils.security import get_current_user
|
from bsition.api.utils.security import get_current_user
|
||||||
from bsition.backend.redis import tokens as redis
|
|
||||||
from bsition.backend.postgres import users as postgres
|
from bsition.backend.postgres import users as postgres
|
||||||
|
from bsition.backend.redis import tokens as redis
|
||||||
|
|
||||||
router = APIRouter()
|
router = APIRouter()
|
||||||
|
|
||||||
|
|
|
@ -4,8 +4,8 @@ from jwt import exceptions
|
||||||
from starlette import status
|
from starlette import status
|
||||||
|
|
||||||
from bsition.api.utils.jwt import validate_token
|
from bsition.api.utils.jwt import validate_token
|
||||||
from bsition.backend.redis.tokens import valid_token
|
|
||||||
from bsition.backend.postgres.users import get_user_by_username
|
from bsition.backend.postgres.users import get_user_by_username
|
||||||
|
from bsition.backend.redis.tokens import valid_token
|
||||||
|
|
||||||
oauth2_scheme = OAuth2PasswordBearer(tokenUrl="api/token")
|
oauth2_scheme = OAuth2PasswordBearer(tokenUrl="api/token")
|
||||||
|
|
||||||
|
|
|
@ -1,8 +1,8 @@
|
||||||
from dotenv import load_dotenv
|
from dotenv import load_dotenv
|
||||||
|
|
||||||
from bsition.backend.elastic.utils import create_index
|
from bsition.backend.elastic.utils import create_index
|
||||||
from bsition.backend.postgres.users import create_user_table
|
|
||||||
from bsition.backend.postgres.tables import add_function
|
from bsition.backend.postgres.tables import add_function
|
||||||
|
from bsition.backend.postgres.users import create_user_table
|
||||||
|
|
||||||
|
|
||||||
def configure():
|
def configure():
|
||||||
|
|
|
@ -16,9 +16,9 @@ def insert_columns(id, name, type, data):
|
||||||
new_column_names.append(name)
|
new_column_names.append(name)
|
||||||
new_types = doc["types"].copy()
|
new_types = doc["types"].copy()
|
||||||
new_types.append(type)
|
new_types.append(type)
|
||||||
docs_coll.update_one({"_id": id}, {"$set": {
|
docs_coll.update_one(
|
||||||
"column_names": new_column_names, "types": new_types}
|
{"_id": id}, {"$set": {"column_names": new_column_names, "types": new_types}}
|
||||||
})
|
)
|
||||||
|
|
||||||
|
|
||||||
def edit_column(row_number, column, data, id):
|
def edit_column(row_number, column, data, id):
|
||||||
|
@ -31,9 +31,7 @@ def edit_column(row_number, column, data, id):
|
||||||
i = column_names.index(column)
|
i = column_names.index(column)
|
||||||
new_data[row_number]["column_data"][i] = data
|
new_data[row_number]["column_data"][i] = data
|
||||||
|
|
||||||
docs_coll.update_one({"_id": id}, {"$set": {
|
docs_coll.update_one({"_id": id}, {"$set": {"data": new_data}})
|
||||||
"data": new_data}
|
|
||||||
})
|
|
||||||
|
|
||||||
|
|
||||||
def sort(id):
|
def sort(id):
|
||||||
|
@ -45,14 +43,16 @@ def sort(id):
|
||||||
sort_values = postgres.get_sort(id)
|
sort_values = postgres.get_sort(id)
|
||||||
obj = {}
|
obj = {}
|
||||||
for sort in sort_values:
|
for sort in sort_values:
|
||||||
obj['data.column_data.' + str(column_names.index(sort[1]))] = 1 if sort[2] == 'ASC' else -1
|
obj["data.column_data." + str(column_names.index(sort[1]))] = (
|
||||||
|
1 if sort[2] == "ASC" else -1
|
||||||
|
)
|
||||||
|
|
||||||
pipeline = [
|
pipeline = [
|
||||||
{"$match": {"_id": id}},
|
{"$match": {"_id": id}},
|
||||||
{"$unwind": '$data'},
|
{"$unwind": "$data"},
|
||||||
{"$sort": obj},
|
{"$sort": obj},
|
||||||
{"$group": {"_id": '$_id', 'aux': {"$push": '$data'}}},
|
{"$group": {"_id": "$_id", "aux": {"$push": "$data"}}},
|
||||||
{"$project": {'data': '$aux'}}
|
{"$project": {"data": "$aux"}},
|
||||||
]
|
]
|
||||||
return list(docs_coll.aggregate(pipeline))
|
return list(docs_coll.aggregate(pipeline))
|
||||||
|
|
||||||
|
@ -68,42 +68,43 @@ def filter(id):
|
||||||
for filter in filter_values:
|
for filter in filter_values:
|
||||||
match filter[3]:
|
match filter[3]:
|
||||||
case "e":
|
case "e":
|
||||||
obj['data.column_data.' + str(column_names.index(filter[1]))] = {
|
obj["data.column_data." + str(column_names.index(filter[1]))] = {
|
||||||
"$eq": filter[2]
|
"$eq": filter[2]
|
||||||
}
|
}
|
||||||
case "ne":
|
case "ne":
|
||||||
obj['data.column_data.' + str(column_names.index(filter[1]))] = {
|
obj["data.column_data." + str(column_names.index(filter[1]))] = {
|
||||||
"$ne": filter[2]
|
"$ne": filter[2]
|
||||||
}
|
}
|
||||||
case "le":
|
case "le":
|
||||||
obj['data.column_data.' + str(column_names.index(filter[1]))] = {
|
obj["data.column_data." + str(column_names.index(filter[1]))] = {
|
||||||
"$lte": filter[2]
|
"$lte": filter[2]
|
||||||
}
|
}
|
||||||
case "ge":
|
case "ge":
|
||||||
obj['data.column_data.' + str(column_names.index(filter[1]))] = {
|
obj["data.column_data." + str(column_names.index(filter[1]))] = {
|
||||||
"$gte": filter[2]
|
"$gte": filter[2]
|
||||||
}
|
}
|
||||||
case "l":
|
case "l":
|
||||||
obj['data.column_data.' + str(column_names.index(filter[1]))] = {
|
obj["data.column_data." + str(column_names.index(filter[1]))] = {
|
||||||
"$lt": filter[2]
|
"$lt": filter[2]
|
||||||
}
|
}
|
||||||
case "g":
|
case "g":
|
||||||
obj['data.column_data.' + str(column_names.index(filter[1]))] = {
|
obj["data.column_data." + str(column_names.index(filter[1]))] = {
|
||||||
"$gt": filter[2]
|
"$gt": filter[2]
|
||||||
}
|
}
|
||||||
case "c":
|
case "c":
|
||||||
obj['data.column_data.' + str(column_names.index(filter[1]))] = {
|
obj["data.column_data." + str(column_names.index(filter[1]))] = {
|
||||||
"$regex": ".*" + filter[2] + ".*", "$options": "i"
|
"$regex": ".*" + filter[2] + ".*",
|
||||||
|
"$options": "i",
|
||||||
}
|
}
|
||||||
case "_":
|
case "_":
|
||||||
raise "Invalid filter function"
|
raise "Invalid filter function"
|
||||||
|
|
||||||
pipeline = [
|
pipeline = [
|
||||||
{"$match": {"_id": id}},
|
{"$match": {"_id": id}},
|
||||||
{"$unwind": '$data'},
|
{"$unwind": "$data"},
|
||||||
{"$match": obj},
|
{"$match": obj},
|
||||||
{"$group": {"_id": '$_id', 'aux': {"$push": '$data'}}},
|
{"$group": {"_id": "$_id", "aux": {"$push": "$data"}}},
|
||||||
{"$project": {'data': '$aux'}}
|
{"$project": {"data": "$aux"}},
|
||||||
]
|
]
|
||||||
return list(docs_coll.aggregate(pipeline))
|
return list(docs_coll.aggregate(pipeline))
|
||||||
|
|
||||||
|
@ -121,6 +122,7 @@ def remove_column(id, column):
|
||||||
for row in data:
|
for row in data:
|
||||||
del row["column_data"][idx]
|
del row["column_data"][idx]
|
||||||
|
|
||||||
docs_coll.update_one({"_id": id}, {"$set": {
|
docs_coll.update_one(
|
||||||
"column_names": column_names, "types": types, "data": data}
|
{"_id": id},
|
||||||
})
|
{"$set": {"column_names": column_names, "types": types, "data": data}},
|
||||||
|
)
|
||||||
|
|
|
@ -7,24 +7,28 @@ def create_relations_tables():
|
||||||
conn = get_connection()
|
conn = get_connection()
|
||||||
cur = conn.cursor()
|
cur = conn.cursor()
|
||||||
cur.execute(
|
cur.execute(
|
||||||
sql.SQL("""
|
sql.SQL(
|
||||||
|
"""
|
||||||
CREATE TABLE table_access (
|
CREATE TABLE table_access (
|
||||||
user_id INTEGER REFERENCES users(id),
|
user_id INTEGER REFERENCES users(id),
|
||||||
table_id INTEGER,
|
table_id INTEGER,
|
||||||
access_type INTEGER CHECK (access_type IN (1, 2, 3)),
|
access_type INTEGER CHECK (access_type IN (1, 2, 3)),
|
||||||
PRIMARY KEY (user_id, table_id)
|
PRIMARY KEY (user_id, table_id)
|
||||||
)
|
)
|
||||||
""")
|
"""
|
||||||
|
)
|
||||||
)
|
)
|
||||||
cur.execute(
|
cur.execute(
|
||||||
sql.SQL("""
|
sql.SQL(
|
||||||
|
"""
|
||||||
CREATE TABLE doc_access (
|
CREATE TABLE doc_access (
|
||||||
user_id INTEGER REFERENCES users(id),
|
user_id INTEGER REFERENCES users(id),
|
||||||
doc_id INTEGER,
|
doc_id INTEGER,
|
||||||
access_type INTEGER CHECK (access_type IN (1, 2, 3)),
|
access_type INTEGER CHECK (access_type IN (1, 2, 3)),
|
||||||
PRIMARY KEY (user_id, doc_id)
|
PRIMARY KEY (user_id, doc_id)
|
||||||
)
|
)
|
||||||
""")
|
"""
|
||||||
|
)
|
||||||
)
|
)
|
||||||
conn.commit()
|
conn.commit()
|
||||||
|
|
||||||
|
@ -44,17 +48,19 @@ def give_access(user_id, id, access_type, destination):
|
||||||
conn = get_connection()
|
conn = get_connection()
|
||||||
cur = conn.cursor()
|
cur = conn.cursor()
|
||||||
cur.execute(
|
cur.execute(
|
||||||
sql.SQL("""
|
sql.SQL(
|
||||||
INSERT INTO {destination_name} (user_id, {destination_id}, access_type)
|
"""
|
||||||
|
INSERT INTO {destination_name} (user_id, {destination_id}, access_type)
|
||||||
VALUES ({user_id}, {id}, {access_type})
|
VALUES ({user_id}, {id}, {access_type})
|
||||||
ON CONFLICT (user_id, {destination_id}) DO UPDATE
|
ON CONFLICT (user_id, {destination_id}) DO UPDATE
|
||||||
SET access_type = {access_type}
|
SET access_type = {access_type}
|
||||||
""").format(
|
"""
|
||||||
|
).format(
|
||||||
user_id=sql.Literal(user_id),
|
user_id=sql.Literal(user_id),
|
||||||
destination_name=sql.Identifier(destination + "_access"),
|
destination_name=sql.Identifier(destination + "_access"),
|
||||||
destination_id=sql.Identifier(destination + "_id"),
|
destination_id=sql.Identifier(destination + "_id"),
|
||||||
access_type=sql.Literal(access_type),
|
access_type=sql.Literal(access_type),
|
||||||
id=sql.Literal(id)
|
id=sql.Literal(id),
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
conn.commit()
|
conn.commit()
|
||||||
|
@ -74,11 +80,13 @@ def has_access(user_id, id, destination):
|
||||||
conn = get_connection()
|
conn = get_connection()
|
||||||
cur = conn.cursor()
|
cur = conn.cursor()
|
||||||
cur.execute(
|
cur.execute(
|
||||||
sql.SQL("SELECT access_type FROM {destination_access} WHERE user_id = {user_id} AND {destination_id} = {id}").format(
|
sql.SQL(
|
||||||
|
"SELECT access_type FROM {destination_access} WHERE user_id = {user_id} AND {destination_id} = {id}"
|
||||||
|
).format(
|
||||||
user_id=sql.Literal(user_id),
|
user_id=sql.Literal(user_id),
|
||||||
destination_access=sql.Identifier(destination + "_access"),
|
destination_access=sql.Identifier(destination + "_access"),
|
||||||
destination_id=sql.Identifier(destination + "_id"),
|
destination_id=sql.Identifier(destination + "_id"),
|
||||||
id=sql.Literal(id)
|
id=sql.Literal(id),
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
return list(cur.fetchall())
|
return list(cur.fetchall())
|
||||||
|
@ -99,11 +107,13 @@ def deny_access(user_id, id, destination):
|
||||||
conn = get_connection()
|
conn = get_connection()
|
||||||
cur = conn.cursor()
|
cur = conn.cursor()
|
||||||
cur.execute(
|
cur.execute(
|
||||||
sql.SQL("DELETE FROM {destination_access} WHERE user_id = {user_id} AND {destination_id} = {id}").format(
|
sql.SQL(
|
||||||
|
"DELETE FROM {destination_access} WHERE user_id = {user_id} AND {destination_id} = {id}"
|
||||||
|
).format(
|
||||||
user_id=sql.Literal(user_id),
|
user_id=sql.Literal(user_id),
|
||||||
destination_access=sql.Identifier(destination + "_access"),
|
destination_access=sql.Identifier(destination + "_access"),
|
||||||
destination_id=sql.Identifier(destination + "_id"),
|
destination_id=sql.Identifier(destination + "_id"),
|
||||||
id=sql.Literal(id)
|
id=sql.Literal(id),
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
conn.commit()
|
conn.commit()
|
||||||
|
|
|
@ -96,8 +96,7 @@ def add_filter(id, property, value, function):
|
||||||
conn = get_connection()
|
conn = get_connection()
|
||||||
cur = conn.cursor()
|
cur = conn.cursor()
|
||||||
cur.execute(
|
cur.execute(
|
||||||
sql.SQL("INSERT INTO t_filter VALUES (%s, %s, %s, %s)").format(
|
sql.SQL("INSERT INTO t_filter VALUES (%s, %s, %s, %s)").format(),
|
||||||
),
|
|
||||||
(id, property, value, function),
|
(id, property, value, function),
|
||||||
)
|
)
|
||||||
conn.commit()
|
conn.commit()
|
||||||
|
|
Loading…
Reference in New Issue