genting the text form the original post
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
Ekaropolus 2025-07-22 15:41:27 -06:00
parent 7290e575f6
commit 71a6dd2767

View File

@ -71,10 +71,11 @@ class FacebookService:
logger.error(f"Failed to retrieve post details for post ID: {post_id}")
return None
description = post_details.get("description", "")
description = post_details.get("parent_message", None)
parent_id = post_details.get("parent_id", None)
author_page_id = post_details.get("parent_from_id", None)
# Fetch the appropriate OpenAI assistant for the page
try:
page_assistant = FacebookPageAssistant.objects.get(page_id=page_id)
@ -142,56 +143,61 @@ class FacebookService:
def get_post_details(self, post_id, access_token):
"""
Retrieves details of a post, including:
- message (the posts own text)
- description (from attachments)
- parent_id (if its a share)
- from_id (author of THIS post)
- parent_from_id (author of the ORIGINAL post, if shared)
- parent_message (text of the ORIGINAL post, if shared)
"""
# 1st call: get this posts description, parent_id, and its own from()
url = (
f"{self.base_url}/{post_id}"
"?fields=attachments.limit(10){description,media,media_type,target,url},"
"parent_id,from"
f"&access_token={access_token}"
)
try:
response = requests.get(url)
response.raise_for_status()
data = response.json()
# 1st call: get this posts text, description, parent_id, and author
fields = (
"message,"
"attachments.limit(10){description,media,media_type,target,url},"
"parent_id,from"
)
url = f"{self.base_url}/{post_id}?fields={fields}&access_token={access_token}"
resp = requests.get(url)
resp.raise_for_status()
data = resp.json()
message = data.get("message", "")
attachments = data.get("attachments", {}).get("data", [{}])
description = attachments[0].get("description", "") if attachments else ""
parent_id = data.get("parent_id")
from_id = data.get("from", {}).get("id")
# default if there is no parent
# Defaults if there is no parent
parent_from_id = None
parent_message = None
# If this is a share, fetch the ORIGINAL posts author
# 2nd call: if this is a share, fetch the ORIGINAL posts author and text
if parent_id:
parent_url = (
f"{self.base_url}/{parent_id}"
"?fields=from"
f"&access_token={access_token}"
)
parent_fields = "from,message"
parent_url = f"{self.base_url}/{parent_id}?fields={parent_fields}&access_token={access_token}"
p_resp = requests.get(parent_url)
p_resp.raise_for_status()
p_data = p_resp.json()
parent_from_id = p_data.get("from", {}).get("id")
parent_message = p_data.get("message", "")
return {
"message": message,
"description": description,
"parent_id": parent_id,
"from_id": from_id,
"parent_from_id": parent_from_id
"parent_from_id": parent_from_id,
"parent_message": parent_message,
}
except requests.exceptions.RequestException as e:
logger.error(f"Failed to fetch post details for {post_id}. Error: {e}")
logger.error(f"Failed to fetch post details for {post_id}: {e}")
return {}
def _post_facebook_comment(self, post_id, message, access_token, sender_id=None):
"""
Helper function to post a comment to a specific post.