summary refs log tree commit diff
path: root/synapse/handlers/events.py (follow)
Commit message (Expand)AuthorAgeFilesLines
* Add type hints to more handlers (#8244)Erik Johnston2020-09-031-23/+26
* Add typing info to Notifier (#8058)Erik Johnston2020-08-111-4/+0
* Stop the master relaying USER_SYNC for other workers (#7318)Richard van der Hoff2020-04-221-8/+12
* Port SyncHandler to async/awaitErik Johnston2019-12-051-17/+13
* Port to use state storageErik Johnston2019-10-301-1/+5
* Remove double return statements (#5962)Andrew Morgan2019-09-031-1/+0
* Replace returnValue with return (#5736)Amber Brown2019-07-231-3/+3
* Move logging utilities out of the side drawer of util/ and into logging/ (#5606)Amber Brown2019-07-041-1/+1
* Run Black. (#5482)Amber Brown2019-06-201-23/+26
* Don't bundle events in /sync or /eventsErik Johnston2019-05-211-0/+3
* Allow client event serialization to be asyncErik Johnston2019-05-141-4/+4
* Fix grammar and document get_current_users_in_room (#4998)Andrew Morgan2019-04-031-1/+1
* Deny peeking into rooms that have been blockedErik Johnston2019-03-211-1/+6
* Check room visibility for /event/ requestsRichard van der Hoff2018-08-021-4/+21
* run isortAmber Brown2018-07-091-8/+7
* Stub out ServerNoticesSender on the workersRichard van der Hoff2018-05-221-0/+5
* Use state handler instead of get_users_in_room/get_joined_hostsErik Johnston2016-08-261-1/+2
* Move the presence handler out of the Handlers objectMark Haines2016-05-161-1/+1
* Remove dead code left over from presence changesMark Haines2016-03-171-70/+0
* Initial cutErik Johnston2016-02-171-8/+35
* Fix up logcontextsErik Johnston2016-02-081-2/+9
* Fix flake8 warnings for new flake8Daniel Wagner-Hall2016-02-021-1/+1
* Only fetch events for rooms and receiptsErik Johnston2016-01-211-3/+3
* Allow non-guests to peek on rooms using /eventsDaniel Wagner-Hall2016-01-201-1/+1
* Dont fire user_joined_room when guest hits /eventsErik Johnston2016-01-121-7/+0
* copyrightsMatthew Hodgson2016-01-071-1/+1
* Fix a race between started/stopped streamMark Haines2015-12-141-3/+8
* Wrap calls to distributor.fire in appropriately named functions so that stati...Mark Haines2015-12-011-5/+15
* Open up /events to anonymous users for room events onlyDaniel Wagner-Hall2015-11-051-2/+8
* Remove unused arguments and codeDaniel Wagner-Hall2015-11-021-12/+1
* Split the sections of EventStreamHandler.get_stream that handle presenceMark Haines2015-10-091-35/+52
* Don't make pushers handle presence/typing eventsErik Johnston2015-08-241-2/+8
* Don't get apservice interested rooms in RoomHandler.get_joined_rooms_for_usersErik Johnston2015-08-191-1/+9
* Change the way we do logging contexts so that they survive divergencesErik Johnston2015-05-081-5/+3
* Change room handlers get_rooms_for_user to get_joined_rooms_for_user. This us...Erik Johnston2015-03-091-1/+1
* Add some randomness to the user specified timeout on event streams to mitigat...Erik Johnston2015-03-061-0/+9
* Add stub functions and work out execution flow to implement AS event stream p...Kegan Dougal2015-02-251-3/+0
* Merge branch 'develop' into pushersDavid Baker2015-01-281-2/+6
|\
| * Pass the current time to serialize event, rather than passing anMark Haines2015-01-261-1/+4
| * Replace hs.parse_userid with UserID.from_stringMark Haines2015-01-231-1/+2
* | Oops, remove debuggingDavid Baker2015-01-271-1/+0
* | or of course we could just return the deferredDavid Baker2015-01-271-2/+1
* | Need a defer.inlineCallbacks here as we yield in it: otherwise nothing in the...David Baker2015-01-271-0/+1
* | Unbreak bad presence merge - don't add these blocks together with an and: the...David Baker2015-01-271-12/+14
* | Merge branch 'develop' into pushersDavid Baker2015-01-221-2/+0
|\|
| * Remove temporary debug logging that was accidentally committedMark Haines2015-01-161-2/+0
* | Don't make the pushers' event streams cause people to appear onlineDavid Baker2015-01-151-21/+22
|/
* Return the raw federation event rather than adding extra keys for federation ...Kegan Dougal2015-01-081-2/+2
* Add 'raw' query parameter to expose the event graph and signatures to savvy c...Kegan Dougal2015-01-081-2/+5
* Update copyright noticesMark Haines2015-01-061-1/+1
* Attempt to fix bug where we 500d an event stream due to trying to cancel a ti...Erik Johnston2014-11-261-3/+9
* Add a few missing yields, Move deferred lists inside PreserveLoggingContext b...Mark Haines2014-11-201-2/+4
* Preserve logging context in a few more places, drop the logging context after...Mark Haines2014-11-191-3/+5
* Correctly handle the 'age' key in events and pdusErik Johnston2014-09-151-6/+4
* fix the copyright holder from matrix.org to OpenMarket Ltd, as matrix.org has...Matthew Hodgson2014-09-031-1/+1
* Fixed GET /events/$id to be not broken.Kegan Dougal2014-09-031-1/+3
* Don't query the rooms members table so much by using the new notifier api tha...Erik Johnston2014-08-281-1/+1
* Up timeout to 10 minutesErik Johnston2014-08-281-1/+1
* Add more logging. Up the event stream timer to 10sErik Johnston2014-08-281-1/+2
* Add logging to try and figure out what is going on with the presence stuffErik Johnston2014-08-281-0/+3
* PEP8 tweaks.Erik Johnston2014-08-271-1/+0
* Merge branch 'develop' of github.com:matrix-org/synapse into stream_refactorErik Johnston2014-08-271-22/+77
|\
| * Added support for GET /events/$eventid with auth checks.Kegan Dougal2014-08-271-0/+26
* | Implement presence event source. Change the way the notifier indexes listenersErik Johnston2014-08-271-1/+6
* | Enable presence again. Fix up api to match old api.Erik Johnston2014-08-261-3/+10
* | WIP: Completely change how event streaming and pagination work. This reflects...Erik Johnston2014-08-261-105/+19
|/
* Start chagning the events stream to work with the new DB schemaErik Johnston2014-08-151-6/+2
* add in whitespace after copyright statements to improve legibilityMatthew Hodgson2014-08-131-0/+1
* Reference Matrix Home Servermatrix.org2014-08-121-0/+149