Commit 604f787
feat(reports): report schedules honor cron_expression + timezone (#1983)
sys_report_schedule has long carried `cron_expression` and `timezone`
fields, but ReportService only ever advanced next_run_at by
`interval_minutes` — both fields were stored and ignored. Scheduling now
computes next_run_at from the cron expression (when present) in the
schedule's timezone via croner — the same library the job scheduler uses —
so "every weekday 09:00 local" is expressible. interval_minutes remains the
fallback.
- cron_expression wins over interval_minutes when set (the field's
documented contract); evaluated in `timezone` (default UTC).
- scheduleReport validates the cron eagerly → VALIDATION_FAILED on bad
input, rather than silently falling back at sweep time. A cron that
becomes unschedulable later is logged and falls back to interval; it
never throws into the dispatch sweep.
- Shared nextRunAt() helper drives both initial schedule and advance.
DB-polling dispatch model unchanged; only the next-run computation is
cron-aware. Self-contained slice of ADR-0053 Phase 2 — report schedules
run under a system context, so the tz source is the schedule's own field,
independent of the reference-timezone resolver.
Tests: cron drives/overrides interval; honors timezone (09:00 ET = 14:00Z);
invalid cron rejected; dispatchDue advances to next cron occurrence. Full
plugin-reports suite green (29). Closes #1983.
Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>1 parent 67c29ee commit 604f787
6 files changed
Lines changed: 111 additions & 9 deletions
File tree
- .changeset
- packages
- platform-objects/src/audit
- plugins/plugin-reports
- src
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
| 1 | + | |
| 2 | + | |
| 3 | + | |
| 4 | + | |
| 5 | + | |
| 6 | + | |
| 7 | + | |
| 8 | + | |
| 9 | + | |
| 10 | + | |
| 11 | + | |
| 12 | + | |
| 13 | + | |
Lines changed: 5 additions & 4 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
9 | 9 | | |
10 | 10 | | |
11 | 11 | | |
12 | | - | |
13 | | - | |
14 | | - | |
15 | | - | |
| 12 | + | |
| 13 | + | |
| 14 | + | |
| 15 | + | |
| 16 | + | |
16 | 17 | | |
17 | 18 | | |
18 | 19 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
19 | 19 | | |
20 | 20 | | |
21 | 21 | | |
22 | | - | |
| 22 | + | |
| 23 | + | |
23 | 24 | | |
24 | 25 | | |
25 | 26 | | |
| |||
Lines changed: 43 additions & 0 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
237 | 237 | | |
238 | 238 | | |
239 | 239 | | |
| 240 | + | |
| 241 | + | |
| 242 | + | |
| 243 | + | |
| 244 | + | |
| 245 | + | |
| 246 | + | |
| 247 | + | |
| 248 | + | |
| 249 | + | |
| 250 | + | |
| 251 | + | |
| 252 | + | |
| 253 | + | |
| 254 | + | |
| 255 | + | |
| 256 | + | |
| 257 | + | |
| 258 | + | |
| 259 | + | |
| 260 | + | |
| 261 | + | |
| 262 | + | |
| 263 | + | |
| 264 | + | |
| 265 | + | |
| 266 | + | |
| 267 | + | |
| 268 | + | |
| 269 | + | |
| 270 | + | |
| 271 | + | |
| 272 | + | |
| 273 | + | |
| 274 | + | |
| 275 | + | |
| 276 | + | |
| 277 | + | |
| 278 | + | |
| 279 | + | |
| 280 | + | |
| 281 | + | |
| 282 | + | |
240 | 283 | | |
241 | 284 | | |
242 | 285 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
11 | 11 | | |
12 | 12 | | |
13 | 13 | | |
| 14 | + | |
14 | 15 | | |
15 | 16 | | |
16 | 17 | | |
| |||
342 | 343 | | |
343 | 344 | | |
344 | 345 | | |
345 | | - | |
| 346 | + | |
| 347 | + | |
| 348 | + | |
| 349 | + | |
| 350 | + | |
| 351 | + | |
| 352 | + | |
| 353 | + | |
| 354 | + | |
| 355 | + | |
| 356 | + | |
| 357 | + | |
| 358 | + | |
| 359 | + | |
346 | 360 | | |
347 | 361 | | |
348 | 362 | | |
349 | 363 | | |
350 | 364 | | |
351 | 365 | | |
352 | | - | |
| 366 | + | |
353 | 367 | | |
354 | 368 | | |
355 | 369 | | |
| |||
459 | 473 | | |
460 | 474 | | |
461 | 475 | | |
462 | | - | |
| 476 | + | |
| 477 | + | |
| 478 | + | |
| 479 | + | |
| 480 | + | |
| 481 | + | |
| 482 | + | |
| 483 | + | |
| 484 | + | |
| 485 | + | |
| 486 | + | |
| 487 | + | |
| 488 | + | |
| 489 | + | |
| 490 | + | |
| 491 | + | |
| 492 | + | |
| 493 | + | |
| 494 | + | |
| 495 | + | |
| 496 | + | |
| 497 | + | |
| 498 | + | |
| 499 | + | |
463 | 500 | | |
464 | | - | |
| 501 | + | |
| 502 | + | |
| 503 | + | |
| 504 | + | |
| 505 | + | |
465 | 506 | | |
466 | 507 | | |
467 | 508 | | |
| |||
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
0 commit comments