summary refs log tree commit diff
path: root/synapse/api/events (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Fix bugs in invite/join dances.Erik Johnston2014-11-251-0/+1
| | | | | We now do more implement more of the auth on the events so that we don't reject valid events.
* Fix pep8 codestyle warningsMark Haines2014-11-201-1/+1
|
* Use module loggers rather than the root logger. Exceptions caused by bad ↵Mark Haines2014-11-201-0/+2
| | | | clients shouldn't cause ERROR level logging. Fix sql logging to use 'repr' rather than 'str'
* replace user_id with senderMark Haines2014-11-191-1/+3
|
* SYN-144: Remove bad keys from pdu json objects, convert age_ts to ageMark Haines2014-11-181-1/+12
| | | | for all pdus sent.
* Merge PDUs and Events into one objectMark Haines2014-11-142-0/+8
|
* Fix typo in validatorErik Johnston2014-11-111-2/+8
|
* Add EventValidator moduleErik Johnston2014-11-111-0/+81
|
* Add an EventValidator. Fix bugs in auth ++ storageErik Johnston2014-11-101-61/+0
|
* PEP8Erik Johnston2014-11-101-0/+1
|
* Finish redaction algorithm.Erik Johnston2014-11-102-15/+28
|
* Add hash of current state to eventsErik Johnston2014-11-071-0/+1
|
* Fix joining over federationErik Johnston2014-11-071-1/+1
|
* Start implementing auth chainsErik Johnston2014-11-071-1/+1
|
* Amalgamate all power levels.Erik Johnston2014-11-064-41/+14
| | | | | Remove concept of reqired power levels, something similiar can be done using the new power level event.
* Don't send prev_state to clients anymoreErik Johnston2014-11-061-1/+1
|
* Implement new replace_state and changed prev_stateErik Johnston2014-11-061-0/+1
| | | | | `prev_state` is now a list of previous state ids, similiar to prev_events. `replace_state` now points to what we think was replaced.
* Fix bugs in generating event signatures and hashingErik Johnston2014-11-031-0/+1
|
* Rename PDU fields to match that of events.Erik Johnston2014-11-031-1/+1
|
* Add 'origin' key to eventsErik Johnston2014-11-031-0/+4
|
* Convert event ids to be of the form :example.comErik Johnston2014-10-301-1/+5
|
* Begin implementing all the PDU storage stuff in Events landErik Johnston2014-10-281-1/+3
|
* Merge branch 'event_signing' of github.com:matrix-org/synapse into ↵Erik Johnston2014-10-272-9/+16
|\ | | | | | | | | | | | | federation_authorization Conflicts: synapse/storage/__init__.py
| * Merge branch 'develop' into event_signingMark Haines2014-10-171-2/+2
| |\ | | | | | | | | | | | | Conflicts: synapse/federation/replication.py
| * | Include hashes of previous pdus when referencing themMark Haines2014-10-161-1/+1
| | |
| * | persist hashes and origin signatures for PDUsMark Haines2014-10-151-8/+15
| | |
* | | Merge branch 'develop' of github.com:matrix-org/synapse into ↵Erik Johnston2014-10-271-2/+2
|\ \ \ | | |/ | |/| | | | | | | | | | | | | | | | federation_authorization Conflicts: synapse/federation/transport.py synapse/handlers/message.py
| * | SPEC-7: Rename 'ts' to 'origin_server_ts'Mark Haines2014-10-171-2/+2
| |/
* / Finish implementing the new join dance.Erik Johnston2014-10-171-3/+11
|/
* Don't strip out null's in serialized events, as that is not need anymore and ↵Erik Johnston2014-09-251-1/+2
| | | | it's not in the spec (yet)
* Don't strip of False values from events when serializingErik Johnston2014-09-251-1/+1
|
* Rename deletions to redactionsErik Johnston2014-09-244-9/+9
|
* Fill out the prune_event method.Erik Johnston2014-09-241-6/+31
|
* Rename 'pruned' to 'pruned_because'Erik Johnston2014-09-231-1/+1
|
* Add prune_event methodErik Johnston2014-09-231-0/+39
|
* Add m.room.deletion. If an event is deleted it will be returned to clients ↵Erik Johnston2014-09-233-3/+16
| | | | 'pruned', i.e. all client specified keys will be removed.
* Merge branch 'develop' into test-sqlite-memoryPaul "LeoNerd" Evans2014-09-171-4/+2
|\
| * Fix bug where we didn't always get 'prev_content' keyErik Johnston2014-09-151-4/+1
| |
| * Fix bug where we incorrectly calculated 'age_ts' from 'age' key rather than ↵Erik Johnston2014-09-151-0/+1
| | | | | | | | the reverse. Don't transmit age_ts to clients for now.
* | Print expected-vs-actual data types on typecheck failure from check_json()Paul "LeoNerd" Evans2014-09-171-1/+2
|/
* Correctly handle the 'age' key in events and pdusErik Johnston2014-09-152-0/+21
|
* Fix generation of event ids so that they are consistent between local and ↵Erik Johnston2014-09-061-1/+4
| | | | remote ids
* When getting a state event also include the previous contentErik Johnston2014-09-061-1/+6
|
* Generate m.room.aliases event when the HS creates a room aliasErik Johnston2014-09-051-0/+7
|
* fix the copyright holder from matrix.org to OpenMarket Ltd, as matrix.org ↵Matthew Hodgson2014-09-033-3/+3
| | | | hasn't been incorporated in time for launch.
* Updated feedback api docs and fixed feedback content template bugKegan Dougal2014-09-031-2/+1
|
* Add all the necessary checks to make banning work.Erik Johnston2014-09-011-0/+2
|
* Add beginnings of ban support.Erik Johnston2014-09-012-1/+9
|
* Implement power level lists, default power levels and ↵Erik Johnston2014-09-012-5/+13
| | | | send_evnet_level/add_state_level events.
* Create the correct events with the right configuration when creating a new room.Erik Johnston2014-08-283-2/+43
|
* Feedback: Removed FeedbackRestServlet. Modified keys on FeedbackEvent. ↵Kegan Dougal2014-08-261-7/+9
| | | | Expanded the feedback constants to fully explain what type of feedback they are.
* Merge branch 'develop' of github.com:matrix-org/synapse into ↵Kegan Dougal2014-08-261-1/+1
|\ | | | | | | client_server_url_rename
| * Add 'state_key' to valid_keysErik Johnston2014-08-261-0/+1
| |
| * Send down state_key to clientsErik Johnston2014-08-261-1/+0
| |
* | Merge branch 'develop' of github.com:matrix-org/synapse into ↵Kegan Dougal2014-08-262-1/+7
|\| | | | | | | client_server_url_rename
| * Add ts field to all events.Erik Johnston2014-08-211-1/+6
| |
| * Stop internal keys from getting into SynapseEventsErik Johnston2014-08-211-0/+1
| |
* | Removed member list servlet: now using generic state paths.Kegan Dougal2014-08-261-4/+6
|/
* Ensure we have a 'membership' key in RoomMemberEventsErik Johnston2014-08-181-0/+2
|
* PEP8 cleanupsErik Johnston2014-08-151-0/+1
|
* Support generic events.Erik Johnston2014-08-152-5/+8
|
* Reimplement the get public rooms api to work with new DB schemaErik Johnston2014-08-152-1/+25
|
* add in whitespace after copyright statements to improve legibilityMatthew Hodgson2014-08-133-0/+3
|
* Reference Matrix Home Servermatrix.org2014-08-123-0/+301