add db update un new file upload

master
Kostanjevec 2022-06-08 20:54:50 +02:00
parent 702b82fc3e
commit 3e7970c4f3
1 changed files with 10 additions and 9 deletions

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)