75 lines
2.6 KiB
Python
75 lines
2.6 KiB
Python
import attr
|
|
from ._core import attrs_default, Image
|
|
from . import _util, _plan
|
|
from ._thread import ThreadType, Thread
|
|
|
|
|
|
@attrs_default
|
|
class Group(Thread):
|
|
"""Represents a Facebook group. Inherits `Thread`."""
|
|
|
|
type = ThreadType.GROUP
|
|
|
|
#: Unique list (set) of the group thread's participant user IDs
|
|
participants = attr.ib(factory=set)
|
|
#: A dictionary, containing user nicknames mapped to their IDs
|
|
nicknames = attr.ib(factory=dict)
|
|
#: A `ThreadColor`. The groups's message color
|
|
color = attr.ib(None)
|
|
#: The groups's default emoji
|
|
emoji = attr.ib(None)
|
|
# Set containing user IDs of thread admins
|
|
admins = attr.ib(factory=set)
|
|
# True if users need approval to join
|
|
approval_mode = attr.ib(None)
|
|
# Set containing user IDs requesting to join
|
|
approval_requests = attr.ib(factory=set)
|
|
# Link for joining group
|
|
join_link = attr.ib(None)
|
|
|
|
@classmethod
|
|
def _from_graphql(cls, data):
|
|
if data.get("image") is None:
|
|
data["image"] = {}
|
|
c_info = cls._parse_customization_info(data)
|
|
last_active = None
|
|
if "last_message" in data:
|
|
last_active = _util.millis_to_datetime(
|
|
int(data["last_message"]["nodes"][0]["timestamp_precise"])
|
|
)
|
|
plan = None
|
|
if data.get("event_reminders") and data["event_reminders"].get("nodes"):
|
|
plan = _plan.Plan._from_graphql(data["event_reminders"]["nodes"][0])
|
|
|
|
return cls(
|
|
uid=data["thread_key"]["thread_fbid"],
|
|
participants=set(
|
|
[
|
|
node["messaging_actor"]["id"]
|
|
for node in data["all_participants"]["nodes"]
|
|
]
|
|
),
|
|
nicknames=c_info.get("nicknames"),
|
|
color=c_info.get("color"),
|
|
emoji=c_info.get("emoji"),
|
|
admins=set([node.get("id") for node in data.get("thread_admins")]),
|
|
approval_mode=bool(data.get("approval_mode"))
|
|
if data.get("approval_mode") is not None
|
|
else None,
|
|
approval_requests=set(
|
|
node["requester"]["id"]
|
|
for node in data["group_approval_queue"]["nodes"]
|
|
)
|
|
if data.get("group_approval_queue")
|
|
else None,
|
|
join_link=data["joinable_mode"].get("link"),
|
|
photo=Image._from_uri_or_none(data["image"]),
|
|
name=data.get("name"),
|
|
message_count=data.get("messages_count"),
|
|
last_active=last_active,
|
|
plan=plan,
|
|
)
|
|
|
|
def _to_send_data(self):
|
|
return {"thread_fbid": self.uid}
|