1
0
Fork 0
Commit graph

7015 commits

Author SHA1 Message Date
b6174d9101 Update bleach to 6.1.0 2024-04-25 10:14:06 +02:00
624115bf11 Use headers dict instead of HTTP_* kwargs or request.META 2024-04-25 10:13:21 +02:00
224fae7a87 Fix mypy errors 2024-04-25 10:13:21 +02:00
e1fd57a1d6 Fix constructor arguments to SessionMiddleware in tests 2024-04-25 10:13:21 +02:00
b5ef9f6241 Configure STORAGES using OPTIONS instead of subclassing 2024-04-25 10:12:30 +02:00
4fa823e8df Update django-storages to 1.14.2
The problem that boto3 closes files has been worked around in django-storages.
2024-04-25 10:12:30 +02:00
92a94d2fdc django.utils.timezone.utc alias is deprecated 2024-04-25 10:12:30 +02:00
0d621b68e0 Reorder operations in save() overrides
Accessing many-to-many relations before saving is no longer allowed.

Reorder all operations consistently:
1. Validations
2. Modify own fields
3. Perform save by calling super().save()
4. Modify related objects and clear caches

Especially clearing caches should be done after actually saving, otherwise the old data can be
re-added immediately by another request before the new data is written.
2024-04-25 10:12:30 +02:00
47fdad9c87 Use new STORAGES setting 2024-04-25 10:12:30 +02:00
3349817a0b settings.USE_L10N is deprecated 2024-04-25 10:12:30 +02:00
45bd67cb04 Add migration resulting from Django 4.2 upgrade 2024-04-25 10:12:29 +02:00
c4b21ee258
Merge pull request #3114 from SMillerDev/feat/api/oauth
feat: add OAuth authentication
2024-04-24 15:45:54 -07:00
4f58b11330 Include the correct protocol and port in remote IDs 2024-04-24 15:35:19 +02:00
609bc15406 Support http:// protocol in BookWyrm connector 2024-04-24 15:30:47 +02:00
c42db40a63 Construct absolute URLs with the correct protocol and port 2024-04-24 15:30:47 +02:00
3aefbb548e Allow serving BookWyrm on a non-standard port 2024-04-24 15:30:47 +02:00
c73d1fff6a Remove unnecessary exceptions from validate_url_domain 2024-04-24 15:30:47 +02:00
f24fdf73b5 Update to match newer code style 2024-04-24 15:08:48 +02:00
839ab2fafd
Merge branch 'main' into move-fix 2024-04-24 14:56:32 +02:00
6684d60526
refactor Move for more redundancy
As outlined in #3354, a use `Move` fails if the user is moving from a BookWyrm server to another BookWrym server.
This is because:

1. the original code did not announce changes to alsoKnownAs;
2. the original code always checked the locally saved profile rather than refetching the remote data;

This commit fixes both these problems by forcing `MoveUser` to always perform a "refresh" of the local data from the remote, and by saving the user with broadcast=True when updating alsoKnownAs ids.
2024-04-22 13:35:08 +10:00
be872ed672 Support AWS_S3_URL_PROTOCOL
- Allow setting in .env
- Default to PROTOCOL (same as before)
- Propagate to django-storages so it generates the correct URLs in sass_src
2024-04-15 13:16:51 +02:00
4304cd4a79
use re.escape 2024-04-13 21:26:41 -03:00
8733369605
test_quotation_page_serialization: add test with no position 2024-04-13 21:26:41 -03:00
df78cc64a6
Quotation._format_position: do not treat page numbers as integers
Fixes: #3352
2024-04-13 21:26:41 -03:00
f844abcad9
test_quotation_page_serialization: use strings for page numbers
This follows from #3273, "Allow page numbers to be text, instead of
integers".
2024-04-13 21:26:39 -03:00
c3c46144fe
add merge migration 2024-04-13 12:39:40 +10:00
d48d312c0a
Merge branch 'main' into user-export 2024-04-13 12:26:13 +10:00
501fb45528
export avatars to own directory
Saving avatars to /images is problematic because it changes the original filepath from avatars/filename to images/avatars/filename.
In this PR prior to this commit, imports failed as they are looking for a file path beginning with "avatar"
2024-04-13 12:03:35 +10:00
3ffbb242a4 Black 2024-04-09 05:59:01 -05:00
af0bd90c15 Adds merge migration 2024-04-09 05:57:27 -05:00
73630331d1
Merge pull request #3299 from Minnozz/absorb
Track which Author/Work/Edition a duplicate has been merged into
2024-04-09 05:55:44 -05:00
e1c54b2933 Remove optimizations with adverse effects
`if not audience` actually causes the entire query to be evaluated, before .values_list() is called.
2024-04-04 13:47:56 +02:00
439cb3ccaa Remove unnecessary conversions between list and set 2024-04-04 13:15:31 +02:00
321397a349 Specify which column DISTINCT should apply to 2024-04-03 21:28:22 +02:00
464a0298c6 Add index for finding active (and local) users 2024-04-03 21:27:52 +02:00
0501ce39cd Add index for looking up User by username 2024-04-03 21:15:24 +02:00
4d5a30d953 Add index for looking up KeyPair by remote id 2024-04-03 21:11:27 +02:00
5cfe7eca6f Add index for finding all statuses in a thread 2024-04-03 21:11:09 +02:00
4bbdd0b2d0 Add index on Status.remote_id
This field is often used in WHERE-clauses in queries that are very slow on bookwyrm.social.
2024-04-02 21:54:30 +02:00
d5fb21f330
Merge branch 'main' into feat/api/oauth 2024-04-01 22:35:19 +02:00
cb3fd0cfc1
Merge branch 'main' into feat/api/oauth 2024-03-31 12:41:12 -07:00
ffee29d8e2 Fix resource leaks
Rewrite places where files (or other resources) are opened but not closed to "with" blocks, which
automatically call close() at the end of the scope.

Also simplify some tests where images need to be saved to a model field: an opened file can be
passed directly to FileField.save().
2024-03-29 20:14:10 +01:00
5d597f1ca9 Use new "with ()" style 2024-03-29 14:25:08 +01:00
0ac9d12d1c Merge branch 'main' into user-export 2024-03-29 14:23:10 +01:00
2bbe3d4c32 Test user export archive contents 2024-03-28 13:50:55 +01:00
bb5d8152f1 Fix mypy error 2024-03-28 13:21:30 +01:00
dabf7c6e10 User export testing fixes 2024-03-28 13:09:21 +01:00
cdbc1d172c Fix double exports subdir in S3 user export 2024-03-27 23:28:24 +01:00
3133a47b7c
Merge from main into 'better-fmt-patch-calls'
Conflicts:
	bookwyrm/tests/test_book_search.py
2024-03-27 17:13:08 -03:00
c6ca547d58 Fix migration formatting 2024-03-27 20:41:59 +01:00