diff --git a/README.rst b/README.rst index bd1522a..4801a8c 100644 --- a/README.rst +++ b/README.rst @@ -6,7 +6,7 @@ Feature complete for public API as of Mastodon version 3.0.1 (pypi) / 3.3.0 (cur .. code-block:: python # Register your app! This only needs to be done once. Uncomment the code and substitute in your information. - + from mastodon import Mastodon ''' @@ -20,7 +20,7 @@ Feature complete for public API as of Mastodon version 3.0.1 (pypi) / 3.3.0 (cur # Then login. This can be done every time, or use persisted. from mastodon import Mastodon - + mastodon = Mastodon(client_id = 'pytooter_clientcred.secret') mastodon.log_in( 'my_login_email@example.com', @@ -31,32 +31,32 @@ Feature complete for public API as of Mastodon version 3.0.1 (pypi) / 3.3.0 (cur # To post, create an actual API instance. from mastodon import Mastodon - + mastodon = Mastodon(access_token = 'pytooter_usercred.secret') - mastodon.toot('Tooting from python using #mastodonpy !') + mastodon.toot('Tooting from Python using #mastodonpy !') You can install Mastodon.py via pypi: .. code-block:: Bash - + # Python 3 pip3 install Mastodon.py -Note that python 2.7 is now no longer officially supported. It will still -work for a while, and we will fix issues as they come up, but we will not -be testing specifically for python 2.7 any longer. +Note that Python 2.7 is now no longer officially supported. It will still +work for a while, and we will fix issues as they come up, but we will not +be testing specifically for Python 2.7 any longer. -Full documentation and basic usage examples can be found -at http://mastodonpy.readthedocs.io/en/stable/ . +Full documentation and basic usage examples can be found +at https://mastodonpy.readthedocs.io/en/stable/ Acknowledgements ---------------- Mastodon.py contains work by a large amount of contributors, many of which have put significant work into making it a better library. You can find some information -about who helped with which particular feature or fix in the changelog. +about who helped with which particular feature or fix in the changelog. .. image:: https://circleci.com/gh/halcy/Mastodon.py.svg?style=svg :target: https://app.circleci.com/pipelines/github/halcy/Mastodon.py .. image:: https://codecov.io/gh/halcy/Mastodon.py/branch/master/graph/badge.svg :target: https://codecov.io/gh/halcy/Mastodon.py - + diff --git a/docs/conf.py b/docs/conf.py index 14a3902..ac8858f 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -29,7 +29,7 @@ import os import sys sys.path.insert(0, os.path.abspath('../')) -autodoc_member_order = 'by_source' +autodoc_member_order = 'bysource' # print(sys.path) # Add any Sphinx extension module names here, as strings. They can be @@ -58,7 +58,7 @@ master_doc = 'index' # General information about the project. project = u'Mastodon.py' -copyright = u'2016-2020, Lorenz Diener' +copyright = u'2016-2022, Lorenz Diener' author = u'Lorenz Diener' # The version info for the project you're documenting, acts as replacement for @@ -68,14 +68,14 @@ author = u'Lorenz Diener' # The short X.Y version. version = u'1.5' # The full version, including alpha/beta/rc tags. -release = u'1.5.1' +release = u'1.5.2' # 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 +# language = None # There are two options for replacing |today|: either, you set today to some # non-false value, then it is used: @@ -247,21 +247,21 @@ htmlhelp_basename = 'Mastodonpydoc' # -- Options for LaTeX output --------------------------------------------- latex_elements = { - # The paper size ('letterpaper' or 'a4paper'). - # - # 'papersize': 'letterpaper', + # The paper size ('letterpaper' or 'a4paper'). + # + # 'papersize': 'letterpaper', - # The font size ('10pt', '11pt' or '12pt'). - # - # 'pointsize': '10pt', + # The font size ('10pt', '11pt' or '12pt'). + # + # 'pointsize': '10pt', - # Additional stuff for the LaTeX preamble. - # - # 'preamble': '', + # Additional stuff for the LaTeX preamble. + # + # 'preamble': '', - # Latex figure (float) alignment - # - # 'figure_align': 'htbp', + # Latex figure (float) alignment + # + # 'figure_align': 'htbp', } # Grouping the document tree into LaTeX files. List of tuples diff --git a/docs/index.rst b/docs/index.rst index 1e90bc2..025896d 100644 --- a/docs/index.rst +++ b/docs/index.rst @@ -2,7 +2,7 @@ Mastodon.py =========== .. py:module:: mastodon .. py:class: Mastodon - + Register your app! This only needs to be done once. Uncomment the code and substitute in your information: .. code-block:: python @@ -22,7 +22,7 @@ Then login. This can be done every time, or you can use the persisted informatio .. code-block:: python from mastodon import Mastodon - + mastodon = Mastodon( client_id = 'pytooter_clientcred.secret', api_base_url = 'https://mastodon.social' @@ -38,38 +38,38 @@ To post, create an actual API instance: .. code-block:: python from mastodon import Mastodon - + mastodon = Mastodon( access_token = 'pytooter_usercred.secret', api_base_url = 'https://mastodon.social' ) - mastodon.toot('Tooting from python using #mastodonpy !') + mastodon.toot('Tooting from Python using #mastodonpy !') -`Mastodon`_ is an ActivityPub and OStatus based twitter-like federated social -network node. It has an API that allows you to interact with its -every aspect. This is a simple python wrapper for that api, provided -as a single python module. By default, it talks to the -`Mastodon flagship instance`_, but it can be set to talk to any +`Mastodon`_ is an ActivityPub-based Twitter-like federated social +network node. It has an API that allows you to interact with its +every aspect. This is a simple Python wrapper for that API, provided +as a single Python module. By default, it talks to the +`Mastodon flagship instance`_, but it can be set to talk to any node running Mastodon by setting `api_base_url` when creating the -api object (or creating an app). +API object (or creating an app). Mastodon.py aims to implement the complete public Mastodon API. As -of this time, it is feature complete for Mastodon version 3.0.1. Pleromas +of this time, it is feature complete for Mastodon version 3.0.1. Pleroma's Mastodon API layer, while not an official target, should also be basically compatible, and Mastodon.py does make some allowances for behaviour that isn't -strictly like Mastodons. +strictly like that of Mastodon. A note about rate limits ------------------------ -Mastodons API rate limits per user account. By default, the limit is 300 requests +Mastodon's API rate limits per user account. By default, the limit is 300 requests per 5 minute time slot. This can differ from instance to instance and is subject to change. -Mastodon.py has three modes for dealing with rate limiting that you can pass to +Mastodon.py has three modes for dealing with rate limiting that you can pass to the constructor, "throw", "wait" and "pace", "wait" being the default. In "throw" mode, Mastodon.py makes no attempt to stick to rate limits. When a request hits the rate limit, it simply throws a `MastodonRateLimitError`. This is -for applications that need to handle all rate limiting themselves (i.e. interactive apps), -or applications wanting to use Mastodon.py in a multi-threaded context ("wait" and "pace" +for applications that need to handle all rate limiting themselves (i.e. interactive apps), +or applications wanting to use Mastodon.py in a multi-threaded context ("wait" and "pace" modes are not thread safe). .. note:: @@ -95,10 +95,10 @@ modes are not thread safe). In "wait" mode, once a request hits the rate limit, Mastodon.py will wait until the rate limit resets and then try again, until the request succeeds or an error is encountered. This mode is for applications that would rather just not worry about rate limits -much, don't poll the api all that often, and are okay with a call sometimes just taking +much, don't poll the API all that often, and are okay with a call sometimes just taking a while. -In "pace" mode, Mastodon.py will delay each new request after the first one such that, +In "pace" mode, Mastodon.py will delay each new request after the first one such that, if requests were to continue at the same rate, only a certain fraction (set in the constructor as `ratelimit_pacefactor`) of the rate limit will be used up. The fraction can be (and by default, is) greater than one. If the rate limit is hit, "pace" behaves like @@ -107,7 +107,7 @@ a loop without ever sleeping at all yourself. It is for applications that would just pretend there is no such thing as a rate limit and are fine with sometimes not being very interactive. -In addition to the per-user limit, there is a per-IP limit of 7500 requests per 5 +In addition to the per-user limit, there is a per-IP limit of 7500 requests per 5 minute time slot, and tighter limits on logins. Mastodon.py does not make any effort to respect these. @@ -117,36 +117,36 @@ in, do consider using Mastodon.py without authenticating to get the full per-IP A note about pagination ----------------------- -Many of Mastodons API endpoints are paginated. What this means is that if you request +Many of Mastodon's API endpoints are paginated. What this means is that if you request data from them, you might not get all the data at once - instead, you might only get the first few results. -All endpoints that are paginated have four parameters: `since_id`, `max_id`, `min_id` and +All endpoints that are paginated have four parameters: `since_id`, `max_id`, `min_id` and `limit`. `since_id` allows you to specify the smallest id you want in the returned data, but you will still always get the newest data, so if there are too many statuses between the newest one and `since_id`, some will not be returned. `min_id`, on the other hand, gives -you statuses with that minimum id and newer, starting at the given id. `max_id`, similarly, -allows you to specify the largest id you want. By specifying either min_id or `max_id` +you statuses with that minimum id and newer, starting at the given id. `max_id`, similarly, +allows you to specify the largest id you want. By specifying either min_id or `max_id` (generally, only one, not both, though specifying both is supported starting with Mastodon version 3.3.0) of them you can go through pages forwards and backwards. On Mastodon mainline, you can, pass datetime objects as IDs when fetching posts, -since the IDs used are Snowflake IDs and dates can be approximately converted to those. -This is guaranteed to work on mainline Mastodon servers and very likely to work on all -forks, but will **not** work on other servers implementing the API, like Pleroma, Misskey +since the IDs used are Snowflake IDs and dates can be approximately converted to those. +This is guaranteed to work on mainline Mastodon servers and very likely to work on all +forks, but will **not** work on other servers implementing the API, like Pleroma, Misskey or Gotosocial. You should not use this if you want your application to be universally compatible. `limit` allows you to specify how many results you would like returned. Note that an -instance may choose to return less results than you requested - by default, Mastodon -will return no more than 40 statues and no more than 80 accounts no matter how high +instance may choose to return less results than you requested - by default, Mastodon +will return no more than 40 statuses and no more than 80 accounts no matter how high you set the limit. The responses returned by paginated endpoints contain a "link" header that specifies which parameters to use to get the next and previous pages. Mastodon.py parses these -and stores them (if present) in the first (for the previous page) and last (for the +and stores them (if present) in the first (for the previous page) and last (for the next page) item of the returned list as _pagination_prev and _pagination_next. They -are accessible only via attribute-style access. Note that this means that if you +are accessible only via attribute-style access. Note that this means that if you want to persist pagination info with your data, you'll have to take care of that manually (or persist objects, not just dicts). @@ -155,9 +155,9 @@ a paginated request as well as for fetching all pages starting from a first page Two notes about IDs ------------------- -Mastodons API uses IDs in several places: User IDs, Toot IDs, ... +Mastodon's API uses IDs in several places: User IDs, Toot IDs, ... -While debugging, it might be tempting to copy-paste in IDs from the +While debugging, it might be tempting to copy-paste IDs from the web interface into your code. This will not work, as the IDs on the web interface and in the URLs are not the same as the IDs used internally in the API, so don't do that. @@ -165,30 +165,30 @@ in the API, so don't do that. ID unpacking ~~~~~~~~~~~~ Wherever Mastodon.py expects an ID as a parameter, you can also pass a -dict that contains an id - this means that, for example, instead of writing +dict that contains an id - this means that, for example, instead of writing .. code-block:: python mastodon.status_post("@somebody wow!", in_reply_to_id = toot["id"]) - + you can also just write .. code-block:: python mastodon.status_post("@somebody wow!", in_reply_to_id = toot) - + and everything will work as intended. Error handling -------------- When Mastodon.py encounters an error, it will raise an exception, generally with -some text included to tell you what went wrong. +some text included to tell you what went wrong. -The base class that all mastodon exceptions inherit from is `MastodonError`. +The base class that all Mastodon exceptions inherit from is `MastodonError`. If you are only interested in the fact an error was raised somewhere in Mastodon.py, and not the details, this is the exception you can catch. -`MastodonIllegalArgumentError` is generally a programming problem - you asked the +`MastodonIllegalArgumentError` is generally a programming problem - you asked the API to do something obviously invalid (i.e. specify a privacy option that does not exist). @@ -199,16 +199,16 @@ of `MastodonNetworkError`, `MastodonReadTimeout`, which is thrown when a streami API stream times out during reading. `MastodonAPIError` is an error returned from the Mastodon instance - the server -has decided it can't fullfill your request (i.e. you requested info on a user that +has decided it can't fulfil your request (i.e. you requested info on a user that does not exist). It is further split into `MastodonNotFoundError` (API returned 404) and `MastodonUnauthorizedError` (API returned 401). Different error codes might exist, but are not currently handled separately. `MastodonMalformedEventError` is raised when a streaming API listener receives an invalid event. There have been reports that this can sometimes happen after prolonged -operation due to an upstream problem in the requests/urllib libraries. +operation due to an upstream problem in the requests/urllib libraries. -`MastodonRatelimitError` is raised when you hit an API rate limit. You should try +`MastodonRatelimitError` is raised when you hit an API rate limit. You should try again after a while (see the rate limiting section above). `MastodonServerError` is raised when the server throws an internal error, likely due @@ -224,9 +224,9 @@ While you take the extra step of removing the code, please take a moment to cons Return values ------------- -Unless otherwise specified, all data is returned as python dictionaries, matching +Unless otherwise specified, all data is returned as Python dictionaries, matching the JSON format used by the API. Dates returned by the API are in ISO 8601 format -and are parsed into python datetime objects. +and are parsed into Python datetime objects. To make access easier, the dictionaries returned are wrapped by a class that adds read-only attributes for all dict values - this means that, for example, instead of @@ -235,13 +235,13 @@ writing .. code-block:: python description = mastodon.account_verify_credentials()["source"]["note"] - + you can also just write .. code-block:: python description = mastodon.account_verify_credentials().source.note - + and everything will work as intended. The class used for this is exposed as `AttribAccessDict`. @@ -268,12 +268,12 @@ User / account dicts 'followers_count': # How many followers they have 'statuses_count': # How many statuses they have 'note': # Their bio - 'url': # Their URL; usually 'https://mastodon.social/users/' + 'url': # Their URL; for example 'https://mastodon.social/users/' 'avatar': # URL for their avatar, can be animated 'header': # URL for their header image, can be animated 'avatar_static': # URL for their avatar, never animated 'header_static': # URL for their header image, never animated - 'source': # Additional information - only present for user dict returned + 'source': # Additional information - only present for user dict returned # from account_verify_credentials() 'moved_to_account': # If set, a user dict of the account this user has # set up as their moved-to address. @@ -288,11 +288,11 @@ User / account dicts mastodon.account_verify_credentials()["source"] # Returns the following dictionary: { - 'privacy': # The users default visibility setting ("private", "unlisted" or "public") + 'privacy': # The user's default visibility setting ("private", "unlisted" or "public") 'sensitive': # Denotes whether user media should be marked sensitive by default - 'note': # Plain text version of the users bio + 'note': # Plain text version of the user's bio } - + Toot dicts ~~~~~~~~~~ .. _toot dict: @@ -327,9 +327,9 @@ Toot dicts 'application': # Application dict for the client used to post the toot (Does not federate # and is therefore always None for remote toots, can also be None for # local toots for some legacy applications). - 'language': # The language of the toot, if specified by the server, + 'language': # The language of the toot, if specified by the server, # as ISO 639-1 (two-letter) language code. - 'muted': # Boolean denoting whether the user has muted this status by + 'muted': # Boolean denoting whether the user has muted this status by # way of conversation muting 'pinned': # Boolean denoting whether or not the status is currently pinned for the # associated account. @@ -346,12 +346,12 @@ Mention dicts .. code-block:: python { - 'url': # Mentioned users profile URL (potentially remote) - 'username': # Mentioned users user name (not including domain) - 'acct': # Mentioned users account name (including domain) - 'id': # Mentioned users (local) account ID + 'url': # Mentioned user's profile URL (potentially remote) + 'username': # Mentioned user's user name (not including domain) + 'acct': # Mentioned user's account name (including domain) + 'id': # Mentioned user's (local) account ID } - + Scheduled toot dicts ~~~~~~~~~~~~~~~~~~~~ .. _scheduled toot dict: @@ -400,25 +400,25 @@ Poll dicts 'emojis': # List of emoji dicts for all emoji used in answer strings, 'own_votes': # The logged-in users votes, as a list of indices to the options. } - + Conversation dicts ~~~~~~~~~~~~~~~~~~ .. _conversation dict: .. code-block:: python - + mastodon.conversations()[0] # Returns the following dictionary: { 'id': # The ID of this conversation object - 'unread': # Boolean indicating whether this conversation has yet to be + 'unread': # Boolean indicating whether this conversation has yet to be # read by the user - 'accounts': # List of accounts (other than the logged-in account) that + 'accounts': # List of accounts (other than the logged-in account) that # are part of this conversation - 'last_status': # The newest status in this conversation + 'last_status': # The newest status in this conversation } - + Hashtag dicts ~~~~~~~~~~~~~ .. _hashtag dict: @@ -442,7 +442,7 @@ Hashtag usage history dicts 'uses': # Number of statuses using this hashtag on that day 'accounts': # Number of accounts using this hashtag in at least one status on that day } - + Emoji dicts ~~~~~~~~~~~ .. _emoji dict: @@ -451,16 +451,16 @@ Emoji dicts { 'shortcode': # Emoji shortcode, without surrounding colons - 'url': # URL for the emoji image, can be animated + 'url': # URL for the emoji image, can be animated 'static_url': # URL for the emoji image, never animated 'visible_in_picker': # True if the emoji is enabled, False if not. 'category': # The category to display the emoji under (not present if none is set) } - + Application dicts ~~~~~~~~~~~~~~~~~ .. _application dict: - + .. code-block:: python { @@ -468,8 +468,8 @@ Application dicts 'website': # The applications website 'vapid_key': # A vapid key that can be used in web applications } - - + + Relationship dicts ~~~~~~~~~~~~~~~~~~ .. _relationship dict: @@ -485,11 +485,11 @@ Relationship dicts 'blocking': # Boolean denoting whether the logged-in user has blocked the specified user 'blocked_by': # Boolean denoting whether the logged-in user has been blocked by the specified user, if information is available 'muting': # Boolean denoting whether the logged-in user has muted the specified user - 'muting_notifications': # Boolean denoting wheter the logged-in user has muted notifications + 'muting_notifications': # Boolean denoting wheter the logged-in user has muted notifications # related to the specified user - 'requested': # Boolean denoting whether the logged-in user has sent the specified + 'requested': # Boolean denoting whether the logged-in user has sent the specified # user a follow request - 'domain_blocking': # Boolean denoting whether the logged-in user has blocked the + 'domain_blocking': # Boolean denoting whether the logged-in user has blocked the # specified users domain 'showing_reblogs': # Boolean denoting whether the specified users reblogs show up on the # logged-in users Timeline @@ -502,7 +502,7 @@ Relationship dicts Filter dicts ~~~~~~~~~~~~ .. _filter dict: - + .. code-block:: python mastodon.filter() @@ -516,7 +516,7 @@ Filter dicts # or if it should be ran client-side. 'whole_word': # Boolean denoting whether this filter can match partial words } - + Notification dicts ~~~~~~~~~~~~~~~~~~ .. _notification dict: @@ -552,14 +552,14 @@ List dicts .. _list dict: .. code-block:: python - + mastodon.list() # Returns the following dictionary: { 'id': # id of the list 'title': # title of the list } - + Media dicts ~~~~~~~~~~~ .. _media dict: @@ -575,7 +575,7 @@ Media dicts 'remote_url': # The remote URL for the media (if the image is from a remote instance) 'preview_url': # The URL for the media preview 'text_url': # The display text for the media (what shows up in toots) - 'meta': # Dictionary of two metadata dicts (see below), + 'meta': # Dictionary of two metadata dicts (see below), # 'original' and 'small' (preview). Either may be empty. # May additionally contain an "fps" field giving a videos frames per second (possibly # rounded), and a "length" field giving a videos length in a human-readable format. @@ -584,7 +584,7 @@ Media dicts 'blurhash': # The blurhash for the image, used for preview / placeholder generation 'description': # If set, the user-provided description for this media. } - + # Metadata dicts (image) - all fields are optional: { 'width': # Width of the image in pixels @@ -592,7 +592,7 @@ Media dicts 'aspect': # Aspect ratio of the image as a floating point number 'size': # Textual representation of the image size in pixels, e.g. '800x600' } - + # Metadata dicts (video, gifv) - all fields are optional: { 'width': # Width of the video in pixels @@ -607,14 +607,14 @@ Media dicts { 'duration': # Duration of the audio file in seconds 'bitrate': # Average bit-rate of the audio file in bytes per second - } - + } + # Focus Metadata dict: { 'x': Focus point x coordinate (between -1 and 1) 'y': Focus point x coordinate (between -1 and 1) } - + # Media colors dict: { 'foreground': # Estimated foreground colour for the attachment thumbnail @@ -635,7 +635,7 @@ Card dicts 'description': # The description of the card. 'type': # Embed type: 'link', 'photo', 'video', or 'rich' 'image': # (optional) The image associated with the card. - + # OEmbed data (all optional): 'author_name': # Name of the embedded contents author 'author_url': # URL pointing to the embedded contents author @@ -660,8 +660,8 @@ Search result dicts 'accounts': # List of user dicts resulting from the query 'hashtags': # List of hashtag dicts resulting from the query 'statuses': # List of toot dicts resulting from the query - } - + } + Instance dicts ~~~~~~~~~~~~~~ .. _instance dict: @@ -673,17 +673,17 @@ Instance dicts { 'description': # A brief instance description set by the admin 'short_description': # An even briefer instance description - 'email': # The admin contact e-mail - 'title': # The instances title - 'uri': # The instances URL - 'version': # The instances mastodon version - 'urls': # Additional URLs dict, presently only 'streaming_api' with the + 'email': # The admin contact email + 'title': # The instance's title + 'uri': # The instance's URL + 'version': # The instance's Mastodon version + 'urls': # Additional URLs dict, presently only 'streaming_api' with the # stream websocket address. 'stats: # A dictionary containing three stats, user_count (number of local users), # status_count (number of local statuses) and domain_count (number of known # instance domains other than this one). 'contact_account': # User dict of the primary contact for the instance - 'languages': # Array of ISO 639-1 (two-letter) language codes the instance + 'languages': # Array of ISO 639-1 (two-letter) language codes the instance # has chosen to advertise. 'registrations': # Boolean indication whether registrations on this instance are open # (True) or not (False) @@ -703,8 +703,8 @@ Activity dicts 'logins': # Number of users that logged in that week 'registrations': # Number of new users that week 'statuses': # Number of statuses posted that week - } - + } + Report dicts ~~~~~~~~~~~~ .. _report dict: @@ -717,19 +717,19 @@ Report dicts 'id': # Numerical id of the report 'action_taken': # True if a moderator or admin has processed the # report, False otherwise. - + # The following fields are only present in the report dicts returned by moderation API: 'comment': # Text comment submitted with the report 'created_at': # Time at which this report was created, as a datetime object 'updated_at': # Last time this report has been updated, as a datetime object 'account': # User dict of the user that filed this report 'target_account': # Account that has been reported with this report - 'assigned_account': # If the report as been assigned to an account, + 'assigned_account': # If the report as been assigned to an account, # User dict of that account (None if not) 'action_taken_by_account': # User dict of the account that processed this report 'statuses': # List of statuses attached to the report, as toot dicts } - + Push subscription dicts ~~~~~~~~~~~~~~~~~~~~~~~ .. _push subscription dict: @@ -746,7 +746,7 @@ Push subscription dicts # 'favourite', 'reblog' and 'mention', with value True # if webpushes have been requested for those events. } - + Push notification dicts ~~~~~~~~~~~~~~~~~~~~~~~ .. _push notification dict: @@ -756,37 +756,37 @@ Push notification dicts mastodon.push_subscription_decrypt_push(...) # Returns the following dictionary { - 'access_token': # Access token that can be used to access the API as the + 'access_token': # Access token that can be used to access the API as the # notified user 'body': # Text body of the notification 'icon': # URL to an icon for the notification - 'notification_id': # ID that can be passed to notification() to get the full + 'notification_id': # ID that can be passed to notification() to get the full # notification object, 'notification_type': # 'mention', 'reblog', 'follow' or 'favourite' - 'preferred_locale': # The users preferred locale + 'preferred_locale': # The user's preferred locale 'title': # Title for the notification } - + Preference dicts ~~~~~~~~~~~~~~~~ .. _preference dict: .. code-block:: python - + mastodon.preferences() # Returns the following dictionary { - 'posting:default:visibility': # The default visibility setting for the users posts, + 'posting:default:visibility': # The default visibility setting for the user's posts, # as a string - 'posting:default:sensitive': # Boolean indicating whether the users uploads should + 'posting:default:sensitive': # Boolean indicating whether the user's uploads should # be marked sensitive by default - 'posting:default:language': # The users default post language, if set (None if not) + 'posting:default:language': # The user's default post language, if set (None if not) 'reading:expand:media': # How the user wishes to be shown sensitive media. Can be # 'default' (hide if sensitive), 'hide_all' or 'show_all' 'reading:expand:spoilers': # Boolean indicating whether the user wishes to expand # content warnings by default } - + Featured tag dicts ~~~~~~~~~~~~~~~~~~ .. _featured tag dict: @@ -799,10 +799,10 @@ Featured tag dicts 'id': # The featured tags id 'name': # The featured tags name (without leading #) 'statuses_count': # Number of publicly visible statuses posted with this hashtag that this instance knows about - 'last_status_at': # The last time a public status containing this hashtag was added to this instances database + 'last_status_at': # The last time a public status containing this hashtag was added to this instance's database # (can be None if there are none) } - + Read marker dicts ~~~~~~~~~~~~~~~~~ .. _read marker dict: @@ -815,7 +815,7 @@ Read marker dicts 'last_read_id': # ID of the last read object in the timeline 'version': # A counter that is incremented whenever the marker is set to a new status 'updated_at': # The time the marker was last set, as a datetime object - } + } Announcement dicts ~~~~~~~~~~~~~~~~~~ @@ -824,7 +824,7 @@ Announcement dicts .. code-block:: python mastodon.annoucements()[0] - # Returns the following dictionary: + # Returns the following dictionary: { 'id': # The annoucements id 'content': # The contents of the annoucement, as an html string @@ -852,7 +852,7 @@ Admin account dicts .. _admin account dict: .. code-block:: python - + mastodon.admin_account(id) # Returns the following dictionary { @@ -860,10 +860,10 @@ Admin account dicts 'username': # The users username, no leading @ 'domain': # The users domain 'created_at': # The time of account creation - 'email': # For local users, the users e-mail - 'ip': # For local users, the users last known IP address + 'email': # For local users, the user's email + 'ip': # For local users, the user's last known IP address 'role': # 'admin', 'moderator' or None - 'confirmed': # For local users, False if the user has not confirmed their e-mail, True otherwise + 'confirmed': # For local users, False if the user has not confirmed their email, True otherwise 'suspended': # Boolean indicating whether the user has been suspended 'silenced': # Boolean indicating whether the user has been suspended 'disabled': # For local users, boolean indicating whether the user has had their login disabled @@ -871,29 +871,29 @@ Admin account dicts 'locale': # For local users, the locale the user has set, 'invite_request': # If the user requested an invite, the invite request comment of that user. (TODO permanent?) 'invited_by_account_id': # Present if the user was invited by another user and set to the inviting users id. - 'account': # The users account, as a standard user dict + 'account': # The user's account, as a standard user dict } - + App registration and user authentication ---------------------------------------- -Before you can use the mastodon API, you have to register your -application (which gets you a client key and client secret) -and then log in (which gets you an access token). These functions +Before you can use the Mastodon API, you have to register your +application (which gets you a client key and client secret) +and then log in (which gets you an access token). These functions allow you to do those things. Additionally, it is also possible to programmatically register a new user. -For convenience, once you have a client id, secret and access token, +For convenience, once you have a client id, secret and access token, you can simply pass them to the constructor of the class, too! -Note that while it is perfectly reasonable to log back in whenever -your app starts, registering a new application on every -startup is not, so don't do that - instead, register an application +Note that while it is perfectly reasonable to log back in whenever +your app starts, registering a new application on every +startup is not, so don't do that - instead, register an application once, and then persist your client id and secret. A convenient method for this is provided by the functions dealing with registering the app, logging in and the Mastodon classes constructor. To talk to an instance different from the flagship instance, specify -the api_base_url (usually, just the URL of the instance, i.e. +the api_base_url (usually, just the URL of the instance, i.e. https://mastodon.social/ for the flagship instance). If no protocol is specified, Mastodon.py defaults to https. @@ -909,17 +909,17 @@ Versioning ---------- Mastodon.py will check if a certain endpoint is available before doing API calls. By default, it checks against the version of Mastodon retrieved on -init(), or the version you specified. Mastodon.py can be set (in the -constructor) to either check if an endpoint is available at all (this is the -default) or to check if the endpoint is available and behaves as in the newest -Mastodon version (with regards to parameters as well as return values). -Version checking can also be disabled altogether. If a version check fails, +init(), or the version you specified. Mastodon.py can be set (in the +constructor) to either check if an endpoint is available at all (this is the +default) or to check if the endpoint is available and behaves as in the newest +Mastodon version (with regards to parameters as well as return values). +Version checking can also be disabled altogether. If a version check fails, Mastodon.py throws a `MastodonVersionError`. -With the following functions, you can make Mastodon.py re-check the server +With the following functions, you can make Mastodon.py re-check the server version or explicitly determine if a specific minimum Version is available. Long-running applications that aim to support multiple Mastodon versions -should do this from time to time in case a server they are running against +should do this from time to time in case a server they are running against updated. .. automethod:: Mastodon.retrieve_mastodon_version @@ -979,7 +979,7 @@ This function allows you to get and refresh information about polls. Reading data: Notifications --------------------------- -This function allows you to get information about a users notifications. +This function allows you to get information about a user's notifications. .. automethod:: Mastodon.notifications @@ -1020,7 +1020,7 @@ Reading data: Follow suggestions Reading data: Profile directory ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -.. authomethod:: Mastodon.directory +.. automethod:: Mastodon.directory Reading data: Lists ------------------- @@ -1033,7 +1033,7 @@ These functions allow you to view information about lists. Reading data: Follows --------------------- -.. automethod:: Mastodon.followshttps://docs.joinmastodon.org/api/rest +.. automethod:: Mastodon.follows Reading data: Favourites ------------------------ @@ -1078,7 +1078,7 @@ of reports filed by the logged in user. It has since been removed. Writing data: Last-read markers --------------------------- +-------------------------------- This function allows you to set get last read position for timelines. .. automethod:: Mastodon.markers_get @@ -1139,8 +1139,8 @@ interact with already posted statuses. Writing data: Scheduled statuses ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -Mastodon allows you to schedule statuses (using `status_post()`_. -The functions in this section allow you to update or delete thusly +Mastodon allows you to schedule statuses (using `status_post()`_). +The functions in this section allow you to update or delete scheduled statuses. .. automethod:: Mastodon.scheduled_status_update @@ -1171,7 +1171,6 @@ These functions allow you to interact with other accounts: To (un)follow and (un)block. .. automethod:: Mastodon.account_follow -.. automethod:: Mastodon.follows .. automethod:: Mastodon.account_unfollow .. automethod:: Mastodon.account_block .. automethod:: Mastodon.account_unblock @@ -1185,7 +1184,7 @@ These functions allow you to interact with other accounts: To (un)follow and Writing data: Featured tags ~~~~~~~~~~~~~~~~~~~~~~~~~~~ -These functions allow setting which tags are featured on a users profile. +These functions allow setting which tags are featured on a user's profile. .. automethod:: Mastodon.featured_tag_create .. automethod:: Mastodon.featured_tag_delete @@ -1240,7 +1239,7 @@ Writing data: Reports .. automethod:: Mastodon.report Writing data: Last-read markers --------------------------- +------------------------------- This function allows you to set the last read position for timelines to allow for persisting where the user was reading a timeline between sessions and clients / devices. @@ -1296,12 +1295,12 @@ using the `on_abort` handler to fill in events since the last received one and t Both `run_async` and `reconnect_async` default to false, and you'll have to set each to true separately to get the behaviour described above. -The connection may be closed at any time by calling the handles close() method. The +The connection may be closed at any time by calling the handles close() method. The current status of the handler thread can be checked with the handles is_alive() function, and the streaming status can be checked by calling is_receiving(). The streaming functions take instances of `StreamListener` as the `listener` parameter. -A `CallbackStreamListener` class that allows you to specify function callbacks +A `CallbackStreamListener` class that allows you to specify function callbacks directly is included for convenience. For new well-known events implement the streaming function in `StreamListener` or `CallbackStreamListener`. @@ -1335,7 +1334,7 @@ StreamListener .. automethod:: StreamListener.on_notification .. automethod:: StreamListener.on_delete .. automethod:: StreamListener.on_conversation -.. automethod:: StreamListener.on_status_update +.. automethod:: StreamListener.on_status_update .. automethod:: StreamListener.on_unknown_event .. automethod:: StreamListener.on_abort .. automethod:: StreamListener.handle_heartbeat @@ -1348,14 +1347,14 @@ CallbackStreamListener Push subscriptions ------------------ These functions allow you to manage webpush subscriptions and to decrypt received -pushes. Note that the intended setup is not mastodon pushing directly to a users client - -the push endpoint should usually be a relay server that then takes care of delivering the +pushes. Note that the intended setup is not Mastodon pushing directly to a user's client - +the push endpoint should usually be a relay server that then takes care of delivering the (encrypted) push to the end user via some mechanism, where it can then be decrypted and displayed. Mastodon allows an application to have one webpush subscription per user at a time. -All crypto utilities require Mastodon.pys optional "webpush" feature dependencies +All crypto utilities require Mastodon.py's optional "webpush" feature dependencies (specifically, the "cryptography" and "http_ece" packages). .. automethod:: Mastodon.push_subscription @@ -1372,8 +1371,8 @@ Moderation API -------------- These functions allow you to perform moderation actions on users and generally process reports using the API. To do this, you need access to the "admin:read" and/or -"admin:write" scopes or their more granular variants (both for the application and the -access token), as well as at least moderator access. Mastodon.py will not request these +"admin:write" scopes or their more granular variants (both for the application and the +access token), as well as at least moderator access. Mastodon.py will not request these by default, as that would be very dangerous. BIG WARNING: TREAT ANY ACCESS TOKENS THAT HAVE ADMIN CREDENTIALS AS EXTREMELY, MASSIVELY @@ -1403,10 +1402,10 @@ have admin: scopes attached with a lot of care, but be extra careful with those Acknowledgements ---------------- -Mastodon.py contains work by a large amount of contributors, many of which have +Mastodon.py contains work by a large number of contributors, many of which have put significant work into making it a better library. You can find some information about who helped with which particular feature or fix in the changelog. .. _Mastodon: https://github.com/mastodon/mastodon -.. _Mastodon flagship instance: http://mastodon.social/ -.. _Official Mastodon api docs: https://docs.joinmastodon.org/api/rest +.. _Mastodon flagship instance: https://mastodon.social/ +.. _Official Mastodon API docs: https://docs.joinmastodon.org/client/intro/ diff --git a/mastodon/Mastodon.py b/mastodon/Mastodon.py index 48d850b..11cd2f3 100644 --- a/mastodon/Mastodon.py +++ b/mastodon/Mastodon.py @@ -1,5 +1,7 @@ # coding: utf-8 +import json +import base64 import os import os.path import mimetypes @@ -31,15 +33,13 @@ try: from cryptography.hazmat.primitives import serialization except: IMPL_HAS_CRYPTO = False - -IMPL_HAS_ECE = True + +IMPL_HAS_ECE = True try: import http_ece except: IMPL_HAS_ECE = False -import base64 -import json IMPL_HAS_BLURHASH = True try: @@ -60,9 +60,11 @@ except ImportError: ### # Version check functions, including decorator and parser ### + + def parse_version_string(version_string): """Parses a semver version string, stripping off "rc" stuff if present.""" - string_parts = version_string.split(".") + string_parts = version_string.split(".") version_parts = [ int(re.match("([0-9]*)", string_parts[0]).group(0)), int(re.match("([0-9]*)", string_parts[1]).group(0)), @@ -70,6 +72,7 @@ def parse_version_string(version_string): ] return version_parts + def bigger_version(version_string_a, version_string_b): """Returns the bigger version of two version strings.""" major_a, minor_a, patch_a = parse_version_string(version_string_a) @@ -83,25 +86,31 @@ def bigger_version(version_string_a, version_string_b): return version_string_a return version_string_b + def api_version(created_ver, last_changed_ver, return_value_ver): """Version check decorator. Currently only checks Bigger Than.""" - def api_min_version_decorator(function): + def api_min_version_decorator(function): def wrapper(function, self, *args, **kwargs): if not self.version_check_mode == "none": if self.version_check_mode == "created": version = created_ver else: - version = bigger_version(last_changed_ver, return_value_ver) + version = bigger_version( + last_changed_ver, return_value_ver) major, minor, patch = parse_version_string(version) if major > self.mastodon_major: - raise MastodonVersionError("Version check failed (Need version " + version + ")") + raise MastodonVersionError( + "Version check failed (Need version " + version + ")") elif major == self.mastodon_major and minor > self.mastodon_minor: print(self.mastodon_minor) - raise MastodonVersionError("Version check failed (Need version " + version + ")") + raise MastodonVersionError( + "Version check failed (Need version " + version + ")") elif major == self.mastodon_major and minor == self.mastodon_minor and patch > self.mastodon_patch: - raise MastodonVersionError("Version check failed (Need version " + version + ", patch is " + str(self.mastodon_patch) + ")") + raise MastodonVersionError( + "Version check failed (Need version " + version + ", patch is " + str(self.mastodon_patch) + ")") return function(self, *args, **kwargs) - function.__doc__ = function.__doc__ + "\n\n *Added: Mastodon v" + created_ver + ", last changed: Mastodon v" + last_changed_ver + "*" + function.__doc__ = function.__doc__ + "\n\n *Added: Mastodon v" + \ + created_ver + ", last changed: Mastodon v" + last_changed_ver + "*" return decorate(function, wrapper) return api_min_version_decorator @@ -109,13 +118,15 @@ def api_version(created_ver, last_changed_ver, return_value_ver): # Dict helper class. # Defined at top level so it can be pickled. ### + + class AttribAccessDict(dict): def __getattr__(self, attr): if attr in self: return self[attr] else: raise AttributeError("Attribute not found: " + str(attr)) - + def __setattr__(self, attr, val): if attr in self: raise AttributeError("Attribute-style access is read only") @@ -145,10 +156,10 @@ class AttribAccessList(list): class Mastodon: """ Thorough and easy to use Mastodon - api wrapper in python. + API wrapper in Python. If anything is unclear, check the official API docs at - https://github.com/tootsuite/documentation/blob/master/Using-the-API/API.md + https://github.com/mastodon/documentation/blob/master/content/en/client/intro.md """ __DEFAULT_BASE_URL = 'https://mastodon.social' __DEFAULT_TIMEOUT = 300 @@ -157,29 +168,29 @@ class Mastodon: __DEFAULT_SCOPES = ['read', 'write', 'follow', 'push'] __SCOPE_SETS = { 'read': [ - 'read:accounts', - 'read:blocks', - 'read:favourites', - 'read:filters', - 'read:follows', - 'read:lists', - 'read:mutes', - 'read:notifications', - 'read:search', + 'read:accounts', + 'read:blocks', + 'read:favourites', + 'read:filters', + 'read:follows', + 'read:lists', + 'read:mutes', + 'read:notifications', + 'read:search', 'read:statuses', 'read:bookmarks' ], 'write': [ - 'write:accounts', - 'write:blocks', - 'write:favourites', - 'write:filters', - 'write:follows', - 'write:lists', - 'write:media', - 'write:mutes', - 'write:notifications', - 'write:reports', + 'write:accounts', + 'write:blocks', + 'write:favourites', + 'write:filters', + 'write:follows', + 'write:lists', + 'write:media', + 'write:mutes', + 'write:notifications', + 'write:reports', 'write:statuses', 'write:bookmarks' ], @@ -187,54 +198,62 @@ class Mastodon: 'read:blocks', 'read:follows', 'read:mutes', - 'write:blocks', + 'write:blocks', 'write:follows', - 'write:mutes', + 'write:mutes', ], 'admin:read': [ - 'admin:read:accounts', + 'admin:read:accounts', 'admin:read:reports', ], 'admin:write': [ - 'admin:write:accounts', + 'admin:write:accounts', 'admin:write:reports', ], } __VALID_SCOPES = ['read', 'write', 'follow', 'push', 'admin:read', 'admin:write'] + \ - __SCOPE_SETS['read'] + __SCOPE_SETS['write'] + __SCOPE_SETS['admin:read'] + __SCOPE_SETS['admin:write'] - + __SCOPE_SETS['read'] + __SCOPE_SETS['write'] + \ + __SCOPE_SETS['admin:read'] + __SCOPE_SETS['admin:write'] + __SUPPORTED_MASTODON_VERSION = "3.1.1" - + # Dict versions __DICT_VERSION_APPLICATION = "2.7.2" __DICT_VERSION_MENTION = "1.0.0" __DICT_VERSION_MEDIA = "3.2.0" __DICT_VERSION_ACCOUNT = "3.3.0" __DICT_VERSION_POLL = "2.8.0" - __DICT_VERSION_STATUS = bigger_version(bigger_version(bigger_version(bigger_version(bigger_version("3.1.0", __DICT_VERSION_MEDIA), __DICT_VERSION_ACCOUNT), __DICT_VERSION_APPLICATION), __DICT_VERSION_MENTION), __DICT_VERSION_POLL) + __DICT_VERSION_STATUS = bigger_version(bigger_version(bigger_version(bigger_version(bigger_version( + "3.1.0", __DICT_VERSION_MEDIA), __DICT_VERSION_ACCOUNT), __DICT_VERSION_APPLICATION), __DICT_VERSION_MENTION), __DICT_VERSION_POLL) __DICT_VERSION_INSTANCE = bigger_version("3.1.4", __DICT_VERSION_ACCOUNT) __DICT_VERSION_HASHTAG = "2.3.4" __DICT_VERSION_EMOJI = "3.0.0" __DICT_VERSION_RELATIONSHIP = "3.3.0" - __DICT_VERSION_NOTIFICATION = bigger_version(bigger_version("1.0.0", __DICT_VERSION_ACCOUNT), __DICT_VERSION_STATUS) + __DICT_VERSION_NOTIFICATION = bigger_version(bigger_version( + "1.0.0", __DICT_VERSION_ACCOUNT), __DICT_VERSION_STATUS) __DICT_VERSION_CONTEXT = bigger_version("1.0.0", __DICT_VERSION_STATUS) __DICT_VERSION_LIST = "2.1.0" __DICT_VERSION_CARD = "3.2.0" - __DICT_VERSION_SEARCHRESULT = bigger_version(bigger_version(bigger_version("1.0.0", __DICT_VERSION_ACCOUNT), __DICT_VERSION_STATUS), __DICT_VERSION_HASHTAG) - __DICT_VERSION_ACTIVITY = "2.1.2" + __DICT_VERSION_SEARCHRESULT = bigger_version(bigger_version(bigger_version( + "1.0.0", __DICT_VERSION_ACCOUNT), __DICT_VERSION_STATUS), __DICT_VERSION_HASHTAG) + __DICT_VERSION_ACTIVITY = "2.1.2" __DICT_VERSION_REPORT = "2.9.1" __DICT_VERSION_PUSH = "2.4.0" __DICT_VERSION_PUSH_NOTIF = "2.4.0" __DICT_VERSION_FILTER = "2.4.3" - __DICT_VERSION_CONVERSATION = bigger_version(bigger_version("2.6.0", __DICT_VERSION_ACCOUNT), __DICT_VERSION_STATUS) - __DICT_VERSION_SCHEDULED_STATUS = bigger_version("2.7.0", __DICT_VERSION_STATUS) + __DICT_VERSION_CONVERSATION = bigger_version(bigger_version( + "2.6.0", __DICT_VERSION_ACCOUNT), __DICT_VERSION_STATUS) + __DICT_VERSION_SCHEDULED_STATUS = bigger_version( + "2.7.0", __DICT_VERSION_STATUS) __DICT_VERSION_PREFERENCES = "2.8.0" - __DICT_VERSION_ADMIN_ACCOUNT = bigger_version("2.9.1", __DICT_VERSION_ACCOUNT) + __DICT_VERSION_ADMIN_ACCOUNT = bigger_version( + "2.9.1", __DICT_VERSION_ACCOUNT) __DICT_VERSION_FEATURED_TAG = "3.0.0" __DICT_VERSION_MARKER = "3.0.0" __DICT_VERSION_REACTION = "3.1.0" - __DICT_VERSION_ANNOUNCEMENT = bigger_version("3.1.0", __DICT_VERSION_REACTION) - + __DICT_VERSION_ANNOUNCEMENT = bigger_version( + "3.1.0", __DICT_VERSION_REACTION) + ### # Registering apps ### @@ -242,23 +261,23 @@ class Mastodon: def create_app(client_name, scopes=__DEFAULT_SCOPES, redirect_uris=None, website=None, to_file=None, api_base_url=__DEFAULT_BASE_URL, request_timeout=__DEFAULT_TIMEOUT, session=None): """ - Create a new app with given `client_name` and `scopes` (The basic scropse are "read", "write", "follow" and "push" - - more granular scopes are available, please refere to Mastodon documentation for which). + Create a new app with given `client_name` and `scopes` (The basic scopes are "read", "write", "follow" and "push" + - more granular scopes are available, please refer to Mastodon documentation for which). - Specify `redirect_uris` if you want users to be redirected to a certain page after authenticating in an oauth flow. + Specify `redirect_uris` if you want users to be redirected to a certain page after authenticating in an OAuth flow. You can specify multiple URLs by passing a list. Note that if you wish to use OAuth authentication with redirects, the redirect URI must be one of the URLs specified here. - - Specify `to_file` to persist your apps info to a file so you can use them in the constructor. - Specify `api_base_url` if you want to register an app on an instance different from the flagship one. + + Specify `to_file` to persist your app's info to a file so you can use it in the constructor. + Specify `api_base_url` if you want to register an app on an instance different from the flagship one. Specify `website` to give a website for your app. - Specify `session` with a requests.Session for it to be used instead of the deafult. This can be - used to, amongst other things, adjust proxy or ssl certificate settings. - + Specify `session` with a requests.Session for it to be used instead of the default. This can be + used to, amongst other things, adjust proxy or SSL certificate settings. + Presently, app registration is open by default, but this is not guaranteed to be the case for all - future mastodon instances or even the flagship instance in the future. - + Mastodon instances in the future. + Returns `client_id` and `client_secret`, both as strings. """ @@ -279,10 +298,12 @@ class Mastodon: if website is not None: request_data['website'] = website if session: - ret = session.post(api_base_url + '/api/v1/apps', data=request_data, timeout=request_timeout) + ret = session.post(api_base_url + '/api/v1/apps', + data=request_data, timeout=request_timeout) response = ret.json() else: - response = requests.post(api_base_url + '/api/v1/apps', data=request_data, timeout=request_timeout) + response = requests.post( + api_base_url + '/api/v1/apps', data=request_data, timeout=request_timeout) response = response.json() except Exception as e: raise MastodonNetworkError("Could not complete request: %s" % e) @@ -293,7 +314,7 @@ class Mastodon: secret_file.write(response['client_secret'] + "\n") secret_file.write(api_base_url + "\n") secret_file.write(client_name + "\n") - + return (response['client_id'], response['client_secret']) ### @@ -303,13 +324,13 @@ class Mastodon: api_base_url=None, debug_requests=False, ratelimit_method="wait", ratelimit_pacefactor=1.1, request_timeout=__DEFAULT_TIMEOUT, mastodon_version=None, - version_check_mode = "created", session=None, feature_set="mainline", user_agent="mastodonpy"): + version_check_mode="created", session=None, feature_set="mainline", user_agent="mastodonpy"): """ Create a new API wrapper instance based on the given `client_secret` and `client_id`. If you give a `client_id` and it is not a file, you must also give a secret. If you specify an `access_token` then you don't need to specify a `client_id`. It is allowed to specify neither - in this case, you will be restricted to only using endpoints that do not - require authentication. If a file is given as `client_id`, client ID, secret and + require authentication. If a file is given as `client_id`, client ID, secret and base url are read from that file. You can also specify an `access_token`, directly or as a file (as written by `log_in()`_). If @@ -320,7 +341,7 @@ class Mastodon: "throw" makes functions throw a `MastodonRatelimitError` when the rate limit is hit. "wait" mode will, once the limit is hit, wait and retry the request as soon as the rate limit resets, until it succeeds. "pace" works like throw, but tries to wait in - between calls so that the limit is generally not hit (How hard it tries to not hit the rate + between calls so that the limit is generally not hit (how hard it tries to avoid hitting the rate limit can be controlled by ratelimit_pacefactor). The default setting is "wait". Note that even in "wait" and "pace" mode, requests can still fail due to network or other problems! Also note that "pace" and "wait" are NOT thread safe. @@ -333,33 +354,33 @@ class Mastodon: pass the desired timeout (in seconds) as `request_timeout`. For fine-tuned control over the requests object use `session` with a requests.Session. - + The `mastodon_version` parameter can be used to specify the version of Mastodon that Mastodon.py will - expect to be installed on the server. The function will throw an error if an unparseable - Version is specified. If no version is specified, Mastodon.py will set `mastodon_version` to the + expect to be installed on the server. The function will throw an error if an unparseable + Version is specified. If no version is specified, Mastodon.py will set `mastodon_version` to the detected version. - - The version check mode can be set to "created" (the default behaviour), "changed" or "none". If set to + + The version check mode can be set to "created" (the default behaviour), "changed" or "none". If set to "created", Mastodon.py will throw an error if the version of Mastodon it is connected to is too old - to have an endpoint. If it is set to "changed", it will throw an error if the endpoints behaviour has + to have an endpoint. If it is set to "changed", it will throw an error if the endpoint's behaviour has changed after the version of Mastodon that is connected has been released. If it is set to "none", version checking is disabled. - + `feature_set` can be used to enable behaviour specific to non-mainline Mastodon API implementations. Details are documented in the functions that provide such functionality. Currently supported feature sets are `mainline`, `fedibird` and `pleroma`. - For some mastodon-instances a `User-Agent` header is needed. This can be set by parameter `user_agent`. Starting from + For some Mastodon instances a `User-Agent` header is needed. This can be set by parameter `user_agent`. Starting from Mastodon.py 1.5.2 `create_app()` stores the application name into the client secret file. If `client_id` points to this file, - the app name will be used as `User-Agent` header as default. It's possible to modify old secret files and append + the app name will be used as `User-Agent` header as default. It is possible to modify old secret files and append a client app name to use it as a `User-Agent` name. - If no other user agent is specified, "mastodonpy" will be used. + If no other `User-Agent` is specified, "mastodonpy" will be used. """ self.api_base_url = None if not api_base_url is None: self.api_base_url = Mastodon.__protocolize(api_base_url) - + self.client_id = client_id self.client_secret = client_secret self.access_token = access_token @@ -367,9 +388,9 @@ class Mastodon: self.ratelimit_method = ratelimit_method self._token_expired = datetime.datetime.now() self._refresh_token = None - + self.__logged_in_id = None - + self.ratelimit_limit = 300 self.ratelimit_reset = time.time() self.ratelimit_remaining = 300 @@ -389,19 +410,20 @@ class Mastodon: # General defined user-agent self.user_agent = user_agent - + # Token loading if self.client_id is not None: if os.path.isfile(self.client_id): with open(self.client_id, 'r') as secret_file: self.client_id = secret_file.readline().rstrip() self.client_secret = secret_file.readline().rstrip() - + try_base_url = secret_file.readline().rstrip() if (not try_base_url is None) and len(try_base_url) != 0: try_base_url = Mastodon.__protocolize(try_base_url) if not (self.api_base_url is None or try_base_url == self.api_base_url): - raise MastodonIllegalArgumentError('Mismatch in base URLs between files and/or specified') + raise MastodonIllegalArgumentError( + 'Mismatch in base URLs between files and/or specified') self.api_base_url = try_base_url # With new registrations we support the 4th line to store a client_name and use it as user-agent @@ -410,17 +432,19 @@ class Mastodon: self.user_agent = client_name.rstrip() else: if self.client_secret is None: - raise MastodonIllegalArgumentError('Specified client id directly, but did not supply secret') + raise MastodonIllegalArgumentError( + 'Specified client id directly, but did not supply secret') if self.access_token is not None and os.path.isfile(self.access_token): with open(self.access_token, 'r') as token_file: self.access_token = token_file.readline().rstrip() - + try_base_url = token_file.readline().rstrip() if (not try_base_url is None) and len(try_base_url) != 0: try_base_url = Mastodon.__protocolize(try_base_url) if not (self.api_base_url is None or try_base_url == self.api_base_url): - raise MastodonIllegalArgumentError('Mismatch in base URLs between files and/or specified') + raise MastodonIllegalArgumentError( + 'Mismatch in base URLs between files and/or specified') self.api_base_url = try_base_url if not version_check_mode in ["created", "changed", "none"]: @@ -430,25 +454,25 @@ class Mastodon: self.mastodon_major = 1 self.mastodon_minor = 0 self.mastodon_patch = 0 - + # Versioning if mastodon_version == None and self.version_check_mode != 'none': self.retrieve_mastodon_version() elif self.version_check_mode != 'none': try: - self.mastodon_major, self.mastodon_minor, self.mastodon_patch = parse_version_string(mastodon_version) + self.mastodon_major, self.mastodon_minor, self.mastodon_patch = parse_version_string( + mastodon_version) except: raise MastodonVersionError("Bad version specified") - + # Ratelimiting parameter check if ratelimit_method not in ["throw", "wait", "pace"]: raise MastodonIllegalArgumentError("Invalid ratelimit method.") - - + def retrieve_mastodon_version(self): """ - Determine installed mastodon version and set major, minor and patch (not including RC info) accordingly. - + Determine installed Mastodon version and set major, minor and patch (not including RC info) accordingly. + Returns the version string, possibly including rc info. """ try: @@ -456,16 +480,17 @@ class Mastodon: except: # instance() was added in 1.1.0, so our best guess is 1.0.0. version_str = "1.0.0" - - self.mastodon_major, self.mastodon_minor, self.mastodon_patch = parse_version_string(version_str) + + self.mastodon_major, self.mastodon_minor, self.mastodon_patch = parse_version_string( + version_str) return version_str - + def verify_minimum_version(self, version_str, cached=False): """ Update version info from server and verify that at least the specified version is present. - + If you specify "cached", the version info update part is skipped. - + Returns True if version requirement is satisfied, False if not. """ if not cached: @@ -485,21 +510,24 @@ class Mastodon: Retrieve the maximum version of Mastodon supported by this version of Mastodon.py """ return Mastodon.__SUPPORTED_MASTODON_VERSION - + + def auth_request_url(self, client_id=None, redirect_uris="urn:ietf:wg:oauth:2.0:oob", + scopes=__DEFAULT_SCOPES, force_login=False): + def auth_request_url(self, client_id=None, redirect_uris="urn:ietf:wg:oauth:2.0:oob", scopes=__DEFAULT_SCOPES, force_login=False, state=None): """ - Returns the url that a client needs to request an oauth grant from the server. - - To log in with oauth, send your user to this URL. The user will then log in and + Returns the URL that a client needs to request an OAuth grant from the server. + + To log in with OAuth, send your user to this URL. The user will then log in and get a code which you can pass to log_in. - + scopes are as in `log_in()`_, redirect_uris is where the user should be redirected to after authentication. Note that redirect_uris must be one of the URLs given during app registration. When using urn:ietf:wg:oauth:2.0:oob, the code is simply displayed, otherwise it is added to the given URL as the "code" request parameter. - + Pass force_login if you want the user to always log in even when already logged - into web mastodon (i.e. when registering multiple different accounts in an app). + into web Mastodon (i.e. when registering multiple different accounts in an app). State is the oauth `state`parameter to pass to the server. It is strongly suggested to use a random, nonguessable value (i.e. nothing meaningful and no incrementing ID) @@ -525,18 +553,18 @@ class Mastodon: def log_in(self, username=None, password=None, code=None, redirect_uri="urn:ietf:wg:oauth:2.0:oob", refresh_token=None, scopes=__DEFAULT_SCOPES, to_file=None): """ Get the access token for a user. - - The username is the e-mail used to log in into mastodon. + + The username is the email address used to log in into Mastodon. Can persist access token to file `to_file`, to be used in the constructor. Handles password and OAuth-based authorization. - + Will throw a `MastodonIllegalArgumentError` if the OAuth or the username / password credentials given are incorrect, and `MastodonAPIError` if all of the requested scopes were not granted. - For OAuth2, obtain a code via having your user go to the url returned by + For OAuth 2, obtain a code via having your user go to the URL returned by `auth_request_url()`_ and pass it as the code parameter. In this case, make sure to also pass the same redirect_uri parameter as you used when generating the auth request URL. @@ -544,31 +572,38 @@ class Mastodon: Returns the access token as a string. """ if username is not None and password is not None: - params = self.__generate_params(locals(), ['scopes', 'to_file', 'code', 'refresh_token']) + params = self.__generate_params( + locals(), ['scopes', 'to_file', 'code', 'refresh_token']) params['grant_type'] = 'password' elif code is not None: - params = self.__generate_params(locals(), ['scopes', 'to_file', 'username', 'password', 'refresh_token']) + params = self.__generate_params( + locals(), ['scopes', 'to_file', 'username', 'password', 'refresh_token']) params['grant_type'] = 'authorization_code' elif refresh_token is not None: - params = self.__generate_params(locals(), ['scopes', 'to_file', 'username', 'password', 'code']) + params = self.__generate_params( + locals(), ['scopes', 'to_file', 'username', 'password', 'code']) params['grant_type'] = 'refresh_token' else: - raise MastodonIllegalArgumentError('Invalid arguments given. username and password or code are required.') + raise MastodonIllegalArgumentError( + 'Invalid arguments given. username and password or code are required.') params['client_id'] = self.client_id params['client_secret'] = self.client_secret params['scope'] = " ".join(scopes) try: - response = self.__api_request('POST', '/oauth/token', params, do_ratelimiting=False) + response = self.__api_request( + 'POST', '/oauth/token', params, do_ratelimiting=False) self.access_token = response['access_token'] self.__set_refresh_token(response.get('refresh_token')) self.__set_token_expired(int(response.get('expires_in', 0))) except Exception as e: if username is not None or password is not None: - raise MastodonIllegalArgumentError('Invalid user name, password, or redirect_uris: %s' % e) + raise MastodonIllegalArgumentError( + 'Invalid user name, password, or redirect_uris: %s' % e) elif code is not None: - raise MastodonIllegalArgumentError('Invalid access token or redirect_uris: %s' % e) + raise MastodonIllegalArgumentError( + 'Invalid access token or redirect_uris: %s' % e) else: raise MastodonIllegalArgumentError('Invalid request: %s' % e) @@ -576,7 +611,7 @@ class Mastodon: for scope_set in self.__SCOPE_SETS.keys(): if scope_set in received_scopes: received_scopes += self.__SCOPE_SETS[scope_set] - + if not set(scopes) <= set(received_scopes): raise MastodonAPIError( 'Granted scopes "' + " ".join(received_scopes) + '" do not contain all of the requested scopes "' + " ".join(scopes) + '".') @@ -585,11 +620,12 @@ class Mastodon: with open(to_file, 'w') as token_file: token_file.write(response['access_token'] + "\n") token_file.write(self.api_base_url + "\n") - + self.__logged_in_id = None - + return response['access_token'] - + + def revoke_access_token(self): """ Revoke the oauth token the user is currently authenticated with, effectively removing @@ -604,7 +640,7 @@ class Mastodon: params['client_secret'] = self.client_secret params['token'] = self.access_token self.__api_request('POST', '/oauth/revoke', params) - + # We are now logged out, clear token and logged in id self.access_token = None self.__logged_in_id = None @@ -613,26 +649,26 @@ class Mastodon: def create_account(self, username, password, email, agreement=False, reason=None, locale="en", scopes=__DEFAULT_SCOPES, to_file=None): """ Creates a new user account with the given username, password and email. "agreement" - must be set to true (after showing the user the instances user agreement and having - them agree to it), "locale" specifies the language for the confirmation e-mail as an + must be set to true (after showing the user the instance's user agreement and having + them agree to it), "locale" specifies the language for the confirmation email as an ISO 639-1 (two-letter) language code. `reason` can be used to specify why a user would like to join if approved-registrations mode is on. - + Does not require an access token, but does require a client grant. - + By default, this method is rate-limited by IP to 5 requests per 30 minutes. - + Returns an access token (just like log_in), which it can also persist to to_file, - and sets it internally so that the user is now logged in. Note that this token - can only be used after the user has confirmed their e-mail. + and sets it internally so that the user is now logged in. Note that this token + can only be used after the user has confirmed their email. """ params = self.__generate_params(locals(), ['to_file', 'scopes']) params['client_id'] = self.client_id params['client_secret'] = self.client_secret - + if agreement == False: del params['agreement'] - + # Step 1: Get a user-free token via oauth try: oauth_params = {} @@ -640,41 +676,43 @@ class Mastodon: oauth_params['client_id'] = self.client_id oauth_params['client_secret'] = self.client_secret oauth_params['grant_type'] = 'client_credentials' - - response = self.__api_request('POST', '/oauth/token', oauth_params, do_ratelimiting=False) + + response = self.__api_request( + 'POST', '/oauth/token', oauth_params, do_ratelimiting=False) temp_access_token = response['access_token'] except Exception as e: - raise MastodonIllegalArgumentError('Invalid request during oauth phase: %s' % e) - + raise MastodonIllegalArgumentError( + 'Invalid request during oauth phase: %s' % e) + # Step 2: Use that to create a user try: - response = self.__api_request('POST', '/api/v1/accounts', params, do_ratelimiting=False, - access_token_override = temp_access_token) + response = self.__api_request('POST', '/api/v1/accounts', params, do_ratelimiting=False, + access_token_override=temp_access_token) self.access_token = response['access_token'] self.__set_refresh_token(response.get('refresh_token')) self.__set_token_expired(int(response.get('expires_in', 0))) except Exception as e: raise MastodonIllegalArgumentError('Invalid request: %s' % e) - + # Step 3: Check scopes, persist, et cetera received_scopes = response["scope"].split(" ") for scope_set in self.__SCOPE_SETS.keys(): if scope_set in received_scopes: received_scopes += self.__SCOPE_SETS[scope_set] - + if not set(scopes) <= set(received_scopes): raise MastodonAPIError( 'Granted scopes "' + " ".join(received_scopes) + '" do not contain all of the requested scopes "' + " ".join(scopes) + '".') - + if to_file is not None: with open(to_file, 'w') as token_file: token_file.write(response['access_token'] + "\n") token_file.write(self.api_base_url + "\n") - + self.__logged_in_id = None - + return response['access_token'] - + ### # Reading data: Instances ### @@ -701,9 +739,9 @@ class Mastodon: """ Retrieve activity stats about the instance. May be disabled by the instance administrator - throws a MastodonNotFoundError in that case. - + Activity is returned for 12 weeks going back from the current week. - + Returns a list of `activity dicts`_. """ return self.__api_request('GET', '/api/v1/instance/activity') @@ -713,7 +751,7 @@ class Mastodon: """ Retrieve the instances that this instance knows about. May be disabled by the instance administrator - throws a MastodonNotFoundError in that case. - + Returns a list of URL strings. """ return self.__api_request('GET', '/api/v1/instance/peers') @@ -723,37 +761,39 @@ class Mastodon: """ Basic health check. Returns True if healthy, False if not. """ - status = self.__api_request('GET', '/health', parse=False).decode("utf-8") + status = self.__api_request( + 'GET', '/health', parse=False).decode("utf-8") return status in ["OK", "success"] - + @api_version("3.0.0", "3.0.0", "3.0.0") - def instance_nodeinfo(self, schema = "http://nodeinfo.diaspora.software/ns/schema/2.0"): + def instance_nodeinfo(self, schema="http://nodeinfo.diaspora.software/ns/schema/2.0"): """ - Retrieves the instances nodeinfo information. - + Retrieves the instance's nodeinfo information. + For information on what the nodeinfo can contain, see the nodeinfo specification: https://github.com/jhass/nodeinfo . By default, Mastodon.py will try to retrieve the version 2.0 schema nodeinfo. - + To override the schema, specify the desired schema with the `schema` parameter. """ links = self.__api_request('GET', '/.well-known/nodeinfo')["links"] - + schema_url = None for available_schema in links: if available_schema.rel == schema: schema_url = available_schema.href - + if schema_url is None: - raise MastodonIllegalArgumentError("Requested nodeinfo schema is not available.") - + raise MastodonIllegalArgumentError( + "Requested nodeinfo schema is not available.") + try: return self.__api_request('GET', schema_url, base_url_override="") except MastodonNotFoundError: parse = urlparse(schema_url) return self.__api_request('GET', parse.path + parse.params + parse.query + parse.fragment) - + ### # Reading data: Timelines ## @@ -762,30 +802,30 @@ class Mastodon: """ Fetch statuses, most recent ones first. `timeline` can be 'home', 'local', 'public', 'tag/hashtag' or 'list/id'. See the following functions documentation for what those do. - + The default timeline is the "home" timeline. Specify `only_media` to only get posts with attached media. Specify `local` to only get local statuses, and `remote` to only get remote statuses. Some options are mutually incompatible as dictated by logic. - + May or may not require authentication depending on server settings and what is specifically requested. Returns a list of `toot dicts`_. """ if max_id != None: max_id = self.__unpack_id(max_id, dateconv=True) - + if min_id != None: min_id = self.__unpack_id(min_id, dateconv=True) - + if since_id != None: since_id = self.__unpack_id(since_id, dateconv=True) - + params_initial = locals() if local == False: del params_initial['local'] - + if remote == False: del params_initial['remote'] @@ -799,11 +839,11 @@ class Mastodon: params = self.__generate_params(params_initial, ['timeline']) url = '/api/v1/timelines/{0}'.format(timeline) return self.__api_request('GET', url, params) - + @api_version("1.0.0", "3.1.4", __DICT_VERSION_STATUS) def timeline_home(self, max_id=None, min_id=None, since_id=None, limit=None, only_media=False, local=False, remote=False): """ - Convenience method: Fetches the logged-in users home timeline (i.e. followed users and self). Params as in `timeline()`. + Convenience method: Fetches the logged-in user's home timeline (i.e. followed users and self). Params as in `timeline()`. Returns a list of `toot dicts`_. """ @@ -826,17 +866,18 @@ class Mastodon: Returns a list of `toot dicts`_. """ return self.timeline('public', max_id=max_id, min_id=min_id, since_id=since_id, limit=limit, only_media=only_media, local=local, remote=remote) - - @api_version("1.0.0", "3.1.4", __DICT_VERSION_STATUS) + + @api_version("1.0.0", "3.1.4", __DICT_VERSION_STATUS) def timeline_hashtag(self, hashtag, local=False, max_id=None, min_id=None, since_id=None, limit=None, only_media=False, remote=False): """ Convenience method: Fetch a timeline of toots with a given hashtag. The hashtag parameter should not contain the leading #. Params as in `timeline()`. - + Returns a list of `toot dicts`_. """ if hashtag.startswith("#"): - raise MastodonIllegalArgumentError("Hashtag parameter should omit leading #") + raise MastodonIllegalArgumentError( + "Hashtag parameter should omit leading #") return self.timeline('tag/{0}'.format(hashtag), max_id=max_id, min_id=min_id, since_id=since_id, limit=limit, only_media=only_media, local=local, remote=remote) @api_version("2.1.0", "3.1.4", __DICT_VERSION_STATUS) @@ -852,22 +893,22 @@ class Mastodon: @api_version("2.6.0", "2.6.0", __DICT_VERSION_CONVERSATION) def conversations(self, max_id=None, min_id=None, since_id=None, limit=None): """ - Fetches a users conversations. - + Fetches a user's conversations. + Returns a list of `conversation dicts`_. """ if max_id != None: max_id = self.__unpack_id(max_id, dateconv=True) - + if min_id != None: min_id = self.__unpack_id(min_id, dateconv=True) - + if since_id != None: - since_id = self.__unpack_id(since_id, dateconv=True) - + since_id = self.__unpack_id(since_id, dateconv=True) + params = self.__generate_params(locals()) return self.__api_request('GET', "/api/v1/conversations/", params) - + ### # Reading data: Statuses ### @@ -894,7 +935,7 @@ class Mastodon: This function is deprecated as of 3.0.0 and the endpoint does not exist anymore - you should just use the "card" field of the status dicts - instead. Mastodon.py will try to mimick the old behaviour, but this + instead. Mastodon.py will try to mimic the old behaviour, but this is somewhat inefficient and not guaranteed to be the case forever. Returns a `card dict`_. @@ -956,7 +997,7 @@ class Mastodon: Returns a list of `scheduled toot dicts`_. """ return self.__api_request('GET', '/api/v1/scheduled_statuses') - + @api_version("2.7.0", "2.7.0", __DICT_VERSION_SCHEDULED_STATUS) def scheduled_status(self, id): """ @@ -967,7 +1008,7 @@ class Mastodon: id = self.__unpack_id(id) url = '/api/v1/scheduled_statuses/{0}'.format(str(id)) return self.__api_request('GET', url) - + ### # Reading data: Polls ### @@ -981,7 +1022,7 @@ class Mastodon: id = self.__unpack_id(id) url = '/api/v1/polls/{0}'.format(str(id)) return self.__api_request('GET', url) - + ### # Reading data: Notifications ### @@ -994,7 +1035,7 @@ class Mastodon: Parameter `exclude_types` is an array of the following `follow`, `favourite`, `reblog`, `mention`, `poll`, `follow_request`. Specifying `mentions_only` is a deprecated way to set `exclude_types` to all but mentions. - + Can be passed an `id` to fetch a single notification. Returns a list of `notification dicts`_. @@ -1002,23 +1043,25 @@ class Mastodon: if not mentions_only is None: if not exclude_types is None: if mentions_only: - exclude_types = ["follow", "favourite", "reblog", "poll", "follow_request"] + exclude_types = ["follow", "favourite", + "reblog", "poll", "follow_request"] else: - raise MastodonIllegalArgumentError('Cannot specify exclude_types when mentions_only is present') + raise MastodonIllegalArgumentError( + 'Cannot specify exclude_types when mentions_only is present') del mentions_only - + if max_id != None: max_id = self.__unpack_id(max_id, dateconv=True) - + if min_id != None: min_id = self.__unpack_id(min_id, dateconv=True) - + if since_id != None: since_id = self.__unpack_id(since_id, dateconv=True) - + if account_id != None: account_id = self.__unpack_id(account_id) - + if id is None: params = self.__generate_params(locals(), ['id']) return self.__api_request('GET', '/api/v1/notifications', params) @@ -1034,15 +1077,15 @@ class Mastodon: def account(self, id): """ Fetch account information by user `id`. - + Does not require authentication for publicly visible accounts. - + Returns a `user dict`_. """ id = self.__unpack_id(id) url = '/api/v1/accounts/{0}'.format(str(id)) return self.__api_request('GET', url) - + @api_version("1.0.0", "2.1.0", __DICT_VERSION_ACCOUNT) def account_verify_credentials(self): """ @@ -1055,12 +1098,12 @@ class Mastodon: @api_version("1.0.0", "2.1.0", __DICT_VERSION_ACCOUNT) def me(self): """ - Get this users account. Symonym for `account_verify_credentials()`, does exactly + Get this user's account. Synonym for `account_verify_credentials()`, does exactly the same thing, just exists becase `account_verify_credentials()` has a confusing name. """ return self.account_verify_credentials() - + @api_version("1.0.0", "2.8.0", __DICT_VERSION_STATUS) def account_statuses(self, id, only_media=False, pinned=False, exclude_replies=False, exclude_reblogs=False, tagged=None, max_id=None, min_id=None, since_id=None, limit=None): """ @@ -1070,7 +1113,7 @@ class Mastodon: included. If `only_media` is set, return only statuses with media attachments. - If `pinned` is set, return only statuses that have been pinned. Note that + If `pinned` is set, return only statuses that have been pinned. Note that as of Mastodon 2.1.0, this only works properly for instance-local users. If `exclude_replies` is set, filter out all statuses that are replies. If `exclude_reblogs` is set, filter out all statuses that are reblogs. @@ -1084,13 +1127,13 @@ class Mastodon: id = self.__unpack_id(id) if max_id != None: max_id = self.__unpack_id(max_id, dateconv=True) - + if min_id != None: min_id = self.__unpack_id(min_id, dateconv=True) - + if since_id != None: since_id = self.__unpack_id(since_id, dateconv=True) - + params = self.__generate_params(locals(), ['id']) if pinned == False: del params["pinned"] @@ -1114,13 +1157,13 @@ class Mastodon: id = self.__unpack_id(id) if max_id != None: max_id = self.__unpack_id(max_id, dateconv=True) - + if min_id != None: min_id = self.__unpack_id(min_id, dateconv=True) - + if since_id != None: since_id = self.__unpack_id(since_id, dateconv=True) - + params = self.__generate_params(locals(), ['id']) url = '/api/v1/accounts/{0}/following'.format(str(id)) return self.__api_request('GET', url, params) @@ -1135,21 +1178,21 @@ class Mastodon: id = self.__unpack_id(id) if max_id != None: max_id = self.__unpack_id(max_id, dateconv=True) - + if min_id != None: min_id = self.__unpack_id(min_id, dateconv=True) - + if since_id != None: since_id = self.__unpack_id(since_id, dateconv=True) - + params = self.__generate_params(locals(), ['id']) url = '/api/v1/accounts/{0}/followers'.format(str(id)) return self.__api_request('GET', url, params) - + @api_version("1.0.0", "1.4.0", __DICT_VERSION_RELATIONSHIP) def account_relationships(self, id): """ - Fetch relationship (following, followed_by, blocking, follow requested) of + Fetch relationship (following, followed_by, blocking, follow requested) of the logged in user to a given account. `id` can be a list. Returns a list of `relationship dicts`_. @@ -1169,92 +1212,92 @@ class Mastodon: Returns a list of `user dicts`_. """ params = self.__generate_params(locals()) - + if params["following"] == False: del params["following"] - + return self.__api_request('GET', '/api/v1/accounts/search', params) @api_version("2.1.0", "2.1.0", __DICT_VERSION_LIST) def account_lists(self, id): """ - Get all of the logged-in users lists which the specified user is + Get all of the logged-in user's lists which the specified user is a member of. - + Returns a list of `list dicts`_. """ id = self.__unpack_id(id) params = self.__generate_params(locals(), ['id']) url = '/api/v1/accounts/{0}/lists'.format(str(id)) return self.__api_request('GET', url, params) - + ### # Reading data: Featured hashtags ### @api_version("3.0.0", "3.0.0", __DICT_VERSION_FEATURED_TAG) def featured_tags(self): """ - Return the hashtags the logged-in user has set to be featured on + Return the hashtags the logged-in user has set to be featured on their profile as a list of `featured tag dicts`_. - + Returns a list of `featured tag dicts`_. """ return self.__api_request('GET', '/api/v1/featured_tags') - + @api_version("3.0.0", "3.0.0", __DICT_VERSION_HASHTAG) def featured_tag_suggestions(self): """ - Returns the logged-in users 10 most commonly hashtags. - + Returns the logged-in user's 10 most commonly-used hashtags. + Returns a list of `hashtag dicts`_. """ return self.__api_request('GET', '/api/v1/featured_tags/suggestions') - + ### # Reading data: Keyword filters ### @api_version("2.4.3", "2.4.3", __DICT_VERSION_FILTER) def filters(self): """ - Fetch all of the logged-in users filters. - + Fetch all of the logged-in user's filters. + Returns a list of `filter dicts`_. Not paginated. """ return self.__api_request('GET', '/api/v1/filters') - + @api_version("2.4.3", "2.4.3", __DICT_VERSION_FILTER) def filter(self, id): """ Fetches information about the filter with the specified `id`. - + Returns a `filter dict`_. """ id = self.__unpack_id(id) url = '/api/v1/filters/{0}'.format(str(id)) return self.__api_request('GET', url) - + @api_version("2.4.3", "2.4.3", __DICT_VERSION_FILTER) def filters_apply(self, objects, filters, context): """ - Helper function: Applies a list of filters to a list of either statuses + Helper function: Applies a list of filters to a list of either statuses or notifications and returns only those matched by none. This function will apply all filters that match the context provided in `context`, i.e. if you want to apply only notification-relevant filters, specify 'notifications'. Valid contexts are 'home', 'notifications', 'public' and 'thread'. """ - + # Build filter regex filter_strings = [] - for keyword_filter in filters: + for keyword_filter in filters: if not context in keyword_filter["context"]: continue - + filter_string = re.escape(keyword_filter["phrase"]) if keyword_filter["whole_word"] == True: filter_string = "\\b" + filter_string + "\\b" filter_strings.append(filter_string) - filter_re = re.compile("|".join(filter_strings), flags = re.IGNORECASE) - + filter_re = re.compile("|".join(filter_strings), flags=re.IGNORECASE) + # Apply filter_results = [] for filter_object in objects: @@ -1267,7 +1310,7 @@ class Mastodon: if not filter_re.search(filter_text): filter_results.append(filter_object) return filter_results - + ### # Reading data: Follow suggestions ### @@ -1277,10 +1320,10 @@ class Mastodon: Fetch follow suggestions for the logged-in user. Returns a list of `user dicts`_. - + """ return self.__api_request('GET', '/api/v1/suggestions') - + ### # Reading data: Follow suggestions ### @@ -1290,27 +1333,27 @@ class Mastodon: Fetch the contents of the profile directory, if enabled on the server. Returns a list of `user dicts`_. - + """ return self.__api_request('GET', '/api/v1/directory') - + ### # Reading data: Endorsements ### @api_version("2.5.0", "2.5.0", __DICT_VERSION_ACCOUNT) def endorsements(self): """ - Fetch list of users endorsemed by the logged-in user. + Fetch list of users endorsed by the logged-in user. Returns a list of `user dicts`_. - + """ return self.__api_request('GET', '/api/v1/endorsements') - - + ### # Reading data: Searching ### + def __ensure_search_params_acceptable(self, account_id, offset, min_id, max_id): """ Internal Helper: Throw a MastodonVersionError if version is < 2.8.0 but parameters @@ -1318,8 +1361,9 @@ class Mastodon: """ if not account_id is None or not offset is None or not min_id is None or not max_id is None: if self.verify_minimum_version("2.8.0", cached=True) == False: - raise MastodonVersionError("Advanced search parameters require Mastodon 2.8.0+") - + raise MastodonVersionError( + "Advanced search parameters require Mastodon 2.8.0+") + @api_version("1.1.0", "2.8.0", __DICT_VERSION_SEARCHRESULT) def search(self, q, resolve=True, result_type=None, account_id=None, offset=None, min_id=None, max_id=None, exclude_unreviewed=True): """ @@ -1327,32 +1371,33 @@ class Mastodon: lookups if resolve is True. Full-text search is only enabled if the instance supports it, and is restricted to statuses the logged-in user wrote or was mentioned in. - + `result_type` can be one of "accounts", "hashtags" or "statuses", to only search for that type of object. - + Specify `account_id` to only get results from the account with that id. - + `offset`, `min_id` and `max_id` can be used to paginate. `exclude_unreviewed` can be used to restrict search results for hashtags to only those that have been reviewed by moderators. It is on by default. - - Will use search_v1 (no tag dicts in return values) on Mastodon versions before + + Will use search_v1 (no tag dicts in return values) on Mastodon versions before 2.4.1), search_v2 otherwise. Parameters other than resolve are only available on Mastodon 2.8.0 or above - this function will throw a MastodonVersionError if you try to use them on versions before that. Note that the cached version - number will be used for this to avoid uneccesary requests. + number will be used for this to avoid uneccesary requests. Returns a `search result dict`_, with tags as `hashtag dicts`_. """ if self.verify_minimum_version("2.4.1", cached=True) == True: return self.search_v2(q, resolve=resolve, result_type=result_type, account_id=account_id, - offset=offset, min_id=min_id, max_id=max_id) + offset=offset, min_id=min_id, max_id=max_id) else: - self.__ensure_search_params_acceptable(account_id, offset, min_id, max_id) + self.__ensure_search_params_acceptable( + account_id, offset, min_id, max_id) return self.search_v1(q, resolve=resolve) - + @api_version("1.1.0", "2.1.0", "2.1.0") def search_v1(self, q, resolve=False): """ @@ -1371,43 +1416,44 @@ class Mastodon: """ Identical to `search_v1()`, except in that it returns tags as `hashtag dicts`_, has more parameters, and resolves by default. - + For more details documentation, please see `search()` Returns a `search result dict`_. """ - self.__ensure_search_params_acceptable(account_id, offset, min_id, max_id) + self.__ensure_search_params_acceptable( + account_id, offset, min_id, max_id) params = self.__generate_params(locals()) - + if resolve == False: del params["resolve"] - + if exclude_unreviewed == False or not self.verify_minimum_version("3.0.0", cached=True): del params["exclude_unreviewed"] - + if "result_type" in params: params["type"] = params["result_type"] del params["result_type"] - + return self.__api_request('GET', '/api/v2/search', params) ### # Reading data: Trends ### @api_version("2.4.3", "3.0.0", __DICT_VERSION_HASHTAG) - def trends(self, limit = None): + def trends(self, limit=None): """ Fetch trending-hashtag information, if the instance provides such information. - + Specify `limit` to limit how many results are returned (the maximum number of results is 10, the endpoint is not paginated). - + Does not require authentication unless locked down by the administrator. - + Important versioning note: This endpoint does not exist for Mastodon versions between 2.8.0 (inclusive) and 3.0.0 (exclusive). - - Returns a list of `hashtag dicts`_, sorted by the instances trending algorithm, + + Returns a list of `hashtag dicts`_, sorted by the instance's trending algorithm, descending. """ params = self.__generate_params(locals()) @@ -1420,7 +1466,7 @@ class Mastodon: def lists(self): """ Fetch a list of all the Lists by the logged-in user. - + Returns a list of `list dicts`_. """ return self.__api_request('GET', '/api/v1/lists') @@ -1429,37 +1475,37 @@ class Mastodon: def list(self, id): """ Fetch info about a specific list. - + Returns a `list dict`_. """ - id = self.__unpack_id(id) + id = self.__unpack_id(id) return self.__api_request('GET', '/api/v1/lists/{0}'.format(id)) @api_version("2.1.0", "2.6.0", __DICT_VERSION_ACCOUNT) def list_accounts(self, id, max_id=None, min_id=None, since_id=None, limit=None): """ Get the accounts that are on the given list. - + Returns a list of `user dicts`_. """ id = self.__unpack_id(id) - + if max_id != None: max_id = self.__unpack_id(max_id, dateconv=True) - + if min_id != None: min_id = self.__unpack_id(min_id, dateconv=True) - + if since_id != None: since_id = self.__unpack_id(since_id, dateconv=True) - - params = self.__generate_params(locals(), ['id']) + + params = self.__generate_params(locals(), ['id']) return self.__api_request('GET', '/api/v1/lists/{0}/accounts'.format(id)) ### # Reading data: Mutes and Blocks ### - @api_version("1.1.0", "2.6.0", __DICT_VERSION_ACCOUNT) + @api_version("1.1.0", "2.6.0", __DICT_VERSION_ACCOUNT) def mutes(self, max_id=None, min_id=None, since_id=None, limit=None): """ Fetch a list of users muted by the logged-in user. @@ -1468,13 +1514,13 @@ class Mastodon: """ if max_id != None: max_id = self.__unpack_id(max_id, dateconv=True) - + if min_id != None: - min_id = self.__unpack_id(min_id, dateconv=True) - + min_id = self.__unpack_id(min_id, dateconv=True) + if since_id != None: since_id = self.__unpack_id(since_id, dateconv=True) - + params = self.__generate_params(locals()) return self.__api_request('GET', '/api/v1/mutes', params) @@ -1487,13 +1533,13 @@ class Mastodon: """ if max_id != None: max_id = self.__unpack_id(max_id, dateconv=True) - + if min_id != None: min_id = self.__unpack_id(min_id, dateconv=True) - + if since_id != None: since_id = self.__unpack_id(since_id, dateconv=True) - + params = self.__generate_params(locals()) return self.__api_request('GET', '/api/v1/blocks', params) @@ -1506,9 +1552,9 @@ class Mastodon: Fetch a list of reports made by the logged-in user. Returns a list of `report dicts`_. - - Warning: This method has now finally been removed, and will not - work on mastodon versions 2.5.0 and above. + + Warning: This method has now finally been removed, and will not + work on Mastodon versions 2.5.0 and above. """ return self.__api_request('GET', '/api/v1/reports') @@ -1524,13 +1570,13 @@ class Mastodon: """ if max_id != None: max_id = self.__unpack_id(max_id, dateconv=True) - + if min_id != None: - min_id = self.__unpack_id(min_id, dateconv=True) - + min_id = self.__unpack_id(min_id, dateconv=True) + if since_id != None: since_id = self.__unpack_id(since_id, dateconv=True) - + params = self.__generate_params(locals()) return self.__api_request('GET', '/api/v1/favourites', params) @@ -1546,13 +1592,13 @@ class Mastodon: """ if max_id != None: max_id = self.__unpack_id(max_id, dateconv=True) - + if min_id != None: - min_id = self.__unpack_id(min_id, dateconv=True) - + min_id = self.__unpack_id(min_id, dateconv=True) + if since_id != None: since_id = self.__unpack_id(since_id, dateconv=True) - + params = self.__generate_params(locals()) return self.__api_request('GET', '/api/v1/follow_requests', params) @@ -1568,13 +1614,13 @@ class Mastodon: """ if max_id != None: max_id = self.__unpack_id(max_id, dateconv=True) - + if min_id != None: - min_id = self.__unpack_id(min_id, dateconv=True) - + min_id = self.__unpack_id(min_id, dateconv=True) + if since_id != None: since_id = self.__unpack_id(since_id, dateconv=True) - + params = self.__generate_params(locals()) return self.__api_request('GET', '/api/v1/domain_blocks', params) @@ -1589,7 +1635,6 @@ class Mastodon: Does not require authentication unless locked down by the administrator. Returns a list of `emoji dicts`_. - """ return self.__api_request('GET', '/api/v1/custom_emojis') @@ -1602,7 +1647,6 @@ class Mastodon: Fetch information about the current application. Returns an `application dict`_. - """ return self.__api_request('GET', '/api/v1/apps/verify_credentials') @@ -1615,7 +1659,6 @@ class Mastodon: Fetch the current push subscription the logged-in user has for this app. Returns a `push subscription dict`_. - """ return self.__api_request('GET', '/api/v1/push/subscription') @@ -1625,28 +1668,27 @@ class Mastodon: @api_version("2.8.0", "2.8.0", __DICT_VERSION_PREFERENCES) def preferences(self): """ - Fetch the users preferences, which can be used to set some default options. + Fetch the user's preferences, which can be used to set some default options. As of 2.8.0, apps can only fetch, not update preferences. Returns a `preference dict`_. - """ return self.__api_request('GET', '/api/v1/preferences') ## # Reading data: Announcements ## - - #/api/v1/announcements + + # /api/v1/announcements @api_version("3.1.0", "3.1.0", __DICT_VERSION_ANNOUNCEMENT) def announcements(self): """ - Fetch currently active annoucements. - - Returns a list of `annoucement dicts`_. + Fetch currently active announcements. + + Returns a list of `announcement dicts`_. """ return self.__api_request('GET', '/api/v1/announcements') - + ## # Reading data: Read markers ## @@ -1655,15 +1697,15 @@ class Mastodon: """ Get the last-read-location markers for the specified timelines. Valid timelines are the same as in `timeline()`_ - + Note that despite the singular name, `timeline` can be a list. - + Returns a dict of `read marker dicts`_, keyed by timeline name. """ if not isinstance(timeline, (list, tuple)): timeline = [timeline] params = self.__generate_params(locals()) - + return self.__api_request('GET', '/api/v1/markers', params) ### @@ -1673,7 +1715,7 @@ class Mastodon: def bookmarks(self, max_id=None, min_id=None, since_id=None, limit=None): """ Get a list of statuses bookmarked by the logged-in user. - + Returns a list of `toot dicts`_. """ if max_id != None: @@ -1687,7 +1729,7 @@ class Mastodon: params = self.__generate_params(locals()) return self.__api_request('GET', '/api/v1/bookmarks', params) - + ### # Writing data: Statuses ### @@ -1699,10 +1741,10 @@ class Mastodon: """ Post a status. Can optionally be in reply to another status and contain media. - + `media_ids` should be a list. (If it's not, the function will turn it - into one.) It can contain up to four pieces of media (uploaded via - `media_post()`_). `media_ids` can also be the `media dicts`_ returned + into one.) It can contain up to four pieces of media (uploaded via + `media_post()`_). `media_ids` can also be the `media dicts`_ returned by `media_post()`_ - they are unpacked automatically. The `sensitive` boolean decides whether or not media attached to the post @@ -1738,44 +1780,48 @@ class Mastodon: Pass `poll` to attach a poll to the status. An appropriate object can be constructed using `make_poll()`_ . Note that as of Mastodon version - 2.8.2, you can only have either media or a poll attached, not both at + 2.8.2, you can only have either media or a poll attached, not both at the same time. - **Specific to `pleroma` feature set:**: Specify `content_type` to set - the content type of your post on Pleroma. It accepts 'text/plain' (default), - 'text/markdown', 'text/html' and 'text/bbcode. This parameter is not + **Specific to "pleroma" feature set:**: Specify `content_type` to set + the content type of your post on Pleroma. It accepts 'text/plain' (default), + 'text/markdown', 'text/html' and 'text/bbcode'. This parameter is not supported on Mastodon servers, but will be safely ignored if set. - **Specific to `fedibird` feature set:**: The `quote_id` parameter is + **Specific to "fedibird" feature set:**: The `quote_id` parameter is a non-standard extension that specifies the id of a quoted status. Returns a `toot dict`_ with the new status. """ if quote_id != None: if self.feature_set != "fedibird": - raise MastodonIllegalArgumentError('quote_id is only available with feature set fedibird') + raise MastodonIllegalArgumentError( + 'quote_id is only available with feature set fedibird') quote_id = self.__unpack_id(quote_id) - + if content_type != None: if self.feature_set != "pleroma": - raise MastodonIllegalArgumentError('content_type is only available with feature set pleroma') + raise MastodonIllegalArgumentError( + 'content_type is only available with feature set pleroma') # It would be better to read this from nodeinfo and cache, but this is easier if not content_type in ["text/plain", "text/html", "text/markdown", "text/bbcode"]: - raise MastodonIllegalArgumentError('Invalid content type specified') - + raise MastodonIllegalArgumentError( + 'Invalid content type specified') + if in_reply_to_id != None: in_reply_to_id = self.__unpack_id(in_reply_to_id) - + if scheduled_at != None: scheduled_at = self.__consistent_isoformat_utc(scheduled_at) - + params_initial = locals() - + # Validate poll/media exclusivity if not poll is None: if (not media_ids is None) and len(media_ids) != 0: - raise ValueError('Status can have media or poll attached - not both.') - + raise ValueError( + 'Status can have media or poll attached - not both.') + # Validate visibility parameter valid_visibilities = ['private', 'public', 'unlisted', 'direct'] if params_initial['visibility'] == None: @@ -1784,7 +1830,7 @@ class Mastodon: params_initial['visibility'] = params_initial['visibility'].lower() if params_initial['visibility'] not in valid_visibilities: raise ValueError('Invalid visibility value! Acceptable ' - 'values are %s' % valid_visibilities) + 'values are %s' % valid_visibilities) if params_initial['language'] == None: del params_initial['language'] @@ -1795,7 +1841,7 @@ class Mastodon: headers = {} if idempotency_key != None: headers['Idempotency-Key'] = idempotency_key - + if media_ids is not None: try: media_ids_proper = [] @@ -1817,7 +1863,7 @@ class Mastodon: use_json = True params = self.__generate_params(params_initial, ['idempotency_key']) - return self.__api_request('POST', '/api/v1/statuses', params, headers = headers, use_json = use_json) + return self.__api_request('POST', '/api/v1/statuses', params, headers=headers, use_json=use_json) @api_version("1.0.0", "2.8.0", __DICT_VERSION_STATUS) def toot(self, status): @@ -1832,14 +1878,14 @@ class Mastodon: @api_version("1.0.0", "2.8.0", __DICT_VERSION_STATUS) def status_reply(self, to_status, status, in_reply_to_id=None, media_ids=None, - sensitive=False, visibility=None, spoiler_text=None, - language=None, idempotency_key=None, content_type=None, - scheduled_at=None, poll=None, untag=False): + sensitive=False, visibility=None, spoiler_text=None, + language=None, idempotency_key=None, content_type=None, + scheduled_at=None, poll=None, untag=False): """ Helper function - acts like status_post, but prepends the name of all the users that are being replied to to the status text and retains CW and visibility if not explicitly overridden. - + Set `untag` to True if you want the reply to only go to the user you are replying to, removing every other mentioned user from the conversation. @@ -1848,52 +1894,53 @@ class Mastodon: del keyword_args["self"] del keyword_args["to_status"] del keyword_args["untag"] - + user_id = self.__get_logged_in_id() - + # Determine users to mention mentioned_accounts = collections.OrderedDict() mentioned_accounts[to_status.account.id] = to_status.account.acct - + if not untag: for account in to_status.mentions: if account.id != user_id and not account.id in mentioned_accounts.keys(): mentioned_accounts[account.id] = account.acct - + # Join into one piece of text. The space is added inside because of self-replies. - status = "".join(map(lambda x: "@" + x + " ", mentioned_accounts.values())) + status - + status = "".join(map(lambda x: "@" + x + " ", + mentioned_accounts.values())) + status + # Retain visibility / cw if visibility == None and 'visibility' in to_status: visibility = to_status.visibility if spoiler_text == None and 'spoiler_text' in to_status: spoiler_text = to_status.spoiler_text - + keyword_args["status"] = status keyword_args["visibility"] = visibility keyword_args["spoiler_text"] = spoiler_text keyword_args["in_reply_to_id"] = to_status.id return self.status_post(**keyword_args) - + @api_version("2.8.0", "2.8.0", __DICT_VERSION_POLL) def make_poll(self, options, expires_in, multiple=False, hide_totals=False): """ Generate a poll object that can be passed as the `poll` option when posting a status. - + options is an array of strings with the poll options (Maximum, by default: 4), expires_in is the time in seconds for which the poll should be open. Set multiple to True to allow people to choose more than one answer. Set hide_totals to True to hide the results of the poll until it has expired. - """ + """ poll_params = locals() del poll_params["self"] return poll_params - + @api_version("1.0.0", "1.0.0", "1.0.0") def status_delete(self, id): """ Delete a status - + Returns the now-deleted status, with an added "source" attribute that contains the text that was used to compose this status (this can be used to power "delete and redraft" functionality) @@ -1906,7 +1953,7 @@ class Mastodon: def status_reblog(self, id, visibility=None): """ Reblog / boost a status. - + The visibility parameter functions the same as in `status_post()`_ and allows you to reduce the visibility of a reblogged status. @@ -1918,8 +1965,8 @@ class Mastodon: params['visibility'] = params['visibility'].lower() if params['visibility'] not in valid_visibilities: raise ValueError('Invalid visibility value! Acceptable ' - 'values are %s' % valid_visibilities) - + 'values are %s' % valid_visibilities) + id = self.__unpack_id(id) url = '/api/v1/statuses/{0}/reblog'.format(str(id)) return self.__api_request('POST', url, params) @@ -1956,7 +2003,7 @@ class Mastodon: id = self.__unpack_id(id) url = '/api/v1/statuses/{0}/unfavourite'.format(str(id)) return self.__api_request('POST', url) - + @api_version("1.4.0", "2.0.0", __DICT_VERSION_STATUS) def status_mute(self, id): """ @@ -2000,8 +2047,7 @@ class Mastodon: id = self.__unpack_id(id) url = '/api/v1/statuses/{0}/unpin'.format(str(id)) return self.__api_request('POST', url) - - + @api_version("3.1.0", "3.1.0", __DICT_VERSION_STATUS) def status_bookmark(self, id): """ @@ -2031,9 +2077,9 @@ class Mastodon: def scheduled_status_update(self, id, scheduled_at): """ Update the scheduled time of a scheduled status. - + New time must be at least 5 minutes into the future. - + Returns a `scheduled toot dict`_ """ scheduled_at = self.__consistent_isoformat_utc(scheduled_at) @@ -2041,7 +2087,7 @@ class Mastodon: params = self.__generate_params(locals(), ['id']) url = '/api/v1/scheduled_statuses/{0}'.format(str(id)) return self.__api_request('PUT', url, params) - + @api_version("2.7.0", "2.7.0", "2.7.0") def scheduled_status_delete(self, id): """ @@ -2050,7 +2096,7 @@ class Mastodon: id = self.__unpack_id(id) url = '/api/v1/scheduled_statuses/{0}'.format(str(id)) self.__api_request('DELETE', url) - + ### # Writing data: Polls ### @@ -2058,45 +2104,44 @@ class Mastodon: def poll_vote(self, id, choices): """ Vote in the given poll. - - `choices` is the index of the choice you wish to register a vote for - (i.e. its index in the corresponding polls `options` field. In case + + `choices` is the index of the choice you wish to register a vote for + (i.e. its index in the corresponding polls `options` field. In case of a poll that allows selection of more than one option, a list of indices can be passed. - + You can only submit choices for any given poll once in case of single-option polls, or only once per option in case of multi-option polls. - + Returns the updated `poll dict`_ """ id = self.__unpack_id(id) if not isinstance(choices, list): choices = [choices] params = self.__generate_params(locals(), ['id']) - + url = '/api/v1/polls/{0}/votes'.format(id) self.__api_request('POST', url, params) - - + ### # Writing data: Notifications ### + @api_version("1.0.0", "1.0.0", "1.0.0") def notifications_clear(self): """ - Clear out a users notifications + Clear out a user's notifications """ self.__api_request('POST', '/api/v1/notifications/clear') - @api_version("1.3.0", "2.9.2", "2.9.2") def notifications_dismiss(self, id): """ Deletes a single notification """ id = self.__unpack_id(id) - + if self.verify_minimum_version("2.9.2"): url = '/api/v1/notifications/{0}/dismiss'.format(str(id)) self.__api_request('POST', url) @@ -2111,7 +2156,7 @@ class Mastodon: def conversations_read(self, id): """ Marks a single conversation as read. - + Returns the updated `conversation dict`_. """ id = self.__unpack_id(id) @@ -2133,10 +2178,10 @@ class Mastodon: """ id = self.__unpack_id(id) params = self.__generate_params(locals()) - + if params["reblogs"] == None: del params["reblogs"] - + url = '/api/v1/accounts/{0}/follow'.format(str(id)) return self.__api_request('POST', url, params) @@ -2213,8 +2258,8 @@ class Mastodon: @api_version("1.1.1", "3.1.0", __DICT_VERSION_ACCOUNT) def account_update_credentials(self, display_name=None, note=None, avatar=None, avatar_mime_type=None, - header=None, header_mime_type=None, - locked=None, bot=None, + header=None, header_mime_type=None, + locked=None, bot=None, discoverable=None, fields=None): """ Update the profile for the currently logged-in user. @@ -2223,51 +2268,53 @@ class Mastodon: `avatar` and 'header' are images. As with media uploads, it is possible to either pass image data and a mime type, or a filename of an image file, for either. - + `locked` specifies whether the user needs to manually approve follow requests. - + `bot` specifies whether the user should be set to a bot. - + `discoverable` specifies whether the user should appear in the user directory. - - `fields` can be a list of up to four name-value pairs (specified as tuples) to - appear as semi-structured information in the users profile. - + + `fields` can be a list of up to four name-value pairs (specified as tuples) to + appear as semi-structured information in the user's profile. + Returns the updated `user dict` of the logged-in user. """ params_initial = collections.OrderedDict(locals()) - + # Convert fields if fields != None: if len(fields) > 4: - raise MastodonIllegalArgumentError('A maximum of four fields are allowed.') - + raise MastodonIllegalArgumentError( + 'A maximum of four fields are allowed.') + fields_attributes = [] for idx, (field_name, field_value) in enumerate(fields): - params_initial['fields_attributes[' + str(idx) + '][name]'] = field_name - params_initial['fields_attributes[' + str(idx) + '][value]'] = field_value - + params_initial['fields_attributes[' + + str(idx) + '][name]'] = field_name + params_initial['fields_attributes[' + + str(idx) + '][value]'] = field_value + # Clean up params for param in ["avatar", "avatar_mime_type", "header", "header_mime_type", "fields"]: if param in params_initial: del params_initial[param] - + # Create file info files = {} if not avatar is None: files["avatar"] = self.__load_media_file(avatar, avatar_mime_type) if not header is None: files["header"] = self.__load_media_file(header, header_mime_type) - + params = self.__generate_params(params_initial) return self.__api_request('PATCH', '/api/v1/accounts/update_credentials', params, files=files) - @api_version("2.5.0", "2.5.0", __DICT_VERSION_RELATIONSHIP) def account_pin(self, id): """ Pin / endorse a user. - + Returns a `relationship dict`_ containing the updated relationship to the user. """ id = self.__unpack_id(id) @@ -2295,34 +2342,34 @@ class Mastodon: id = self.__unpack_id(id) params = self.__generate_params(locals(), ["id"]) return self.__api_request('POST', '/api/v1/accounts/{0}/note'.format(str(id)), params) - + @api_version("3.3.0", "3.3.0", __DICT_VERSION_HASHTAG) def account_featured_tags(self, id): """ - Get an accounts featured hashtags. + Get an account's featured hashtags. Returns a list of `hashtag dicts`_ (NOT `featured tag dicts`_). """ id = self.__unpack_id(id) return self.__api_request('GET', '/api/v1/accounts/{0}/featured_tags'.format(str(id))) - + ### # Writing data: Featured hashtags ### @api_version("3.0.0", "3.0.0", __DICT_VERSION_FEATURED_TAG) def featured_tag_create(self, name): """ - Creates a new featured hashtag displayed on the logged-in users profile. - + Creates a new featured hashtag displayed on the logged-in user's profile. + Returns a `featured tag dict`_ with the newly featured tag. """ params = self.__generate_params(locals()) return self.__api_request('POST', '/api/v1/featured_tags', params) - + @api_version("3.0.0", "3.0.0", __DICT_VERSION_FEATURED_TAG) def featured_tag_delete(self, id): """ - Deletes one of the logged-in users featured hashtags. + Deletes one of the logged-in user's featured hashtags. """ id = self.__unpack_id(id) url = '/api/v1/featured_tags/{0}'.format(str(id)) @@ -2332,44 +2379,44 @@ class Mastodon: # Writing data: Keyword filters ### @api_version("2.4.3", "2.4.3", __DICT_VERSION_FILTER) - def filter_create(self, phrase, context, irreversible = False, whole_word = True, expires_in = None): + def filter_create(self, phrase, context, irreversible=False, whole_word=True, expires_in=None): """ Creates a new keyword filter. `phrase` is the phrase that should be filtered out, `context` specifies from where to filter the keywords. Valid contexts are 'home', 'notifications', 'public' and 'thread'. - + Set `irreversible` to True if you want the filter to just delete statuses server side. This works only for the 'home' and 'notifications' contexts. - + Set `whole_word` to False if you want to allow filter matches to start or end within a word, not only at word boundaries. - + Set `expires_in` to specify for how many seconds the filter should be kept around. - - Returns the `filter dict`_ of the newly created filter. + + Returns the `filter dict`_ of the newly created filter. """ params = self.__generate_params(locals()) - + for context_val in context: if not context_val in ['home', 'notifications', 'public', 'thread']: raise MastodonIllegalArgumentError('Invalid filter context.') - + return self.__api_request('POST', '/api/v1/filters', params) - + @api_version("2.4.3", "2.4.3", __DICT_VERSION_FILTER) - def filter_update(self, id, phrase = None, context = None, irreversible = None, whole_word = None, expires_in = None): + def filter_update(self, id, phrase=None, context=None, irreversible=None, whole_word=None, expires_in=None): """ Updates the filter with the given `id`. Parameters are the same as in `filter_create()`. - - Returns the `filter dict`_ of the updated filter. + + Returns the `filter dict`_ of the updated filter. """ id = self.__unpack_id(id) params = self.__generate_params(locals(), ['id']) url = '/api/v1/filters/{0}'.format(str(id)) return self.__api_request('PUT', url, params) - + @api_version("2.4.3", "2.4.3", "2.4.3") def filter_delete(self, id): """ @@ -2378,7 +2425,7 @@ class Mastodon: id = self.__unpack_id(id) url = '/api/v1/filters/{0}'.format(str(id)) self.__api_request('DELETE', url) - + ### # Writing data: Follow suggestions ### @@ -2398,23 +2445,23 @@ class Mastodon: def list_create(self, title): """ Create a new list with the given `title`. - + Returns the `list dict`_ of the created list. """ params = self.__generate_params(locals()) return self.__api_request('POST', '/api/v1/lists', params) - + @api_version("2.1.0", "2.1.0", __DICT_VERSION_LIST) def list_update(self, id, title): """ Update info about a list, where "info" is really the lists `title`. - + Returns the `list dict`_ of the modified list. """ id = self.__unpack_id(id) params = self.__generate_params(locals(), ['id']) return self.__api_request('PUT', '/api/v1/lists/{0}'.format(id), params) - + @api_version("2.1.0", "2.1.0", "2.1.0") def list_delete(self, id): """ @@ -2422,61 +2469,63 @@ class Mastodon: """ id = self.__unpack_id(id) self.__api_request('DELETE', '/api/v1/lists/{0}'.format(id)) - + @api_version("2.1.0", "2.1.0", "2.1.0") def list_accounts_add(self, id, account_ids): """ Add the account(s) given in `account_ids` to the list. """ id = self.__unpack_id(id) - + if not isinstance(account_ids, list): account_ids = [account_ids] account_ids = list(map(lambda x: self.__unpack_id(x), account_ids)) - - params = self.__generate_params(locals(), ['id']) - self.__api_request('POST', '/api/v1/lists/{0}/accounts'.format(id), params) - + + params = self.__generate_params(locals(), ['id']) + self.__api_request( + 'POST', '/api/v1/lists/{0}/accounts'.format(id), params) + @api_version("2.1.0", "2.1.0", "2.1.0") def list_accounts_delete(self, id, account_ids): """ Remove the account(s) given in `account_ids` from the list. """ id = self.__unpack_id(id) - + if not isinstance(account_ids, list): account_ids = [account_ids] account_ids = list(map(lambda x: self.__unpack_id(x), account_ids)) - - params = self.__generate_params(locals(), ['id']) - self.__api_request('DELETE', '/api/v1/lists/{0}/accounts'.format(id), params) - + + params = self.__generate_params(locals(), ['id']) + self.__api_request( + 'DELETE', '/api/v1/lists/{0}/accounts'.format(id), params) + ### # Writing data: Reports ### @api_version("1.1.0", "2.5.0", __DICT_VERSION_REPORT) - def report(self, account_id, status_ids = None, comment = None, forward = False): + def report(self, account_id, status_ids=None, comment=None, forward=False): """ Report statuses to the instances administrators. Accepts a list of toot IDs associated with the report, and a comment. - + Set forward to True to forward a report of a remote user to that users instance as well as sending it to the instance local administrators. Returns a `report dict`_. """ account_id = self.__unpack_id(account_id) - + if not status_ids is None: if not isinstance(status_ids, list): status_ids = [status_ids] status_ids = list(map(lambda x: self.__unpack_id(x), status_ids)) - - params_initial = locals() + + params_initial = locals() if forward == False: del params_initial['forward'] - + params = self.__generate_params(params_initial) return self.__api_request('POST', '/api/v1/reports/', params) @@ -2487,7 +2536,7 @@ class Mastodon: def follow_request_authorize(self, id): """ Accept an incoming follow request. - + Returns the updated `relationship dict`_ for the requesting account. """ id = self.__unpack_id(id) @@ -2498,7 +2547,7 @@ class Mastodon: def follow_request_reject(self, id): """ Reject an incoming follow request. - + Returns the updated `relationship dict`_ for the requesting account. """ id = self.__unpack_id(id) @@ -2512,9 +2561,9 @@ class Mastodon: def media_post(self, media_file, mime_type=None, description=None, focus=None, file_name=None, thumbnail=None, thumbnail_mime_type=None, synchronous=False): """ Post an image, video or audio file. `media_file` can either be data or - a file name. If data is passed directly, the mime type has to be specified + a file name. If data is passed directly, the mime type has to be specified manually, otherwise, it is determined from the file name. `focus` should be a tuple - of floats between -1 and 1, giving the x and y coordinates of the images + of floats between -1 and 1, giving the x and y coordinates of the images focus point for cropping (with the origin being the images center). Throws a `MastodonIllegalArgumentError` if the mime type of the @@ -2537,22 +2586,27 @@ class Mastodon: "synchronous" to emulate the old behaviour. Not recommended, inefficient and deprecated, you know the deal. """ - files = {'file': self.__load_media_file(media_file, mime_type, file_name)} + files = {'file': self.__load_media_file( + media_file, mime_type, file_name)} if focus != None: - focus = str(focus[0]) + "," + str(focus[1]) + focus = str(focus[0]) + "," + str(focus[1]) if not thumbnail is None: if not self.verify_minimum_version("3.2.0"): - raise MastodonVersionError('Thumbnail requires version > 3.2.0') - files["thumbnail"] = self.__load_media_file(thumbnail, thumbnail_mime_type) + raise MastodonVersionError( + 'Thumbnail requires version > 3.2.0') + files["thumbnail"] = self.__load_media_file( + thumbnail, thumbnail_mime_type) # Disambiguate URL by version if self.verify_minimum_version("3.1.4"): - ret_dict = self.__api_request('POST', '/api/v2/media', files = files, params={'description': description, 'focus': focus}) + ret_dict = self.__api_request( + 'POST', '/api/v2/media', files=files, params={'description': description, 'focus': focus}) else: - ret_dict = self.__api_request('POST', '/api/v1/media', files = files, params={'description': description, 'focus': focus}) - + ret_dict = self.__api_request( + 'POST', '/api/v1/media', files=files, params={'description': description, 'focus': focus}) + # Wait for processing? if synchronous: if self.verify_minimum_version("3.1.4"): @@ -2561,36 +2615,40 @@ class Mastodon: ret_dict = self.media(ret_dict) time.sleep(1.0) except: - raise MastodonAPIError("Attachment could not be processed") + raise MastodonAPIError( + "Attachment could not be processed") else: # Old version always waits return ret_dict - + return ret_dict @api_version("2.3.0", "3.2.0", __DICT_VERSION_MEDIA) def media_update(self, id, description=None, focus=None, thumbnail=None, thumbnail_mime_type=None): """ - Update the metadata of the media file with the given `id`. `description` and + Update the metadata of the media file with the given `id`. `description` and `focus` and `thumbnail` are as in `media_post()`_ . - + Returns the updated `media dict`_. """ id = self.__unpack_id(id) if focus != None: focus = str(focus[0]) + "," + str(focus[1]) - - params = self.__generate_params(locals(), ['id', 'thumbnail', 'thumbnail_mime_type']) + + params = self.__generate_params( + locals(), ['id', 'thumbnail', 'thumbnail_mime_type']) if not thumbnail is None: if not self.verify_minimum_version("3.2.0"): - raise MastodonVersionError('Thumbnail requires version > 3.2.0') - files = {"thumbnail": self.__load_media_file(thumbnail, thumbnail_mime_type)} - return self.__api_request('PUT', '/api/v1/media/{0}'.format(str(id)), params, files = files) + raise MastodonVersionError( + 'Thumbnail requires version > 3.2.0') + files = {"thumbnail": self.__load_media_file( + thumbnail, thumbnail_mime_type)} + return self.__api_request('PUT', '/api/v1/media/{0}'.format(str(id)), params, files=files) else: return self.__api_request('PUT', '/api/v1/media/{0}'.format(str(id)), params) - + @api_version("3.1.4", "3.1.4", __DICT_VERSION_MEDIA) def media(self, id): """ @@ -2626,124 +2684,125 @@ class Mastodon: def markers_set(self, timelines, last_read_ids): """ Set the "last read" marker(s) for the given timeline(s) to the given id(s) - + Note that if you give an invalid timeline name, this will silently do nothing. - + Returns a dict with the updated `read marker dicts`_, keyed by timeline name. """ if not isinstance(timelines, (list, tuple)): timelines = [timelines] - + if not isinstance(last_read_ids, (list, tuple)): last_read_ids = [last_read_ids] - + if len(last_read_ids) != len(timelines): - raise MastodonIllegalArgumentError("Number of specified timelines and ids must be the same") - + raise MastodonIllegalArgumentError( + "Number of specified timelines and ids must be the same") + params = collections.OrderedDict() for timeline, last_read_id in zip(timelines, last_read_ids): params[timeline] = collections.OrderedDict() params[timeline]["last_read_id"] = self.__unpack_id(last_read_id) - + return self.__api_request('POST', '/api/v1/markers', params, use_json=True) ### # Writing data: Push subscriptions ### @api_version("2.4.0", "2.4.0", __DICT_VERSION_PUSH) - def push_subscription_set(self, endpoint, encrypt_params, follow_events=None, - favourite_events=None, reblog_events=None, + def push_subscription_set(self, endpoint, encrypt_params, follow_events=None, + favourite_events=None, reblog_events=None, mention_events=None, poll_events=None, follow_request_events=None): """ Sets up or modifies the push subscription the logged-in user has for this app. - + `endpoint` is the endpoint URL mastodon should call for pushes. Note that mastodon requires https for this URL. `encrypt_params` is a dict with key parameters that allow the server to encrypt data for you: A public key `pubkey` and a shared secret `auth`. - You can generate this as well as the corresponding private key using the + You can generate this as well as the corresponding private key using the `push_subscription_generate_keys()`_ function. - + The rest of the parameters controls what kind of events you wish to subscribe to. - + Returns a `push subscription dict`_. """ endpoint = Mastodon.__protocolize(endpoint) - + push_pubkey_b64 = base64.b64encode(encrypt_params['pubkey']) push_auth_b64 = base64.b64encode(encrypt_params['auth']) - + params = { 'subscription[endpoint]': endpoint, 'subscription[keys][p256dh]': push_pubkey_b64, 'subscription[keys][auth]': push_auth_b64 } - + if follow_events != None: params['data[alerts][follow]'] = follow_events - + if favourite_events != None: params['data[alerts][favourite]'] = favourite_events - + if reblog_events != None: params['data[alerts][reblog]'] = reblog_events - + if mention_events != None: params['data[alerts][mention]'] = mention_events - + if poll_events != None: params['data[alerts][poll]'] = poll_events - + if follow_request_events != None: params['data[alerts][follow_request]'] = follow_request_events - + # Canonicalize booleans params = self.__generate_params(params) - + return self.__api_request('POST', '/api/v1/push/subscription', params) - + @api_version("2.4.0", "2.4.0", __DICT_VERSION_PUSH) - def push_subscription_update(self, follow_events=None, - favourite_events=None, reblog_events=None, - mention_events=None, poll_events=None, - follow_request_events=None): + def push_subscription_update(self, follow_events=None, + favourite_events=None, reblog_events=None, + mention_events=None, poll_events=None, + follow_request_events=None): """ Modifies what kind of events the app wishes to subscribe to. - + Returns the updated `push subscription dict`_. """ params = {} - + if follow_events != None: params['data[alerts][follow]'] = follow_events - + if favourite_events != None: params['data[alerts][favourite]'] = favourite_events - + if reblog_events != None: params['data[alerts][reblog]'] = reblog_events - + if mention_events != None: params['data[alerts][mention]'] = mention_events - + if poll_events != None: params['data[alerts][poll]'] = poll_events - + if follow_request_events != None: params['data[alerts][follow_request]'] = follow_request_events - + # Canonicalize booleans - params = self.__generate_params(params) - + params = self.__generate_params(params) + return self.__api_request('PUT', '/api/v1/push/subscription', params) - + @api_version("2.4.0", "2.4.0", "2.4.0") def push_subscription_delete(self): """ Remove the current push subscription the logged-in user has for this app. """ self.__api_request('DELETE', '/api/v1/push/subscription') - + ### # Writing data: Annoucements ### @@ -2753,37 +2812,39 @@ class Mastodon: Set the given annoucement to read. """ id = self.__unpack_id(id) - + url = '/api/v1/announcements/{0}/dismiss'.format(str(id)) self.__api_request('POST', url) - + @api_version("3.1.0", "3.1.0", "3.1.0") def announcement_reaction_create(self, id, reaction): """ Add a reaction to an announcement. `reaction` can either be a unicode emoji or the name of one of the instances custom emoji. - + Will throw an API error if the reaction name is not one of the allowed things or when trying to add a reaction that the user has already added (adding a reaction that a different user added is legal and increments the count). """ id = self.__unpack_id(id) - - url = '/api/v1/announcements/{0}/reactions/{1}'.format(str(id), reaction) + + url = '/api/v1/announcements/{0}/reactions/{1}'.format( + str(id), reaction) self.__api_request('PUT', url) - + @api_version("3.1.0", "3.1.0", "3.1.0") def announcement_reaction_delete(self, id, reaction): """ Remove a reaction to an announcement. - + Will throw an API error if the reaction does not exist. - """ + """ id = self.__unpack_id(id) - - url = '/api/v1/announcements/{0}/reactions/{1}'.format(str(id), reaction) + + url = '/api/v1/announcements/{0}/reactions/{1}'.format( + str(id), reaction) self.__api_request('DELETE', url) - + ### # Moderation API ### @@ -2791,7 +2852,7 @@ class Mastodon: def admin_accounts(self, remote=False, by_domain=None, status='active', username=None, display_name=None, email=None, ip=None, staff_only=False, max_id=None, min_id=None, since_id=None, limit=None): """ Fetches a list of accounts that match given criteria. By default, local accounts are returned. - + * Set `remote` to True to get remote accounts, otherwise local accounts are returned (default: local accounts) * Set `by_domain` to a domain to get only accounts from that domain. * Set `status` to one of "active", "pending", "disabled", "silenced" or "suspended" to get only accounts with that moderation status (default: active) @@ -2800,64 +2861,66 @@ class Mastodon: * Set `email` to an email to get only accounts with that email (this only works on local accounts). * Set `ip` to an ip (as a string, standard v4/v6 notation) to get only accounts whose last active ip is that ip (this only works on local accounts). * Set `staff_only` to True to only get staff accounts (this only works on local accounts). - + Note that setting the boolean parameters to False does not mean "give me users to which this does not apply" but instead means "I do not care if users have this attribute". - + Returns a list of `admin account dicts`_. """ if max_id != None: max_id = self.__unpack_id(max_id, dateconv=True) - + if min_id != None: min_id = self.__unpack_id(min_id, dateconv=True) - + if since_id != None: since_id = self.__unpack_id(since_id, dateconv=True) - - params = self.__generate_params(locals(), ['remote', 'status', 'staff_only']) - + + params = self.__generate_params( + locals(), ['remote', 'status', 'staff_only']) + if remote == True: params["remote"] = True - - mod_statuses = ["active", "pending", "disabled", "silenced", "suspended"] + + mod_statuses = ["active", "pending", + "disabled", "silenced", "suspended"] if not status in mod_statuses: raise ValueError("Invalid moderation status requested.") - + if staff_only == True: params["staff"] = True - + for mod_status in mod_statuses: if status == mod_status: params[status] = True - + return self.__api_request('GET', '/api/v1/admin/accounts', params) - + @api_version("2.9.1", "2.9.1", __DICT_VERSION_ADMIN_ACCOUNT) def admin_account(self, id): """ Fetches a single `admin account dict`_ for the user with the given id. - + Returns that dict. """ - id = self.__unpack_id(id) + id = self.__unpack_id(id) return self.__api_request('GET', '/api/v1/admin/accounts/{0}'.format(id)) - + @api_version("2.9.1", "2.9.1", __DICT_VERSION_ADMIN_ACCOUNT) def admin_account_enable(self, id): """ Reenables login for a local account for which login has been disabled. - + Returns the updated `admin account dict`_. """ id = self.__unpack_id(id) return self.__api_request('POST', '/api/v1/admin/accounts/{0}/enable'.format(id)) - + @api_version("2.9.1", "2.9.1", __DICT_VERSION_ADMIN_ACCOUNT) def admin_account_approve(self, id): """ Approves a pending account. - + Returns the updated `admin account dict`_. """ id = self.__unpack_id(id) @@ -2867,37 +2930,37 @@ class Mastodon: def admin_account_reject(self, id): """ Rejects and deletes a pending account. - + Returns the updated `admin account dict`_ for the account that is now gone. """ id = self.__unpack_id(id) return self.__api_request('POST', '/api/v1/admin/accounts/{0}/reject'.format(id)) - + @api_version("2.9.1", "2.9.1", __DICT_VERSION_ADMIN_ACCOUNT) def admin_account_unsilence(self, id): """ Unsilences an account. - + Returns the updated `admin account dict`_. """ id = self.__unpack_id(id) return self.__api_request('POST', '/api/v1/admin/accounts/{0}/unsilence'.format(id)) - + @api_version("2.9.1", "2.9.1", __DICT_VERSION_ADMIN_ACCOUNT) def admin_account_unsuspend(self, id): """ Unsuspends an account. - + Returns the updated `admin account dict`_. """ id = self.__unpack_id(id) return self.__api_request('POST', '/api/v1/admin/accounts/{0}/unsuspend'.format(id)) - + @api_version("3.3.0", "3.3.0", __DICT_VERSION_ADMIN_ACCOUNT) def admin_account_delete(self, id): """ Delete a local user account. - + The deleted accounts `admin account dict`_. """ id = self.__unpack_id(id) @@ -2907,7 +2970,7 @@ class Mastodon: def admin_account_unsensitive(self, id): """ Unmark an account as force-sensitive. - + Returns the updated `admin account dict`_. """ id = self.__unpack_id(id) @@ -2917,209 +2980,221 @@ class Mastodon: def admin_account_moderate(self, id, action=None, report_id=None, warning_preset_id=None, text=None, send_email_notification=True): """ Perform a moderation action on an account. - + Valid actions are: * "disable" - for a local user, disable login. * "silence" - hide the users posts from all public timelines. - * "suspend" - irreversibly delete all the users posts, past and future. + * "suspend" - irreversibly delete all the user's posts, past and future. * "sensitive" - forcce an accounts media visibility to always be sensitive. + If no action is specified, the user is only issued a warning. - + Specify the id of a report as `report_id` to close the report with this moderation action as the resolution. Specify `warning_preset_id` to use a warning preset as the notification text to the user, or `text` to specify text directly. If both are specified, they are concatenated (preset first). Note that there is currently no API to retrieve or create warning presets. - - Set `send_email_notification` to False to not send the user an e-mail notification informing them of the moderation action. + + Set `send_email_notification` to False to not send the user an email notification informing them of the moderation action. """ if action is None: action = "none" - + if send_email_notification == False: send_email_notification = None - + id = self.__unpack_id(id) if not report_id is None: report_id = self.__unpack_id(report_id) - + params = self.__generate_params(locals(), ['id', 'action']) - + params["type"] = action - - self.__api_request('POST', '/api/v1/admin/accounts/{0}/action'.format(id), params) - + + self.__api_request( + 'POST', '/api/v1/admin/accounts/{0}/action'.format(id), params) + @api_version("2.9.1", "2.9.1", __DICT_VERSION_REPORT) def admin_reports(self, resolved=False, account_id=None, target_account_id=None, max_id=None, min_id=None, since_id=None, limit=None): """ - Fetches the list of reports. - + Fetches the list of reports. + Set `resolved` to True to search for resolved reports. `account_id` and `target_account_id` can be used to get reports filed by or about a specific user. - + Returns a list of `report dicts`_. """ if max_id != None: max_id = self.__unpack_id(max_id, dateconv=True) - + if min_id != None: min_id = self.__unpack_id(min_id, dateconv=True) - + if since_id != None: since_id = self.__unpack_id(since_id, dateconv=True) - + if not account_id is None: account_id = self.__unpack_id(account_id) - + if not target_account_id is None: target_account_id = self.__unpack_id(target_account_id) - + if resolved == False: resolved = None - + params = self.__generate_params(locals()) return self.__api_request('GET', '/api/v1/admin/reports', params) - - @api_version("2.9.1", "2.9.1", __DICT_VERSION_REPORT) + + @api_version("2.9.1", "2.9.1", __DICT_VERSION_REPORT) def admin_report(self, id): """ Fetches the report with the given id. - + Returns a `report dict`_. """ - id = self.__unpack_id(id) + id = self.__unpack_id(id) return self.__api_request('GET', '/api/v1/admin/reports/{0}'.format(id)) - + @api_version("2.9.1", "2.9.1", __DICT_VERSION_REPORT) def admin_report_assign(self, id): """ Assigns the given report to the logged-in user. - + Returns the updated `report dict`_. """ - id = self.__unpack_id(id) + id = self.__unpack_id(id) return self.__api_request('POST', '/api/v1/admin/reports/{0}/assign_to_self'.format(id)) - + @api_version("2.9.1", "2.9.1", __DICT_VERSION_REPORT) def admin_report_unassign(self, id): """ Unassigns the given report from the logged-in user. - + Returns the updated `report dict`_. """ - id = self.__unpack_id(id) + id = self.__unpack_id(id) return self.__api_request('POST', '/api/v1/admin/reports/{0}/unassign'.format(id)) - + @api_version("2.9.1", "2.9.1", __DICT_VERSION_REPORT) def admin_report_reopen(self, id): """ Reopens a closed report. - + Returns the updated `report dict`_. """ - id = self.__unpack_id(id) + id = self.__unpack_id(id) return self.__api_request('POST', '/api/v1/admin/reports/{0}/reopen'.format(id)) - + @api_version("2.9.1", "2.9.1", __DICT_VERSION_REPORT) def admin_report_resolve(self, id): """ Marks a report as resolved (without taking any action). - + Returns the updated `report dict`_. """ - id = self.__unpack_id(id) + id = self.__unpack_id(id) return self.__api_request('POST', '/api/v1/admin/reports/{0}/resolve'.format(id)) - + ### # Push subscription crypto utilities - ### + ### def push_subscription_generate_keys(self): """ Generates a private key, public key and shared secret for use in webpush subscriptions. - - Returns two dicts: One with the private key and shared secret and another with the + + Returns two dicts: One with the private key and shared secret and another with the public key and shared secret. """ if not IMPL_HAS_CRYPTO: - raise NotImplementedError('To use the crypto tools, please install the webpush feature dependencies.') - - push_key_pair = ec.generate_private_key(ec.SECP256R1(), default_backend()) + raise NotImplementedError( + 'To use the crypto tools, please install the webpush feature dependencies.') + + push_key_pair = ec.generate_private_key( + ec.SECP256R1(), default_backend()) push_key_priv = push_key_pair.private_numbers().private_value - + crypto_ver = cryptography.__version__ if len(crypto_ver) < 5: crypto_ver += ".0" if bigger_version(crypto_ver, "2.5.0") == crypto_ver: - push_key_pub = push_key_pair.public_key().public_bytes(serialization.Encoding.X962, serialization.PublicFormat.UncompressedPoint) + push_key_pub = push_key_pair.public_key().public_bytes( + serialization.Encoding.X962, serialization.PublicFormat.UncompressedPoint) else: - push_key_pub = push_key_pair.public_key().public_numbers().encode_point() + push_key_pub = push_key_pair.public_key().public_numbers().encode_point() push_shared_secret = os.urandom(16) - + priv_dict = { 'privkey': push_key_priv, 'auth': push_shared_secret } - + pub_dict = { 'pubkey': push_key_pub, 'auth': push_shared_secret } - + return priv_dict, pub_dict - + @api_version("2.4.0", "2.4.0", __DICT_VERSION_PUSH_NOTIF) def push_subscription_decrypt_push(self, data, decrypt_params, encryption_header, crypto_key_header): """ - Decrypts `data` received in a webpush request. Requires the private key dict - from `push_subscription_generate_keys()`_ (`decrypt_params`) as well as the + Decrypts `data` received in a webpush request. Requires the private key dict + from `push_subscription_generate_keys()`_ (`decrypt_params`) as well as the Encryption and server Crypto-Key headers from the received webpush - + Returns the decoded webpush as a `push notification dict`_. """ if (not IMPL_HAS_ECE) or (not IMPL_HAS_CRYPTO): - raise NotImplementedError('To use the crypto tools, please install the webpush feature dependencies.') - - salt = self.__decode_webpush_b64(encryption_header.split("salt=")[1].strip()) - dhparams = self.__decode_webpush_b64(crypto_key_header.split("dh=")[1].split(";")[0].strip()) - p256ecdsa = self.__decode_webpush_b64(crypto_key_header.split("p256ecdsa=")[1].strip()) - dec_key = ec.derive_private_key(decrypt_params['privkey'], ec.SECP256R1(), default_backend()) + raise NotImplementedError( + 'To use the crypto tools, please install the webpush feature dependencies.') + + salt = self.__decode_webpush_b64( + encryption_header.split("salt=")[1].strip()) + dhparams = self.__decode_webpush_b64( + crypto_key_header.split("dh=")[1].split(";")[0].strip()) + p256ecdsa = self.__decode_webpush_b64( + crypto_key_header.split("p256ecdsa=")[1].strip()) + dec_key = ec.derive_private_key( + decrypt_params['privkey'], ec.SECP256R1(), default_backend()) decrypted = http_ece.decrypt( data, - salt = salt, - key = p256ecdsa, - private_key = dec_key, - dh = dhparams, + salt=salt, + key=p256ecdsa, + private_key=dec_key, + dh=dhparams, auth_secret=decrypt_params['auth'], - keylabel = "P-256", - version = "aesgcm" + keylabel="P-256", + version="aesgcm" ) - - return json.loads(decrypted.decode('utf-8'), object_hook = Mastodon.__json_hooks) - + + return json.loads(decrypted.decode('utf-8'), object_hook=Mastodon.__json_hooks) + ### # Blurhash utilities - ### - def decode_blurhash(self, media_dict, out_size = (16, 16), size_per_component = True, return_linear = True): + ### + def decode_blurhash(self, media_dict, out_size=(16, 16), size_per_component=True, return_linear=True): """ Basic media-dict blurhash decoding. - + out_size is the desired result size in pixels, either absolute or per blurhash component (this is the default). - + By default, this function will return the image as linear RGB, ready for further - scaling operations. If you want to display the image directly, set return_linear + scaling operations. If you want to display the image directly, set return_linear to False. - + Returns the decoded blurhash image as a three-dimensional list: [height][width][3], with the last dimension being RGB colours. - + For further info and tips for advanced usage, refer to the documentation for the blurhash module: https://github.com/halcy/blurhash-python """ if not IMPL_HAS_BLURHASH: - raise NotImplementedError('To use the blurhash functions, please install the blurhash python module.') + raise NotImplementedError( + 'To use the blurhash functions, please install the blurhash Python module.') # Figure out what size to decode to - decode_components_x, decode_components_y = blurhash.components(media_dict["blurhash"]) + decode_components_x, decode_components_y = blurhash.components( + media_dict["blurhash"]) if size_per_component == False: decode_size_x = out_size[0] decode_size_y = out_size[1] @@ -3128,11 +3203,12 @@ class Mastodon: decode_size_y = decode_components_y * out_size[1] # Decode - decoded_image = blurhash.decode(media_dict["blurhash"], decode_size_x, decode_size_y, linear = return_linear) + decoded_image = blurhash.decode( + media_dict["blurhash"], decode_size_x, decode_size_y, linear=return_linear) # And that's pretty much it. return decoded_image - + ### # Pagination ### @@ -3206,7 +3282,7 @@ class Mastodon: ### # Streaming ### - @api_version("1.1.0", "1.4.2", __DICT_VERSION_STATUS) + @api_version("1.1.0", "1.4.2", __DICT_VERSION_STATUS) def stream_user(self, listener, run_async=False, timeout=__DEFAULT_STREAM_TIMEOUT, reconnect_async=False, reconnect_async_wait_sec=__DEFAULT_STREAM_RECONNECT_WAIT_SEC): """ Streams events that are relevant to the authorized user, i.e. home @@ -3233,11 +3309,12 @@ class Mastodon: """ Stream for all public statuses for the hashtag 'tag' seen by the connected instance. - + Set local to True to only get local statuses. """ if tag.startswith("#"): - raise MastodonIllegalArgumentError("Tag parameter should omit leading #") + raise MastodonIllegalArgumentError( + "Tag parameter should omit leading #") base = '/api/v1/streaming/hashtag' if local: base += '/local' @@ -3247,28 +3324,29 @@ class Mastodon: def stream_list(self, id, listener, run_async=False, timeout=__DEFAULT_STREAM_TIMEOUT, reconnect_async=False, reconnect_async_wait_sec=__DEFAULT_STREAM_RECONNECT_WAIT_SEC): """ Stream events for the current user, restricted to accounts on the given - list. + list. """ - id = self.__unpack_id(id) + id = self.__unpack_id(id) return self.__stream("/api/v1/streaming/list?list={}".format(id), listener, run_async=run_async, timeout=timeout, reconnect_async=reconnect_async, reconnect_async_wait_sec=reconnect_async_wait_sec) - + @api_version("2.6.0", "2.6.0", __DICT_VERSION_STATUS) def stream_direct(self, listener, run_async=False, timeout=__DEFAULT_STREAM_TIMEOUT, reconnect_async=False, reconnect_async_wait_sec=__DEFAULT_STREAM_RECONNECT_WAIT_SEC): """ Streams direct message events for the logged-in user, as conversation events. """ return self.__stream('/api/v1/streaming/direct', listener, run_async=run_async, timeout=timeout, reconnect_async=reconnect_async, reconnect_async_wait_sec=reconnect_async_wait_sec) - + @api_version("2.5.0", "2.5.0", "2.5.0") def stream_healthy(self): """ Returns without True if streaming API is okay, False or raises an error otherwise. """ - api_okay = self.__api_request('GET', '/api/v1/streaming/health', base_url_override = self.__get_streaming_base(), parse=False) + api_okay = self.__api_request( + 'GET', '/api/v1/streaming/health', base_url_override=self.__get_streaming_base(), parse=False) if api_okay == b'OK': return True return False - + ### # Internal helpers, dragons probably ### @@ -3285,18 +3363,18 @@ class Mastodon: else: date_time_utc = date_time.astimezone(pytz.utc) - epoch_utc = datetime.datetime.utcfromtimestamp(0).replace(tzinfo=pytz.utc) + epoch_utc = datetime.datetime.utcfromtimestamp( + 0).replace(tzinfo=pytz.utc) return (date_time_utc - epoch_utc).total_seconds() def __get_logged_in_id(self): """ - Fetch the logged in users ID, with caching. ID is reset on calls to log_in. + Fetch the logged in user's ID, with caching. ID is reset on calls to log_in. """ if self.__logged_in_id == None: self.__logged_in_id = self.account_verify_credentials().id return self.__logged_in_id - @staticmethod def __json_allow_dict_attrs(json_object): @@ -3313,13 +3391,15 @@ class Mastodon: """ Parse dates in certain known json fields, if possible. """ - known_date_fields = ["created_at", "week", "day", "expires_at", "scheduled_at", "updated_at", "last_status_at", "starts_at", "ends_at", "published_at", "edited_at"] + known_date_fields = ["created_at", "week", "day", "expires_at", "scheduled_at", + "updated_at", "last_status_at", "starts_at", "ends_at", "published_at", "edited_at"] for k, v in json_object.items(): if k in known_date_fields: if v != None: try: if isinstance(v, int): - json_object[k] = datetime.datetime.fromtimestamp(v, pytz.utc) + json_object[k] = datetime.datetime.fromtimestamp( + v, pytz.utc) else: json_object[k] = dateutil.parser.parse(v) except: @@ -3338,7 +3418,7 @@ class Mastodon: if json_object[key].lower() == 'false': json_object[key] = False return json_object - + @staticmethod def __json_strnum_to_bignum(json_object): """ @@ -3352,13 +3432,13 @@ class Mastodon: pass return json_object - + @staticmethod def __json_hooks(json_object): """ All the json hooks. Used in request parsing. """ - json_object = Mastodon.__json_strnum_to_bignum(json_object) + json_object = Mastodon.__json_strnum_to_bignum(json_object) json_object = Mastodon.__json_date_parse(json_object) json_object = Mastodon.__json_truefalse_parse(json_object) json_object = Mastodon.__json_allow_dict_attrs(json_object) @@ -3371,7 +3451,8 @@ class Mastodon: every time instead of randomly doing different things on some systems and also it represents that time as the equivalent UTC time. """ - isotime = datetime_val.astimezone(pytz.utc).strftime("%Y-%m-%dT%H:%M:%S%z") + isotime = datetime_val.astimezone( + pytz.utc).strftime("%Y-%m-%dT%H:%M:%S%z") if isotime[-2] != ":": isotime = isotime[:-2] + ":" + isotime[-2:] return isotime @@ -3382,7 +3463,7 @@ class Mastodon: """ response = None remaining_wait = 0 - + # "pace" mode ratelimiting: Assume constant rate of requests, sleep a little less long than it # would take to not hit the rate limit at that request rate. if do_ratelimiting and self.ratelimit_method == "pace": @@ -3394,7 +3475,8 @@ class Mastodon: time.sleep(to_next) else: time_waited = time.time() - self.ratelimit_lastcall - time_wait = float(self.ratelimit_reset - time.time()) / float(self.ratelimit_remaining) + time_wait = float(self.ratelimit_reset - + time.time()) / float(self.ratelimit_remaining) remaining_wait = time_wait - time_waited if remaining_wait > 0: @@ -3419,7 +3501,8 @@ class Mastodon: base_url = base_url_override if self.debug_requests: - print('Mastodon: Request to endpoint "' + base_url + endpoint + '" using method "' + method + '".') + print('Mastodon: Request to endpoint "' + base_url + + endpoint + '" using method "' + method + '".') print('Parameters: ' + str(params)) print('Headers: ' + str(headers)) print('Files: ' + str(files)) @@ -3440,61 +3523,74 @@ class Mastodon: kwargs['data'] = params else: kwargs['json'] = params - + # Block list with exactly three entries, matching on hashes of the instance API domain # For more information, have a look at the docs if hashlib.sha256(",".join(base_url.split("//")[-1].split("/")[0].split(".")[-2:]).encode("utf-8")).hexdigest() in \ [ - "f3b50af8594eaa91dc440357a92691ff65dbfc9555226e9545b8e083dc10d2e1", + "f3b50af8594eaa91dc440357a92691ff65dbfc9555226e9545b8e083dc10d2e1", "b96d2de9784efb5af0af56965b8616afe5469c06e7188ad0ccaee5c7cb8a56b6", "2dc0cbc89fad4873f665b78cc2f8b6b80fae4af9ac43c0d693edfda27275f517" - ]: + ]: raise Exception("Access denied.") - - response_object = self.session.request(method, base_url + endpoint, **kwargs) + + response_object = self.session.request( + method, base_url + endpoint, **kwargs) except Exception as e: - raise MastodonNetworkError("Could not complete request: %s" % e) + raise MastodonNetworkError( + "Could not complete request: %s" % e) if response_object is None: raise MastodonIllegalArgumentError("Illegal request.") # Parse rate limiting headers if 'X-RateLimit-Remaining' in response_object.headers and do_ratelimiting: - self.ratelimit_remaining = int(response_object.headers['X-RateLimit-Remaining']) - self.ratelimit_limit = int(response_object.headers['X-RateLimit-Limit']) - + self.ratelimit_remaining = int( + response_object.headers['X-RateLimit-Remaining']) + self.ratelimit_limit = int( + response_object.headers['X-RateLimit-Limit']) + # For gotosocial, we need an int representation, but for non-ints this would crash try: - ratelimit_intrep = str(int(response_object.headers['X-RateLimit-Reset'])) + ratelimit_intrep = str( + int(response_object.headers['X-RateLimit-Reset'])) except: ratelimit_intrep = None try: if not ratelimit_intrep is None and ratelimit_intrep == response_object.headers['X-RateLimit-Reset']: - self.ratelimit_reset = int(response_object.headers['X-RateLimit-Reset']) + self.ratelimit_reset = int( + response_object.headers['X-RateLimit-Reset']) else: - ratelimit_reset_datetime = dateutil.parser.parse(response_object.headers['X-RateLimit-Reset']) - self.ratelimit_reset = self.__datetime_to_epoch(ratelimit_reset_datetime) + ratelimit_reset_datetime = dateutil.parser.parse( + response_object.headers['X-RateLimit-Reset']) + self.ratelimit_reset = self.__datetime_to_epoch( + ratelimit_reset_datetime) # Adjust server time to local clock if 'Date' in response_object.headers: - server_time_datetime = dateutil.parser.parse(response_object.headers['Date']) - server_time = self.__datetime_to_epoch(server_time_datetime) + server_time_datetime = dateutil.parser.parse( + response_object.headers['Date']) + server_time = self.__datetime_to_epoch( + server_time_datetime) server_time_diff = time.time() - server_time self.ratelimit_reset += server_time_diff self.ratelimit_lastcall = time.time() except Exception as e: - raise MastodonRatelimitError("Rate limit time calculations failed: %s" % e) + raise MastodonRatelimitError( + "Rate limit time calculations failed: %s" % e) # Handle response if self.debug_requests: - print('Mastodon: Response received with code ' + str(response_object.status_code) + '.') + print('Mastodon: Response received with code ' + + str(response_object.status_code) + '.') print('response headers: ' + str(response_object.headers)) print('Response text content: ' + str(response_object.text)) if not response_object.ok: try: - response = response_object.json(object_hook=self.__json_hooks) + response = response_object.json( + object_hook=self.__json_hooks) if isinstance(response, dict) and 'error' in response: error_msg = response['error'] elif isinstance(response, str): @@ -3535,28 +3631,29 @@ class Mastodon: elif response_object.status_code == 504: ex_type = MastodonGatewayTimeoutError elif response_object.status_code >= 500 and \ - response_object.status_code <= 511: + response_object.status_code <= 511: ex_type = MastodonServerError else: ex_type = MastodonAPIError raise ex_type( - 'Mastodon API returned error', - response_object.status_code, - response_object.reason, - error_msg) + 'Mastodon API returned error', + response_object.status_code, + response_object.reason, + error_msg) if parse == True: try: - response = response_object.json(object_hook=self.__json_hooks) + response = response_object.json( + object_hook=self.__json_hooks) except: raise MastodonAPIError( "Could not parse response as JSON, response code was %s, " "bad json content was '%s'" % (response_object.status_code, - response_object.content)) + response_object.content)) else: response = response_object.content - + # Parse link headers if isinstance(response, list) and \ 'Link' in response_object.headers and \ @@ -3571,7 +3668,8 @@ class Mastodon: if url['rel'] == 'next': # Be paranoid and extract max_id specifically next_url = url['url'] - matchgroups = re.search(r"[?&]max_id=([^&]+)", next_url) + matchgroups = re.search( + r"[?&]max_id=([^&]+)", next_url) if matchgroups: next_params = copy.deepcopy(params) @@ -3596,9 +3694,10 @@ class Mastodon: if url['rel'] == 'prev': # Be paranoid and extract since_id or min_id specifically prev_url = url['url'] - + # Old and busted (pre-2.6.0): since_id pagination - matchgroups = re.search(r"[?&]since_id=([^&]+)", prev_url) + matchgroups = re.search( + r"[?&]since_id=([^&]+)", prev_url) if matchgroups: prev_params = copy.deepcopy(params) prev_params['_pagination_method'] = method @@ -3618,7 +3717,8 @@ class Mastodon: response[0]._pagination_prev = prev_params # New and fantastico (post-2.6.0): min_id pagination - matchgroups = re.search(r"[?&]min_id=([^&]+)", prev_url) + matchgroups = re.search( + r"[?&]min_id=([^&]+)", prev_url) if matchgroups: prev_params = copy.deepcopy(params) prev_params['_pagination_method'] = method @@ -3642,7 +3742,7 @@ class Mastodon: def __get_streaming_base(self): """ Internal streaming API helper. - + Returns the correct URL for the streaming API. """ instance = self.instance() @@ -3656,8 +3756,8 @@ class Mastodon: url = "http://" + parse.netloc else: raise MastodonAPIError( - "Could not parse streaming api location returned from server: {}.".format( - instance["urls"]["streaming_api"])) + "Could not parse streaming api location returned from server: {}.".format( + instance["urls"]["streaming_api"])) else: url = self.api_base_url return url @@ -3676,20 +3776,22 @@ class Mastodon: # The streaming server can't handle two slashes in a path, so remove trailing slashes if url[-1] == '/': url = url[:-1] - + # Connect function (called and then potentially passed to async handler) def connect_func(): - headers = {"Authorization": "Bearer " + self.access_token} if self.access_token else {} + headers = {"Authorization": "Bearer " + + self.access_token} if self.access_token else {} if self.user_agent: headers['User-Agent'] = self.user_agent - connection = self.session.get(url + endpoint, headers = headers, data = params, stream = True, - timeout=(self.request_timeout, timeout)) + connection = self.session.get(url + endpoint, headers=headers, data=params, stream=True, + timeout=(self.request_timeout, timeout)) if connection.status_code != 200: - raise MastodonNetworkError("Could not connect to streaming server: %s" % connection.reason) + raise MastodonNetworkError( + "Could not connect to streaming server: %s" % connection.reason) return connection connection = None - + # Async stream handler class __stream_handle(): def __init__(self, connection, connect_func, reconnect_async, reconnect_async_wait_sec): @@ -3700,7 +3802,7 @@ class Mastodon: self.reconnect_async = reconnect_async self.reconnect_async_wait_sec = reconnect_async_wait_sec self.reconnecting = False - + def close(self): self.closed = True if not self.connection is None: @@ -3717,15 +3819,16 @@ class Mastodon: def _sleep_attentive(self): if self._thread != threading.current_thread(): - raise RuntimeError ("Illegal call from outside the stream_handle thread") + raise RuntimeError( + "Illegal call from outside the stream_handle thread") time_remaining = self.reconnect_async_wait_sec - while time_remaining>0 and not self.closed: + while time_remaining > 0 and not self.closed: time.sleep(0.5) time_remaining -= 0.5 def _threadproc(self): self._thread = threading.current_thread() - + # Run until closed or until error if not autoreconnecting while self.running: if not self.connection is None: @@ -3771,14 +3874,15 @@ class Mastodon: return 0 if run_async: - handle = __stream_handle(connection, connect_func, reconnect_async, reconnect_async_wait_sec) + handle = __stream_handle( + connection, connect_func, reconnect_async, reconnect_async_wait_sec) t = threading.Thread(args=(), target=handle._threadproc) t.daemon = True t.start() return handle else: # Blocking, never returns (can only leave via exception) - connection = connect_func() + connection = connect_func() with closing(connection) as r: listener.handle_stream(r) @@ -3795,14 +3899,14 @@ class Mastodon: if 'self' in params: del params['self'] - + param_keys = list(params.keys()) for key in param_keys: if isinstance(params[key], bool) and params[key] == False: params[key] = '0' if isinstance(params[key], bool) and params[key] == True: params[key] = '1' - + for key in param_keys: if params[key] is None or key in exclude: del params[key] @@ -3812,23 +3916,23 @@ class Mastodon: if isinstance(params[key], list): params[key + "[]"] = params[key] del params[key] - + return params - + def __unpack_id(self, id, dateconv=False): """ Internal object-to-id converter - + Checks if id is a dict that contains id and returns the id inside, otherwise just returns the id straight. """ if isinstance(id, dict) and "id" in id: - id = id["id"] + id = id["id"] if dateconv and isinstance(id, datetime): id = (int(id) << 16) * 1000 return id - + def __decode_webpush_b64(self, data): """ Re-pads and decodes urlsafe base64. @@ -3837,7 +3941,7 @@ class Mastodon: if missing_padding != 0: data += '=' * (4 - missing_padding) return base64.urlsafe_b64decode(data) - + def __get_token_expired(self): """Internal helper for oauth code""" return self._token_expired < datetime.datetime.now() @@ -3865,17 +3969,20 @@ class Mastodon: mime_type = mimetypes.guess_type(media_file)[0] return mime_type - def __load_media_file(self, media_file, mime_type = None, file_name = None): + def __load_media_file(self, media_file, mime_type=None, file_name=None): if isinstance(media_file, str) and os.path.isfile(media_file): mime_type = self.__guess_type(media_file) media_file = open(media_file, 'rb') elif isinstance(media_file, str) and os.path.isfile(media_file): media_file = open(media_file, 'rb') if mime_type is None: - raise MastodonIllegalArgumentError('Could not determine mime type or data passed directly without mime type.') + raise MastodonIllegalArgumentError( + 'Could not determine mime type or data passed directly without mime type.') if file_name is None: random_suffix = uuid.uuid4().hex - file_name = "mastodonpyupload_" + str(time.time()) + "_" + str(random_suffix) + mimetypes.guess_extension(mime_type) + file_name = "mastodonpyupload_" + \ + str(time.time()) + "_" + str(random_suffix) + \ + mimetypes.guess_extension(mime_type) return (file_name, media_file, mime_type) @staticmethod @@ -3895,10 +4002,12 @@ class Mastodon: class MastodonError(Exception): """Base class for Mastodon.py exceptions""" + class MastodonVersionError(MastodonError): """Raised when a function is called that the version of Mastodon for which Mastodon.py was instantiated does not support""" + class MastodonIllegalArgumentError(ValueError, MastodonError): """Raised when an incorrect parameter is passed to a function""" pass @@ -3917,6 +4026,7 @@ class MastodonNetworkError(MastodonIOError): """Raised when network communication with the server fails""" pass + class MastodonReadTimeout(MastodonNetworkError): """Raised when a stream times out""" pass @@ -3926,32 +4036,39 @@ class MastodonAPIError(MastodonError): """Raised when the mastodon API generates a response that cannot be handled""" pass + class MastodonServerError(MastodonAPIError): """Raised if the Server is malconfigured and returns a 5xx error code""" pass + class MastodonInternalServerError(MastodonServerError): """Raised if the Server returns a 500 error""" pass + class MastodonBadGatewayError(MastodonServerError): """Raised if the Server returns a 502 error""" pass + class MastodonServiceUnavailableError(MastodonServerError): """Raised if the Server returns a 503 error""" pass + class MastodonGatewayTimeoutError(MastodonServerError): """Raised if the Server returns a 504 error""" pass + class MastodonNotFoundError(MastodonAPIError): - """Raised when the mastodon API returns a 404 Not Found error""" + """Raised when the Mastodon API returns a 404 Not Found error""" pass + class MastodonUnauthorizedError(MastodonAPIError): - """Raised when the mastodon API returns a 401 Unauthorized error + """Raised when the Mastodon API returns a 401 Unauthorized error This happens when an OAuth token is invalid or has been revoked, or when trying to access an endpoint that can't be used without @@ -3963,7 +4080,7 @@ class MastodonRatelimitError(MastodonError): """Raised when rate limiting is set to manual mode and the rate limit is exceeded""" pass + class MastodonMalformedEventError(MastodonError): """Raised when the server-sent event stream is malformed""" pass - diff --git a/mastodon/streaming.py b/mastodon/streaming.py index 65acba8..2080908 100644 --- a/mastodon/streaming.py +++ b/mastodon/streaming.py @@ -1,6 +1,6 @@ """ Handlers for the Streaming API: -https://github.com/tootsuite/mastodon/blob/master/docs/Using-the-API/Streaming-API.md +https://github.com/mastodon/documentation/blob/master/content/en/methods/timelines/streaming.md """ import json @@ -14,6 +14,7 @@ from mastodon import Mastodon from mastodon.Mastodon import MastodonMalformedEventError, MastodonNetworkError, MastodonReadTimeout from requests.exceptions import ChunkedEncodingError, ReadTimeout + class StreamListener(object): """Callbacks for the streaming API. Create a subclass, override the on_xxx methods for the kinds of events you're interested in, then pass an instance @@ -39,7 +40,7 @@ class StreamListener(object): """There was a connection error, read timeout or other error fatal to the streaming connection. The exception object about to be raised is passed to this function for reference. - + Note that the exception will be raised properly once you return from this function, so if you are using this handler to reconnect, either never return or start a thread and then catch and ignore the exception. @@ -55,7 +56,7 @@ class StreamListener(object): contains the resulting conversation dict.""" pass - def on_unknown_event(self, name, unknown_event = None): + def on_unknown_event(self, name, unknown_event=None): """An unknown mastodon API event has been received. The name contains the event-name and unknown_event contains the content of the unknown event. @@ -65,13 +66,12 @@ class StreamListener(object): self.on_abort(exception) raise exception - def handle_heartbeat(self): """The server has sent us a keep-alive message. This callback may be useful to carry out periodic housekeeping tasks, or just to confirm that the connection is still open.""" pass - + def handle_stream(self, response): """ Handles a stream of events from the Mastodon server. When each event @@ -87,7 +87,7 @@ class StreamListener(object): event = {} line_buffer = bytearray() try: - for chunk in response.iter_content(chunk_size = 1): + for chunk in response.iter_content(chunk_size=1): if chunk: for chunk_part in chunk: chunk_part = bytearray([chunk_part]) @@ -95,7 +95,8 @@ class StreamListener(object): try: line = line_buffer.decode('utf-8') except UnicodeDecodeError as err: - exception = MastodonMalformedEventError("Malformed UTF-8") + exception = MastodonMalformedEventError( + "Malformed UTF-8") self.on_abort(exception) six.raise_from( exception, @@ -117,7 +118,8 @@ class StreamListener(object): err ) except MastodonReadTimeout as err: - exception = MastodonReadTimeout("Timed out while reading from server."), + exception = MastodonReadTimeout( + "Timed out while reading from server."), self.on_abort(exception) six.raise_from( exception, @@ -141,7 +143,7 @@ class StreamListener(object): else: event[key] = value return event - + def _dispatch(self, event): try: name = event['event'] @@ -150,9 +152,11 @@ class StreamListener(object): for_stream = json.loads(event['stream']) except: for_stream = None - payload = json.loads(data, object_hook = Mastodon._Mastodon__json_hooks) + payload = json.loads( + data, object_hook=Mastodon._Mastodon__json_hooks) except KeyError as err: - exception = MastodonMalformedEventError('Missing field', err.args[0], event) + exception = MastodonMalformedEventError( + 'Missing field', err.args[0], event) self.on_abort(exception) six.raise_from( exception, @@ -170,7 +174,7 @@ class StreamListener(object): # New mastodon API also supports event names with dots, # specifically, status_update. handler_name = 'on_' + name.replace('.', '_') - + # A generic way to handle unknown events to make legacy code more stable for future changes handler = getattr(self, handler_name, self.on_unknown_event) try: @@ -191,6 +195,7 @@ class StreamListener(object): else: handler(name, payload) + class CallbackStreamListener(StreamListener): """ Simple callback stream handler class. @@ -198,7 +203,8 @@ class CallbackStreamListener(StreamListener): Define an unknown_event_handler for new Mastodon API events. If not, the listener will raise an error on new, not handled, events from the API. """ - def __init__(self, update_handler = None, local_update_handler = None, delete_handler = None, notification_handler = None, conversation_handler = None, unknown_event_handler = None, status_update_handler = None): + + def __init__(self, update_handler=None, local_update_handler=None, delete_handler=None, notification_handler=None, conversation_handler=None, unknown_event_handler=None, status_update_handler=None): super(CallbackStreamListener, self).__init__() self.update_handler = update_handler self.local_update_handler = local_update_handler @@ -211,29 +217,29 @@ class CallbackStreamListener(StreamListener): def on_update(self, status): if self.update_handler != None: self.update_handler(status) - + try: if self.local_update_handler != None and not "@" in status["account"]["acct"]: self.local_update_handler(status) except Exception as err: six.raise_from( - MastodonMalformedEventError('received bad update', status), - err + MastodonMalformedEventError('received bad update', status), + err ) - + def on_delete(self, deleted_id): if self.delete_handler != None: self.delete_handler(deleted_id) - + def on_notification(self, notification): if self.notification_handler != None: self.notification_handler(notification) - + def on_conversation(self, conversation): if self.conversation_handler != None: - self.conversation_handler(conversation) + self.conversation_handler(conversation) - def on_unknown_event(self, name, unknown_event = None): + def on_unknown_event(self, name, unknown_event=None): if self.unknown_event_handler != None: self.unknown_event_handler(name, unknown_event) else: @@ -243,4 +249,4 @@ class CallbackStreamListener(StreamListener): def on_status_update(self, status): if self.status_update_handler != None: - self.status_update_handler(status) \ No newline at end of file + self.status_update_handler(status)