aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/FacebookSourcePlugin.py
blob: ea33615045ca3b230fd46fe24986743bee309c6f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
import random
import time
import requests
import re
import urllib.parse
from datetime import datetime, timedelta
from bs4 import BeautifulSoup, Tag
from app.Item import Item, ItemGUID
from app.PluginInterface import Params, PluginInterface
from app.utils import get_config, get_config_or_default


def replace_lm_links(text: str) -> str:
    # Use regular expression to find all occurrences of the link pattern
    pattern = r"https://lm\.facebook\.com/l\.php\?u=([a-zA-Z0-9%._-]+)"
    matches = re.findall(pattern, text)

    # Iterate through all matches and replace them with the decoded URL
    for match in matches:
        decoded_url = urllib.parse.unquote(match)
        text = text.replace(f"https://lm.facebook.com/l.php?u={match}", decoded_url)

    return text


def parse_custom_date(date_str: str) -> datetime:
    current_year = datetime.now().year  # Get the current year if not provided

    try:
        # Try parsing assuming the year is provided
        return datetime.strptime(date_str, "%B %d, %Y at %I:%M %p")
    except ValueError:
        pass

    try:
        # Try parsing assuming the current year
        return datetime.strptime(f"{date_str} {current_year}", "%B %d at %I:%M %p %Y")
    except ValueError:
        pass

    # Parse relative times like "14 hrs" and "20 mins"
    now = datetime.now()
    match = re.match(r"(\d+)\s*(hr|hrs|min|mins)\s*", date_str, re.IGNORECASE)
    if match:
        amount, unit = match.groups()
        amount = int(amount)
        if unit.lower().startswith("hr"):
            delta = timedelta(hours=amount)
        elif unit.lower().startswith("min"):
            delta = timedelta(minutes=amount)
        else:
            raise ValueError("Unparseable date: " + date_str)

        return now - delta

    raise ValueError("Unparseable date: " + date_str)


