aboutsummaryrefslogtreecommitdiff
path: root/modules/fediverse
Commit message (Expand)AuthorAgeFilesLines
* split utils.datetime out in to .parse and .formatGravatar jesopo2020-01-301-1/+1
* tolerate fedi servers that present Notes as application/ld+jsonGravatar jesopo2020-01-182-1/+3
* tolerate fediverse Notes without "cc"sGravatar jesopo2020-01-181-1/+3
* Fix empty display namesGravatar MineRobber___T2020-01-161-3/+1
* Fix empty names•••Specifically, botsin.space (for sure) returns a display name of `""`. Since that's not meaningful, I just added a check to replace the display name with the username if the display name is empty.Gravatar MineRobber___T2020-01-161-0/+2
* retooted account should use username, not display nameGravatar jesopo2019-12-121-2/+1
* use fediverse display names when availableGravatar jesopo2019-12-102-3/+6
* `note` should be jsonifiedGravatar jesopo2019-11-281-1/+1
* show username when a toot is CWedGravatar jesopo2019-11-272-11/+11
* default `first_item` to None or it doesn't exist when there's no tootsGravatar jesopo2019-11-261-1/+1
* remove `parser` from utils.http.Request, add Request.soup()Gravatar jesopo2019-11-261-3/+2
* add `cookies` and `.json()` to utils.http.Response objectsGravatar jesopo2019-11-252-19/+20
* `USERAGENT` no longer existsGravatar jesopo2019-11-251-1/+1
* give bitbot a unique User-Agent•••closes #206 Gravatar jesopo2019-11-201-2/+1
* move all datetime-related code from utils/__init__ to utils.datetimeGravatar jesopo2019-11-151-1/+1
* Show more fediverse errors to the end userGravatar jesopo2019-11-142-13/+28
* show when a fediverse Note is nothing but an attachmentGravatar jesopo2019-11-041-3/+26
* only .decompose() when it's an empty and unknown tagGravatar jesopo2019-11-041-3/+4
* better line normalisation for fediverse ActivitiesGravatar jesopo2019-11-041-17/+19
* 'element.contents' -> 'element.children' for consistencyGravatar jesopo2019-10-311-1/+1
* use lxml for parsing fedi Notes. html.parse is bad and unpredictableGravatar jesopo2019-10-311-1/+1
* fallback ActivityPub data encoding to utf8Gravatar jesopo2019-10-261-1/+1
* change !fedi "!" arg to still show CW but also show content of NoteGravatar jesopo2019-10-181-4/+7
* add "!" arg to !fedi, to denote "dont show content warning"Gravatar jesopo2019-10-181-8/+17
* support AP Notes with content outside of HTML tags (e.g. pleroma)Gravatar jesopo2019-10-151-9/+12
* show ,fedi latest-tweet also if it's a self-replyGravatar jesopo2019-10-152-2/+4
* show `first` toot if it's a boost, fix Note boost formattingGravatar jesopo2019-10-152-2/+4
* actually explicitly strip "unknown" html tags from fedi notesGravatar jesopo2019-10-141-5/+8
* format multi-line toots on a single line using things like double spaceGravatar jesopo2019-10-091-2/+24
* prefer `url` over `id` as it's usually a more user-friendly urlGravatar jesopo2019-10-081-1/+2
* combine find_setting() and find_setting_prefix() on user/channel/server/botGravatar jesopo2019-10-071-2/+2
* support !fedi with a URL to a NoteGravatar jesopo2019-10-042-22/+43
* non-CWed pleroma posts have content as "", not nullGravatar jesopo2019-09-251-1/+1
* pleroma outbox items don't have an inReplyTo when it's nullGravatar jesopo2019-09-251-1/+1
* only fist first_item onceGravatar jesopo2019-09-251-0/+1
* make fediverse module rely on REST API•••I didn't want to do this unless we had to but Mastodon is introducing requirming signed requests soon, so even if a user doesn't use bitbot as an instance, we'll still need to be able to serve Actor (and key) over the REST API Gravatar jesopo2019-09-251-0/+2
* only show non-replies with ,fediGravatar jesopo2019-09-251-2/+6
* serve pub key, not certGravatar jesopo2019-09-252-3/+14
* don't .strip() tls certGravatar jesopo2019-09-251-1/+1
* _ap_url already array-ifiesGravatar jesopo2019-09-251-1/+1
* add missing "import urllib.parse" to ap_utils.pyGravatar jesopo2019-09-231-0/+1
* bitbot is a Service (bot), not a PersonGravatar jesopo2019-09-201-1/+1
* make a better "random ID url" functionGravatar jesopo2019-09-201-5/+4
* make Accept ID (and Follow ID) our own domainGravatar jesopo2019-09-201-3/+7
* update _ap_*_url() functions to use path-argsGravatar jesopo2019-09-201-6/+6
* use path-arg variables for AP urls, not get paramsGravatar jesopo2019-09-201-2/+6
* fedi http headers should be PascalCaseGravatar jesopo2019-09-192-4/+4
* through error when fediverse server is configured but crypto is missingGravatar jesopo2019-09-182-5/+12
* `first` is now a Response object, not a dictGravatar jesopo2019-09-171-1/+1
* 'responsedata' -> 'response.data'Gravatar jesopo2019-09-171-1/+1