Commit graph

16634 commits

Author SHA1 Message Date
Nicolas Giard cf21c4129a
docs: Update README.md 2025-03-08 00:59:26 -05:00
Nicolas Giard cf6340443f
docs: Update README.md 2025-03-08 00:56:14 -05:00
Robert Sparks 554182ef8a
feat: run the docker container as dev (#8606)
* feat: run the docker container as dev

* fix: $@ -> $*

Old bug, but might as well fix it now

---------

Co-authored-by: Jennifer Richards <jennifer@staff.ietf.org>
2025-03-04 11:42:04 -06:00
Jennifer Richards 232a861f8a
chore: config gunicorn secure_scheme_headers (#8632)
* chore: config gunicorn secure_scheme_headers

* chore: typo in comment
2025-03-03 12:51:14 -06:00
Jennifer Richards cb8ef96f36
fix: more submission date feedback; refactor xml2rfc log capture (#8621)
* feat: catch and report any <date> parsing error

* refactor: error handling in a more testable way

* fix: no bare `except`

* test: exception cases for test_parse_creation_date

* fix: explicitly reject non-numeric day/year

* test: suppress xml2rfc output in test

* refactor: context manager to capture xml2rfc output

* refactor: more capture_xml2rfc_output usage

* fix: capture_xml2rfc_output exception handling
2025-03-03 09:21:39 -06:00
Jennifer Richards a9a8f9ba01
chore(deps): remove pydyf pin, update weasyprint req (#8580)
* chore(deps): remove pydyf pin, update weasyprint req

* chore(deps): drop pdf extra from xml2rfc dep

This should come back when we use xml2rfc for PDF generation
2025-02-21 18:08:12 -06:00
Robert Sparks 72a23d4abb
ci: merge release to main (#8578)
ci: merge main to release (#8569)
2025-02-21 12:19:48 -06:00
Jennifer Richards 183cd995aa
fix: maintain original TZID letter case (#8577) 2025-02-21 12:17:56 -06:00
Jennifer Richards fb310e5ce2
feat: useful error when submission has inconsistent date (#8576)
* chore: handle errors in app-configure-blobstore.py

* feat: sensible error for inconsistent <date>
2025-02-21 09:49:16 -06:00
Robert Sparks bd31a98851
ci: merge main to release (#8569) 2025-02-20 14:47:47 -06:00
Robert Sparks 7f3488c5c2
ci: merge release to main (#8568) 2025-02-20 14:46:45 -06:00
Jennifer Richards 041fa83d21
chore: handle errors in app-configure-blobstore.py (#8567) 2025-02-20 14:45:22 -06:00
Robert Sparks aeba63bb41
chore: ensure proper return type (#8566)
* chore: ensure proper return type

* test: comment out (intentionally) failing assertion

---------

Co-authored-by: Jennifer Richards <jennifer@staff.ietf.org>
2025-02-20 15:13:44 -04:00
Jennifer Richards 2f8b9c3cfa
fix: ignore exceptions from blobstore ops (#8565)
* fix: ignore exceptions from to blobstore ops

* fix: log repr(err) instead of just err
2025-02-20 11:12:43 -06:00
Robert Sparks 228457af16
ci: merge main to release (#8563) 2025-02-20 08:52:21 -06:00
Robert Sparks dda9e4e32e
ci: merge release to main (#8562)
ci: merge main to release (#8503)
2025-02-20 08:51:07 -06:00
Jennifer Richards be7ad9acab
ci: cast env vars to correct types (#8558) 2025-02-19 19:42:07 -06:00
Robert Sparks 997239a2ea
feat: write objects to blob storage (#8557)
* feat: basic blobstore infrastructure for dev

* refactor: (broken) attempt to put minio console behind nginx

* feat: initialize blobstore with boto3

* fix: abandon attempt to proxy minio. Use docker compose instead.

* feat: beginning of blob writes

* feat: storage utilities

* feat: test buckets

* chore: black

* chore: remove unused import

* chore: avoid f string when not needed

* fix: inform all settings files about blobstores

* fix: declare types for some settings

* ci: point to new target base

* ci: adjust test workflow

* fix: give the tests debug environment a blobstore

* fix: "better" name declarations

* ci: use devblobstore container

* chore: identify places to write to blobstorage

* chore: remove unreachable code

* feat: store materials

* feat: store statements

* feat: store status changes

* feat: store liaison attachments

* feat: store agendas provided with Interim session requests

* chore: capture TODOs

* feat: store polls and chatlogs

* chore: remove unneeded TODO

* feat: store drafts on submit and post

* fix: handle storage during doc expiration and resurrection

* fix: mirror an unlink

* chore: add/refine TODOs

* feat: store slide submissions

* fix: structure slide test correctly

* fix: correct sense of existence check

* feat: store some indexes

* feat: BlobShadowFileSystemStorage

* feat: shadow floorplans / host logos to the blob

* chore: remove unused import

* feat: strip path from blob shadow names

* feat: shadow photos / thumbs

* refactor: combine photo and photothumb blob kinds

The photos / thumbs were already dropped in the same
directory, so let's not add a distinction at this point.

* style: whitespace

* refactor: use kwargs consistently

* chore: migrations

* refactor: better deconstruct(); rebuild migrations

* fix: use new class in mack patch

* chore: add TODO

* feat: store group index documents

* chore: identify more TODO

* feat: store reviews

* fix: repair merge

* chore: remove unnecessary TODO

* feat: StoredObject metadata

* fix: deburr some debugging code

* fix: only set the deleted timestamp once

* chore: correct typo

* fix: get_or_create vs get and test

* fix: avoid the questionable is_seekable helper

* chore: capture future design consideration

* chore: blob store cfg for k8s

* chore: black

* chore: copyright

* ci: bucket name prefix option + run Black

Adds/uses DATATRACKER_BLOB_STORE_BUCKET_PREFIX option. Other changes
are just Black styling.

* ci: fix typo in bucket name expression

* chore: parameters in app-configure-blobstore

Allows use with other blob stores.

* ci: remove verify=False option

* fix: don't return value from __init__

* feat: option to log timing of S3Storage calls

* chore: units

* fix: deleted->null when storing a file

* style: Black

* feat: log as JSON; refactor to share code; handle exceptions

* ci: add ietf_log_blob_timing option for k8s

* test: --no-manage-blobstore option for running tests

* test: use blob store settings from env, if set

* test: actually set a couple more storage opts

* feat: offswitch (#8541)

* feat: offswitch

* fix: apply ENABLE_BLOBSTORAGE to BlobShadowFileSystemStorage behavior

* chore: log timing of blob reads

* chore: import Config from botocore.config

* chore(deps): import boto3-stubs / botocore

botocore is implicitly imported, but make it explicit
since we refer to it directly

* chore: drop type annotation that mypy loudly ignores

* refactor: add storage methods via mixin

Shares code between Document and DocHistory without
putting it in the base DocumentInfo class, which
lacks the name field. Also makes mypy happy.

* feat: add timeout / retry limit to boto client

* ci: let k8s config the timeouts via env

* chore: repair merge resolution typo

* chore: tweak settings imports

* chore: simplify k8s/settings_local.py imports

---------

Co-authored-by: Jennifer Richards <jennifer@staff.ietf.org>
2025-02-19 17:41:10 -06:00
Robert Sparks e71272fd2f
chore: mark a function unreachable (#8553) 2025-02-19 15:09:17 -06:00
Jennifer Richards 04952d58fa
fix: remove all staging files for submission (#8535) 2025-02-18 10:33:33 -06:00
Matthew Holloway 853de88546
feat: CSS other-session-selected. Fixes #8525 (#8529) 2025-02-14 17:30:24 -06:00
Nicolas Giard d1ec7378da
fix: use groupAcronym to determine hackathon icon in agenda (#8540)
* fix: use groupAcronym to determine hackathon icon in agenda

* test: fix agenda tests related to hackathon
2025-02-14 17:14:03 -06:00
Jennifer Richards ed19b54d8a
fix: deal with "GMT" time zone in iCalendar files (#8506)
* fix: omit vtimezone when None

* fix: fix ics time format for tz=GMT
2025-02-06 12:35:07 -06:00
Robert Sparks 70bf2ae4dd
ci: merge main to release (#8503) 2025-02-05 16:40:17 -06:00
Robert Sparks af49f09c4d
ci: merge release to main (#8502)
ci: merge release to main (#8489)
2025-02-05 16:36:38 -06:00
Jennifer Richards 060320d766
feat: keep proceedings cache up to date via celery (#8449)
* refactor: better control proceedings caching

* refactor: move methods from views to utils

* chore: revert accidental settings change

* fix: eliminate circular import

get_schedule() with name=None should perhaps be an anti-pattern

* feat: task to recompute proceedings daily

* chore: proceedings cache lifetime = 1 day

* fix: ensure finalization is immediately reflected

* chore: update beat comments in docker-compose

* style: undo a couple whitespace changes

* test: update / refactor tests

* test: test task

* refactor: disallow positional arg to task

* refactor: add trivial test of old task
2025-02-05 16:29:32 -06:00
Jennifer Richards 1fbedd7df1
chore: typing fixes for factory-boy 3.3.3 (#8501)
* chore: typing fixes for factory-boy 3.3.3

* chore: more comments
2025-02-05 14:31:35 -06:00
dependabot[bot] 373623da42
chore(deps): bump the /dev/diff npm dependencies (#8439)
Bumps the npm group with 3 updates in the /dev/diff directory: [chalk](https://github.com/chalk/chalk), [dockerode](https://github.com/apocas/dockerode) and [fs-extra](https://github.com/jprichardson/node-fs-extra).


Updates `chalk` from 5.3.0 to 5.4.1
- [Release notes](https://github.com/chalk/chalk/releases)
- [Commits](https://github.com/chalk/chalk/compare/v5.3.0...v5.4.1)

Updates `dockerode` from 4.0.2 to 4.0.4
- [Release notes](https://github.com/apocas/dockerode/releases)
- [Commits](https://github.com/apocas/dockerode/compare/v4.0.2...v4.0.4)

Updates `fs-extra` from 11.2.0 to 11.3.0
- [Changelog](https://github.com/jprichardson/node-fs-extra/blob/master/CHANGELOG.md)
- [Commits](https://github.com/jprichardson/node-fs-extra/compare/11.2.0...11.3.0)

---
updated-dependencies:
- dependency-name: chalk
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: npm
- dependency-name: dockerode
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: npm
- dependency-name: fs-extra
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: npm
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-02-02 18:05:24 -05:00
dependabot[bot] e0b1fd29ee
chore(deps): bump the /dev/deploy-to-container npm dependencies (#8440)
Bumps the npm group in /dev/deploy-to-container with 2 updates: [dockerode](https://github.com/apocas/dockerode) and [fs-extra](https://github.com/jprichardson/node-fs-extra).


Updates `dockerode` from 4.0.3 to 4.0.4
- [Release notes](https://github.com/apocas/dockerode/releases)
- [Commits](https://github.com/apocas/dockerode/compare/v4.0.3...v4.0.4)

Updates `fs-extra` from 11.2.0 to 11.3.0
- [Changelog](https://github.com/jprichardson/node-fs-extra/blob/master/CHANGELOG.md)
- [Commits](https://github.com/jprichardson/node-fs-extra/compare/11.2.0...11.3.0)

---
updated-dependencies:
- dependency-name: dockerode
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: npm
- dependency-name: fs-extra
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: npm
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-02-02 18:04:24 -05:00
Robert Sparks f85878c2e8
fix: avoid writing a file (#8491) 2025-01-31 15:51:24 -06:00
Robert Sparks 83448cd7f2
chore: remove unused code (#8490) 2025-01-31 10:36:15 -06:00
Matthew Holloway db7d3074da
feat: Add session recordings (#8218)
* feat: add session recordings

* feat: add session recordings

* feat: deleting recordings

* feat: deleting recordings and initial form values

* feat: use meeting date rather than today for initial title field. Fix delete recording

* feat: confirm delete recordings modal. fix server utils delete recording

* fix: removing debug console.log

* feat: change button name from 'Ok' to 'Delete' for confirm deletion to be clearer

* feat: UTC time in string and delete modal text

* fix: django html validation tests

* fix: django html validation tests

* fix: django html validation tests

* refactor: Work with SessionPresentations

* fix: better ordering

* chore: drop rev, hide table when empty

* test: test delete_recordings method

* fix: debug delete_recordings

* test: test add_session_recordings view

* fix: better permissions handling

* fix: only delete recordings for selected session

* refactor: inline script -> js module

* chore: remove accidental import

*shakes fist at pycharm*

* fix: consistent timestamp format

plus slight rephrase

* style: Black

* chore: remove comment

* test: update test to match

* fix: reversible url pattern for materials

Tests were perturbed in a way that led to a test
getting an interim instead of an IETF meeting.
This exposed a bug reversing the URL for the
materials_document() view. This splits it into
two patterns that are equivalent to the original.

---------

Co-authored-by: Jennifer Richards <jennifer@staff.ietf.org>
2025-01-31 10:28:39 -06:00
Robert Sparks e33a1a8836
ci: merge release to main (#8489) 2025-01-30 11:35:21 -06:00
Robert Sparks 02a680f872
ci: merge release to main (#8488)
ci: merge main to relase (#8487)
2025-01-30 11:34:20 -06:00
Nicolas Giard a1c3a940e8
ci: pin aws cli version because AWS broke things 2025-01-30 12:22:42 -05:00
Robert Sparks 3b8faf0369
ci: merge main to relase (#8487) 2025-01-30 10:24:01 -06:00
Robert Sparks 76157b3a56
ci: merge release to main (#8486)
ci: merge main to release (#8452)
2025-01-30 10:23:01 -06:00
Jennifer Richards da858725fd
fix: guard against KeyError (#8485) 2025-01-30 10:21:15 -06:00
Jennifer Richards d3bf0a37dc
refactor: don't template inside <script> (#8480) 2025-01-29 13:11:12 -06:00
rjsparks 826f4d8747 ci: update base image target version to 20250128T1728 2025-01-28 17:39:50 +00:00
Jennifer Richards e91bda7e5e
feat: consolidate HTML sanitizing (#8471)
* refactor: isolate bleach code

* refactor: move html fns to html.py

* refactor: lose the bleach.py module; refactor

* refactor: sanitize_document -> clean_html

Drops <meta charset="utf-8"> addition after cleaning.

* fix: disambiguate import

* feat: restore <meta charset="utf-8"> tag

* chore: comments

* chore(deps): drop lxml_html_clean package

* refactor: on second thought, no meta charset

* refactor: sanitize_fragment -> clean_html

* test: remove check for charset

* chore: fix lint
2025-01-28 11:28:19 -06:00
Robert Sparks 56f723a3bc
chore: remove unreachable code (#8465) 2025-01-25 15:05:01 -06:00
Robert Sparks ac88f73439
chore: remove unreachable code (#8464) 2025-01-24 10:30:02 -06:00
Jennifer Richards d202ebbb91
refactor: single def of dict structure (#8460) 2025-01-22 13:07:06 -06:00
Jennifer Richards 266d5bed3c
feat: cache file investigation results (#8459)
* feat: cache result of investigate_fragment

* test: test caching
2025-01-22 12:19:21 -06:00
Jennifer Richards 9a72cc0d6a
fix: increase investigate time; more feedback (#8457) 2025-01-22 11:52:09 -06:00
Robert Sparks 896968dc1b
ci: merge main to release (#8452) 2025-01-21 12:45:23 -06:00
Robert Sparks 567d55fa12
ci: merge release to main (#8451)
ci: merge release to main
2025-01-21 12:44:08 -06:00
Jennifer Richards 1c4820db46
ci: celery-results cache for k8s (#8450) 2025-01-21 12:42:57 -06:00
Robert Sparks a4eeae5b27
ci: merge main to release (#8448) 2025-01-21 10:32:03 -06:00