|
11 | 11 | from datetime import timezone |
12 | 12 | from typing import Dict, Optional, Union |
13 | 13 |
|
| 14 | +from stac_fastapi.core.utilities import get_bool_env |
14 | 15 | from stac_fastapi.types.rfc3339 import DateTimeType |
15 | 16 |
|
16 | 17 | logger = logging.getLogger(__name__) |
@@ -38,67 +39,103 @@ def return_date( |
38 | 39 | always containing 'gte' and 'lte' keys. |
39 | 40 | """ |
40 | 41 | result: Dict[str, Optional[str]] = {"gte": None, "lte": None} |
41 | | - MIN_DATE_NANOS = datetime_type(1970, 1, 1, tzinfo=timezone.utc) |
42 | | - MAX_DATE_NANOS = datetime_type(2262, 4, 11, 23, 47, 16, 854775, tzinfo=timezone.utc) |
43 | | - |
| 42 | + use_datetime_nanos = get_bool_env("USE_DATETIME_NANOS", default=True) |
44 | 43 | if interval is None: |
45 | 44 | return result |
46 | 45 |
|
47 | | - if isinstance(interval, str): |
48 | | - if "/" in interval: |
49 | | - parts = interval.split("/") |
50 | | - result["gte"] = ( |
51 | | - parts[0] if parts[0] != ".." else MIN_DATE_NANOS.isoformat() + "Z" |
52 | | - ) |
53 | | - result["lte"] = ( |
54 | | - parts[1] |
55 | | - if len(parts) > 1 and parts[1] != ".." |
56 | | - else MAX_DATE_NANOS.isoformat() + "Z" |
| 46 | + if use_datetime_nanos: |
| 47 | + MIN_DATE_NANOS = datetime_type(1970, 1, 1, tzinfo=timezone.utc) |
| 48 | + MAX_DATE_NANOS = datetime_type( |
| 49 | + 2262, 4, 11, 23, 47, 16, 854775, tzinfo=timezone.utc |
| 50 | + ) |
| 51 | + |
| 52 | + if isinstance(interval, str): |
| 53 | + if "/" in interval: |
| 54 | + parts = interval.split("/") |
| 55 | + result["gte"] = ( |
| 56 | + parts[0] if parts[0] != ".." else MIN_DATE_NANOS.isoformat() + "Z" |
| 57 | + ) |
| 58 | + result["lte"] = ( |
| 59 | + parts[1] |
| 60 | + if len(parts) > 1 and parts[1] != ".." |
| 61 | + else MAX_DATE_NANOS.isoformat() + "Z" |
| 62 | + ) |
| 63 | + else: |
| 64 | + converted_time = interval if interval != ".." else None |
| 65 | + result["gte"] = result["lte"] = converted_time |
| 66 | + return result |
| 67 | + |
| 68 | + if isinstance(interval, datetime_type): |
| 69 | + dt_utc = ( |
| 70 | + interval.astimezone(timezone.utc) |
| 71 | + if interval.tzinfo |
| 72 | + else interval.replace(tzinfo=timezone.utc) |
57 | 73 | ) |
58 | | - else: |
59 | | - converted_time = interval if interval != ".." else None |
60 | | - result["gte"] = result["lte"] = converted_time |
| 74 | + if dt_utc < MIN_DATE_NANOS: |
| 75 | + dt_utc = MIN_DATE_NANOS |
| 76 | + elif dt_utc > MAX_DATE_NANOS: |
| 77 | + dt_utc = MAX_DATE_NANOS |
| 78 | + datetime_iso = dt_utc.isoformat() |
| 79 | + result["gte"] = result["lte"] = datetime_iso |
| 80 | + elif isinstance(interval, tuple): |
| 81 | + start, end = interval |
| 82 | + # Ensure datetimes are converted to UTC and formatted with 'Z' |
| 83 | + if start: |
| 84 | + start_utc = ( |
| 85 | + start.astimezone(timezone.utc) |
| 86 | + if start.tzinfo |
| 87 | + else start.replace(tzinfo=timezone.utc) |
| 88 | + ) |
| 89 | + if start_utc < MIN_DATE_NANOS: |
| 90 | + start_utc = MIN_DATE_NANOS |
| 91 | + elif start_utc > MAX_DATE_NANOS: |
| 92 | + start_utc = MAX_DATE_NANOS |
| 93 | + result["gte"] = start_utc.strftime("%Y-%m-%dT%H:%M:%S.%f")[:-3] + "Z" |
| 94 | + if end: |
| 95 | + end_utc = ( |
| 96 | + end.astimezone(timezone.utc) |
| 97 | + if end.tzinfo |
| 98 | + else end.replace(tzinfo=timezone.utc) |
| 99 | + ) |
| 100 | + if end_utc < MIN_DATE_NANOS: |
| 101 | + end_utc = MIN_DATE_NANOS |
| 102 | + elif end_utc > MAX_DATE_NANOS: |
| 103 | + end_utc = MAX_DATE_NANOS |
| 104 | + result["lte"] = end_utc.strftime("%Y-%m-%dT%H:%M:%S.%f")[:-3] + "Z" |
| 105 | + |
61 | 106 | return result |
62 | 107 |
|
63 | | - if isinstance(interval, datetime_type): |
64 | | - dt_utc = ( |
65 | | - interval.astimezone(timezone.utc) |
66 | | - if interval.tzinfo |
67 | | - else interval.replace(tzinfo=timezone.utc) |
68 | | - ) |
69 | | - if dt_utc < MIN_DATE_NANOS: |
70 | | - dt_utc = MIN_DATE_NANOS |
71 | | - elif dt_utc > MAX_DATE_NANOS: |
72 | | - dt_utc = MAX_DATE_NANOS |
73 | | - datetime_iso = dt_utc.isoformat() |
74 | | - result["gte"] = result["lte"] = datetime_iso |
75 | | - elif isinstance(interval, tuple): |
76 | | - start, end = interval |
77 | | - # Ensure datetimes are converted to UTC and formatted with 'Z' |
78 | | - if start: |
79 | | - start_utc = ( |
80 | | - start.astimezone(timezone.utc) |
81 | | - if start.tzinfo |
82 | | - else start.replace(tzinfo=timezone.utc) |
83 | | - ) |
84 | | - if start_utc < MIN_DATE_NANOS: |
85 | | - start_utc = MIN_DATE_NANOS |
86 | | - elif start_utc > MAX_DATE_NANOS: |
87 | | - start_utc = MAX_DATE_NANOS |
88 | | - result["gte"] = start_utc.strftime("%Y-%m-%dT%H:%M:%S.%f")[:-3] + "Z" |
89 | | - if end: |
90 | | - end_utc = ( |
91 | | - end.astimezone(timezone.utc) |
92 | | - if end.tzinfo |
93 | | - else end.replace(tzinfo=timezone.utc) |
94 | | - ) |
95 | | - if end_utc < MIN_DATE_NANOS: |
96 | | - end_utc = MIN_DATE_NANOS |
97 | | - elif end_utc > MAX_DATE_NANOS: |
98 | | - end_utc = MAX_DATE_NANOS |
99 | | - result["lte"] = end_utc.strftime("%Y-%m-%dT%H:%M:%S.%f")[:-3] + "Z" |
| 108 | + else: |
| 109 | + if isinstance(interval, str): |
| 110 | + if "/" in interval: |
| 111 | + parts = interval.split("/") |
| 112 | + result["gte"] = ( |
| 113 | + parts[0] |
| 114 | + if parts[0] != ".." |
| 115 | + else datetime_type.min.isoformat() + "Z" |
| 116 | + ) |
| 117 | + result["lte"] = ( |
| 118 | + parts[1] |
| 119 | + if len(parts) > 1 and parts[1] != ".." |
| 120 | + else datetime_type.max.isoformat() + "Z" |
| 121 | + ) |
| 122 | + else: |
| 123 | + converted_time = interval if interval != ".." else None |
| 124 | + result["gte"] = result["lte"] = converted_time |
| 125 | + return result |
| 126 | + |
| 127 | + if isinstance(interval, datetime_type): |
| 128 | + datetime_iso = interval.isoformat() |
| 129 | + result["gte"] = result["lte"] = datetime_iso |
| 130 | + elif isinstance(interval, tuple): |
| 131 | + start, end = interval |
| 132 | + # Ensure datetimes are converted to UTC and formatted with 'Z' |
| 133 | + if start: |
| 134 | + result["gte"] = start.strftime("%Y-%m-%dT%H:%M:%S.%f")[:-3] + "Z" |
| 135 | + if end: |
| 136 | + result["lte"] = end.strftime("%Y-%m-%dT%H:%M:%S.%f")[:-3] + "Z" |
100 | 137 |
|
101 | | - return result |
| 138 | + return result |
102 | 139 |
|
103 | 140 |
|
104 | 141 | def extract_date(date_str: str) -> date: |
|
0 commit comments