Add upload improvments #6

Merged
tyler merged 2 commits from upload-improvements into main 2022-12-18 03:34:23 +00:00

View File

@ -197,6 +197,18 @@ def getRandomMeme():
recentMemes.insertMeme(choice)
return choice
# Build an underscored name from a string
def nameBuilder(command):
uploaded_file_name = ""
for word in command:
uploaded_file_name += word + "_"
# remove the last _ from the name
uploaded_file_name = uploaded_file_name.rstrip(uploaded_file_name[-1])
# append the file extension
return uploaded_file_name
###############################################################################
# Calldict methods
@ -282,6 +294,17 @@ async def uploadMeme(command, message, client):
file_names = []
for file in message.attachments:
# if we want to override the name
uploaded_file_name = file.filename
if len(command) > 1:
uploaded_file_name = nameBuilder(command[1:])
# add the extension
name, ext = os.path.splitext(file.filename)
uploaded_file_name += ext
print("File name is (" + uploaded_file_name + ")")
# no files of the same name
if file.filename in all_memes:
return "File with name '" + file.filename + "' already exists!"
@ -298,6 +321,7 @@ async def uploadMeme(command, message, client):
client.remove_object(bucket_name=S3_BUCKET,
object_name=file.filename)
return "That meme is already in the cache (it's called " + memes_to_md5[result.etag] + ")"
os.remove("/tmp/" + file.filename)