1
0
Fork 0
mirror of https://github.com/Horhik/Instagram2Fedi.git synced 2025-04-04 19:36:19 +00:00

Improve error handling

This commit is contained in:
DAMIE Marc 2024-01-17 09:57:55 +01:00
parent 445359a3c4
commit f43a50cb69
3 changed files with 17 additions and 12 deletions

View file

@ -24,7 +24,7 @@ def try_to_get_carousel(array, post):
)
print_log("🎠 > Found carousel!", color="green")
return urls
except Exception as err:
except KeyError as err:
print_log("🎠💥 > No carousel ", color="red")
print_log(err)
return array
@ -37,14 +37,14 @@ def try_to_get_carousel(array, post):
urls = [node["video_url"]]
print_log("🎞 > Found video!", color="green")
return urls
except Exception as err:
except KeyError as err:
print_log("🎞💥 > No video :(", color="red")
print_log(err)
return array
else:
print_log("🎠💥 > No video", color="yellow")
except Exception as err:
except KeyError as err:
print_log("😱💥 > No node :(", color="red")
print_log(err)
return array

View file

@ -40,7 +40,7 @@ else:
id_filename = "./already_posted.txt"
with open(id_filename, "a") as f:
with open(id_filename, "a", encoding="utf-8") as f:
f.write("\n")
fetched_user = settings["instagram-user"]

View file

@ -25,7 +25,8 @@ def get_instagram_user(user, fetched_user):
assert user["name"] == loader.test_login()
except QueryReturnedBadRequestException:
print_log(
"Instagram requires a human verification... connect via a browser to solve a captcha.",
"Instagram requires a human verification... "
+ "connect via a browser to solve a captcha.",
color="red",
)
input("Press ENTER once the captcha is solved.")
@ -51,9 +52,10 @@ def get_image(url):
print_log("✨ > Downloaded!", color="green")
return response.content
except Exception as err:
print_log("💥 > Failed to download image.", color="red")
except requests.exceptions.RequestException as err:
print_log("💥 > Failed to download image: " +url, color="red")
print_log(err)
raise
def upload_image_to_mastodon(url, mastodon):
@ -64,9 +66,13 @@ def upload_image_to_mastodon(url, mastodon):
) # sending image to mastodon
print_log("✨ > Uploaded!", color="green")
return media["id"]
except Exception as err:
print_log("💥 > failed to upload image to mastodon", color="red")
except mastodon.MastodonError as err:
print_log("💥 > Failed to upload image to Mastodon", color="red")
print_log(err)
raise
except requests.exceptions.RequestException as _err:
print_log("💥 > Image not downloaded... cancel the post.", color="red")
raise
def toot(urls, title, mastodon):
@ -83,9 +89,8 @@ def toot(urls, title, mastodon):
print_log("Post identifiers:" + str(ids))
mastodon.status_post(post_text, media_ids=ids)
except Exception as err:
except (mastodon.MastodonError, requests.exceptions.RequestException):
print_log("😿 > Failed to create toot", color="red")
print_log(err)
def get_new_posts(
@ -110,7 +115,7 @@ def get_new_posts(
if stupidcounter < post_limit:
stupidcounter += 1
if already_posted(str(post.mediaid), already_posted_path):
print_log("🐘 > Already Posted "+ post.url, color="yellow")
print_log("🐘 > Already Posted " + post.url, color="yellow")
break # Do not need to go back further in time
print_log("Posting... " + post.url)
if using_mastodon: