2024-03-07 02:22:53 +10:00
|
|
|
from flask import Blueprint, render_template, request
|
|
|
|
|
2024-03-07 02:56:27 +10:00
|
|
|
from app.models.collection import Collection
|
|
|
|
from app.extensions import db
|
|
|
|
|
2024-03-07 02:22:53 +10:00
|
|
|
collections = Blueprint("collections", __name__, url_prefix="/collections", template_folder="templates")
|
2024-03-07 02:56:27 +10:00
|
|
|
|
2024-03-08 16:39:04 +10:00
|
|
|
@collections.route('/', methods=["POST"])
|
|
|
|
def create_collection():
|
|
|
|
data = request.form
|
|
|
|
name = data.get('collection_name')
|
|
|
|
|
|
|
|
if not name:
|
|
|
|
return render_template('collections/create_form.j2', collections_error='Введите название базы!')
|
|
|
|
|
|
|
|
if Collection.exists(name):
|
|
|
|
return render_template('collections/create_form.j2', collections_error='База уже существует!')
|
|
|
|
|
|
|
|
swap = 'afterbegin' if len(Collection.query.all()) > 0 else 'innerHTML'
|
|
|
|
|
|
|
|
collection = Collection(name=name)
|
|
|
|
|
|
|
|
db.session.add(collection)
|
|
|
|
db.session.commit()
|
|
|
|
|
|
|
|
return f"<option value=\"{collection.id}\" selected>{ collection.name }</option>", 200, {'Hx-Reswap': swap, 'HX-Retarget': '#collection-select'}
|
|
|
|
|
2024-03-07 02:56:27 +10:00
|
|
|
@collections.route("/<int:id>", methods=["DELETE"])
|
|
|
|
def delete_collection(id: int):
|
|
|
|
|
|
|
|
collection: Collection = Collection.query.get_or_404(id)
|
|
|
|
|
|
|
|
length = len(Collection.query.all()) - 1
|
|
|
|
|
|
|
|
db.session.delete(collection)
|
|
|
|
db.session.commit()
|
|
|
|
|
|
|
|
if length <= 0:
|
|
|
|
return "<small class=\"form-text\">Здесь ничего нет</small>", 200
|
|
|
|
|
2024-03-08 16:39:04 +10:00
|
|
|
return "", 200
|