summary refs log tree commit diff
path: root/synapse/storage (follow)
Commit message (Expand)AuthorAgeFilesLines
* Add regex cache. Only caculate push actions for users that have sent read rec...Erik Johnston2016-01-191-1/+13
* Return highlight_count in /syncErik Johnston2016-01-191-2/+3
* Remove dead codeErik Johnston2016-01-181-22/+1
* Make unit tests workErik Johnston2016-01-181-1/+1
* Make notifications go quickerErik Johnston2016-01-182-4/+45
* Allow filtering events for multiple users at onceErik Johnston2016-01-181-0/+13
* Require ID and as_token be unique for ASsDaniel Wagner-Hall2016-01-141-1/+25
* Merge pull request #494 from matrix-org/daniel/2Daniel Wagner-Hall2016-01-141-0/+1
|\
| * Don't start server if ASes are invalidly configuredDaniel Wagner-Hall2016-01-131-0/+1
* | Merge pull request #493 from matrix-org/daniel/1Daniel Wagner-Hall2016-01-141-59/+0
|\ \
| * | Delete unused codeDaniel Wagner-Hall2016-01-131-59/+0
| |/
* / Rename 'user_name' to 'user_id' in push to make it consistent with the rest o...Mark Haines2016-01-132-38/+38
|/
* Merge remote-tracking branch 'origin/erikj/bulk_get_push_rules' into markjh/t...Mark Haines2016-01-131-18/+8
|\
| * bulk_get_push_rules should handle empty listsErik Johnston2016-01-131-21/+13
* | Delete the table objects from TransactionStoreMark Haines2016-01-131-58/+10
* | Remove the RoomsTable objectMark Haines2016-01-131-13/+3
* | Remove the PushersTable and EventPushActionsTable objectsMark Haines2016-01-122-14/+6
* | Remove the PushRuleTable and PushRuleEnableTable objectsMark Haines2016-01-121-50/+33
|/
* Postgres doesn't like booleansDavid Baker2016-01-111-2/+2
* Remove rogue 'admin'David Baker2016-01-111-1/+1
* Merge pull request #456 from matrix-org/store_event_actionsDavid Baker2016-01-086-11/+230
|\
| * This comma is actually importantDavid Baker2016-01-071-1/+1
| * Merge remote-tracking branch 'origin/develop' into store_event_actionsDavid Baker2016-01-061-1/+10
| |\
| * | Adding is_guest here won't work because it just constructs a dict of uid -> p...David Baker2016-01-061-1/+1
| * | Delete notifications for redacted eventsDavid Baker2016-01-061-0/+12
| * | Add schema change file for is_guest flagDavid Baker2016-01-061-0/+22
| * | Add is_guest flag to users db to track whether a user is a guest user or not....David Baker2016-01-063-13/+31
| * | Merge remote-tracking branch 'origin/develop' into store_event_actionsDavid Baker2016-01-053-9/+39
| |\ \
| * | | = not == in sqlDavid Baker2016-01-041-1/+1
| * | | Rename event-actions to event_push_actions as per PR requestDavid Baker2016-01-043-14/+14
| * | | Address minor PR issuesDavid Baker2016-01-043-16/+4
| * | | Insert push actions in a single db query rather than one per user/profile_tagDavid Baker2015-12-221-13/+18
| * | | Add bulk push rule evaluator which actually still evaluates rules one by one,...David Baker2015-12-221-0/+41
| * | | Merge remote-tracking branch 'origin/develop' into store_event_actionsDavid Baker2015-12-213-14/+81
| |\ \ \
| * | | | pep8David Baker2015-12-211-6/+6
| * | | | Make unread notification count sending work: put the correct count in increme...David Baker2015-12-181-9/+12
| * | | | still very WIP, but now sends unread_notifications_count in the room object o...David Baker2015-12-162-4/+54
| * | | | Save event actions to the dbDavid Baker2015-12-103-0/+68
| * | | | Very first cut of calculating actions for events as they come in. Doesn't sto...David Baker2015-12-101-0/+12
* | | | | copyrightsMatthew Hodgson2016-01-0785-85/+85
| |_|_|/ |/| | |
* | | | Log when we skip daily messagesDaniel Wagner-Hall2016-01-061-1/+10
| |_|/ |/| |
* | | Allow guests to upgrade their accountsDaniel Wagner-Hall2016-01-053-9/+39
| |/ |/|
* | Fix 500 error when back-paginating search resultsRichard van der Hoff2015-12-171-2/+4
* | Merge branch 'release-v0.12.0' into developMark Haines2015-12-161-1/+1
|\ \
| * | Allow users to change which account a 3pid is bound toMark Haines2015-12-151-1/+1
* | | Merge branch 'release-v0.12.0' into developMark Haines2015-12-141-0/+5
|\| |
| * | Skip events that where the body, name or topic isn't a string when back popul...Mark Haines2015-12-141-0/+5
* | | Fix typoDaniel Wagner-Hall2015-12-141-1/+1
* | | Fix typo in sql for full text search on sqlite3Mark Haines2015-12-141-1/+1
* | | Merge branch 'release-v0.12.0' into developMark Haines2015-12-121-4/+7
|\| |
| * | Add caches for whether a room has been forgotten by a userMark Haines2015-12-101-4/+7
| |/
* | Include approximate count of search resultsErik Johnston2015-12-111-2/+54
* | Use more efficient query formErik Johnston2015-12-111-8/+13
|/
* Track the time spent in the database per request.Mark Haines2015-12-072-3/+8
* Bump schema version.Mark Haines2015-12-045-24/+37
* Merge pull request #414 from matrix-org/erikj/if_not_existsErik Johnston2015-12-031-1/+1
|\
| * Older versions of SQLite don't like IF NOT EXISTS in virtual tablesErik Johnston2015-12-021-1/+1
* | Just replace the table definition with the one from full_schema 16David Baker2015-12-021-11/+10
* | Fix schema delta 15 on postgres in the very unlikley event that anyone upgrad...David Baker2015-12-021-1/+1
* | Merge pull request #412 from matrix-org/erikj/searchErik Johnston2015-12-021-11/+36
|\ \ | |/ |/|
| * Throw if unrecognized DB typeErik Johnston2015-12-021-1/+4
| * Fix so highlight matching works againErik Johnston2015-12-021-8/+13
| * Remove deuplication. Add comment about regex.Erik Johnston2015-12-021-21/+11
| * Search: Add prefix matching supportErik Johnston2015-12-021-5/+32
* | Add API for setting account_data globaly or on a per room basisMark Haines2015-12-014-2/+238
|/
* Allow paginating search ordered by recentsErik Johnston2015-11-303-16/+159
* Return words to highlight in search resultsErik Johnston2015-11-271-19/+104
* Fix SQL for postgres againDaniel Wagner-Hall2015-11-231-1/+1
* Fix SQL for postgresDaniel Wagner-Hall2015-11-231-1/+1
* Remove size specifier for database columnDaniel Wagner-Hall2015-11-231-1/+3
* Merge branch 'daniel/forgetrooms' of github.com:matrix-org/synapse into danie...Daniel Wagner-Hall2015-11-192-9/+26
|\
| * Merge branch 'develop' into daniel/forgetroomsPaul "LeoNerd" Evans2015-11-192-9/+26
| |\
| | * Rename the database tableMark Haines2015-11-181-0/+17
| | * s/private_user_data/account_data/Mark Haines2015-11-182-10/+10
* | | Ignore forgotten rooms in v2 syncDaniel Wagner-Hall2015-11-191-1/+1
|/ /
* | Simplify codeDaniel Wagner-Hall2015-11-191-7/+5
* | Apply forgetting properly to historical eventsDaniel Wagner-Hall2015-11-181-2/+32
* | Allow users to forget roomsDaniel Wagner-Hall2015-11-173-1/+61
|/
* Implementation of state rollback in /syncRichard van der Hoff2015-11-131-2/+4
* Fix a few race conditions in the state calculationRichard van der Hoff2015-11-131-0/+14
* Trailing whitespaceErik Johnston2015-11-121-1/+1
* Expand commentErik Johnston2015-11-121-0/+6
* CommentErik Johnston2015-11-121-0/+2
* Fix SQL syntaxErik Johnston2015-11-121-2/+3
* Use a (hopefully) more efficient SQL query for doing recency based room searchErik Johnston2015-11-121-4/+6
* Fix bug where assumed dict was namedtupleErik Johnston2015-11-121-1/+1
* Merge pull request #359 from matrix-org/markjh/incremental_indexingErik Johnston2015-11-114-77/+404
|\
| * Fix param style to work on both sqlite and postgresMark Haines2015-11-111-2/+6
| * Fix the background updateMark Haines2015-11-113-17/+19
| * Use a background task to update databases to use the full text searchMark Haines2015-11-102-80/+28
| * Run the background updates when starting synapse.Mark Haines2015-11-102-10/+58
| * Add background update task for reindexing event searchMark Haines2015-11-091-2/+96
| * Add storage module for tracking background updates.Mark Haines2015-11-092-0/+231
* | Return world_readable and guest_can_join in /publicRoomsDaniel Wagner-Hall2015-11-103-29/+69
* | Merge branch 'develop' into markjh/SYN-513Mark Haines2015-11-091-1/+1
|\ \
| * | fix comedy important missing comma breaking recent-ordered FTS on sqliteMatthew Hodgson2015-11-081-1/+1
| * | add a key existence check to tags_by_room to avoid /events 500'ing when testi...Matthew Hodgson2015-11-061-1/+2
| |/
* / SYN-513: Include updates for rooms that have had all their tags deletedMark Haines2015-11-091-1/+1
|/
* Remove accidentally added ID columnDaniel Wagner-Hall2015-11-061-1/+0
* Error handlingErik Johnston2015-11-051-1/+8
* Merge branch 'develop' of github.com:matrix-org/synapse into erikj/searchErik Johnston2015-11-055-16/+87
|\
| * Open up /events to anonymous users for room events onlyDaniel Wagner-Hall2015-11-054-8/+79
| * Merge branch 'develop' of github.com:matrix-org/synapse into developDaniel Wagner-Hall2015-11-041-2/+1
| |\
| | * Merge branch 'develop' into daniel/removesomeliesMark Haines2015-11-044-32/+272
| | |\
| | * | Remove more unused parametersDaniel Wagner-Hall2015-11-021-2/+1
| * | | Allow guests to register and call /events?room_id=Daniel Wagner-Hall2015-11-041-7/+8
| | |/ | |/|
* | | Implement basic pagination for search resultsErik Johnston2015-11-051-36/+19
* | | Implement order and group byErik Johnston2015-11-041-0/+96
|/ /
* | Merge pull request #343 from matrix-org/erikj/fix_retriesErik Johnston2015-11-031-32/+16
|\ \
| * | Fix broken cache for getting retry times. This meant we retried remote destin...Erik Johnston2015-11-031-32/+16
| |/
* | Merge pull request #335 from matrix-org/markjh/room_tagsMark Haines2015-11-033-0/+256
|\ \ | |/ |/|
| * Spell "deferred" more correctlyMark Haines2015-11-031-1/+1
| * Store room tag content and return the content in the m.tag eventMark Haines2015-11-022-16/+29
| * Merge branch 'develop' into markjh/room_tagsMark Haines2015-11-021-1/+136
| |\
| * | Inform the client of new room tags using v1 /eventsMark Haines2015-10-291-1/+15
| * | Fix pyflakes errorsMark Haines2015-10-281-3/+3
| * | Add APIs for adding and removing tags from roomsMark Haines2015-10-283-0/+229
* | | Add missing columnDaniel Wagner-Hall2015-10-301-1/+1
| |/ |/|
* | DocsErik Johnston2015-10-281-0/+26
* | Add room context apiErik Johnston2015-10-281-1/+110
|/
* Pull out sender when computing search resultsErik Johnston2015-10-231-14/+17
* Implement rank function for SQLite FTSErik Johnston2015-10-233-2/+30
* Actually filter resultsErik Johnston2015-10-221-3/+5
* LESS THANErik Johnston2015-10-221-1/+2
* Use namedtuple as return valueErik Johnston2015-10-221-3/+15
* Limit max number of SQL varsErik Johnston2015-10-221-4/+6
* Merge branch 'develop' of github.com:matrix-org/synapse into erikj/searchErik Johnston2015-10-221-0/+13
|\
| * Merge pull request #316 from matrix-org/markjh/v2_sync_archivedMark Haines2015-10-211-0/+13
| |\
| | * Include banned rooms in the archived section of v2 syncMark Haines2015-10-211-2/+2
| | * Add rooms that the user has left under archived in v2 sync.Mark Haines2015-10-191-0/+13
* | | PEP8Erik Johnston2015-10-221-1/+2
* | | Move FTS to delta 25Erik Johnston2015-10-222-3/+3
|/ /
* | Explicitly check for Sqlite3EngineErik Johnston2015-10-161-2/+5
* | TypingErik Johnston2015-10-161-2/+2
* | Merge branch 'develop' of github.com:matrix-org/synapse into erikj/searchErik Johnston2015-10-161-1/+1
|\|
| * Fix FilteringStore.get_user_filter to work with postgresMark Haines2015-10-161-1/+1
* | Merge branch 'develop' of github.com:matrix-org/synapse into erikj/searchErik Johnston2015-10-161-2/+2
|\|
| * Encode the filter JSON as UTF-8 before storing in the database.Mark Haines2015-10-161-2/+2
* | Explicitly check for Sqlite3EngineErik Johnston2015-10-161-2/+5
* | Add docstringErik Johnston2015-10-161-0/+11
* | Comment on the LIMIT 500Erik Johnston2015-10-161-0/+2
* | Split up run_upgradeErik Johnston2015-10-161-5/+11
* | Merge branch 'develop' of github.com:matrix-org/synapse into erikj/searchErik Johnston2015-10-151-0/+14
|\|
| * Merge pull request #305 from matrix-org/markjh/v2_sync_apiMark Haines2015-10-141-0/+14
| |\
| | * Merge branch 'develop' into markjh/v2_sync_apiMark Haines2015-10-144-377/+399
| | |\
| | * | Add a get_invites_for_user method to the storage to find out the rooms a user...Mark Haines2015-10-131-0/+14
| * | | Remove unused room_id argErik Johnston2015-10-141-5/+5
| | |/ | |/|
* | | Fix to work with SQLiteErik Johnston2015-10-141-4/+11
* | | Add paranoia limitErik Johnston2015-10-131-1/+1
* | | Remove constraints in preperation of using filtersErik Johnston2015-10-131-20/+10
* | | Merge branch 'erikj/store_engine' into erikj/searchErik Johnston2015-10-134-3/+3
|\| |
| * | rename schema_prepare to prepare_databaseErik Johnston2015-10-133-2/+2
* | | Add SQLite supportErik Johnston2015-10-131-5/+12
* | | Merge branch 'erikj/store_engine' into erikj/searchErik Johnston2015-10-135-378/+400
|\| |
| * | Expose error more nicelyErik Johnston2015-10-134-5/+2
| * | Split out the schema preparation and update logic into its own moduleErik Johnston2015-10-134-377/+402
| |/
* | Add sqlite schemaErik Johnston2015-10-131-5/+64
* | Filter events to only thsoe that the user is allowed to seeErik Johnston2015-10-121-7/+7
* | Remove unused room_id parameterErik Johnston2015-10-121-6/+5
* | Keep FTS indexes up to date. Only search through rooms currently joinedErik Johnston2015-10-124-2/+32
* | Add basic full text search impl.Erik Johnston2015-10-094-1/+135
|/
* Merge pull request #288 from matrix-org/markjh/unused_definitionsMark Haines2015-09-287-419/+2
|\
| * synapse/storage/state.py: _make_group_id was unusedMark Haines2015-09-231-6/+0
| * Remove unused functions from synapse/storage/signatures.pyMark Haines2015-09-231-112/+0
| * synapse/storage/roommember.py:_get_members_query was unusedMark Haines2015-09-231-6/+0
| * Remove unused functions from synapse/storage/events.pyMark Haines2015-09-231-11/+0
| * Remove unused functions from synapse/storage/event_federation.pyMark Haines2015-09-231-71/+0
| * synapse/storage/_base.py:_simple_max_id was unusedMark Haines2015-09-231-18/+0
| * synapse/storage/_base.py:_simple_delete was unusedMark Haines2015-09-231-10/+0
| * synapse/storage/_base.py:_simple_selectupdate_one was unusedMark Haines2015-09-231-31/+0
| * synapse/storage/event_federation.py:_get_auth_events is unusedMark Haines2015-09-221-21/+0
| * synapse/storage/_base.py:_execute_and_decode was unusedMark Haines2015-09-221-3/+0
| * synapse/storage/_base.py:Table was unusedMark Haines2015-09-222-130/+2
* | Fix order of ON constraints in _get_rooms_for_user_where_membership_is_txnMark Haines2015-09-241-6/+6
|/
* Add some docstringsDaniel Wagner-Hall2015-09-222-0/+4
* Add docstringDaniel Wagner-Hall2015-09-221-0/+6
* Implement configurable stats reportingDaniel Wagner-Hall2015-09-224-2/+110
* Merge pull request #276 from matrix-org/markjh/history_for_rooms_that_have_be...Mark Haines2015-09-212-10/+38
|\
| * Allow users that have left a room to get the messages that happend in the roo...Mark Haines2015-09-091-1/+18
| * Remove undocumented and unimplemented 'feedback' parameter from the Client-Se...Mark Haines2015-09-091-8/+2
| * Allow room initialSync for users that have left the room, returning a snapsho...Mark Haines2015-09-091-0/+15
| * Include the event_id and stream_ordering of membership events when looking up...Mark Haines2015-09-081-2/+4
* | Merge pull request #281 from matrix-org/erikj/update_extremetiesErik Johnston2015-09-152-0/+11
|\ \
| * | "Comments"Erik Johnston2015-09-151-0/+6
| * | When updating a stored event from outlier to non-outlier, remember to update ...Erik Johnston2015-09-152-0/+5
* | | Drop unused indexErik Johnston2015-09-141-0/+16
| |/ |/|
* | Merge branch 'release-v0.10.0' of github.com:matrix-org/synapse into developErik Johnston2015-09-011-1/+1
|\|
| * Lower size of 'stateGroupCache' now that we have data from matrix.org to supp...Erik Johnston2015-09-011-1/+1
* | Merge branch 'release-v0.10.0' into developMark Haines2015-08-282-4/+17
|\|
| * Don't insert events into 'event_*_extremeties' tables if they're outliersErik Johnston2015-08-231-2/+8
| * Actually check if event_id isn't returned by _get_state_groupsErik Johnston2015-08-211-2/+9
| * When logging in fetch user by user_id case insensitively, *unless* there are ...Erik Johnston2015-08-211-2/+5
| * Don't allow people to register user ids which only differ by case to an exist...Erik Johnston2015-08-211-0/+11
* | Merge erikj/user_dedup to developDaniel Wagner-Hall2015-08-261-0/+14
* | Merge pull request #251 from matrix-org/removeadminDaniel Wagner-Hall2015-08-251-3/+2
|\ \
| * | Stop looking up "admin", which we never readDaniel Wagner-Hall2015-08-251-3/+2
* | | Merge pull request #248 from matrix-org/deviceidDaniel Wagner-Hall2015-08-252-7/+5
|\| |
| * | Remove completely unused concepts from codebaseDaniel Wagner-Hall2015-08-252-7/+5
* | | Merge pull request #243 from matrix-org/markjh/remove_syutilMark Haines2015-08-256-16/+17
|\ \ \ | |/ / |/| |
| * | Fix indentMark Haines2015-08-241-1/+1
| * | Remove syutil dependency in favour of smaller single-purpose librariesMark Haines2015-08-246-16/+17
* | | Remove autoincrement since we incrementing the ID in the storage layerMark Haines2015-08-241-1/+1
|/ /
* | Merge branch 'release-v0.10.0' of github.com:matrix-org/synapse into developErik Johnston2015-08-211-0/+2
|\|
| * Fix bug where we didn't correctly serialize the redacted_because key over fed...Erik Johnston2015-08-211-0/+2
* | Merge branch 'develop' into refreshDaniel Wagner-Hall2015-08-201-0/+19
|\|
| * Merge pull request #211 from matrix-org/email_in_useMark Haines2015-08-201-0/+19
| |\
| | * Bump schema versionDavid Baker2015-08-041-1/+1
| | * Add endpoint that proxies ID server request token and errors if the given ema...David Baker2015-08-041-0/+19
* | | /tokenrefresh POST endpointDaniel Wagner-Hall2015-08-204-1/+85
* | | s/by_token/by_access_token/gDaniel Wagner-Hall2015-08-201-3/+3
|/ /
* | Merge pull request #228 from matrix-org/erikj/_get_state_for_groupsErik Johnston2015-08-181-2/+5
|\ \
| * | Remove newline because vertical whitespace makes mjark sadErik Johnston2015-08-181-2/+1
| * | Rejig the code to make it nicerErik Johnston2015-08-181-3/+2
| * | Ensure we never return a None event from _get_state_for_groupsErik Johnston2015-08-181-3/+8
* | | Merge pull request #227 from matrix-org/erikj/receipts_take2Erik Johnston2015-08-183-15/+91
|\ \ \
| * | | Rename unhelpful variable nameErik Johnston2015-08-181-7/+2
| * | | CommentsErik Johnston2015-08-181-4/+14
| * | | Add index receipts_linearized_room_streamErik Johnston2015-08-172-1/+19
| * | | Remove unused importErik Johnston2015-08-171-2/+0
| * | | Merge branch 'develop' of github.com:matrix-org/synapse into erikj/receipts_t...Erik Johnston2015-08-172-8/+9
| |\ \ \
| * | | | Batch _get_linearized_receipts_for_roomsErik Johnston2015-08-141-15/+64
| * | | | Merge branch 'develop' of github.com:matrix-org/synapse into erikj/receipts_t...Erik Johnston2015-08-131-44/+12
| |\ \ \ \
| * | | | | Add metrics to the receipts cacheErik Johnston2015-08-131-0/+6
* | | | | | Bump size of get_presence_state cacheErik Johnston2015-08-181-1/+1
| |_|_|/ / |/| | | |
* | | | | Reduce cache size from obscenely large to quite largeErik Johnston2015-08-181-1/+1
* | | | | Remember to invalidate cachesErik Johnston2015-08-171-2/+8
* | | | | Implement a batched presence_handler.get_state and use itErik Johnston2015-08-171-2/+4
* | | | | Add batched version of store.get_presence_stateErik Johnston2015-08-171-1/+19
| |_|/ / |/| | |
* | | | Fix bug where we were leaking None into state event listsErik Johnston2015-08-171-2/+3
* | | | Merge pull request #221 from matrix-org/authDaniel Wagner-Hall2015-08-141-6/+6
|\ \ \ \ | |_|/ / |/| | |
| * | | Simplify LoginHander and AuthHandlerDaniel Wagner-Hall2015-08-121-6/+6
| * | | Use TypeError instead of ValueError and give a nicer error mesasgeMark Haines2015-08-101-1/+3
| * | | Merge pull request #215 from matrix-org/erikj/cache_varargs_interfaceErik Johnston2015-08-1011-66/+67
| |\ \ \
* | | | | Remove some vertical spaceErik Johnston2015-08-131-36/+9
* | | | | Replace list comprehensionErik Johnston2015-08-131-8/+3
| |_|/ / |/| | |
* | | | CommentErik Johnston2015-08-121-1/+2
* | | | Explain why we're prefilling dict with NonesErik Johnston2015-08-121-0/+4
* | | | Better variable nameErik Johnston2015-08-121-5/+5
* | | | Split _get_state_for_group_from_cache into twoErik Johnston2015-08-121-32/+53
* | | | Move all the caches into their own package, synapse.util.cachesErik Johnston2015-08-1113-344/+29
* | | | CommentsErik Johnston2015-08-112-3/+13
* | | | CommentErik Johnston2015-08-111-0/+2
* | | | DocsErik Johnston2015-08-111-0/+9
* | | | Fix application of ACLsErik Johnston2015-08-111-3/+3
* | | | Fix state cacheErik Johnston2015-08-111-36/+49
* | | | Clean up StateStoreErik Johnston2015-08-101-62/+11
* | | | Remove unused functionErik Johnston2015-08-101-7/+0
* | | | CommentsErik Johnston2015-08-101-0/+6
* | | | Merge branch 'erikj/cache_varargs_interface' of github.com:matrix-org/synapse...Erik Johnston2015-08-101-5/+5
|\ \ \ \ | | |/ / | |/| |
| * | | Rename keyargs to args in CacheDescriptorErik Johnston2015-08-101-5/+5