def fetch_page_posts(email: str, password: str, page_id: str, limit: int) -> list[Item]:
    base_url = "https://mbasic.facebook.com"
    with requests.session() as session:
        headers = {
            "User-Agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:109.0) Gecko/20100101 Firefox/114.0",
            "Accept": "text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,*/*;q=0.8",
            "Accept-Language": "en-US,en;q=0.5",
            "DNT": "1",
            "Alt-Used": "mbasic.facebook.com",
            "Connection": "keep-alive",
            "Upgrade-Insecure-Requests": "1",
            "Sec-Fetch-Dest": "document",
            "Sec-Fetch-Mode": "navigate",
            "Sec-Fetch-Site": "none",
            "Sec-Fetch-User": "?1",
            "Pragma": "no-cache",
            "Cache-Control": "no-cache",
            "TE": "trailers",
        }
        session.headers.update(headers)

        cookie_page_resp = session.get(
            f"{base_url}/login/", headers=headers, allow_redirects=True
        )
        if cookie_page_resp.status_code >= 400:
            raise Exception(cookie_page_resp.text)

        cookie_page = BeautifulSoup(cookie_page_resp.text, "html.parser")
        lsd: str = cookie_page.find("input", {"name": "lsd"})["value"]  # type: ignore
        jazoest: str = cookie_page.find("input", {"name": "jazoest"})["value"]  # type: ignore

        cookie_post_url = f"{base_url}/cookie/consent/?next_uri=https%3A%2F%2Fmbasic.facebook.com%2Flogin"

        time.sleep(random.randrange(1000, 3000) / 1000.0)

        login_page_resp = session.post(
            cookie_post_url,
            data={
                "lsd": lsd,
                "jazoest": jazoest,
                "accept_only_essential": "1",
            },
            verify=False,
            allow_redirects=True,
            headers=headers,
        )

        if login_page_resp.status_code >= 400:
            raise Exception(login_page_resp.text)

        login_page = BeautifulSoup(login_page_resp.text, "html.parser")

        lsd: str = login_page.find("input", {"name": "lsd"})["value"]  # type: ignore
        jazoest: str = login_page.find("input", {"name": "jazoest"})["value"]  # type: ignore
        mts: str = login_page.find("input", {"name": "m_ts"})["value"]  # type: ignore
        li: str = login_page.find("input", {"name": "li"})["value"]  # type: ignore
        try_number: str = login_page.find("input", {"name": "try_number"})["value"]  # type: ignore
        unrecognized_tries: str = login_page.find(  # type: ignore
            "input", {"name": "unrecognized_tries"}
        )["value"]

        login_post_url = (
            f"{base_url}/login/device-based/regular/login/?refsrc=deprecated&lwv=100"
        )

        time.sleep(random.randrange(1000, 3000) / 1000.0)

        login_post_resp = session.post(
            login_post_url,
            data={
                "lsd": lsd,
                "jazoest": jazoest,
                "m_ts": mts,
                "li": li,
                "try_number": try_number,
                "unrecognized_tries": unrecognized_tries,
                "email": email,
                "pass": password,
                "login": "Log+in",
                "bi_xrwh": "0",
            },
            headers=headers,
            verify=False,
            allow_redirects=True,
        )

        if login_post_resp.status_code >= 400:
            raise Exception(login_post_resp.text)

        page_timeline_url = f"{base_url}/{page_id}?v=timeline"
        items: list[Item] = []
        done = False
        while len(items) < limit and not done:
            time.sleep(random.randrange(1000, 3000) / 1000.0)

            timeline_resp = session.get(
                page_timeline_url, headers=headers, allow_redirects=True
            )

            if timeline_resp.status_code >= 400:
                raise Exception(timeline_resp.text)

            timeline = BeautifulSoup(timeline_resp.text, "html.parser")
            posts = timeline.select("section > article")

            for post in posts:
                time_tag: Tag = post.find("abbr")  # type: ignore

                link_tag: Tag | None = post.find("a", string="Full Story")  # type: ignore
                if link_tag is not None:
                    link = f"{base_url}{link_tag['href']}"
                    # drop tracking parameters that change at a whim
                    link = link.split("&set")[0]
                    link = link.split("&eav")[0]
                else:
                    link = None

                pub_date_str: str = time_tag.get_text()
                pub_date = parse_custom_date(pub_date_str)
                story_body_container = str(post.find("div"))
                story_body_container.replace('href="/', f'href="{base_url}/')
                story_body_container = replace_lm_links(story_body_container)
                title = f"{page_id} on {pub_date.strftime('%d.%m.%Y at %H:%M')}"
                item = Item(
                    title=title,
                    description=story_body_container,
                    link=link,
                    guid=ItemGUID(
                        link if link is not None else f"aggro__facebook__{title}",
                        is_perma_link=link is not None,
                    ),
                    author=page_id,
                    category=None,
                    comments=None,
                    enclosures=[],
                    pub_date=pub_date,
                    media_content=None,
                )
                items.append(item)

                if len(items) == limit:
                    break

            see_more_stories_tag = timeline.find("a", string="See more stories")
            if see_more_stories_tag is None:
                done = True
                break

            page_timeline_url: str = see_more_stories_tag["href"]  # type: ignore
            page_timeline_url = f"{base_url}{page_timeline_url}"

        return items


class Plugin(PluginInterface):
    def log(self, msg) -> None:
        return super().log(msg)

    def __init__(self, id: str, params: Params) -> None:
        super().__init__("FacebookSourcePlugin", id, params)
        self.login_email = get_config(params, "login_email")
        self.login_password = get_config(params, "login_password")
        self.page_id = get_config(params, "page_id")
        self.limit = int(get_config_or_default(params, "limit", "10"))
        self.log("initialized")

    def process(self, source_id: str | None, items: list[Item]) -> list[Item]:
        if source_id is not None:
            raise Exception(
                f"{self.log_prefix} can only be scheduled, trying to propagate items from source {source_id}"
            )

        self.log(f'scraping posts from FB page id "{self.page_id}"')

        posts = fetch_page_posts(
            self.login_email, self.login_password, self.page_id, self.limit
        )

        self.log(f'scraped {len(posts)} posts from FB page id "{self.page_id}"')
        return posts