Compare commits
63 Commits
Author | SHA1 | Date | |
---|---|---|---|
|
27e5d1baae | ||
|
3a0b9867bc | ||
|
a9c681818a | ||
|
d279c96dd5 | ||
|
d30589d1fa | ||
|
47c744e5e2 | ||
|
708869ea93 | ||
|
8b47bf3e5d | ||
|
a2930b4386 | ||
|
2dc93ed18b | ||
|
2bd08c8254 | ||
|
81278ed553 | ||
|
589cec66e1 | ||
|
281a20f56a | ||
|
ae8d205dbe | ||
|
1e6222f46a | ||
|
4f2a24848e | ||
|
e670c80971 | ||
|
ba7572eddd | ||
|
a5c6fac976 | ||
|
1293814c3a | ||
|
1b2aeb01ce | ||
|
cab8abd1a0 | ||
|
edda2386fb | ||
|
b0ad5f6097 | ||
|
6862bd7be3 | ||
|
bc551a63c2 | ||
|
c9f11b924d | ||
|
3236ea5b97 | ||
|
794696d327 | ||
|
7345de149a | ||
|
4fdf0bbc57 | ||
|
d17f741f97 | ||
|
4a898b3ff5 | ||
|
7f84ca8d0c | ||
|
c3a974a495 | ||
|
5b57d49a3e | ||
|
7af83c04c0 | ||
|
b5ba338f86 | ||
|
50bfeb92b2 | ||
|
8d41ea5bfd | ||
|
b10b14c8e9 | ||
|
144e81bd46 | ||
|
230c849b60 | ||
|
466f27a8c5 | ||
|
dc12e01fc7 | ||
|
d0e9a7f693 | ||
|
1ba21e03c6 | ||
|
bcc8b44bb5 | ||
|
b01b371c66 | ||
|
94a0f6b3df | ||
|
5df10ecc31 | ||
|
56786406ec | ||
|
a4268f36cf | ||
|
8e7afa2edf | ||
|
f07122d446 | ||
|
78c307780b | ||
|
ad705d544a | ||
|
77f28315c9 | ||
|
e0754031ad | ||
|
f97d36b41f | ||
|
bb2afe8e40 | ||
|
faa0383af3 |
1
.gitignore
vendored
1
.gitignore
vendored
@@ -35,3 +35,4 @@ tests.data
|
|||||||
|
|
||||||
# Virtual environment
|
# Virtual environment
|
||||||
venv/
|
venv/
|
||||||
|
.venv*/
|
||||||
|
18
.readthedocs.yml
Normal file
18
.readthedocs.yml
Normal file
@@ -0,0 +1,18 @@
|
|||||||
|
# See https://docs.readthedocs.io/en/stable/config-file/v2.html for details
|
||||||
|
version: 2
|
||||||
|
|
||||||
|
formats:
|
||||||
|
- pdf
|
||||||
|
- htmlzip
|
||||||
|
|
||||||
|
python:
|
||||||
|
version: 3.6
|
||||||
|
install:
|
||||||
|
- path: .
|
||||||
|
extra_requirements:
|
||||||
|
- docs
|
||||||
|
|
||||||
|
# Build documentation in the docs/ directory with Sphinx
|
||||||
|
sphinx:
|
||||||
|
configuration: docs/conf.py
|
||||||
|
fail_on_warning: true
|
@@ -35,14 +35,12 @@ Installation:
|
|||||||
|
|
||||||
$ pip install fbchat
|
$ pip install fbchat
|
||||||
|
|
||||||
You can also install from source, by using `flit`:
|
You can also install from source if you have ``pip>=19.0``:
|
||||||
|
|
||||||
.. code-block::
|
.. code-block::
|
||||||
|
|
||||||
$ pip install flit
|
|
||||||
$ git clone https://github.com/carpedm20/fbchat.git
|
$ git clone https://github.com/carpedm20/fbchat.git
|
||||||
$ cd fbchat
|
$ pip install fbchat
|
||||||
$ flit install
|
|
||||||
|
|
||||||
|
|
||||||
Maintainer
|
Maintainer
|
||||||
|
@@ -3,8 +3,7 @@
|
|||||||
|
|
||||||
# You can set these variables from the command line.
|
# You can set these variables from the command line.
|
||||||
SPHINXOPTS =
|
SPHINXOPTS =
|
||||||
SPHINXBUILD = python3.6 -msphinx
|
SPHINXBUILD = sphinx-build
|
||||||
SPHINXPROJ = fbchat
|
|
||||||
SOURCEDIR = .
|
SOURCEDIR = .
|
||||||
BUILDDIR = _build
|
BUILDDIR = _build
|
||||||
|
|
||||||
|
84
docs/api.rst
84
docs/api.rst
@@ -1,33 +1,79 @@
|
|||||||
.. module:: fbchat
|
.. module:: fbchat
|
||||||
.. highlight:: python
|
|
||||||
.. _api:
|
.. _api:
|
||||||
|
|
||||||
|
.. Note: we're using () to hide the __init__ method where relevant
|
||||||
|
|
||||||
Full API
|
Full API
|
||||||
========
|
========
|
||||||
|
|
||||||
If you are looking for information on a specific function, class, or method, this part of the documentation is for you.
|
If you are looking for information on a specific function, class, or method, this part of the documentation is for you.
|
||||||
|
|
||||||
|
|
||||||
.. _api_client:
|
|
||||||
|
|
||||||
Client
|
Client
|
||||||
------
|
------
|
||||||
|
|
||||||
This is the main class of `fbchat`, which contains all the methods you use to interact with Facebook.
|
.. autoclass:: Client
|
||||||
You can extend this class, and overwrite the events, to provide custom event handling (mainly used while listening)
|
|
||||||
|
|
||||||
.. autoclass:: Client(email, password, user_agent=None, max_tries=5, session_cookies=None, logging_level=logging.INFO)
|
Threads
|
||||||
:members:
|
-------
|
||||||
|
|
||||||
|
.. autoclass:: Thread()
|
||||||
.. _api_models:
|
.. autoclass:: ThreadType(Enum)
|
||||||
|
:undoc-members:
|
||||||
Models
|
.. autoclass:: Page()
|
||||||
------
|
.. autoclass:: User()
|
||||||
|
.. autoclass:: Group()
|
||||||
These models are used in various functions, both as inputs and return values.
|
|
||||||
A good tip is to write ``from fbchat.models import *`` at the start of your source, so you can use these models freely
|
Messages
|
||||||
|
--------
|
||||||
.. automodule:: fbchat.models
|
|
||||||
:members:
|
.. autoclass:: Message
|
||||||
|
.. autoclass:: Mention
|
||||||
|
.. autoclass:: EmojiSize(Enum)
|
||||||
|
:undoc-members:
|
||||||
|
.. autoclass:: MessageReaction(Enum)
|
||||||
|
:undoc-members:
|
||||||
|
|
||||||
|
Exceptions
|
||||||
|
----------
|
||||||
|
|
||||||
|
.. autoexception:: FBchatException()
|
||||||
|
.. autoexception:: FBchatFacebookError()
|
||||||
|
.. autoexception:: FBchatUserError()
|
||||||
|
|
||||||
|
Attachments
|
||||||
|
-----------
|
||||||
|
|
||||||
|
.. autoclass:: Attachment()
|
||||||
|
.. autoclass:: ShareAttachment()
|
||||||
|
.. autoclass:: Sticker()
|
||||||
|
.. autoclass:: LocationAttachment()
|
||||||
|
.. autoclass:: LiveLocationAttachment()
|
||||||
|
.. autoclass:: FileAttachment()
|
||||||
|
.. autoclass:: AudioAttachment()
|
||||||
|
.. autoclass:: ImageAttachment()
|
||||||
|
.. autoclass:: VideoAttachment()
|
||||||
|
.. autoclass:: ImageAttachment()
|
||||||
|
|
||||||
|
Miscellaneous
|
||||||
|
-------------
|
||||||
|
|
||||||
|
.. autoclass:: ThreadLocation(Enum)
|
||||||
|
:undoc-members:
|
||||||
|
.. autoclass:: ThreadColor(Enum)
|
||||||
|
:undoc-members:
|
||||||
|
.. autoclass:: ActiveStatus()
|
||||||
|
.. autoclass:: TypingStatus(Enum)
|
||||||
|
:undoc-members:
|
||||||
|
|
||||||
|
.. autoclass:: QuickReply
|
||||||
|
.. autoclass:: QuickReplyText
|
||||||
|
.. autoclass:: QuickReplyLocation
|
||||||
|
.. autoclass:: QuickReplyPhoneNumber
|
||||||
|
.. autoclass:: QuickReplyEmail
|
||||||
|
|
||||||
|
.. autoclass:: Poll
|
||||||
|
.. autoclass:: PollOption
|
||||||
|
|
||||||
|
.. autoclass:: Plan
|
||||||
|
.. autoclass:: GuestStatus(Enum)
|
||||||
:undoc-members:
|
:undoc-members:
|
||||||
|
236
docs/conf.py
236
docs/conf.py
@@ -1,21 +1,12 @@
|
|||||||
#!/usr/bin/env python3
|
|
||||||
# -*- coding: utf-8 -*-
|
# -*- coding: utf-8 -*-
|
||||||
#
|
#
|
||||||
# fbchat documentation build configuration file, created by
|
# Configuration file for the Sphinx documentation builder.
|
||||||
# sphinx-quickstart on Thu May 25 15:43:01 2017.
|
|
||||||
#
|
#
|
||||||
# This file is execfile()d with the current directory set to its
|
# This file does only contain a selection of the most common options. For a
|
||||||
# containing dir.
|
# full list see the documentation:
|
||||||
#
|
# http://www.sphinx-doc.org/en/master/config
|
||||||
# Note that not all possible configuration values are present in this
|
|
||||||
# autogenerated file.
|
|
||||||
#
|
|
||||||
# All configuration values have a default; values that are commented out
|
|
||||||
# serve to show the default.
|
|
||||||
|
|
||||||
# If extensions (or modules to document with autodoc) are in another directory,
|
# -- Path setup --------------------------------------------------------------
|
||||||
# add these directories to sys.path here. If the directory is relative to the
|
|
||||||
# documentation root, use os.path.abspath to make it absolute, like shown here.
|
|
||||||
|
|
||||||
import os
|
import os
|
||||||
import sys
|
import sys
|
||||||
@@ -23,15 +14,24 @@ import sys
|
|||||||
sys.path.insert(0, os.path.abspath(".."))
|
sys.path.insert(0, os.path.abspath(".."))
|
||||||
|
|
||||||
import fbchat
|
import fbchat
|
||||||
import tests
|
|
||||||
from fbchat import __copyright__, __author__, __version__, __description__
|
# -- Project information -----------------------------------------------------
|
||||||
|
|
||||||
|
project = fbchat.__name__
|
||||||
|
copyright = fbchat.__copyright__
|
||||||
|
author = fbchat.__author__
|
||||||
|
|
||||||
|
# The short X.Y version
|
||||||
|
version = fbchat.__version__
|
||||||
|
# The full version, including alpha/beta/rc tags
|
||||||
|
release = fbchat.__version__
|
||||||
|
|
||||||
|
|
||||||
# -- General configuration ------------------------------------------------
|
# -- General configuration ---------------------------------------------------
|
||||||
|
|
||||||
# If your documentation needs a minimal Sphinx version, state it here.
|
# If your documentation needs a minimal Sphinx version, state it here.
|
||||||
#
|
#
|
||||||
# needs_sphinx = '1.0'
|
needs_sphinx = "2.0"
|
||||||
|
|
||||||
# Add any Sphinx extension module names here, as strings. They can be
|
# Add any Sphinx extension module names here, as strings. They can be
|
||||||
# extensions coming with Sphinx (named 'sphinx.ext.*') or your custom
|
# extensions coming with Sphinx (named 'sphinx.ext.*') or your custom
|
||||||
@@ -46,122 +46,45 @@ extensions = [
|
|||||||
# Add any paths that contain templates here, relative to this directory.
|
# Add any paths that contain templates here, relative to this directory.
|
||||||
templates_path = ["_templates"]
|
templates_path = ["_templates"]
|
||||||
|
|
||||||
# The suffix(es) of source filenames.
|
|
||||||
# You can specify multiple suffix as a list of string:
|
|
||||||
#
|
|
||||||
# source_suffix = ['.rst', '.md']
|
|
||||||
source_suffix = ".rst"
|
|
||||||
|
|
||||||
# The master toctree document.
|
# The master toctree document.
|
||||||
master_doc = "index"
|
master_doc = "index"
|
||||||
|
|
||||||
# General information about the project.
|
|
||||||
project = "fbchat"
|
|
||||||
title = "fbchat Documentation"
|
|
||||||
copyright = __copyright__
|
|
||||||
author = __author__
|
|
||||||
description = __description__
|
|
||||||
|
|
||||||
# The version info for the project you're documenting, acts as replacement for
|
|
||||||
# |version| and |release|, also used in various other places throughout the
|
|
||||||
# built documents.
|
|
||||||
#
|
|
||||||
# The short X.Y version.
|
|
||||||
version = __version__
|
|
||||||
# The full version, including alpha/beta/rc tags.
|
|
||||||
release = __version__
|
|
||||||
|
|
||||||
# The language for content autogenerated by Sphinx. Refer to documentation
|
|
||||||
# for a list of supported languages.
|
|
||||||
#
|
|
||||||
# This is also used if you do content translation via gettext catalogs.
|
|
||||||
# Usually you set "language" from the command line for these cases.
|
|
||||||
language = None
|
|
||||||
|
|
||||||
# List of patterns, relative to source directory, that match files and
|
# List of patterns, relative to source directory, that match files and
|
||||||
# directories to ignore when looking for source files.
|
# directories to ignore when looking for source files.
|
||||||
# This patterns also effect to html_static_path and html_extra_path
|
# This pattern also affects html_static_path and html_extra_path.
|
||||||
exclude_patterns = ["_build", "Thumbs.db", ".DS_Store"]
|
exclude_patterns = ["_build", "Thumbs.db", ".DS_Store"]
|
||||||
|
|
||||||
# The name of the Pygments (syntax highlighting) style to use.
|
rst_prolog = ".. currentmodule:: " + project
|
||||||
pygments_style = "sphinx"
|
|
||||||
|
|
||||||
# If true, `todo` and `todoList` produce output, else they produce nothing.
|
# The reST default role (used for this markup: `text`) to use for all
|
||||||
todo_include_todos = True
|
# documents.
|
||||||
|
#
|
||||||
|
default_role = "any"
|
||||||
|
|
||||||
|
# Make the reference parsing more strict
|
||||||
|
#
|
||||||
|
nitpicky = True
|
||||||
|
|
||||||
|
# Prefer strict Python highlighting
|
||||||
|
#
|
||||||
|
highlight_language = "python3"
|
||||||
|
|
||||||
|
# If true, '()' will be appended to :func: etc. cross-reference text.
|
||||||
|
#
|
||||||
|
add_function_parentheses = False
|
||||||
|
|
||||||
|
|
||||||
# -- Options for HTML output ----------------------------------------------
|
# -- Options for HTML output -------------------------------------------------
|
||||||
|
|
||||||
# The theme to use for HTML and HTML Help pages. See the documentation for
|
# The theme to use for HTML and HTML Help pages. See the documentation for
|
||||||
# a list of builtin themes.
|
# a list of builtin themes.
|
||||||
#
|
#
|
||||||
|
|
||||||
html_theme = "alabaster"
|
html_theme = "alabaster"
|
||||||
|
|
||||||
# Theme options are theme-specific and customize the look and feel of a theme
|
# Theme options are theme-specific and customize the look and feel of a theme
|
||||||
# further. For a list of options available for each theme, see the
|
# further. For a list of options available for each theme, see the
|
||||||
# documentation.
|
# documentation.
|
||||||
#
|
#
|
||||||
# html_theme_options = {}
|
|
||||||
|
|
||||||
# Add any paths that contain custom static files (such as style sheets) here,
|
|
||||||
# relative to this directory. They are copied after the builtin static files,
|
|
||||||
# so a file named "default.css" will overwrite the builtin "default.css".
|
|
||||||
html_static_path = ["_static"]
|
|
||||||
|
|
||||||
|
|
||||||
# -- Options for HTMLHelp output ------------------------------------------
|
|
||||||
|
|
||||||
# Output file base name for HTML help builder.
|
|
||||||
htmlhelp_basename = project + "doc"
|
|
||||||
|
|
||||||
|
|
||||||
# -- Options for LaTeX output ---------------------------------------------
|
|
||||||
|
|
||||||
latex_elements = {
|
|
||||||
# The paper size ('letterpaper' or 'a4paper').
|
|
||||||
#
|
|
||||||
# 'papersize': 'letterpaper',
|
|
||||||
# The font size ('10pt', '11pt' or '12pt').
|
|
||||||
#
|
|
||||||
# 'pointsize': '10pt',
|
|
||||||
# Additional stuff for the LaTeX preamble.
|
|
||||||
#
|
|
||||||
# 'preamble': '',
|
|
||||||
# Latex figure (float) alignment
|
|
||||||
#
|
|
||||||
# 'figure_align': 'htbp',
|
|
||||||
}
|
|
||||||
|
|
||||||
# Grouping the document tree into LaTeX files. List of tuples
|
|
||||||
# (source start file, target name, title,
|
|
||||||
# author, documentclass [howto, manual, or own class]).
|
|
||||||
latex_documents = [(master_doc, project + ".tex", title, author, "manual")]
|
|
||||||
|
|
||||||
|
|
||||||
# -- Options for manual page output ---------------------------------------
|
|
||||||
|
|
||||||
# One entry per manual page. List of tuples
|
|
||||||
# (source start file, name, description, authors, manual section).
|
|
||||||
man_pages = [(master_doc, project, title, [author], 1)]
|
|
||||||
|
|
||||||
|
|
||||||
# -- Options for Texinfo output -------------------------------------------
|
|
||||||
|
|
||||||
# Grouping the document tree into Texinfo files. List of tuples
|
|
||||||
# (source start file, target name, title, author,
|
|
||||||
# dir menu entry, description, category)
|
|
||||||
texinfo_documents = [
|
|
||||||
(master_doc, project, title, author, project, description, "Miscellaneous")
|
|
||||||
]
|
|
||||||
|
|
||||||
|
|
||||||
# Example configuration for intersphinx: refer to the Python standard library.
|
|
||||||
intersphinx_mapping = {"https://docs.python.org/3/": None}
|
|
||||||
|
|
||||||
|
|
||||||
add_function_parentheses = False
|
|
||||||
|
|
||||||
html_theme_options = {
|
html_theme_options = {
|
||||||
"show_powered_by": False,
|
"show_powered_by": False,
|
||||||
"github_user": "carpedm20",
|
"github_user": "carpedm20",
|
||||||
@@ -170,9 +93,92 @@ html_theme_options = {
|
|||||||
"show_related": False,
|
"show_related": False,
|
||||||
}
|
}
|
||||||
|
|
||||||
|
html_extra_path = ["robots.txt"]
|
||||||
|
|
||||||
|
# Custom sidebar templates, must be a dictionary that maps document names
|
||||||
|
# to template names.
|
||||||
|
#
|
||||||
|
# The default sidebars (for documents that don't match any pattern) are
|
||||||
|
# defined by theme itself. Builtin themes are using these templates by
|
||||||
|
# default: ``['localtoc.html', 'relations.html', 'sourcelink.html',
|
||||||
|
# 'searchbox.html']``.
|
||||||
|
#
|
||||||
html_sidebars = {"**": ["sidebar.html", "searchbox.html"]}
|
html_sidebars = {"**": ["sidebar.html", "searchbox.html"]}
|
||||||
|
|
||||||
|
# If true, "Created using Sphinx" is shown in the HTML footer. Default is True.
|
||||||
|
#
|
||||||
html_show_sphinx = False
|
html_show_sphinx = False
|
||||||
|
|
||||||
|
# If true, links to the reST sources are added to the pages.
|
||||||
|
#
|
||||||
html_show_sourcelink = False
|
html_show_sourcelink = False
|
||||||
|
|
||||||
|
# A shorter title for the navigation bar. Default is the same as html_title.
|
||||||
|
#
|
||||||
|
html_short_title = fbchat.__description__
|
||||||
|
|
||||||
|
|
||||||
|
# -- Options for HTMLHelp output ---------------------------------------------
|
||||||
|
|
||||||
|
# Output file base name for HTML help builder.
|
||||||
|
htmlhelp_basename = project + "doc"
|
||||||
|
|
||||||
|
|
||||||
|
# -- Options for LaTeX output ------------------------------------------------
|
||||||
|
|
||||||
|
# Grouping the document tree into LaTeX files. List of tuples
|
||||||
|
# (source start file, target name, title,
|
||||||
|
# author, documentclass [howto, manual, or own class]).
|
||||||
|
latex_documents = [(master_doc, project + ".tex", fbchat.__title__, author, "manual")]
|
||||||
|
|
||||||
|
|
||||||
|
# -- Options for manual page output ------------------------------------------
|
||||||
|
|
||||||
|
# One entry per manual page. List of tuples
|
||||||
|
# (source start file, name, description, authors, manual section).
|
||||||
|
man_pages = [
|
||||||
|
(master_doc, project, fbchat.__title__, [x.strip() for x in author.split(";")], 1)
|
||||||
|
]
|
||||||
|
|
||||||
|
|
||||||
|
# -- Options for Texinfo output ----------------------------------------------
|
||||||
|
|
||||||
|
# Grouping the document tree into Texinfo files. List of tuples
|
||||||
|
# (source start file, target name, title, author,
|
||||||
|
# dir menu entry, description, category)
|
||||||
|
texinfo_documents = [
|
||||||
|
(
|
||||||
|
master_doc,
|
||||||
|
project,
|
||||||
|
fbchat.__title__,
|
||||||
|
author,
|
||||||
|
project,
|
||||||
|
fbchat.__description__,
|
||||||
|
"Miscellaneous",
|
||||||
|
)
|
||||||
|
]
|
||||||
|
|
||||||
|
|
||||||
|
# -- Options for Epub output -------------------------------------------------
|
||||||
|
|
||||||
|
# A list of files that should not be packed into the epub file.
|
||||||
|
epub_exclude_files = ["search.html"]
|
||||||
|
|
||||||
|
|
||||||
|
# -- Extension configuration -------------------------------------------------
|
||||||
|
|
||||||
|
# -- Options for autodoc extension ---------------------------------------
|
||||||
|
|
||||||
autoclass_content = "both"
|
autoclass_content = "both"
|
||||||
html_short_title = description
|
autodoc_member_order = "bysource"
|
||||||
|
autodoc_default_options = {"members": True}
|
||||||
|
|
||||||
|
# -- Options for intersphinx extension ---------------------------------------
|
||||||
|
|
||||||
|
# Example configuration for intersphinx: refer to the Python standard library.
|
||||||
|
intersphinx_mapping = {"https://docs.python.org/": None}
|
||||||
|
|
||||||
|
# -- Options for todo extension ----------------------------------------------
|
||||||
|
|
||||||
|
# If true, `todo` and `todoList` produce output, else they produce nothing.
|
||||||
|
todo_include_todos = True
|
||||||
|
@@ -1,16 +1,15 @@
|
|||||||
.. highlight:: python
|
|
||||||
.. _examples:
|
.. _examples:
|
||||||
|
|
||||||
Examples
|
Examples
|
||||||
========
|
========
|
||||||
|
|
||||||
These are a few examples on how to use `fbchat`. Remember to swap out `<email>` and `<password>` for your email and password
|
These are a few examples on how to use ``fbchat``. Remember to swap out ``<email>`` and ``<password>`` for your email and password
|
||||||
|
|
||||||
|
|
||||||
Basic example
|
Basic example
|
||||||
-------------
|
-------------
|
||||||
|
|
||||||
This will show basic usage of `fbchat`
|
This will show basic usage of ``fbchat``
|
||||||
|
|
||||||
.. literalinclude:: ../examples/basic_usage.py
|
.. literalinclude:: ../examples/basic_usage.py
|
||||||
|
|
||||||
@@ -18,7 +17,7 @@ This will show basic usage of `fbchat`
|
|||||||
Interacting with Threads
|
Interacting with Threads
|
||||||
------------------------
|
------------------------
|
||||||
|
|
||||||
This will interact with the thread in every way `fbchat` supports
|
This will interact with the thread in every way ``fbchat`` supports
|
||||||
|
|
||||||
.. literalinclude:: ../examples/interract.py
|
.. literalinclude:: ../examples/interract.py
|
||||||
|
|
||||||
@@ -42,7 +41,7 @@ This will reply to any message with the same message
|
|||||||
Remove Bot
|
Remove Bot
|
||||||
----------
|
----------
|
||||||
|
|
||||||
This will remove a user from a group if they write the message `Remove me!`
|
This will remove a user from a group if they write the message ``Remove me!``
|
||||||
|
|
||||||
.. literalinclude:: ../examples/removebot.py
|
.. literalinclude:: ../examples/removebot.py
|
||||||
|
|
||||||
|
@@ -1,5 +1,3 @@
|
|||||||
.. highlight:: python
|
|
||||||
.. module:: fbchat
|
|
||||||
.. _faq:
|
.. _faq:
|
||||||
|
|
||||||
FAQ
|
FAQ
|
||||||
@@ -23,7 +21,7 @@ Where you replace ``<X>`` with the version you want to use
|
|||||||
Will you be supporting creating posts/events/pages and so on?
|
Will you be supporting creating posts/events/pages and so on?
|
||||||
-------------------------------------------------------------
|
-------------------------------------------------------------
|
||||||
|
|
||||||
We won't be focusing on anything else than chat-related things. This API is called `fbCHAT`, after all ;)
|
We won't be focusing on anything else than chat-related things. This API is called ``fbCHAT``, after all ;)
|
||||||
|
|
||||||
|
|
||||||
Submitting Issues
|
Submitting Issues
|
||||||
|
@@ -1,5 +1,3 @@
|
|||||||
.. highlight:: python
|
|
||||||
.. module:: fbchat
|
|
||||||
.. fbchat documentation master file, created by
|
.. fbchat documentation master file, created by
|
||||||
sphinx-quickstart on Thu May 25 15:43:01 2017.
|
sphinx-quickstart on Thu May 25 15:43:01 2017.
|
||||||
You can adapt this file completely to your liking, but it should at least
|
You can adapt this file completely to your liking, but it should at least
|
||||||
@@ -30,9 +28,9 @@ This project was inspired by `facebook-chat-api <https://github.com/Schmavery/fa
|
|||||||
|
|
||||||
**No XMPP or API key is needed**. Just use your email and password.
|
**No XMPP or API key is needed**. Just use your email and password.
|
||||||
|
|
||||||
Currently `fbchat` support Python 2.7, 3.4, 3.5 and 3.6:
|
Currently ``fbchat`` support Python 2.7, 3.4, 3.5 and 3.6:
|
||||||
|
|
||||||
`fbchat` works by emulating the browser.
|
``fbchat`` works by emulating the browser.
|
||||||
This means doing the exact same GET/POST requests and tricking Facebook into thinking it's accessing the website normally.
|
This means doing the exact same GET/POST requests and tricking Facebook into thinking it's accessing the website normally.
|
||||||
Therefore, this API requires the credentials of a Facebook account.
|
Therefore, this API requires the credentials of a Facebook account.
|
||||||
|
|
||||||
@@ -48,7 +46,7 @@ Therefore, this API requires the credentials of a Facebook account.
|
|||||||
Facebook now has an `official API <https://developers.facebook.com/docs/messenger-platform>`_ for chat bots,
|
Facebook now has an `official API <https://developers.facebook.com/docs/messenger-platform>`_ for chat bots,
|
||||||
so if you're familiar with node.js, this might be what you're looking for.
|
so if you're familiar with node.js, this might be what you're looking for.
|
||||||
|
|
||||||
If you're already familiar with the basics of how Facebook works internally, go to :ref:`examples` to see example usage of `fbchat`
|
If you're already familiar with the basics of how Facebook works internally, go to :ref:`examples` to see example usage of ``fbchat``
|
||||||
|
|
||||||
|
|
||||||
Overview
|
Overview
|
||||||
|
@@ -1,4 +1,3 @@
|
|||||||
.. highlight:: sh
|
|
||||||
.. _install:
|
.. _install:
|
||||||
|
|
||||||
Installation
|
Installation
|
||||||
@@ -7,7 +6,9 @@ Installation
|
|||||||
Pip Install fbchat
|
Pip Install fbchat
|
||||||
------------------
|
------------------
|
||||||
|
|
||||||
To install fbchat, run this command::
|
To install fbchat, run this command:
|
||||||
|
|
||||||
|
.. code-block:: sh
|
||||||
|
|
||||||
$ pip install fbchat
|
$ pip install fbchat
|
||||||
|
|
||||||
@@ -21,16 +22,22 @@ Get the Source Code
|
|||||||
fbchat is developed on GitHub, where the code is
|
fbchat is developed on GitHub, where the code is
|
||||||
`always available <https://github.com/carpedm20/fbchat>`_.
|
`always available <https://github.com/carpedm20/fbchat>`_.
|
||||||
|
|
||||||
You can either clone the public repository::
|
You can either clone the public repository:
|
||||||
|
|
||||||
|
.. code-block:: sh
|
||||||
|
|
||||||
$ git clone git://github.com/carpedm20/fbchat.git
|
$ git clone git://github.com/carpedm20/fbchat.git
|
||||||
|
|
||||||
Or, download a `tarball <https://github.com/carpedm20/fbchat/tarball/master>`_::
|
Or, download a `tarball <https://github.com/carpedm20/fbchat/tarball/master>`_:
|
||||||
|
|
||||||
|
.. code-block:: sh
|
||||||
|
|
||||||
$ curl -OL https://github.com/carpedm20/fbchat/tarball/master
|
$ curl -OL https://github.com/carpedm20/fbchat/tarball/master
|
||||||
# optionally, zipball is also available (for Windows users).
|
# optionally, zipball is also available (for Windows users).
|
||||||
|
|
||||||
Once you have a copy of the source, you can embed it in your own Python
|
Once you have a copy of the source, you can embed it in your own Python
|
||||||
package, or install it into your site-packages easily::
|
package, or install it into your site-packages easily:
|
||||||
|
|
||||||
|
.. code-block:: sh
|
||||||
|
|
||||||
$ python setup.py install
|
$ python setup.py install
|
||||||
|
@@ -1,11 +1,9 @@
|
|||||||
.. highlight:: python
|
|
||||||
.. module:: fbchat
|
|
||||||
.. _intro:
|
.. _intro:
|
||||||
|
|
||||||
Introduction
|
Introduction
|
||||||
============
|
============
|
||||||
|
|
||||||
`fbchat` uses your email and password to communicate with the Facebook server.
|
``fbchat`` uses your email and password to communicate with the Facebook server.
|
||||||
That means that you should always store your password in a separate file, in case e.g. someone looks over your shoulder while you're writing code.
|
That means that you should always store your password in a separate file, in case e.g. someone looks over your shoulder while you're writing code.
|
||||||
You should also make sure that the file's access control is appropriately restrictive
|
You should also make sure that the file's access control is appropriately restrictive
|
||||||
|
|
||||||
@@ -28,7 +26,7 @@ Replace ``<email>`` and ``<password>`` with your email and password respectively
|
|||||||
For ease of use then most of the code snippets in this document will assume you've already completed the login process
|
For ease of use then most of the code snippets in this document will assume you've already completed the login process
|
||||||
Though the second line, ``from fbchat.models import *``, is not strictly neccesary here, later code snippets will assume you've done this
|
Though the second line, ``from fbchat.models import *``, is not strictly neccesary here, later code snippets will assume you've done this
|
||||||
|
|
||||||
If you want to change how verbose `fbchat` is, change the logging level (in :class:`Client`)
|
If you want to change how verbose ``fbchat`` is, change the logging level (in :class:`Client`)
|
||||||
|
|
||||||
Throughout your code, if you want to check whether you are still logged in, use :func:`Client.isLoggedIn`.
|
Throughout your code, if you want to check whether you are still logged in, use :func:`Client.isLoggedIn`.
|
||||||
An example would be to login again if you've been logged out, using :func:`Client.login`::
|
An example would be to login again if you've been logged out, using :func:`Client.login`::
|
||||||
@@ -48,9 +46,9 @@ Threads
|
|||||||
|
|
||||||
A thread can refer to two things: A Messenger group chat or a single Facebook user
|
A thread can refer to two things: A Messenger group chat or a single Facebook user
|
||||||
|
|
||||||
:class:`models.ThreadType` is an enumerator with two values: ``USER`` and ``GROUP``.
|
:class:`ThreadType` is an enumerator with two values: ``USER`` and ``GROUP``.
|
||||||
These will specify whether the thread is a single user chat or a group chat.
|
These will specify whether the thread is a single user chat or a group chat.
|
||||||
This is required for many of `fbchat`'s functions, since Facebook differentiates between these two internally
|
This is required for many of ``fbchat``'s functions, since Facebook differentiates between these two internally
|
||||||
|
|
||||||
Searching for group chats and finding their ID can be done via. :func:`Client.searchForGroups`,
|
Searching for group chats and finding their ID can be done via. :func:`Client.searchForGroups`,
|
||||||
and searching for users is possible via. :func:`Client.searchForUsers`. See :ref:`intro_fetching`
|
and searching for users is possible via. :func:`Client.searchForUsers`. See :ref:`intro_fetching`
|
||||||
@@ -87,7 +85,7 @@ Message IDs
|
|||||||
Every message you send on Facebook has a unique ID, and every action you do in a thread,
|
Every message you send on Facebook has a unique ID, and every action you do in a thread,
|
||||||
like changing a nickname or adding a person, has a unique ID too.
|
like changing a nickname or adding a person, has a unique ID too.
|
||||||
|
|
||||||
Some of `fbchat`'s functions require these ID's, like :func:`Client.reactToMessage`,
|
Some of ``fbchat``'s functions require these ID's, like :func:`Client.reactToMessage`,
|
||||||
and some of then provide this ID, like :func:`Client.sendMessage`.
|
and some of then provide this ID, like :func:`Client.sendMessage`.
|
||||||
This snippet shows how to send a message, and then use the returned ID to react to that message with a 😍 emoji::
|
This snippet shows how to send a message, and then use the returned ID to react to that message with a 😍 emoji::
|
||||||
|
|
||||||
@@ -100,17 +98,17 @@ This snippet shows how to send a message, and then use the returned ID to react
|
|||||||
Interacting with Threads
|
Interacting with Threads
|
||||||
------------------------
|
------------------------
|
||||||
|
|
||||||
`fbchat` provides multiple functions for interacting with threads
|
``fbchat`` provides multiple functions for interacting with threads
|
||||||
|
|
||||||
Most functionality works on all threads, though some things,
|
Most functionality works on all threads, though some things,
|
||||||
like adding users to and removing users from a group chat, logically only works on group chats
|
like adding users to and removing users from a group chat, logically only works on group chats
|
||||||
|
|
||||||
The simplest way of using `fbchat` is to send a message.
|
The simplest way of using ``fbchat`` is to send a message.
|
||||||
The following snippet will, as you've probably already figured out, send the message `test message` to your account::
|
The following snippet will, as you've probably already figured out, send the message ``test message`` to your account::
|
||||||
|
|
||||||
message_id = client.send(Message(text='test message'), thread_id=client.uid, thread_type=ThreadType.USER)
|
message_id = client.send(Message(text='test message'), thread_id=client.uid, thread_type=ThreadType.USER)
|
||||||
|
|
||||||
You can see a full example showing all the possible thread interactions with `fbchat` by going to :ref:`examples`
|
You can see a full example showing all the possible thread interactions with ``fbchat`` by going to :ref:`examples`
|
||||||
|
|
||||||
|
|
||||||
.. _intro_fetching:
|
.. _intro_fetching:
|
||||||
@@ -118,7 +116,7 @@ You can see a full example showing all the possible thread interactions with `fb
|
|||||||
Fetching Information
|
Fetching Information
|
||||||
--------------------
|
--------------------
|
||||||
|
|
||||||
You can use `fbchat` to fetch basic information like user names, profile pictures, thread names and user IDs
|
You can use ``fbchat`` to fetch basic information like user names, profile pictures, thread names and user IDs
|
||||||
|
|
||||||
You can retrieve a user's ID with :func:`Client.searchForUsers`.
|
You can retrieve a user's ID with :func:`Client.searchForUsers`.
|
||||||
The following snippet will search for users by their name, take the first (and most likely) user, and then get their user ID from the result::
|
The following snippet will search for users by their name, take the first (and most likely) user, and then get their user ID from the result::
|
||||||
@@ -132,7 +130,7 @@ The following snippet will search for users by their name, take the first (and m
|
|||||||
|
|
||||||
Since this uses Facebook's search functions, you don't have to specify the whole name, first names will usually be enough
|
Since this uses Facebook's search functions, you don't have to specify the whole name, first names will usually be enough
|
||||||
|
|
||||||
You can see a full example showing all the possible ways to fetch information with `fbchat` by going to :ref:`examples`
|
You can see a full example showing all the possible ways to fetch information with ``fbchat`` by going to :ref:`examples`
|
||||||
|
|
||||||
|
|
||||||
.. _intro_sessions:
|
.. _intro_sessions:
|
||||||
@@ -140,7 +138,7 @@ You can see a full example showing all the possible ways to fetch information wi
|
|||||||
Sessions
|
Sessions
|
||||||
--------
|
--------
|
||||||
|
|
||||||
`fbchat` provides functions to retrieve and set the session cookies.
|
``fbchat`` provides functions to retrieve and set the session cookies.
|
||||||
This will enable you to store the session cookies in a separate file, so that you don't have to login each time you start your script.
|
This will enable you to store the session cookies in a separate file, so that you don't have to login each time you start your script.
|
||||||
Use :func:`Client.getSession` to retrieve the cookies::
|
Use :func:`Client.getSession` to retrieve the cookies::
|
||||||
|
|
||||||
@@ -164,13 +162,13 @@ Or you can set the ``session_cookies`` on your initial login.
|
|||||||
Listening & Events
|
Listening & Events
|
||||||
------------------
|
------------------
|
||||||
|
|
||||||
To use the listening functions `fbchat` offers (like :func:`Client.listen`),
|
To use the listening functions ``fbchat`` offers (like :func:`Client.listen`),
|
||||||
you have to define what should be executed when certain events happen.
|
you have to define what should be executed when certain events happen.
|
||||||
By default, (most) events will just be a `logging.info` statement,
|
By default, (most) events will just be a `logging.info` statement,
|
||||||
meaning it will simply print information to the console when an event happens
|
meaning it will simply print information to the console when an event happens
|
||||||
|
|
||||||
.. note::
|
.. note::
|
||||||
You can identify the event methods by their `on` prefix, e.g. `onMessage`
|
You can identify the event methods by their ``on`` prefix, e.g. `onMessage`
|
||||||
|
|
||||||
The event actions can be changed by subclassing the :class:`Client`, and then overwriting the event methods::
|
The event actions can be changed by subclassing the :class:`Client`, and then overwriting the event methods::
|
||||||
|
|
||||||
|
@@ -5,21 +5,20 @@ pushd %~dp0
|
|||||||
REM Command file for Sphinx documentation
|
REM Command file for Sphinx documentation
|
||||||
|
|
||||||
if "%SPHINXBUILD%" == "" (
|
if "%SPHINXBUILD%" == "" (
|
||||||
set SPHINXBUILD=python -msphinx
|
set SPHINXBUILD=sphinx-build
|
||||||
)
|
)
|
||||||
set SOURCEDIR=.
|
set SOURCEDIR=.
|
||||||
set BUILDDIR=_build
|
set BUILDDIR=_build
|
||||||
set SPHINXPROJ=fbchat
|
|
||||||
|
|
||||||
if "%1" == "" goto help
|
if "%1" == "" goto help
|
||||||
|
|
||||||
%SPHINXBUILD% >NUL 2>NUL
|
%SPHINXBUILD% >NUL 2>NUL
|
||||||
if errorlevel 9009 (
|
if errorlevel 9009 (
|
||||||
echo.
|
echo.
|
||||||
echo.The Sphinx module was not found. Make sure you have Sphinx installed,
|
echo.The 'sphinx-build' command was not found. Make sure you have Sphinx
|
||||||
echo.then set the SPHINXBUILD environment variable to point to the full
|
echo.installed, then set the SPHINXBUILD environment variable to point
|
||||||
echo.path of the 'sphinx-build' executable. Alternatively you may add the
|
echo.to the full path of the 'sphinx-build' executable. Alternatively you
|
||||||
echo.Sphinx directory to PATH.
|
echo.may add the Sphinx directory to PATH.
|
||||||
echo.
|
echo.
|
||||||
echo.If you don't have Sphinx installed, grab it from
|
echo.If you don't have Sphinx installed, grab it from
|
||||||
echo.http://sphinx-doc.org/
|
echo.http://sphinx-doc.org/
|
||||||
|
2
docs/robots.txt
Normal file
2
docs/robots.txt
Normal file
@@ -0,0 +1,2 @@
|
|||||||
|
User-agent: *
|
||||||
|
Disallow: /en/master/
|
@@ -1,5 +1,3 @@
|
|||||||
.. highlight:: sh
|
|
||||||
.. module:: fbchat
|
|
||||||
.. _testing:
|
.. _testing:
|
||||||
|
|
||||||
Testing
|
Testing
|
||||||
@@ -15,7 +13,9 @@ To use the tests, copy ``tests/data.json`` to ``tests/my_data.json`` or type the
|
|||||||
Please remember to test all supported python versions.
|
Please remember to test all supported python versions.
|
||||||
If you've made any changes to the 2FA functionality, test it with a 2FA enabled account.
|
If you've made any changes to the 2FA functionality, test it with a 2FA enabled account.
|
||||||
|
|
||||||
If you only want to execute specific tests, pass the function names in the command line (not including the `test_` prefix). Example::
|
If you only want to execute specific tests, pass the function names in the command line (not including the ``test_`` prefix). Example:
|
||||||
|
|
||||||
|
.. code-block:: sh
|
||||||
|
|
||||||
$ python tests.py sendMessage sessions sendEmoji
|
$ python tests.py sendMessage sessions sendEmoji
|
||||||
|
|
||||||
@@ -23,7 +23,3 @@ If you only want to execute specific tests, pass the function names in the comma
|
|||||||
|
|
||||||
Do not execute the full set of tests in too quick succession. This can get your account temporarily blocked for spam!
|
Do not execute the full set of tests in too quick succession. This can get your account temporarily blocked for spam!
|
||||||
(You should execute the script at max about 10 times a day)
|
(You should execute the script at max about 10 times a day)
|
||||||
|
|
||||||
.. automodule:: tests
|
|
||||||
:members: TestFbchat
|
|
||||||
:undoc-members: TestFbchat
|
|
||||||
|
@@ -1,5 +1,3 @@
|
|||||||
.. highlight:: python
|
|
||||||
.. module:: fbchat
|
|
||||||
.. _todo:
|
.. _todo:
|
||||||
|
|
||||||
Todo
|
Todo
|
||||||
|
@@ -13,7 +13,7 @@ from ._client import Client
|
|||||||
from ._util import log # TODO: Remove this (from examples too)
|
from ._util import log # TODO: Remove this (from examples too)
|
||||||
|
|
||||||
__title__ = "fbchat"
|
__title__ = "fbchat"
|
||||||
__version__ = "1.7.0"
|
__version__ = "1.7.1"
|
||||||
__description__ = "Facebook Chat (Messenger) for Python"
|
__description__ = "Facebook Chat (Messenger) for Python"
|
||||||
|
|
||||||
__copyright__ = "Copyright 2015 - 2019 by Taehoon Kim"
|
__copyright__ = "Copyright 2015 - 2019 by Taehoon Kim"
|
||||||
|
@@ -36,7 +36,7 @@ class ShareAttachment(Attachment):
|
|||||||
source = attr.ib(None)
|
source = attr.ib(None)
|
||||||
#: URL of the attachment image
|
#: URL of the attachment image
|
||||||
image_url = attr.ib(None)
|
image_url = attr.ib(None)
|
||||||
#: URL of the original image if Facebook uses `safe_image`
|
#: URL of the original image if Facebook uses ``safe_image``
|
||||||
original_image_url = attr.ib(None)
|
original_image_url = attr.ib(None)
|
||||||
#: Width of the image
|
#: Width of the image
|
||||||
image_width = attr.ib(None)
|
image_width = attr.ib(None)
|
||||||
|
File diff suppressed because it is too large
Load Diff
@@ -28,5 +28,30 @@ class FBchatFacebookError(FBchatException):
|
|||||||
self.request_status_code = request_status_code
|
self.request_status_code = request_status_code
|
||||||
|
|
||||||
|
|
||||||
|
class FBchatInvalidParameters(FBchatFacebookError):
|
||||||
|
"""Raised by Facebook if:
|
||||||
|
|
||||||
|
- Some function supplied invalid parameters.
|
||||||
|
- Some content is not found.
|
||||||
|
- Some content is no longer available.
|
||||||
|
"""
|
||||||
|
|
||||||
|
|
||||||
|
class FBchatNotLoggedIn(FBchatFacebookError):
|
||||||
|
"""Raised by Facebook if the client has been logged out."""
|
||||||
|
|
||||||
|
fb_error_code = "1357001"
|
||||||
|
|
||||||
|
|
||||||
|
class FBchatPleaseRefresh(FBchatFacebookError):
|
||||||
|
"""Raised by Facebook if the client has been inactive for too long.
|
||||||
|
|
||||||
|
This error usually happens after 1-2 days of inactivity.
|
||||||
|
"""
|
||||||
|
|
||||||
|
fb_error_code = "1357004"
|
||||||
|
fb_error_message = "Please try closing and re-opening your browser window."
|
||||||
|
|
||||||
|
|
||||||
class FBchatUserError(FBchatException):
|
class FBchatUserError(FBchatException):
|
||||||
"""Thrown by fbchat when wrong values are entered"""
|
"""Thrown by fbchat when wrong values are entered"""
|
||||||
|
@@ -4,7 +4,7 @@ from __future__ import unicode_literals
|
|||||||
import json
|
import json
|
||||||
import re
|
import re
|
||||||
from . import _util
|
from . import _util
|
||||||
from ._exception import FBchatException, FBchatUserError
|
from ._exception import FBchatException
|
||||||
|
|
||||||
# Shameless copy from https://stackoverflow.com/a/8730674
|
# Shameless copy from https://stackoverflow.com/a/8730674
|
||||||
FLAGS = re.VERBOSE | re.MULTILINE | re.DOTALL
|
FLAGS = re.VERBOSE | re.MULTILINE | re.DOTALL
|
||||||
@@ -27,18 +27,18 @@ class ConcatJSONDecoder(json.JSONDecoder):
|
|||||||
# End shameless copy
|
# End shameless copy
|
||||||
|
|
||||||
|
|
||||||
def graphql_queries_to_json(*queries):
|
def queries_to_json(*queries):
|
||||||
"""
|
"""
|
||||||
Queries should be a list of GraphQL objects
|
Queries should be a list of GraphQL objects
|
||||||
"""
|
"""
|
||||||
rtn = {}
|
rtn = {}
|
||||||
for i, query in enumerate(queries):
|
for i, query in enumerate(queries):
|
||||||
rtn["q{}".format(i)] = query.value
|
rtn["q{}".format(i)] = query
|
||||||
return json.dumps(rtn)
|
return json.dumps(rtn)
|
||||||
|
|
||||||
|
|
||||||
def graphql_response_to_json(content):
|
def response_to_json(content):
|
||||||
content = _util.strip_to_json(content) # Usually only needed in some error cases
|
content = _util.strip_json_cruft(content) # Usually only needed in some error cases
|
||||||
try:
|
try:
|
||||||
j = json.loads(content, cls=ConcatJSONDecoder)
|
j = json.loads(content, cls=ConcatJSONDecoder)
|
||||||
except Exception:
|
except Exception:
|
||||||
@@ -49,9 +49,9 @@ def graphql_response_to_json(content):
|
|||||||
if "error_results" in x:
|
if "error_results" in x:
|
||||||
del rtn[-1]
|
del rtn[-1]
|
||||||
continue
|
continue
|
||||||
_util.check_json(x)
|
_util.handle_payload_error(x)
|
||||||
[(key, value)] = x.items()
|
[(key, value)] = x.items()
|
||||||
_util.check_json(value)
|
_util.handle_graphql_errors(value)
|
||||||
if "response" in value:
|
if "response" in value:
|
||||||
rtn[int(key[1:])] = value["response"]
|
rtn[int(key[1:])] = value["response"]
|
||||||
else:
|
else:
|
||||||
@@ -62,19 +62,24 @@ def graphql_response_to_json(content):
|
|||||||
return rtn
|
return rtn
|
||||||
|
|
||||||
|
|
||||||
class GraphQL(object):
|
def from_query(query, params):
|
||||||
def __init__(self, query=None, doc_id=None, params=None):
|
return {"priority": 0, "q": query, "query_params": params}
|
||||||
if params is None:
|
|
||||||
params = {}
|
|
||||||
if query is not None:
|
|
||||||
self.value = {"priority": 0, "q": query, "query_params": params}
|
|
||||||
elif doc_id is not None:
|
|
||||||
self.value = {"doc_id": doc_id, "query_params": params}
|
|
||||||
else:
|
|
||||||
raise FBchatUserError("A query or doc_id must be specified")
|
|
||||||
|
|
||||||
FRAGMENT_USER = """
|
|
||||||
QueryFragment User: User {
|
def from_query_id(query_id, params):
|
||||||
|
return {"query_id": query_id, "query_params": params}
|
||||||
|
|
||||||
|
|
||||||
|
def from_doc(doc, params):
|
||||||
|
return {"doc": doc, "query_params": params}
|
||||||
|
|
||||||
|
|
||||||
|
def from_doc_id(doc_id, params):
|
||||||
|
return {"doc_id": doc_id, "query_params": params}
|
||||||
|
|
||||||
|
|
||||||
|
FRAGMENT_USER = """
|
||||||
|
QueryFragment User: User {
|
||||||
id,
|
id,
|
||||||
name,
|
name,
|
||||||
first_name,
|
first_name,
|
||||||
@@ -86,11 +91,11 @@ class GraphQL(object):
|
|||||||
url,
|
url,
|
||||||
gender,
|
gender,
|
||||||
viewer_affinity
|
viewer_affinity
|
||||||
}
|
}
|
||||||
"""
|
"""
|
||||||
|
|
||||||
FRAGMENT_GROUP = """
|
FRAGMENT_GROUP = """
|
||||||
QueryFragment Group: MessageThread {
|
QueryFragment Group: MessageThread {
|
||||||
name,
|
name,
|
||||||
thread_key {
|
thread_key {
|
||||||
thread_fbid
|
thread_fbid
|
||||||
@@ -148,11 +153,11 @@ class GraphQL(object):
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
"""
|
"""
|
||||||
|
|
||||||
FRAGMENT_PAGE = """
|
FRAGMENT_PAGE = """
|
||||||
QueryFragment Page: Page {
|
QueryFragment Page: Page {
|
||||||
id,
|
id,
|
||||||
name,
|
name,
|
||||||
profile_picture.width(32).height(32) {
|
profile_picture.width(32).height(32) {
|
||||||
@@ -163,12 +168,12 @@ class GraphQL(object):
|
|||||||
city {
|
city {
|
||||||
name
|
name
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
"""
|
"""
|
||||||
|
|
||||||
SEARCH_USER = (
|
SEARCH_USER = (
|
||||||
"""
|
"""
|
||||||
Query SearchUser(<search> = '', <limit> = 10) {
|
Query SearchUser(<search> = '', <limit> = 10) {
|
||||||
entities_named(<search>) {
|
entities_named(<search>) {
|
||||||
search_results.of_type(user).first(<limit>) as users {
|
search_results.of_type(user).first(<limit>) as users {
|
||||||
nodes {
|
nodes {
|
||||||
@@ -176,14 +181,14 @@ class GraphQL(object):
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
"""
|
"""
|
||||||
+ FRAGMENT_USER
|
+ FRAGMENT_USER
|
||||||
)
|
)
|
||||||
|
|
||||||
SEARCH_GROUP = (
|
SEARCH_GROUP = (
|
||||||
"""
|
"""
|
||||||
Query SearchGroup(<search> = '', <limit> = 10, <pic_size> = 32) {
|
Query SearchGroup(<search> = '', <limit> = 10, <pic_size> = 32) {
|
||||||
viewer() {
|
viewer() {
|
||||||
message_threads.with_thread_name(<search>).last(<limit>) as groups {
|
message_threads.with_thread_name(<search>).last(<limit>) as groups {
|
||||||
nodes {
|
nodes {
|
||||||
@@ -191,14 +196,14 @@ class GraphQL(object):
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
"""
|
"""
|
||||||
+ FRAGMENT_GROUP
|
+ FRAGMENT_GROUP
|
||||||
)
|
)
|
||||||
|
|
||||||
SEARCH_PAGE = (
|
SEARCH_PAGE = (
|
||||||
"""
|
"""
|
||||||
Query SearchPage(<search> = '', <limit> = 10) {
|
Query SearchPage(<search> = '', <limit> = 10) {
|
||||||
entities_named(<search>) {
|
entities_named(<search>) {
|
||||||
search_results.of_type(page).first(<limit>) as pages {
|
search_results.of_type(page).first(<limit>) as pages {
|
||||||
nodes {
|
nodes {
|
||||||
@@ -206,14 +211,14 @@ class GraphQL(object):
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
"""
|
"""
|
||||||
+ FRAGMENT_PAGE
|
+ FRAGMENT_PAGE
|
||||||
)
|
)
|
||||||
|
|
||||||
SEARCH_THREAD = (
|
SEARCH_THREAD = (
|
||||||
"""
|
"""
|
||||||
Query SearchThread(<search> = '', <limit> = 10) {
|
Query SearchThread(<search> = '', <limit> = 10) {
|
||||||
entities_named(<search>) {
|
entities_named(<search>) {
|
||||||
search_results.first(<limit>) as threads {
|
search_results.first(<limit>) as threads {
|
||||||
nodes {
|
nodes {
|
||||||
@@ -224,9 +229,9 @@ class GraphQL(object):
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
"""
|
"""
|
||||||
+ FRAGMENT_USER
|
+ FRAGMENT_USER
|
||||||
+ FRAGMENT_GROUP
|
+ FRAGMENT_GROUP
|
||||||
+ FRAGMENT_PAGE
|
+ FRAGMENT_PAGE
|
||||||
)
|
)
|
||||||
|
@@ -99,13 +99,11 @@ class Message(object):
|
|||||||
|
|
||||||
Returns a `Message` object, with the formatted string and relevant mentions.
|
Returns a `Message` object, with the formatted string and relevant mentions.
|
||||||
|
|
||||||
```
|
|
||||||
>>> Message.formatMentions("Hey {!r}! My name is {}", ("1234", "Peter"), ("4321", "Michael"))
|
>>> Message.formatMentions("Hey {!r}! My name is {}", ("1234", "Peter"), ("4321", "Michael"))
|
||||||
<Message (None): "Hey 'Peter'! My name is Michael", mentions=[<Mention 1234: offset=4 length=7>, <Mention 4321: offset=24 length=7>] emoji_size=None attachments=[]>
|
<Message (None): "Hey 'Peter'! My name is Michael", mentions=[<Mention 1234: offset=4 length=7>, <Mention 4321: offset=24 length=7>] emoji_size=None attachments=[]>
|
||||||
|
|
||||||
>>> Message.formatMentions("Hey {p}! My name is {}", ("1234", "Michael"), p=("4321", "Peter"))
|
>>> Message.formatMentions("Hey {p}! My name is {}", ("1234", "Michael"), p=("4321", "Peter"))
|
||||||
<Message (None): 'Hey Peter! My name is Michael', mentions=[<Mention 4321: offset=4 length=5>, <Mention 1234: offset=22 length=7>] emoji_size=None attachments=[]>
|
<Message (None): 'Hey Peter! My name is Michael', mentions=[<Mention 4321: offset=4 length=5>, <Mention 1234: offset=22 length=7>] emoji_size=None attachments=[]>
|
||||||
```
|
|
||||||
"""
|
"""
|
||||||
result = ""
|
result = ""
|
||||||
mentions = list()
|
mentions = list()
|
||||||
|
187
fbchat/_state.py
Normal file
187
fbchat/_state.py
Normal file
@@ -0,0 +1,187 @@
|
|||||||
|
# -*- coding: UTF-8 -*-
|
||||||
|
from __future__ import unicode_literals
|
||||||
|
|
||||||
|
import attr
|
||||||
|
import bs4
|
||||||
|
import re
|
||||||
|
import requests
|
||||||
|
import random
|
||||||
|
|
||||||
|
from . import _util, _exception
|
||||||
|
|
||||||
|
FB_DTSG_REGEX = re.compile(r'name="fb_dtsg" value="(.*?)"')
|
||||||
|
|
||||||
|
|
||||||
|
def find_input_fields(html):
|
||||||
|
return bs4.BeautifulSoup(html, "html.parser", parse_only=bs4.SoupStrainer("input"))
|
||||||
|
|
||||||
|
|
||||||
|
def session_factory(user_agent=None):
|
||||||
|
session = requests.session()
|
||||||
|
session.headers["Referer"] = "https://www.facebook.com"
|
||||||
|
# TODO: Deprecate setting the user agent manually
|
||||||
|
session.headers["User-Agent"] = user_agent or random.choice(_util.USER_AGENTS)
|
||||||
|
return session
|
||||||
|
|
||||||
|
|
||||||
|
def _2fa_helper(session, code, r):
|
||||||
|
soup = find_input_fields(r.text)
|
||||||
|
data = dict()
|
||||||
|
|
||||||
|
url = "https://m.facebook.com/login/checkpoint/"
|
||||||
|
|
||||||
|
data["approvals_code"] = code
|
||||||
|
data["fb_dtsg"] = soup.find("input", {"name": "fb_dtsg"})["value"]
|
||||||
|
data["nh"] = soup.find("input", {"name": "nh"})["value"]
|
||||||
|
data["submit[Submit Code]"] = "Submit Code"
|
||||||
|
data["codes_submitted"] = 0
|
||||||
|
_util.log.info("Submitting 2FA code.")
|
||||||
|
|
||||||
|
r = session.post(url, data=data)
|
||||||
|
|
||||||
|
if "home" in r.url:
|
||||||
|
return r
|
||||||
|
|
||||||
|
del data["approvals_code"]
|
||||||
|
del data["submit[Submit Code]"]
|
||||||
|
del data["codes_submitted"]
|
||||||
|
|
||||||
|
data["name_action_selected"] = "save_device"
|
||||||
|
data["submit[Continue]"] = "Continue"
|
||||||
|
_util.log.info("Saving browser.")
|
||||||
|
# At this stage, we have dtsg, nh, name_action_selected, submit[Continue]
|
||||||
|
r = session.post(url, data=data)
|
||||||
|
|
||||||
|
if "home" in r.url:
|
||||||
|
return r
|
||||||
|
|
||||||
|
del data["name_action_selected"]
|
||||||
|
_util.log.info("Starting Facebook checkup flow.")
|
||||||
|
# At this stage, we have dtsg, nh, submit[Continue]
|
||||||
|
r = session.post(url, data=data)
|
||||||
|
|
||||||
|
if "home" in r.url:
|
||||||
|
return r
|
||||||
|
|
||||||
|
del data["submit[Continue]"]
|
||||||
|
data["submit[This was me]"] = "This Was Me"
|
||||||
|
_util.log.info("Verifying login attempt.")
|
||||||
|
# At this stage, we have dtsg, nh, submit[This was me]
|
||||||
|
r = session.post(url, data=data)
|
||||||
|
|
||||||
|
if "home" in r.url:
|
||||||
|
return r
|
||||||
|
|
||||||
|
del data["submit[This was me]"]
|
||||||
|
data["submit[Continue]"] = "Continue"
|
||||||
|
data["name_action_selected"] = "save_device"
|
||||||
|
_util.log.info("Saving device again.")
|
||||||
|
# At this stage, we have dtsg, nh, submit[Continue], name_action_selected
|
||||||
|
r = session.post(url, data=data)
|
||||||
|
return r
|
||||||
|
|
||||||
|
|
||||||
|
@attr.s(slots=True) # TODO i Python 3: Add kw_only=True
|
||||||
|
class State(object):
|
||||||
|
"""Stores and manages state required for most Facebook requests."""
|
||||||
|
|
||||||
|
fb_dtsg = attr.ib()
|
||||||
|
_revision = attr.ib()
|
||||||
|
_session = attr.ib(factory=session_factory)
|
||||||
|
_counter = attr.ib(0)
|
||||||
|
_logout_h = attr.ib(None)
|
||||||
|
|
||||||
|
def get_user_id(self):
|
||||||
|
rtn = self.get_cookies().get("c_user")
|
||||||
|
if rtn is None:
|
||||||
|
return None
|
||||||
|
return str(rtn)
|
||||||
|
|
||||||
|
def get_params(self):
|
||||||
|
self._counter += 1 # TODO: Make this operation atomic / thread-safe
|
||||||
|
return {
|
||||||
|
"__a": 1,
|
||||||
|
"__req": _util.str_base(self._counter, 36),
|
||||||
|
"__rev": self._revision,
|
||||||
|
"fb_dtsg": self.fb_dtsg,
|
||||||
|
}
|
||||||
|
|
||||||
|
@classmethod
|
||||||
|
def login(cls, email, password, user_agent=None):
|
||||||
|
session = session_factory(user_agent=user_agent)
|
||||||
|
|
||||||
|
soup = find_input_fields(session.get("https://m.facebook.com/").text)
|
||||||
|
data = dict(
|
||||||
|
(elem["name"], elem["value"])
|
||||||
|
for elem in soup
|
||||||
|
if elem.has_attr("value") and elem.has_attr("name")
|
||||||
|
)
|
||||||
|
data["email"] = email
|
||||||
|
data["pass"] = password
|
||||||
|
data["login"] = "Log In"
|
||||||
|
|
||||||
|
r = session.post("https://m.facebook.com/login.php?login_attempt=1", data=data)
|
||||||
|
|
||||||
|
# Usually, 'Checkpoint' will refer to 2FA
|
||||||
|
if "checkpoint" in r.url and ('id="approvals_code"' in r.text.lower()):
|
||||||
|
code = on_2fa_callback()
|
||||||
|
r = _2fa_helper(session, code, r)
|
||||||
|
|
||||||
|
# Sometimes Facebook tries to show the user a "Save Device" dialog
|
||||||
|
if "save-device" in r.url:
|
||||||
|
r = session.get("https://m.facebook.com/login/save-device/cancel/")
|
||||||
|
|
||||||
|
if "home" in r.url:
|
||||||
|
return cls.from_session(session=session)
|
||||||
|
else:
|
||||||
|
raise _exception.FBchatUserError(
|
||||||
|
"Login failed. Check email/password. "
|
||||||
|
"(Failed on url: {})".format(r.url)
|
||||||
|
)
|
||||||
|
|
||||||
|
def is_logged_in(self):
|
||||||
|
# Send a request to the login url, to see if we're directed to the home page
|
||||||
|
url = "https://m.facebook.com/login.php?login_attempt=1"
|
||||||
|
r = self._session.get(url, allow_redirects=False)
|
||||||
|
return "Location" in r.headers and "home" in r.headers["Location"]
|
||||||
|
|
||||||
|
def logout(self):
|
||||||
|
logout_h = self._logout_h
|
||||||
|
if not logout_h:
|
||||||
|
url = _util.prefix_url("/bluebar/modern_settings_menu/")
|
||||||
|
h_r = self._session.post(url, data={"pmid": "4"})
|
||||||
|
logout_h = re.search(r'name=\\"h\\" value=\\"(.*?)\\"', h_r.text).group(1)
|
||||||
|
|
||||||
|
url = _util.prefix_url("/logout.php")
|
||||||
|
return self._session.get(url, params={"ref": "mb", "h": logout_h}).ok
|
||||||
|
|
||||||
|
@classmethod
|
||||||
|
def from_session(cls, session):
|
||||||
|
r = session.get(_util.prefix_url("/"))
|
||||||
|
|
||||||
|
soup = find_input_fields(r.text)
|
||||||
|
|
||||||
|
fb_dtsg_element = soup.find("input", {"name": "fb_dtsg"})
|
||||||
|
if fb_dtsg_element:
|
||||||
|
fb_dtsg = fb_dtsg_element["value"]
|
||||||
|
else:
|
||||||
|
# Fall back to searching with a regex
|
||||||
|
fb_dtsg = FB_DTSG_REGEX.search(r.text).group(1)
|
||||||
|
|
||||||
|
revision = int(r.text.split('"client_revision":', 1)[1].split(",", 1)[0])
|
||||||
|
|
||||||
|
logout_h_element = soup.find("input", {"name": "h"})
|
||||||
|
logout_h = logout_h_element["value"] if logout_h_element else None
|
||||||
|
|
||||||
|
return cls(
|
||||||
|
fb_dtsg=fb_dtsg, revision=revision, session=session, logout_h=logout_h
|
||||||
|
)
|
||||||
|
|
||||||
|
def get_cookies(self):
|
||||||
|
return self._session.cookies.get_dict()
|
||||||
|
|
||||||
|
@classmethod
|
||||||
|
def from_cookies(cls, cookies, user_agent=None):
|
||||||
|
session = session_factory(user_agent=user_agent)
|
||||||
|
session.cookies = requests.cookies.merge_cookies(session.cookies, cookies)
|
||||||
|
return cls.from_session(session=session)
|
@@ -62,9 +62,9 @@ class ThreadColor(Enum):
|
|||||||
class Thread(object):
|
class Thread(object):
|
||||||
"""Represents a Facebook thread"""
|
"""Represents a Facebook thread"""
|
||||||
|
|
||||||
#: The unique identifier of the thread. Can be used a `thread_id`. See :ref:`intro_threads` for more info
|
#: The unique identifier of the thread. Can be used a ``thread_id``. See :ref:`intro_threads` for more info
|
||||||
uid = attr.ib(converter=str)
|
uid = attr.ib(converter=str)
|
||||||
#: Specifies the type of thread. Can be used a `thread_type`. See :ref:`intro_threads` for more info
|
#: Specifies the type of thread. Can be used a ``thread_type``. See :ref:`intro_threads` for more info
|
||||||
type = attr.ib()
|
type = attr.ib()
|
||||||
#: A url to the thread's picture
|
#: A url to the thread's picture
|
||||||
photo = attr.ib(None)
|
photo = attr.ib(None)
|
||||||
|
211
fbchat/_util.py
211
fbchat/_util.py
@@ -11,7 +11,13 @@ from os.path import basename
|
|||||||
import warnings
|
import warnings
|
||||||
import logging
|
import logging
|
||||||
import requests
|
import requests
|
||||||
from ._exception import FBchatException, FBchatFacebookError
|
from ._exception import (
|
||||||
|
FBchatException,
|
||||||
|
FBchatFacebookError,
|
||||||
|
FBchatInvalidParameters,
|
||||||
|
FBchatNotLoggedIn,
|
||||||
|
FBchatPleaseRefresh,
|
||||||
|
)
|
||||||
|
|
||||||
try:
|
try:
|
||||||
from urllib.parse import urlencode, parse_qs, urlparse
|
from urllib.parse import urlencode, parse_qs, urlparse
|
||||||
@@ -47,96 +53,12 @@ USER_AGENTS = [
|
|||||||
]
|
]
|
||||||
|
|
||||||
|
|
||||||
class ReqUrl(object):
|
|
||||||
"""A class containing all urls used by `fbchat`"""
|
|
||||||
|
|
||||||
SEARCH = "https://www.facebook.com/ajax/typeahead/search.php"
|
|
||||||
LOGIN = "https://m.facebook.com/login.php?login_attempt=1"
|
|
||||||
SEND = "https://www.facebook.com/messaging/send/"
|
|
||||||
UNREAD_THREADS = "https://www.facebook.com/ajax/mercury/unread_threads.php"
|
|
||||||
UNSEEN_THREADS = "https://www.facebook.com/mercury/unseen_thread_ids/"
|
|
||||||
THREADS = "https://www.facebook.com/ajax/mercury/threadlist_info.php"
|
|
||||||
MOVE_THREAD = "https://www.facebook.com/ajax/mercury/move_thread.php"
|
|
||||||
ARCHIVED_STATUS = (
|
|
||||||
"https://www.facebook.com/ajax/mercury/change_archived_status.php?dpr=1"
|
|
||||||
)
|
|
||||||
PINNED_STATUS = (
|
|
||||||
"https://www.facebook.com/ajax/mercury/change_pinned_status.php?dpr=1"
|
|
||||||
)
|
|
||||||
MESSAGES = "https://www.facebook.com/ajax/mercury/thread_info.php"
|
|
||||||
READ_STATUS = "https://www.facebook.com/ajax/mercury/change_read_status.php"
|
|
||||||
DELIVERED = "https://www.facebook.com/ajax/mercury/delivery_receipts.php"
|
|
||||||
MARK_SEEN = "https://www.facebook.com/ajax/mercury/mark_seen.php"
|
|
||||||
BASE = "https://www.facebook.com"
|
|
||||||
MOBILE = "https://m.facebook.com/"
|
|
||||||
STICKY = "https://0-edge-chat.facebook.com/pull"
|
|
||||||
PING = "https://0-edge-chat.facebook.com/active_ping"
|
|
||||||
UPLOAD = "https://upload.facebook.com/ajax/mercury/upload.php"
|
|
||||||
INFO = "https://www.facebook.com/chat/user_info/"
|
|
||||||
CONNECT = "https://www.facebook.com/ajax/add_friend/action.php?dpr=1"
|
|
||||||
REMOVE_USER = "https://www.facebook.com/chat/remove_participants/"
|
|
||||||
LOGOUT = "https://www.facebook.com/logout.php"
|
|
||||||
ALL_USERS = "https://www.facebook.com/chat/user_info_all"
|
|
||||||
SAVE_DEVICE = "https://m.facebook.com/login/save-device/cancel/"
|
|
||||||
CHECKPOINT = "https://m.facebook.com/login/checkpoint/"
|
|
||||||
THREAD_COLOR = "https://www.facebook.com/messaging/save_thread_color/?source=thread_settings&dpr=1"
|
|
||||||
THREAD_NICKNAME = "https://www.facebook.com/messaging/save_thread_nickname/?source=thread_settings&dpr=1"
|
|
||||||
THREAD_EMOJI = "https://www.facebook.com/messaging/save_thread_emoji/?source=thread_settings&dpr=1"
|
|
||||||
THREAD_IMAGE = "https://www.facebook.com/messaging/set_thread_image/?dpr=1"
|
|
||||||
THREAD_NAME = "https://www.facebook.com/messaging/set_thread_name/?dpr=1"
|
|
||||||
MESSAGE_REACTION = "https://www.facebook.com/webgraphql/mutation"
|
|
||||||
TYPING = "https://www.facebook.com/ajax/messaging/typ.php"
|
|
||||||
GRAPHQL = "https://www.facebook.com/api/graphqlbatch/"
|
|
||||||
ATTACHMENT_PHOTO = "https://www.facebook.com/mercury/attachments/photo/"
|
|
||||||
PLAN_CREATE = "https://www.facebook.com/ajax/eventreminder/create"
|
|
||||||
PLAN_INFO = "https://www.facebook.com/ajax/eventreminder"
|
|
||||||
PLAN_CHANGE = "https://www.facebook.com/ajax/eventreminder/submit"
|
|
||||||
PLAN_PARTICIPATION = "https://www.facebook.com/ajax/eventreminder/rsvp"
|
|
||||||
MODERN_SETTINGS_MENU = "https://www.facebook.com/bluebar/modern_settings_menu/"
|
|
||||||
REMOVE_FRIEND = "https://m.facebook.com/a/removefriend.php"
|
|
||||||
BLOCK_USER = "https://www.facebook.com/messaging/block_messages/?dpr=1"
|
|
||||||
UNBLOCK_USER = "https://www.facebook.com/messaging/unblock_messages/?dpr=1"
|
|
||||||
SAVE_ADMINS = "https://www.facebook.com/messaging/save_admins/?dpr=1"
|
|
||||||
APPROVAL_MODE = "https://www.facebook.com/messaging/set_approval_mode/?dpr=1"
|
|
||||||
CREATE_GROUP = "https://m.facebook.com/messages/send/?icm=1"
|
|
||||||
DELETE_THREAD = "https://www.facebook.com/ajax/mercury/delete_thread.php?dpr=1"
|
|
||||||
DELETE_MESSAGES = "https://www.facebook.com/ajax/mercury/delete_messages.php?dpr=1"
|
|
||||||
MUTE_THREAD = "https://www.facebook.com/ajax/mercury/change_mute_thread.php?dpr=1"
|
|
||||||
MUTE_REACTIONS = (
|
|
||||||
"https://www.facebook.com/ajax/mercury/change_reactions_mute_thread/?dpr=1"
|
|
||||||
)
|
|
||||||
MUTE_MENTIONS = (
|
|
||||||
"https://www.facebook.com/ajax/mercury/change_mentions_mute_thread/?dpr=1"
|
|
||||||
)
|
|
||||||
CREATE_POLL = "https://www.facebook.com/messaging/group_polling/create_poll/?dpr=1"
|
|
||||||
UPDATE_VOTE = "https://www.facebook.com/messaging/group_polling/update_vote/?dpr=1"
|
|
||||||
GET_POLL_OPTIONS = "https://www.facebook.com/ajax/mercury/get_poll_options"
|
|
||||||
SEARCH_MESSAGES = "https://www.facebook.com/ajax/mercury/search_snippets.php?dpr=1"
|
|
||||||
MARK_SPAM = "https://www.facebook.com/ajax/mercury/mark_spam.php?dpr=1"
|
|
||||||
UNSEND = "https://www.facebook.com/messaging/unsend_message/?dpr=1"
|
|
||||||
FORWARD_ATTACHMENT = "https://www.facebook.com/mercury/attachments/forward/"
|
|
||||||
|
|
||||||
pull_channel = 0
|
|
||||||
|
|
||||||
def change_pull_channel(self, channel=None):
|
|
||||||
if channel is None:
|
|
||||||
self.pull_channel = (self.pull_channel + 1) % 5 # Pull channel will be 0-4
|
|
||||||
else:
|
|
||||||
self.pull_channel = channel
|
|
||||||
self.STICKY = "https://{}-edge-chat.facebook.com/pull".format(self.pull_channel)
|
|
||||||
self.PING = "https://{}-edge-chat.facebook.com/active_ping".format(
|
|
||||||
self.pull_channel
|
|
||||||
)
|
|
||||||
|
|
||||||
|
|
||||||
facebookEncoding = "UTF-8"
|
|
||||||
|
|
||||||
|
|
||||||
def now():
|
def now():
|
||||||
return int(time() * 1000)
|
return int(time() * 1000)
|
||||||
|
|
||||||
|
|
||||||
def strip_to_json(text):
|
def strip_json_cruft(text):
|
||||||
|
"""Removes `for(;;);` (and other cruft) that preceeds JSON responses."""
|
||||||
try:
|
try:
|
||||||
return text[text.index("{") :]
|
return text[text.index("{") :]
|
||||||
except ValueError:
|
except ValueError:
|
||||||
@@ -148,15 +70,14 @@ def get_decoded_r(r):
|
|||||||
|
|
||||||
|
|
||||||
def get_decoded(content):
|
def get_decoded(content):
|
||||||
return content.decode(facebookEncoding)
|
return content.decode("utf-8")
|
||||||
|
|
||||||
|
|
||||||
def parse_json(content):
|
def parse_json(content):
|
||||||
|
try:
|
||||||
return json.loads(content)
|
return json.loads(content)
|
||||||
|
except ValueError:
|
||||||
|
raise FBchatFacebookError("Error while parsing JSON: {!r}".format(content))
|
||||||
def get_json(r):
|
|
||||||
return json.loads(strip_to_json(get_decoded_r(r)))
|
|
||||||
|
|
||||||
|
|
||||||
def digitToChar(digit):
|
def digitToChar(digit):
|
||||||
@@ -192,61 +113,74 @@ def generateOfflineThreadingID():
|
|||||||
return str(int(msgs, 2))
|
return str(int(msgs, 2))
|
||||||
|
|
||||||
|
|
||||||
def check_json(j):
|
def handle_payload_error(j):
|
||||||
if hasattr(j.get("payload"), "get") and j["payload"].get("error"):
|
if "error" not in j:
|
||||||
raise FBchatFacebookError(
|
return
|
||||||
"Error when sending request: {}".format(j["payload"]["error"]),
|
error = j["error"]
|
||||||
fb_error_code=None,
|
if j["error"] == 1357001:
|
||||||
fb_error_message=j["payload"]["error"],
|
error_cls = FBchatNotLoggedIn
|
||||||
)
|
elif j["error"] == 1357004:
|
||||||
elif j.get("error"):
|
error_cls = FBchatPleaseRefresh
|
||||||
if "errorDescription" in j:
|
elif j["error"] in (1357031, 1545010, 1545003):
|
||||||
# 'errorDescription' is in the users own language!
|
error_cls = FBchatInvalidParameters
|
||||||
raise FBchatFacebookError(
|
else:
|
||||||
"Error #{} when sending request: {}".format(
|
error_cls = FBchatFacebookError
|
||||||
j["error"], j["errorDescription"]
|
# TODO: Use j["errorSummary"]
|
||||||
),
|
# "errorDescription" is in the users own language!
|
||||||
fb_error_code=j["error"],
|
raise error_cls(
|
||||||
|
"Error #{} when sending request: {}".format(error, j["errorDescription"]),
|
||||||
|
fb_error_code=error,
|
||||||
fb_error_message=j["errorDescription"],
|
fb_error_message=j["errorDescription"],
|
||||||
)
|
)
|
||||||
elif "debug_info" in j["error"] and "code" in j["error"]:
|
|
||||||
|
|
||||||
|
def handle_graphql_errors(j):
|
||||||
|
errors = []
|
||||||
|
if "error" in j:
|
||||||
|
errors = [j["error"]]
|
||||||
|
if "errors" in j:
|
||||||
|
errors = j["errors"]
|
||||||
|
if errors:
|
||||||
|
error = errors[0] # TODO: Handle multiple errors
|
||||||
|
# TODO: Use `summary`, `severity` and `description`
|
||||||
raise FBchatFacebookError(
|
raise FBchatFacebookError(
|
||||||
"Error #{} when sending request: {}".format(
|
"GraphQL error #{}: {} / {!r}".format(
|
||||||
j["error"]["code"], repr(j["error"]["debug_info"])
|
error.get("code"), error.get("message"), error.get("debug_info")
|
||||||
),
|
),
|
||||||
fb_error_code=j["error"]["code"],
|
fb_error_code=error.get("code"),
|
||||||
fb_error_message=j["error"]["debug_info"],
|
fb_error_message=error.get("message"),
|
||||||
)
|
|
||||||
else:
|
|
||||||
raise FBchatFacebookError(
|
|
||||||
"Error {} when sending request".format(j["error"]),
|
|
||||||
fb_error_code=j["error"],
|
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
||||||
def check_request(r, as_json=True):
|
def check_request(r):
|
||||||
if not r.ok:
|
check_http_code(r.status_code)
|
||||||
raise FBchatFacebookError(
|
|
||||||
"Error when sending request: Got {} response".format(r.status_code),
|
|
||||||
request_status_code=r.status_code,
|
|
||||||
)
|
|
||||||
|
|
||||||
content = get_decoded_r(r)
|
content = get_decoded_r(r)
|
||||||
|
check_content(content)
|
||||||
|
return content
|
||||||
|
|
||||||
|
|
||||||
|
def check_http_code(code):
|
||||||
|
msg = "Error when sending request: Got {} response.".format(code)
|
||||||
|
if code == 404:
|
||||||
|
raise FBchatFacebookError(
|
||||||
|
msg + " This is either because you specified an invalid URL, or because"
|
||||||
|
" you provided an invalid id (Facebook usually requires integer ids).",
|
||||||
|
request_status_code=code,
|
||||||
|
)
|
||||||
|
if 400 <= code < 600:
|
||||||
|
raise FBchatFacebookError(msg, request_status_code=code)
|
||||||
|
|
||||||
|
|
||||||
|
def check_content(content, as_json=True):
|
||||||
if content is None or len(content) == 0:
|
if content is None or len(content) == 0:
|
||||||
raise FBchatFacebookError("Error when sending request: Got empty response")
|
raise FBchatFacebookError("Error when sending request: Got empty response")
|
||||||
|
|
||||||
if as_json:
|
|
||||||
content = strip_to_json(content)
|
def to_json(content):
|
||||||
try:
|
content = strip_json_cruft(content)
|
||||||
j = json.loads(content)
|
j = parse_json(content)
|
||||||
except ValueError:
|
|
||||||
raise FBchatFacebookError("Error while parsing JSON: {!r}".format(content))
|
|
||||||
check_json(j)
|
|
||||||
log.debug(j)
|
log.debug(j)
|
||||||
return j
|
return j
|
||||||
else:
|
|
||||||
return content
|
|
||||||
|
|
||||||
|
|
||||||
def get_jsmods_require(j, index):
|
def get_jsmods_require(j, index):
|
||||||
@@ -255,9 +189,8 @@ def get_jsmods_require(j, index):
|
|||||||
return j["jsmods"]["require"][0][index][0]
|
return j["jsmods"]["require"][0][index][0]
|
||||||
except (KeyError, IndexError) as e:
|
except (KeyError, IndexError) as e:
|
||||||
log.warning(
|
log.warning(
|
||||||
"Error when getting jsmods_require: {}. Facebook might have changed protocol".format(
|
"Error when getting jsmods_require: "
|
||||||
j
|
"{}. Facebook might have changed protocol".format(j)
|
||||||
)
|
|
||||||
)
|
)
|
||||||
return None
|
return None
|
||||||
|
|
||||||
@@ -315,3 +248,9 @@ def get_url_parameters(url, *args):
|
|||||||
|
|
||||||
def get_url_parameter(url, param):
|
def get_url_parameter(url, param):
|
||||||
return get_url_parameters(url, param)[0]
|
return get_url_parameters(url, param)[0]
|
||||||
|
|
||||||
|
|
||||||
|
def prefix_url(url):
|
||||||
|
if url.startswith("/"):
|
||||||
|
return "https://www.facebook.com" + url
|
||||||
|
return url
|
||||||
|
@@ -1,14 +1,5 @@
|
|||||||
[tool.black]
|
[tool.black]
|
||||||
line-length = 88
|
line-length = 88
|
||||||
exclude = '''
|
|
||||||
/(
|
|
||||||
\.git
|
|
||||||
| \.pytest_cache
|
|
||||||
| build
|
|
||||||
| dist
|
|
||||||
| venv
|
|
||||||
)/
|
|
||||||
'''
|
|
||||||
|
|
||||||
[build-system]
|
[build-system]
|
||||||
requires = ["flit"]
|
requires = ["flit"]
|
||||||
@@ -22,10 +13,10 @@ maintainer = "Mads Marquart"
|
|||||||
maintainer-email = "madsmtm@gmail.com"
|
maintainer-email = "madsmtm@gmail.com"
|
||||||
home-page = "https://github.com/carpedm20/fbchat/"
|
home-page = "https://github.com/carpedm20/fbchat/"
|
||||||
requires = [
|
requires = [
|
||||||
"aenum",
|
"aenum~=2.0",
|
||||||
"attrs~=18.2.0",
|
"attrs>=18.2",
|
||||||
"requests",
|
"requests~=2.19",
|
||||||
"beautifulsoup4",
|
"beautifulsoup4~=4.0",
|
||||||
]
|
]
|
||||||
description-file = "README.rst"
|
description-file = "README.rst"
|
||||||
classifiers = [
|
classifiers = [
|
||||||
@@ -61,5 +52,11 @@ Repository = "https://github.com/carpedm20/fbchat/"
|
|||||||
[tool.flit.metadata.requires-extra]
|
[tool.flit.metadata.requires-extra]
|
||||||
test = [
|
test = [
|
||||||
"pytest~=4.0",
|
"pytest~=4.0",
|
||||||
"six",
|
"six~=1.0",
|
||||||
|
]
|
||||||
|
docs = [
|
||||||
|
"sphinx~=2.0",
|
||||||
|
]
|
||||||
|
lint = [
|
||||||
|
"black",
|
||||||
]
|
]
|
||||||
|
Reference in New Issue
Block a user