Files
wehub-resource-sync bcbd1bdb22
Integ / changes (push) Has been skipped
Pre-commit / pre-commit (push) Failing after 1s
CLI exit codes / changes (push) Has been skipped
Test (Install) / changes (push) Has been skipped
Test (Python) / changes (push) Has been skipped
Test (TypeScript) / changes (push) Has been skipped
CLI exit codes / cli-gate (push) Has been cancelled
Test (Install) / test-install-gate (push) Has been cancelled
Integ / integ-gate (push) Has been cancelled
Test (Python) / test-python-gate (push) Has been cancelled
Test (TypeScript) / test-typescript-gate (push) Has been cancelled
Test (Install) / python-minimal (3.12) (push) Has been cancelled
Test (Install) / python-minimal (3.11) (push) Has been cancelled
Test (Install) / python-extra (agno, mirage.agents.agno) (push) Has been cancelled
Test (Install) / python-extra (chroma, mirage.resource.chroma) (push) Has been cancelled
Test (Install) / python-extra (pdf, mirage.core.filetype.pdf) (push) Has been cancelled
Integ / integ (push) Has been cancelled
Integ / integ-database (push) Has been cancelled
Integ / integ-database-ts (push) Has been cancelled
Integ / integ-data (push) Has been cancelled
Integ / integ-ssh (push) Has been cancelled
Integ / integ-ssh-ts (push) Has been cancelled
Test (Python) / audit (push) Has been cancelled
Test (TypeScript) / test (push) Has been cancelled
Test (TypeScript) / python-fs-shim (push) Has been cancelled
CLI exit codes / Python CLI (push) Has been cancelled
CLI exit codes / TypeScript CLI (push) Has been cancelled
CLI exit codes / Cross-language snapshot interop (push) Has been cancelled
Test (Python) / test (push) Has been cancelled
Test (Python) / import-isolation (deepagents, openai, mirage.agents.openai_agents) (push) Has been cancelled
Test (Python) / import-isolation (deepagents, pydantic-ai, mirage.agents.pydantic_ai) (push) Has been cancelled
Integ / integ-ts (push) Has been cancelled
Integ / integ-fuse (push) Has been cancelled
Test (Install) / python-extra (databricks, mirage.resource.databricks_volume) (push) Has been cancelled
Test (Install) / python-extra (deepagents, mirage.agents.langchain) (push) Has been cancelled
Test (Install) / python-extra (email, mirage.resource.email) (push) Has been cancelled
Test (Install) / python-extra (fuse, mirage.fuse.mount) (push) Has been cancelled
Test (Install) / python-extra (hdf5, mirage.core.filetype.hdf5) (push) Has been cancelled
Test (Install) / python-extra (hf, mirage.resource.hf_buckets) (push) Has been cancelled
Test (Install) / python-extra (lancedb, mirage.resource.lancedb) (push) Has been cancelled
Test (Install) / python-extra (langfuse, mirage.resource.langfuse) (push) Has been cancelled
Test (Install) / python-extra (mongodb, mirage.resource.mongodb) (push) Has been cancelled
Test (Install) / python-extra (nextcloud, mirage.resource.nextcloud) (push) Has been cancelled
Test (Install) / python-extra (openai, mirage.agents.openai_agents) (push) Has been cancelled
Test (Install) / python-extra (openhands, mirage.agents.openhands, 3.12) (push) Has been cancelled
Test (Install) / python-extra (parquet, mirage.core.filetype.parquet) (push) Has been cancelled
Test (Install) / python-extra (postgres, mirage.resource.postgres) (push) Has been cancelled
Test (Install) / python-extra (pydantic-ai, mirage.agents.pydantic_ai) (push) Has been cancelled
Test (Install) / python-extra (qdrant, mirage.resource.qdrant) (push) Has been cancelled
Test (Install) / python-extra (redis, mirage.resource.redis) (push) Has been cancelled
Test (Install) / python-extra (s3, mirage.resource.s3) (push) Has been cancelled
Test (Install) / python-extra (ssh, mirage.resource.ssh) (push) Has been cancelled
Test (Install) / ts-minimal (push) Has been cancelled
chore: import upstream snapshot with attribution
2026-07-13 12:30:44 +08:00

212 lines
6.8 KiB
Python

