Increase security and reformat
This commit is contained in:
@@ -173,9 +173,7 @@ class WhatsAppClient(ClientBase):
|
||||
if db_dir:
|
||||
os.makedirs(db_dir, exist_ok=True)
|
||||
if db_dir and not os.access(db_dir, os.W_OK):
|
||||
raise PermissionError(
|
||||
f"session db directory is not writable: {db_dir}"
|
||||
)
|
||||
raise PermissionError(f"session db directory is not writable: {db_dir}")
|
||||
except Exception as exc:
|
||||
self._publish_state(
|
||||
connected=False,
|
||||
@@ -772,9 +770,11 @@ class WhatsAppClient(ClientBase):
|
||||
command_id,
|
||||
{
|
||||
"ok": True,
|
||||
"timestamp": int(result)
|
||||
if isinstance(result, int)
|
||||
else int(time.time() * 1000),
|
||||
"timestamp": (
|
||||
int(result)
|
||||
if isinstance(result, int)
|
||||
else int(time.time() * 1000)
|
||||
),
|
||||
},
|
||||
)
|
||||
self.log.debug(
|
||||
@@ -1910,9 +1910,7 @@ class WhatsAppClient(ClientBase):
|
||||
jid_value = self._jid_to_identifier(
|
||||
self._pluck(group, "JID") or self._pluck(group, "jid")
|
||||
)
|
||||
identifier = (
|
||||
jid_value.split("@", 1)[0].strip() if jid_value else ""
|
||||
)
|
||||
identifier = jid_value.split("@", 1)[0].strip() if jid_value else ""
|
||||
if not identifier:
|
||||
continue
|
||||
name = (
|
||||
@@ -2362,12 +2360,22 @@ class WhatsAppClient(ClientBase):
|
||||
node = (
|
||||
self._pluck(message_obj, "reactionMessage")
|
||||
or self._pluck(message_obj, "reaction_message")
|
||||
or self._pluck(message_obj, "ephemeralMessage", "message", "reactionMessage")
|
||||
or self._pluck(message_obj, "ephemeral_message", "message", "reaction_message")
|
||||
or self._pluck(
|
||||
message_obj, "ephemeralMessage", "message", "reactionMessage"
|
||||
)
|
||||
or self._pluck(
|
||||
message_obj, "ephemeral_message", "message", "reaction_message"
|
||||
)
|
||||
or self._pluck(message_obj, "viewOnceMessage", "message", "reactionMessage")
|
||||
or self._pluck(message_obj, "view_once_message", "message", "reaction_message")
|
||||
or self._pluck(message_obj, "viewOnceMessageV2", "message", "reactionMessage")
|
||||
or self._pluck(message_obj, "view_once_message_v2", "message", "reaction_message")
|
||||
or self._pluck(
|
||||
message_obj, "view_once_message", "message", "reaction_message"
|
||||
)
|
||||
or self._pluck(
|
||||
message_obj, "viewOnceMessageV2", "message", "reactionMessage"
|
||||
)
|
||||
or self._pluck(
|
||||
message_obj, "view_once_message_v2", "message", "reaction_message"
|
||||
)
|
||||
or self._pluck(
|
||||
message_obj,
|
||||
"viewOnceMessageV2Extension",
|
||||
@@ -2410,7 +2418,9 @@ class WhatsAppClient(ClientBase):
|
||||
explicit_remove = self._pluck(node, "remove") or self._pluck(node, "isRemove")
|
||||
if explicit_remove is None:
|
||||
explicit_remove = self._pluck(node, "is_remove")
|
||||
remove = bool(explicit_remove) if explicit_remove is not None else bool(not emoji)
|
||||
remove = (
|
||||
bool(explicit_remove) if explicit_remove is not None else bool(not emoji)
|
||||
)
|
||||
if not target_msg_id:
|
||||
return None
|
||||
return {
|
||||
@@ -2418,7 +2428,11 @@ class WhatsAppClient(ClientBase):
|
||||
"target_message_id": target_msg_id,
|
||||
"remove": remove,
|
||||
"target_ts": int(target_ts or 0),
|
||||
"raw": self._proto_to_dict(node) or dict(node or {}) if isinstance(node, dict) else {},
|
||||
"raw": (
|
||||
self._proto_to_dict(node) or dict(node or {})
|
||||
if isinstance(node, dict)
|
||||
else {}
|
||||
),
|
||||
}
|
||||
|
||||
async def _download_event_media(self, event):
|
||||
@@ -2760,7 +2774,9 @@ class WhatsAppClient(ClientBase):
|
||||
or self._pluck(msg_obj, "MessageContextInfo")
|
||||
or {},
|
||||
"message": {
|
||||
"extendedTextMessage": self._pluck(msg_obj, "extendedTextMessage")
|
||||
"extendedTextMessage": self._pluck(
|
||||
msg_obj, "extendedTextMessage"
|
||||
)
|
||||
or self._pluck(msg_obj, "ExtendedTextMessage")
|
||||
or {},
|
||||
"imageMessage": self._pluck(msg_obj, "imageMessage") or {},
|
||||
@@ -2768,9 +2784,9 @@ class WhatsAppClient(ClientBase):
|
||||
"videoMessage": self._pluck(msg_obj, "videoMessage") or {},
|
||||
"VideoMessage": self._pluck(msg_obj, "VideoMessage") or {},
|
||||
"documentMessage": self._pluck(msg_obj, "documentMessage")
|
||||
or {},
|
||||
or {},
|
||||
"DocumentMessage": self._pluck(msg_obj, "DocumentMessage")
|
||||
or {},
|
||||
or {},
|
||||
"ephemeralMessage": self._pluck(msg_obj, "ephemeralMessage")
|
||||
or {},
|
||||
"EphemeralMessage": self._pluck(msg_obj, "EphemeralMessage")
|
||||
@@ -2814,7 +2830,9 @@ class WhatsAppClient(ClientBase):
|
||||
or {},
|
||||
"viewOnceMessage": self._pluck(msg_obj, "viewOnceMessage")
|
||||
or {},
|
||||
"viewOnceMessageV2": self._pluck(msg_obj, "viewOnceMessageV2")
|
||||
"viewOnceMessageV2": self._pluck(
|
||||
msg_obj, "viewOnceMessageV2"
|
||||
)
|
||||
or {},
|
||||
"viewOnceMessageV2Extension": self._pluck(
|
||||
msg_obj, "viewOnceMessageV2Extension"
|
||||
@@ -2840,12 +2858,12 @@ class WhatsAppClient(ClientBase):
|
||||
reply_sync.extract_origin_tag(payload),
|
||||
)
|
||||
if self._chat_matches_reply_debug(chat):
|
||||
info_obj = self._proto_to_dict(self._pluck(event_obj, "Info")) or self._pluck(
|
||||
event_obj, "Info"
|
||||
)
|
||||
raw_obj = self._proto_to_dict(self._pluck(event_obj, "Raw")) or self._pluck(
|
||||
event_obj, "Raw"
|
||||
)
|
||||
info_obj = self._proto_to_dict(
|
||||
self._pluck(event_obj, "Info")
|
||||
) or self._pluck(event_obj, "Info")
|
||||
raw_obj = self._proto_to_dict(
|
||||
self._pluck(event_obj, "Raw")
|
||||
) or self._pluck(event_obj, "Raw")
|
||||
message_meta["wa_reply_debug"] = {
|
||||
"reply_ref": reply_ref,
|
||||
"reply_target_id": str(getattr(reply_target, "id", "") or ""),
|
||||
@@ -3087,9 +3105,11 @@ class WhatsAppClient(ClientBase):
|
||||
)
|
||||
matched = False
|
||||
for candidate in candidates:
|
||||
candidate_local = str(self._jid_to_identifier(candidate) or "").split(
|
||||
"@", 1
|
||||
)[0].strip()
|
||||
candidate_local = (
|
||||
str(self._jid_to_identifier(candidate) or "")
|
||||
.split("@", 1)[0]
|
||||
.strip()
|
||||
)
|
||||
if candidate_local and candidate_local == local:
|
||||
matched = True
|
||||
break
|
||||
@@ -3124,7 +3144,12 @@ class WhatsAppClient(ClientBase):
|
||||
# WhatsApp group ids are numeric and usually very long (commonly start
|
||||
# with 120...). Treat those as groups when no explicit mapping exists.
|
||||
digits = re.sub(r"[^0-9]", "", local)
|
||||
if digits and digits == local and len(digits) >= 15 and digits.startswith("120"):
|
||||
if (
|
||||
digits
|
||||
and digits == local
|
||||
and len(digits) >= 15
|
||||
and digits.startswith("120")
|
||||
):
|
||||
return f"{digits}@g.us"
|
||||
return ""
|
||||
|
||||
@@ -3264,7 +3289,9 @@ class WhatsAppClient(ClientBase):
|
||||
person_identifier = await sync_to_async(
|
||||
lambda: (
|
||||
Message.objects.filter(id=legacy_message_id)
|
||||
.select_related("session__identifier__user", "session__identifier__person")
|
||||
.select_related(
|
||||
"session__identifier__user", "session__identifier__person"
|
||||
)
|
||||
.first()
|
||||
)
|
||||
)()
|
||||
@@ -3274,7 +3301,9 @@ class WhatsAppClient(ClientBase):
|
||||
)
|
||||
if (
|
||||
person_identifier is not None
|
||||
and str(getattr(person_identifier, "service", "") or "").strip().lower()
|
||||
and str(getattr(person_identifier, "service", "") or "")
|
||||
.strip()
|
||||
.lower()
|
||||
!= "whatsapp"
|
||||
):
|
||||
person_identifier = None
|
||||
@@ -3418,6 +3447,8 @@ class WhatsAppClient(ClientBase):
|
||||
from neonize.proto.waE2E.WAWebProtobufsE2E_pb2 import (
|
||||
ContextInfo,
|
||||
ExtendedTextMessage,
|
||||
)
|
||||
from neonize.proto.waE2E.WAWebProtobufsE2E_pb2 import (
|
||||
Message as WAProtoMessage,
|
||||
)
|
||||
|
||||
|
||||
Reference in New Issue
Block a user