Anders Kaseorg
6e4c3e41dc
python: Normalize quotes with Black.
...
Signed-off-by: Anders Kaseorg <anders@zulip.com>
2021-02-12 13:11:19 -08:00
Anders Kaseorg
11741543da
python: Reformat with Black, except quotes.
...
Signed-off-by: Anders Kaseorg <anders@zulip.com>
2021-02-12 13:11:19 -08:00
Sundar Guntnur
cbb7fb8ac0
anchor_value: Fix parsing of large anchor values.
...
This handles the conditions when anchor values are larger than
LARGER_THAN_MAX_MESSAGE_ID by clamping them down to it. Also added
tests for the function parse_anchor_value.
Fixes #16768 .
2020-12-02 11:00:22 -08:00
Anders Kaseorg
13e35bfa94
mypy: Use sqlalchemy-stubs.
...
Signed-off-by: Anders Kaseorg <anders@zulip.com>
2020-11-16 18:17:41 -08:00
Anders Kaseorg
8e0240300a
message_fetch: Skip intermediate mutation in limit_query_to_range.
...
This avoids extra mypy annotations.
Signed-off-by: Anders Kaseorg <anders@zulip.com>
2020-11-16 18:17:41 -08:00
Alex Vandiver
1f7132f50d
docs: Standardize on PostgreSQL, not Postgres.
2020-10-28 11:55:16 -07:00
Anders Kaseorg
72d6ff3c3b
docs: Fix more capitalization issues.
...
Signed-off-by: Anders Kaseorg <anders@zulip.com>
2020-10-23 11:46:55 -07:00
Aman Agrawal
37e77c77e2
message_fetch: Better handle unauthorized requests.
...
We raise MissingAuthenticationError now, which adds
`www_authenticate=session` header to the error response. This
stops modern web-browsers from displaying a login form everytime
a 401 response it sent to the client.
2020-09-21 16:07:43 -07:00
Aman Agrawal
d9431a5e66
exceptions: Raise InvalidSubdomainError when realm is invalid.
...
When user requests for a realm that doesn't exists, we raise
a InvalidSubdomainError.
This reduces our effort at repeatedly ensuring realm is valid
in request in web-public queries.
2020-09-03 10:45:14 -07:00
Anders Kaseorg
a276eefcfe
python: Rewrite dict() as {}.
...
Suggested by the flake8-comprehensions plugin.
Signed-off-by: Anders Kaseorg <anders@zulip.com>
2020-09-02 11:15:41 -07:00
Aman Agrawal
9f9daeea5b
message_fetch: Allow access to web-public msgs for unauth users.
...
Via API, users can now access messages which are in web-public
streams without any authentication.
If the user is not authenticated, we assume it is a web-public
query and add `streams:web-public` narrow if not already present
to the narrow. web-public streams are also directly accessible.
Any malformed narrow which is not allowed in a web-public query
results in a 400 or 401. See test_message_fetch for the allowed
queries.
2020-08-12 16:39:02 -07:00
Tim Abbott
28b43b4edc
message_fetch: Refactor get_base_query_for_search.
2020-08-12 16:33:59 -07:00
Tim Abbott
221cd496c6
NarrowBuilder: self.user_profile.realm -> self.realm.
2020-08-12 16:33:59 -07:00
Tim Abbott
35bd14574d
message_fetch: Refactor public-streams query logic.
2020-08-12 16:33:59 -07:00
Tim Abbott
d2e191b94e
NarrowBuilder: Rename self.user_realm to self.realm.
...
The previous name will be very confusing in upcoming commits where the
UserProfile becomes Optional but Realm is not (E.g. for web-public
queries).
2020-08-12 16:33:59 -07:00
Aman Agrawal
94839c9492
NarrowBuilder: Directly use denormalized 'recipient_id' of streams.
...
'recipient_id' was is now directly accessible and we can now use
it instead of doing an extra query to Recipient model.
2020-08-11 11:22:22 -07:00
Anders Kaseorg
61d0417e75
python: Replace ujson with orjson.
...
Fixes #6507 .
Signed-off-by: Anders Kaseorg <anders@zulip.com>
2020-08-11 10:55:12 -07:00
Anders Kaseorg
36bae2e86c
message_fetch: Use strings as dict keys.
...
JSON keys must be strings, and orjson enforces this.
Signed-off-by: Anders Kaseorg <anders@zulip.com>
2020-08-07 11:12:32 -07:00
Steve Howell
f960df04e8
narrows: Validate negated field.
2020-06-25 13:52:59 -07:00
Anders Kaseorg
07fa63e0c8
validator: Fix type errors hidden by bad Any use in set_type_structure.
...
Signed-off-by: Anders Kaseorg <anders@zulip.com>
2020-06-23 16:30:17 -07:00
Tim Abbott
866965f162
views: Rename messages.py to message_fetch.py.
...
This completes to effort to split zerver.views.messages into smaller
modules focused on the different core type of work.
2020-06-22 15:08:34 -07:00