# ========= Copyright 2026 @ Strukto.AI All Rights Reserved. =========
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
# ========= Copyright 2026 @ Strukto.AI All Rights Reserved. =========
from email import policy
from email.parser import BytesParser
from mirage.accessor.email import EmailAccessor
from mirage.core.email._parse import parse_rfc822
async def list_folders(accessor: EmailAccessor) -> list[str]:
imap = await accessor.get_imap()
response = await imap.list('""', "*")
folders: list[str] = []
for line in response.lines:
if isinstance(line, (bytes, bytearray)):
line = bytes(line).decode(errors="replace")
if '"' in line:
parts = line.rsplit('"', 2)
if len(parts) >= 2:
folders.append(parts[-2])
return folders
async def list_message_uids(
accessor: EmailAccessor,
folder: str,
search_criteria: str = "ALL",
max_results: int | None = None,
) -> list[str]:
imap = await accessor.get_imap()
await imap.select(folder)
response = await imap.search(search_criteria, charset=None)
if response.result != "OK" or not response.lines:
return []
raw = response.lines[0]
if isinstance(raw, (bytes, bytearray)):
raw = bytes(raw).decode()
seq_nums = raw.split() if raw.strip() else []
if not seq_nums:
return []
if max_results is not None:
seq_nums = seq_nums[-max_results:]
uids: list[str] = []
batch_size = 50
for i in range(0, len(seq_nums), batch_size):
batch = seq_nums[i:i + batch_size]
seq_set = ",".join(batch)
uid_response = await imap.fetch(seq_set, "(UID)")
for item in uid_response.lines:
if isinstance(item, (bytes, bytearray)):
line = bytes(item).decode(errors="replace")
else:
line = str(item)
if "UID" in line:
try:
uid_idx = line.index("UID") + 4
rest = line[uid_idx:].strip()
uid_val = rest.split(")")[0].split()[0]
uids.append(uid_val)
except (ValueError, IndexError):
pass
return uids
async def fetch_message(
accessor: EmailAccessor,
folder: str,
uid: str,
) -> dict:
imap = await accessor.get_imap()
await imap.select(folder)
response = await imap.uid("fetch", uid, "(RFC822 FLAGS)")
raw_bytes = _extract_body(response)
flags = _extract_flags(response)
msg_dict = parse_rfc822(raw_bytes)
msg_dict["uid"] = uid
msg_dict["flags"] = flags
return msg_dict
async def fetch_headers(
accessor: EmailAccessor,
folder: str,
uids: list[str],
) -> list[dict]:
if not uids:
return []
imap = await accessor.get_imap()
await imap.select(folder)
results: list[dict] = []
batch_size = 25
for i in range(0, len(uids), batch_size):
batch = uids[i:i + batch_size]
uid_set = ",".join(batch)
response = await imap.uid("fetch", uid_set, "(BODY[HEADER] FLAGS UID)")
results.extend(_parse_multi_fetch(response, batch))
return results
async def fetch_attachment(
accessor: EmailAccessor,
folder: str,
uid: str,
filename: str,
) -> bytes | None:
imap = await accessor.get_imap()
await imap.select(folder)
response = await imap.uid("fetch", uid, "(RFC822)")
raw_bytes = _extract_body(response)
attachments = _parse_with_payloads(raw_bytes)
for att in attachments:
if att["filename"] == filename:
return att["payload"]
return None
def _parse_with_payloads(raw: bytes) -> list[dict]:
msg = BytesParser(policy=policy.default).parsebytes(raw)
attachments: list[dict] = []
if msg.is_multipart():
for part in msg.walk():
disposition = str(part.get("Content-Disposition", ""))
if "attachment" in disposition:
payload = part.get_payload(decode=True) or b""
attachments.append({
"filename": part.get_filename() or "unnamed",
"payload": payload,
})
return attachments
def _extract_body(response) -> bytes:
for item in response.lines:
if isinstance(item, (bytearray, )) and len(item) > 20:
return bytes(item)
if isinstance(item, bytes) and len(item) > 100:
return item
return b""
def _extract_flags(response) -> list[str]:
for item in response.lines:
if isinstance(item, (bytes, bytearray)):
line = bytes(item).decode(errors="replace")
else:
line = str(item)
if "FLAGS" in line:
try:
start = line.index("(", line.index("FLAGS")) + 1
end = line.index(")", start)
return line[start:end].split()
except ValueError:
pass
return []
def _parse_multi_fetch(response, uids: list[str]) -> list[dict]:
results: list[dict] = []
current_uid = None
current_flags: list[str] = []
for item in response.lines:
if isinstance(item, (bytes, bytearray)):
line = bytes(item).decode(errors="replace")
else:
line = str(item)
if "FETCH" in line and "UID" in line:
try:
uid_idx = line.index("UID") + 4
uid_end = line.index(
" ", uid_idx) if " " in line[uid_idx:] else len(line)
current_uid = line[uid_idx:uid_end].strip(")")
except (ValueError, IndexError):
pass
if "FLAGS" in line:
current_flags = _extract_flags_from_line(line)
continue
if isinstance(item, (bytearray, )) and len(item) > 20:
raw = bytes(item)
msg_dict = parse_rfc822(raw, headers_only=True)
msg_dict["uid"] = current_uid or (uids[len(results)] if
len(results) < len(uids) else "")
msg_dict["flags"] = current_flags
results.append(msg_dict)
current_uid = None
current_flags = []
return results
def _extract_flags_from_line(line: str) -> list[str]:
try:
start = line.index("(", line.index("FLAGS")) + 1
end = line.index(")", start)
return line[start:end].split()
except ValueError:
return []