Skip to content

Commit d592380

Browse files
committed
TIME_ZONE UTC, remove unused file settings, https settings by default
1 parent a1a7c33 commit d592380

File tree

6 files changed

+9
-17
lines changed

6 files changed

+9
-17
lines changed

plain-sessions/plain/sessions/default_settings.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
# A string like "example.com", or None for standard domain cookie.
66
SESSION_COOKIE_DOMAIN = None
77
# Whether the session cookie should be secure (https:// only).
8-
SESSION_COOKIE_SECURE = False
8+
SESSION_COOKIE_SECURE = True
99
# The path of the session cookie.
1010
SESSION_COOKIE_PATH = "/"
1111
# Whether to use the HttpOnly flag.

plain/plain/runtime/global_settings.py

+4-14
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
# https://en.wikipedia.org/wiki/List_of_tz_zones_by_name (although not all
2323
# systems may support all possibilities). When USE_TZ is True, this is
2424
# interpreted as the default user time zone.
25-
TIME_ZONE = "America/Chicago"
25+
TIME_ZONE: str = "UTC"
2626

2727
# If you set this to True, Plain will use timezone-aware datetimes.
2828
USE_TZ = True
@@ -75,16 +75,6 @@
7575
# (i.e. "/tmp" on *nix systems).
7676
FILE_UPLOAD_TEMP_DIR = None
7777

78-
# The numeric mode to set newly-uploaded files to. The value should be a mode
79-
# you'd pass directly to os.chmod; see
80-
# https://docs.python.org/library/os.html#files-and-directories.
81-
FILE_UPLOAD_PERMISSIONS = 0o644
82-
83-
# The numeric mode to assign to newly-created directories, when uploading files.
84-
# The value should be a mode as you'd pass to os.chmod;
85-
# see https://docs.python.org/library/os.html#files-and-directories.
86-
FILE_UPLOAD_DIRECTORY_PERMISSIONS = None
87-
8878
# Default X-Frame-Options header value
8979
X_FRAME_OPTIONS = "DENY"
9080

@@ -121,7 +111,7 @@
121111
# SIGNING #
122112
###########
123113

124-
SIGNING_BACKEND = "plain.signing.TimestampSigner"
114+
COOKIE_SIGNING_BACKEND = "plain.signing.TimestampSigner"
125115

126116
########
127117
# CSRF #
@@ -132,7 +122,7 @@
132122
CSRF_COOKIE_AGE = 60 * 60 * 24 * 7 * 52
133123
CSRF_COOKIE_DOMAIN = None
134124
CSRF_COOKIE_PATH = "/"
135-
CSRF_COOKIE_SECURE = False
125+
CSRF_COOKIE_SECURE = True
136126
CSRF_COOKIE_HTTPONLY = False
137127
CSRF_COOKIE_SAMESITE = "Lax"
138128
CSRF_HEADER_NAME = "HTTP_X_CSRFTOKEN"
@@ -178,7 +168,7 @@
178168
SECURE_REDIRECT_EXEMPT = []
179169
SECURE_REFERRER_POLICY = "same-origin"
180170
SECURE_SSL_HOST = None
181-
SECURE_SSL_REDIRECT = False
171+
SECURE_SSL_REDIRECT = True
182172

183173
#############
184174
# Templates #

plain/plain/runtime/user_settings.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -275,7 +275,7 @@ def _load_explicit_settings(self, settings_module):
275275
setattr(self, setting, setting_value)
276276
self._explicit_settings.add(setting)
277277

278-
if hasattr(time, "tzset") and self.TIME_ZONE:
278+
if hasattr(time, "tzset") and getattr(self, "TIME_ZONE", None):
279279
# When we can, attempt to validate the timezone. If we can't find
280280
# this file, no check happens and it's harmless.
281281
zoneinfo_root = Path("/usr/share/zoneinfo")

plain/plain/signing.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ def _cookie_signer_key(key):
107107

108108

109109
def get_cookie_signer(salt="plain.signing.get_cookie_signer"):
110-
Signer = import_string(settings.SIGNING_BACKEND)
110+
Signer = import_string(settings.COOKIE_SIGNING_BACKEND)
111111
return Signer(
112112
key=_cookie_signer_key(settings.SECRET_KEY),
113113
fallback_keys=map(_cookie_signer_key, settings.SECRET_KEY_FALLBACKS),

plain/tests/test_wsgi.py

+1
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ def test_wsgi_app():
1414
{
1515
"REQUEST_METHOD": "GET",
1616
"wsgi.input": BytesIO(b""),
17+
"wsgi.url_scheme": "https",
1718
},
1819
lambda *args: None,
1920
)

scripts/install

+1
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ do
55
echo ""
66
echo "${BOLD}Installing dependencies for $package${NORMAL}"
77
cd $package
8+
poetry env use $(uv python find)
89
POETRY_VIRTUALENVS_IN_PROJECT=true poetry install
910
cd ..
1011
done

0 commit comments

Comments
 (0)