Compare commits

...

2 Commits

Author SHA1 Message Date
Kostanjevec eee26a2b3b medthos come in lists 2022-06-08 20:56:11 +02:00
Kostanjevec 3e7970c4f3 add db update un new file upload 2022-06-08 20:54:50 +02:00
2 changed files with 11 additions and 10 deletions

2
app.py
View File

@ -47,7 +47,7 @@ def create_app(test_config=None):
#@login_required
@app.route('/deck/index', methods=("GET", "POST"))
@app.route('/deck/index', methods=["GET", "POST"])
def deck():
if 'user_id' in session:
user_id = session['user_id']

View File

@ -44,20 +44,21 @@ def upload_file():
script_path = os.path.dirname(os.path.abspath(__file__))
temp_path = script_path + "\\temp\\"
#a lot of stuff can wrong here and nobody may know
with tempfile.NamedTemporaryFile(dir=temp_path, delete=False) as fp:
fp.write(upload.stream.read())
path = fp.name
fp.close()
nc.put_file("/GIA CLOUD/" + filename, "temp\\" + path.split("\\")[-1])
os.remove(fp.name)
os.remove(fp.name)
#get public link
link = nc.share_file_with_link("/GIA CLOUD/" + filename)
print(link)
#update db
#predpostavlja title, ir, owner_id, item_location
#card = Card(title=name, interest_rate=-1.0, owner_id=1, item_location=link, )
#dbsession.add(card)
#dbsession.commit()
public_link = nc.share_file_with_link("/GIA CLOUD/" + filename).get_link()+"/download/"+filename
#add card
card = Card(title=filename, interest_rate=-1.0, owner_id=user_id, item_location=public_link, last_review=None)
dbsession.add(card)
dbsession.commit()
return render_template("menu/upload.html", message=message, user_id=user_id, username=username)