File size: 39,461 Bytes
d14f4f3 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 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 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 |
"""
Outlook邮件管理系统 - 主应用模块
基于FastAPI和IMAP协议的高性能邮件管理系统
支持多账户管理、邮件查看、搜索过滤等功能
Author: Outlook Manager Team
Version: 1.0.0
"""
import asyncio
import email
import imaplib
import json
import logging
import re
import socket
import threading
import time
from contextlib import asynccontextmanager
from datetime import datetime
from itertools import groupby
from pathlib import Path
from queue import Empty, Queue
from typing import AsyncGenerator, List, Optional
import httpx
from email.header import decode_header
from email.utils import parsedate_to_datetime
from fastapi import FastAPI, HTTPException, Query
from fastapi.middleware.cors import CORSMiddleware
from fastapi.responses import FileResponse
from fastapi.staticfiles import StaticFiles
from pydantic import BaseModel, EmailStr
# ============================================================================
# 配置常量
# ============================================================================
# 文件路径配置
ACCOUNTS_FILE = "accounts.json"
# OAuth2配置
TOKEN_URL = "https://login.microsoftonline.com/consumers/oauth2/v2.0/token"
OAUTH_SCOPE = "https://outlook.office.com/IMAP.AccessAsUser.All offline_access"
# IMAP服务器配置
IMAP_SERVER = "outlook.live.com"
IMAP_PORT = 993
# 连接池配置
MAX_CONNECTIONS = 5
CONNECTION_TIMEOUT = 30
SOCKET_TIMEOUT = 15
# 缓存配置
CACHE_EXPIRE_TIME = 60 # 缓存过期时间(秒)
# 日志配置
logging.basicConfig(
level=logging.INFO,
format='%(asctime)s - %(name)s - %(levelname)s - %(message)s'
)
logger = logging.getLogger(__name__)
# ============================================================================
# 数据模型 (Pydantic Models)
# ============================================================================
class AccountCredentials(BaseModel):
"""账户凭证模型"""
email: EmailStr
refresh_token: str
client_id: str
class Config:
schema_extra = {
"example": {
"email": "[email protected]",
"refresh_token": "0.AXoA...",
"client_id": "your-client-id"
}
}
class EmailItem(BaseModel):
"""邮件项目模型"""
message_id: str
folder: str
subject: str
from_email: str
date: str
is_read: bool = False
has_attachments: bool = False
sender_initial: str = "?"
class Config:
schema_extra = {
"example": {
"message_id": "INBOX-123",
"folder": "INBOX",
"subject": "Welcome to Augment Code",
"from_email": "[email protected]",
"date": "2024-01-01T12:00:00",
"is_read": False,
"has_attachments": False,
"sender_initial": "A"
}
}
class EmailListResponse(BaseModel):
"""邮件列表响应模型"""
email_id: str
folder_view: str
page: int
page_size: int
total_emails: int
emails: List[EmailItem]
class DualViewEmailResponse(BaseModel):
"""双栏视图邮件响应模型"""
email_id: str
inbox_emails: List[EmailItem]
junk_emails: List[EmailItem]
inbox_total: int
junk_total: int
class EmailDetailsResponse(BaseModel):
"""邮件详情响应模型"""
message_id: str
subject: str
from_email: str
to_email: str
date: str
body_plain: Optional[str] = None
body_html: Optional[str] = None
class AccountResponse(BaseModel):
"""账户操作响应模型"""
email_id: str
message: str
class AccountInfo(BaseModel):
"""账户信息模型"""
email_id: str
client_id: str
status: str = "active"
class AccountListResponse(BaseModel):
"""账户列表响应模型"""
total_accounts: int
accounts: List[AccountInfo]
# ============================================================================
# IMAP连接池管理
# ============================================================================
class IMAPConnectionPool:
"""
IMAP连接池管理器
提供连接复用、自动重连、连接状态监控等功能
优化IMAP连接性能,减少连接建立开销
"""
def __init__(self, max_connections: int = MAX_CONNECTIONS):
"""
初始化连接池
Args:
max_connections: 每个邮箱的最大连接数
"""
self.max_connections = max_connections
self.connections = {} # {email: Queue of connections}
self.connection_count = {} # {email: active connection count}
self.lock = threading.Lock()
logger.info(f"Initialized IMAP connection pool with max_connections={max_connections}")
def _create_connection(self, email: str, access_token: str) -> imaplib.IMAP4_SSL:
"""
创建新的IMAP连接
Args:
email: 邮箱地址
access_token: OAuth2访问令牌
Returns:
IMAP4_SSL: 已认证的IMAP连接
Raises:
Exception: 连接创建失败
"""
try:
# 设置全局socket超时
socket.setdefaulttimeout(SOCKET_TIMEOUT)
# 创建SSL IMAP连接
imap_client = imaplib.IMAP4_SSL(IMAP_SERVER, IMAP_PORT)
# 设置连接超时
imap_client.sock.settimeout(CONNECTION_TIMEOUT)
# XOAUTH2认证
auth_string = f"user={email}\1auth=Bearer {access_token}\1\1".encode('utf-8')
imap_client.authenticate('XOAUTH2', lambda _: auth_string)
logger.info(f"Successfully created IMAP connection for {email}")
return imap_client
except Exception as e:
logger.error(f"Failed to create IMAP connection for {email}: {e}")
raise
def get_connection(self, email: str, access_token: str) -> imaplib.IMAP4_SSL:
"""
获取IMAP连接(从池中复用或创建新连接)
Args:
email: 邮箱地址
access_token: OAuth2访问令牌
Returns:
IMAP4_SSL: 可用的IMAP连接
Raises:
Exception: 无法获取连接
"""
with self.lock:
# 初始化邮箱的连接池
if email not in self.connections:
self.connections[email] = Queue(maxsize=self.max_connections)
self.connection_count[email] = 0
connection_queue = self.connections[email]
# 尝试从池中获取现有连接
try:
connection = connection_queue.get_nowait()
# 测试连接有效性
try:
connection.noop()
logger.debug(f"Reused existing IMAP connection for {email}")
return connection
except Exception:
# 连接已失效,需要创建新连接
logger.debug(f"Existing connection invalid for {email}, creating new one")
self.connection_count[email] -= 1
except Empty:
# 池中没有可用连接
pass
# 检查是否可以创建新连接
if self.connection_count[email] < self.max_connections:
connection = self._create_connection(email, access_token)
self.connection_count[email] += 1
return connection
else:
# 达到最大连接数,等待可用连接
logger.warning(f"Max connections ({self.max_connections}) reached for {email}, waiting...")
try:
return connection_queue.get(timeout=30)
except Exception as e:
logger.error(f"Timeout waiting for connection for {email}: {e}")
raise
def return_connection(self, email: str, connection: imaplib.IMAP4_SSL) -> None:
"""
归还连接到池中
Args:
email: 邮箱地址
connection: 要归还的IMAP连接
"""
if email not in self.connections:
logger.warning(f"Attempting to return connection for unknown email: {email}")
return
try:
# 测试连接状态
connection.noop()
# 连接有效,归还到池中
self.connections[email].put_nowait(connection)
logger.debug(f"Successfully returned IMAP connection for {email}")
except Exception as e:
# 连接已失效,减少计数并丢弃
with self.lock:
if email in self.connection_count:
self.connection_count[email] = max(0, self.connection_count[email] - 1)
logger.debug(f"Discarded invalid connection for {email}: {e}")
def close_all_connections(self, email: str = None) -> None:
"""
关闭所有连接
Args:
email: 指定邮箱地址,如果为None则关闭所有邮箱的连接
"""
with self.lock:
if email:
# 关闭指定邮箱的所有连接
if email in self.connections:
closed_count = 0
while not self.connections[email].empty():
try:
conn = self.connections[email].get_nowait()
conn.logout()
closed_count += 1
except Exception as e:
logger.debug(f"Error closing connection: {e}")
self.connection_count[email] = 0
logger.info(f"Closed {closed_count} connections for {email}")
else:
# 关闭所有邮箱的连接
total_closed = 0
for email_key in list(self.connections.keys()):
count_before = self.connection_count.get(email_key, 0)
self.close_all_connections(email_key)
total_closed += count_before
logger.info(f"Closed total {total_closed} connections for all accounts")
# ============================================================================
# 全局实例和缓存管理
# ============================================================================
# 全局连接池实例
imap_pool = IMAPConnectionPool()
# 内存缓存存储
email_cache = {} # 邮件列表缓存
email_count_cache = {} # 邮件总数缓存,用于检测新邮件
def get_cache_key(email: str, folder: str, page: int, page_size: int) -> str:
"""
生成缓存键
Args:
email: 邮箱地址
folder: 文件夹名称
page: 页码
page_size: 每页大小
Returns:
str: 缓存键
"""
return f"{email}:{folder}:{page}:{page_size}"
def get_cached_emails(cache_key: str, force_refresh: bool = False):
"""
获取缓存的邮件列表
Args:
cache_key: 缓存键
force_refresh: 是否强制刷新缓存
Returns:
缓存的数据或None
"""
if force_refresh:
# 强制刷新,删除现有缓存
if cache_key in email_cache:
del email_cache[cache_key]
logger.debug(f"Force refresh: removed cache for {cache_key}")
return None
if cache_key in email_cache:
cached_data, timestamp = email_cache[cache_key]
if time.time() - timestamp < CACHE_EXPIRE_TIME:
logger.debug(f"Cache hit for {cache_key}")
return cached_data
else:
# 缓存已过期,删除
del email_cache[cache_key]
logger.debug(f"Cache expired for {cache_key}")
return None
def set_cached_emails(cache_key: str, data) -> None:
"""
设置邮件列表缓存
Args:
cache_key: 缓存键
data: 要缓存的数据
"""
email_cache[cache_key] = (data, time.time())
logger.debug(f"Cache set for {cache_key}")
def clear_email_cache(email: str = None) -> None:
"""
清除邮件缓存
Args:
email: 指定邮箱地址,如果为None则清除所有缓存
"""
if email:
# 清除特定邮箱的缓存
keys_to_delete = [key for key in email_cache.keys() if key.startswith(f"{email}:")]
for key in keys_to_delete:
del email_cache[key]
logger.info(f"Cleared cache for {email} ({len(keys_to_delete)} entries)")
else:
# 清除所有缓存
cache_count = len(email_cache)
email_cache.clear()
email_count_cache.clear()
logger.info(f"Cleared all email cache ({cache_count} entries)")
# ============================================================================
# 邮件处理辅助函数
# ============================================================================
def decode_header_value(header_value: str) -> str:
"""
解码邮件头字段
处理各种编码格式的邮件头部信息,如Subject、From等
Args:
header_value: 原始头部值
Returns:
str: 解码后的字符串
"""
if not header_value:
return ""
try:
decoded_parts = decode_header(str(header_value))
decoded_string = ""
for part, charset in decoded_parts:
if isinstance(part, bytes):
try:
# 使用指定编码或默认UTF-8解码
encoding = charset if charset else 'utf-8'
decoded_string += part.decode(encoding, errors='replace')
except (LookupError, UnicodeDecodeError):
# 编码失败时使用UTF-8强制解码
decoded_string += part.decode('utf-8', errors='replace')
else:
decoded_string += str(part)
return decoded_string.strip()
except Exception as e:
logger.warning(f"Failed to decode header value '{header_value}': {e}")
return str(header_value) if header_value else ""
def extract_email_content(email_message: email.message.EmailMessage) -> tuple[str, str]:
"""
提取邮件的纯文本和HTML内容
Args:
email_message: 邮件消息对象
Returns:
tuple[str, str]: (纯文本内容, HTML内容)
"""
body_plain = ""
body_html = ""
try:
if email_message.is_multipart():
# 处理多部分邮件
for part in email_message.walk():
content_type = part.get_content_type()
content_disposition = str(part.get("Content-Disposition", ""))
# 跳过附件
if 'attachment' not in content_disposition.lower():
try:
charset = part.get_content_charset() or 'utf-8'
payload = part.get_payload(decode=True)
if payload:
decoded_content = payload.decode(charset, errors='replace')
if content_type == 'text/plain' and not body_plain:
body_plain = decoded_content
elif content_type == 'text/html' and not body_html:
body_html = decoded_content
except Exception as e:
logger.warning(f"Failed to decode email part ({content_type}): {e}")
else:
# 处理单部分邮件
try:
charset = email_message.get_content_charset() or 'utf-8'
payload = email_message.get_payload(decode=True)
if payload:
content = payload.decode(charset, errors='replace')
content_type = email_message.get_content_type()
if content_type == 'text/plain':
body_plain = content
elif content_type == 'text/html':
body_html = content
else:
# 默认当作纯文本处理
body_plain = content
except Exception as e:
logger.warning(f"Failed to decode single-part email body: {e}")
except Exception as e:
logger.error(f"Error extracting email content: {e}")
return body_plain.strip(), body_html.strip()
# ============================================================================
# 账户凭证管理模块
# ============================================================================
async def get_account_credentials(email_id: str) -> AccountCredentials:
"""
从accounts.json文件获取指定邮箱的账户凭证
Args:
email_id: 邮箱地址
Returns:
AccountCredentials: 账户凭证对象
Raises:
HTTPException: 账户不存在或文件读取失败
"""
try:
# 检查账户文件是否存在
accounts_path = Path(ACCOUNTS_FILE)
if not accounts_path.exists():
logger.warning(f"Accounts file {ACCOUNTS_FILE} not found")
raise HTTPException(status_code=404, detail="No accounts configured")
# 读取账户数据
with open(accounts_path, 'r', encoding='utf-8') as f:
accounts = json.load(f)
# 检查指定邮箱是否存在
if email_id not in accounts:
logger.warning(f"Account {email_id} not found in accounts file")
raise HTTPException(status_code=404, detail=f"Account {email_id} not found")
# 验证账户数据完整性
account_data = accounts[email_id]
required_fields = ['refresh_token', 'client_id']
missing_fields = [field for field in required_fields if not account_data.get(field)]
if missing_fields:
logger.error(f"Account {email_id} missing required fields: {missing_fields}")
raise HTTPException(status_code=500, detail="Account configuration incomplete")
return AccountCredentials(
email=email_id,
refresh_token=account_data['refresh_token'],
client_id=account_data['client_id']
)
except HTTPException:
# 重新抛出HTTP异常
raise
except json.JSONDecodeError as e:
logger.error(f"Invalid JSON in accounts file: {e}")
raise HTTPException(status_code=500, detail="Accounts file format error")
except Exception as e:
logger.error(f"Unexpected error getting account credentials for {email_id}: {e}")
raise HTTPException(status_code=500, detail="Internal server error")
async def save_account_credentials(email_id: str, credentials: AccountCredentials) -> None:
"""保存账户凭证到accounts.json"""
try:
accounts = {}
if Path(ACCOUNTS_FILE).exists():
with open(ACCOUNTS_FILE, 'r', encoding='utf-8') as f:
accounts = json.load(f)
accounts[email_id] = {
'refresh_token': credentials.refresh_token,
'client_id': credentials.client_id
}
with open(ACCOUNTS_FILE, 'w', encoding='utf-8') as f:
json.dump(accounts, f, indent=2, ensure_ascii=False)
logger.info(f"Account credentials saved for {email_id}")
except Exception as e:
logger.error(f"Error saving account credentials: {e}")
raise HTTPException(status_code=500, detail="Failed to save account")
async def get_all_accounts() -> AccountListResponse:
"""获取所有已加载的邮箱账户列表"""
try:
if not Path(ACCOUNTS_FILE).exists():
return AccountListResponse(total_accounts=0, accounts=[])
with open(ACCOUNTS_FILE, 'r', encoding='utf-8') as f:
accounts_data = json.load(f)
accounts = []
for email_id, account_info in accounts_data.items():
# 验证账户状态(可选:检查token是否有效)
status = "active"
try:
# 简单验证:检查必要字段是否存在
if not account_info.get('refresh_token') or not account_info.get('client_id'):
status = "invalid"
except Exception:
status = "error"
accounts.append(AccountInfo(
email_id=email_id,
client_id=account_info.get('client_id', ''),
status=status
))
return AccountListResponse(
total_accounts=len(accounts),
accounts=accounts
)
except json.JSONDecodeError:
logger.error("Failed to parse accounts.json")
raise HTTPException(status_code=500, detail="Failed to read accounts file")
except Exception as e:
logger.error(f"Error getting accounts list: {e}")
raise HTTPException(status_code=500, detail="Internal server error")
# ============================================================================
# OAuth2令牌管理模块
# ============================================================================
async def get_access_token(credentials: AccountCredentials) -> str:
"""
使用refresh_token获取access_token
Args:
credentials: 账户凭证信息
Returns:
str: OAuth2访问令牌
Raises:
HTTPException: 令牌获取失败
"""
# 构建OAuth2请求数据
token_request_data = {
'client_id': credentials.client_id,
'grant_type': 'refresh_token',
'refresh_token': credentials.refresh_token,
'scope': OAUTH_SCOPE
}
try:
# 发送令牌请求
async with httpx.AsyncClient(timeout=30.0) as client:
response = await client.post(TOKEN_URL, data=token_request_data)
response.raise_for_status()
# 解析响应
token_data = response.json()
access_token = token_data.get('access_token')
if not access_token:
logger.error(f"No access token in response for {credentials.email}")
raise HTTPException(
status_code=401,
detail="Failed to obtain access token from response"
)
logger.info(f"Successfully obtained access token for {credentials.email}")
return access_token
except httpx.HTTPStatusError as e:
logger.error(f"HTTP {e.response.status_code} error getting access token for {credentials.email}: {e}")
if e.response.status_code == 400:
raise HTTPException(status_code=401, detail="Invalid refresh token or client credentials")
else:
raise HTTPException(status_code=401, detail="Authentication failed")
except httpx.RequestError as e:
logger.error(f"Request error getting access token for {credentials.email}: {e}")
raise HTTPException(status_code=500, detail="Network error during token acquisition")
except Exception as e:
logger.error(f"Unexpected error getting access token for {credentials.email}: {e}")
raise HTTPException(status_code=500, detail="Token acquisition failed")
# ============================================================================
# IMAP核心服务 - 邮件列表
# ============================================================================
async def list_emails(credentials: AccountCredentials, folder: str, page: int, page_size: int, force_refresh: bool = False) -> EmailListResponse:
"""获取邮件列表 - 优化版本"""
# 检查缓存
cache_key = get_cache_key(credentials.email, folder, page, page_size)
cached_result = get_cached_emails(cache_key, force_refresh)
if cached_result:
return cached_result
access_token = await get_access_token(credentials)
def _sync_list_emails():
imap_client = None
try:
# 从连接池获取连接
imap_client = imap_pool.get_connection(credentials.email, access_token)
all_emails_data = []
# 根据folder参数决定要获取的文件夹
folders_to_check = []
if folder == "inbox":
folders_to_check = ["INBOX"]
elif folder == "junk":
folders_to_check = ["Junk"]
else: # folder == "all"
folders_to_check = ["INBOX", "Junk"]
for folder_name in folders_to_check:
try:
# 选择文件夹
imap_client.select(f'"{folder_name}"', readonly=True)
# 搜索所有邮件
status, messages = imap_client.search(None, "ALL")
if status != 'OK' or not messages or not messages[0]:
continue
message_ids = messages[0].split()
# 按日期排序所需的数据(邮件ID和日期)
# 为了避免获取所有邮件的日期,我们假设ID顺序与日期大致相关
message_ids.reverse() # 通常ID越大越新
for msg_id in message_ids:
all_emails_data.append({
"message_id_raw": msg_id,
"folder": folder_name
})
except Exception as e:
logger.warning(f"Failed to access folder {folder_name}: {e}")
continue
# 对所有文件夹的邮件进行统一分页
total_emails = len(all_emails_data)
start_index = (page - 1) * page_size
end_index = start_index + page_size
paginated_email_meta = all_emails_data[start_index:end_index]
email_items = []
# 按文件夹分组批量获取
paginated_email_meta.sort(key=lambda x: x['folder'])
for folder_name, group in groupby(paginated_email_meta, key=lambda x: x['folder']):
try:
imap_client.select(f'"{folder_name}"', readonly=True)
msg_ids_to_fetch = [item['message_id_raw'] for item in group]
if not msg_ids_to_fetch:
continue
# 批量获取邮件头 - 优化获取字段
msg_id_sequence = b','.join(msg_ids_to_fetch)
# 只获取必要的头部信息,减少数据传输
status, msg_data = imap_client.fetch(msg_id_sequence, '(FLAGS BODY.PEEK[HEADER.FIELDS (SUBJECT DATE FROM MESSAGE-ID)])')
if status != 'OK':
continue
# 解析批量获取的数据
for i in range(0, len(msg_data), 2):
header_data = msg_data[i][1]
# 从返回的原始数据中解析出msg_id
# e.g., b'1 (BODY[HEADER.FIELDS (SUBJECT DATE FROM)] {..}'
match = re.match(rb'(\d+)\s+\(', msg_data[i][0])
if not match:
continue
fetched_msg_id = match.group(1)
msg = email.message_from_bytes(header_data)
subject = decode_header_value(msg.get('Subject', '(No Subject)'))
from_email = decode_header_value(msg.get('From', '(Unknown Sender)'))
date_str = msg.get('Date', '')
try:
date_obj = parsedate_to_datetime(date_str) if date_str else datetime.now()
formatted_date = date_obj.isoformat()
except:
date_obj = datetime.now()
formatted_date = date_obj.isoformat()
message_id = f"{folder_name}-{fetched_msg_id.decode()}"
# 提取发件人首字母
sender_initial = "?"
if from_email:
# 尝试提取邮箱用户名的首字母
email_match = re.search(r'([a-zA-Z])', from_email)
if email_match:
sender_initial = email_match.group(1).upper()
email_item = EmailItem(
message_id=message_id,
folder=folder_name,
subject=subject,
from_email=from_email,
date=formatted_date,
is_read=False, # 简化处理,实际可通过IMAP flags判断
has_attachments=False, # 简化处理,实际需要检查邮件结构
sender_initial=sender_initial
)
email_items.append(email_item)
except Exception as e:
logger.warning(f"Failed to fetch bulk emails from {folder_name}: {e}")
continue
# 按日期重新排序最终结果
email_items.sort(key=lambda x: x.date, reverse=True)
# 归还连接到池中
imap_pool.return_connection(credentials.email, imap_client)
result = EmailListResponse(
email_id=credentials.email,
folder_view=folder,
page=page,
page_size=page_size,
total_emails=total_emails,
emails=email_items
)
# 设置缓存
set_cached_emails(cache_key, result)
return result
except Exception as e:
logger.error(f"Error listing emails: {e}")
if imap_client:
try:
# 如果出错,尝试归还连接或关闭
if hasattr(imap_client, 'state') and imap_client.state != 'LOGOUT':
imap_pool.return_connection(credentials.email, imap_client)
else:
# 连接已断开,从池中移除
pass
except:
pass
raise HTTPException(status_code=500, detail="Failed to retrieve emails")
# 在线程池中运行同步代码
return await asyncio.to_thread(_sync_list_emails)
# ============================================================================
# IMAP核心服务 - 邮件详情
# ============================================================================
async def get_email_details(credentials: AccountCredentials, message_id: str) -> EmailDetailsResponse:
"""获取邮件详细内容 - 优化版本"""
# 解析复合message_id
try:
folder_name, msg_id = message_id.split('-', 1)
except ValueError:
raise HTTPException(status_code=400, detail="Invalid message_id format")
access_token = await get_access_token(credentials)
def _sync_get_email_details():
imap_client = None
try:
# 从连接池获取连接
imap_client = imap_pool.get_connection(credentials.email, access_token)
# 选择正确的文件夹
imap_client.select(folder_name)
# 获取完整邮件内容
status, msg_data = imap_client.fetch(msg_id, '(RFC822)')
if status != 'OK' or not msg_data:
raise HTTPException(status_code=404, detail="Email not found")
# 解析邮件
raw_email = msg_data[0][1]
msg = email.message_from_bytes(raw_email)
# 提取基本信息
subject = decode_header_value(msg.get('Subject', '(No Subject)'))
from_email = decode_header_value(msg.get('From', '(Unknown Sender)'))
to_email = decode_header_value(msg.get('To', '(Unknown Recipient)'))
date_str = msg.get('Date', '')
# 格式化日期
try:
if date_str:
date_obj = parsedate_to_datetime(date_str)
formatted_date = date_obj.isoformat()
else:
formatted_date = datetime.now().isoformat()
except:
formatted_date = datetime.now().isoformat()
# 提取邮件内容
body_plain, body_html = extract_email_content(msg)
# 归还连接到池中
imap_pool.return_connection(credentials.email, imap_client)
return EmailDetailsResponse(
message_id=message_id,
subject=subject,
from_email=from_email,
to_email=to_email,
date=formatted_date,
body_plain=body_plain if body_plain else None,
body_html=body_html if body_html else None
)
except HTTPException:
raise
except Exception as e:
logger.error(f"Error getting email details: {e}")
if imap_client:
try:
# 如果出错,尝试归还连接
if hasattr(imap_client, 'state') and imap_client.state != 'LOGOUT':
imap_pool.return_connection(credentials.email, imap_client)
except:
pass
raise HTTPException(status_code=500, detail="Failed to retrieve email details")
# 在线程池中运行同步代码
return await asyncio.to_thread(_sync_get_email_details)
# ============================================================================
# FastAPI应用和API端点
# ============================================================================
@asynccontextmanager
async def lifespan(_app: FastAPI) -> AsyncGenerator[None, None]:
"""
FastAPI应用生命周期管理
处理应用启动和关闭时的资源管理
"""
# 应用启动
logger.info("Starting Outlook Email Management System...")
logger.info(f"IMAP connection pool initialized with max_connections={MAX_CONNECTIONS}")
yield
# 应用关闭
logger.info("Shutting down Outlook Email Management System...")
logger.info("Closing IMAP connection pool...")
imap_pool.close_all_connections()
logger.info("Application shutdown complete.")
app = FastAPI(
title="Outlook邮件API服务",
description="基于FastAPI和IMAP协议的高性能邮件管理系统",
version="1.0.0",
lifespan=lifespan
)
app.add_middleware(
CORSMiddleware,
allow_origins=["*"],
allow_credentials=True,
allow_methods=["*"],
allow_headers=["*"],
)
# 挂载静态文件服务
app.mount("/static", StaticFiles(directory="static"), name="static")
@app.get("/accounts", response_model=AccountListResponse)
async def get_accounts():
"""获取所有已加载的邮箱账户列表"""
return await get_all_accounts()
@app.post("/accounts", response_model=AccountResponse)
async def register_account(credentials: AccountCredentials):
"""注册或更新邮箱账户"""
try:
# 验证凭证有效性
await get_access_token(credentials)
# 保存凭证
await save_account_credentials(credentials.email, credentials)
return AccountResponse(
email_id=credentials.email,
message="Account verified and saved successfully."
)
except HTTPException:
raise
except Exception as e:
logger.error(f"Error registering account: {e}")
raise HTTPException(status_code=500, detail="Account registration failed")
@app.get("/emails/{email_id}", response_model=EmailListResponse)
async def get_emails(
email_id: str,
folder: str = Query("all", regex="^(inbox|junk|all)$"),
page: int = Query(1, ge=1),
page_size: int = Query(100, ge=1, le=500),
refresh: bool = Query(False, description="强制刷新缓存")
):
"""获取邮件列表"""
credentials = await get_account_credentials(email_id)
print('credentials:' + str(credentials))
return await list_emails(credentials, folder, page, page_size, refresh)
@app.get("/emails/{email_id}/dual-view")
async def get_dual_view_emails(
email_id: str,
inbox_page: int = Query(1, ge=1),
junk_page: int = Query(1, ge=1),
page_size: int = Query(20, ge=1, le=100)
):
"""获取双栏视图邮件(收件箱和垃圾箱)"""
credentials = await get_account_credentials(email_id)
# 并行获取收件箱和垃圾箱邮件
inbox_response = await list_emails(credentials, "inbox", inbox_page, page_size)
junk_response = await list_emails(credentials, "junk", junk_page, page_size)
return DualViewEmailResponse(
email_id=email_id,
inbox_emails=inbox_response.emails,
junk_emails=junk_response.emails,
inbox_total=inbox_response.total_emails,
junk_total=junk_response.total_emails
)
@app.get("/emails/{email_id}/{message_id}", response_model=EmailDetailsResponse)
async def get_email_detail(email_id: str, message_id: str):
"""获取邮件详细内容"""
credentials = await get_account_credentials(email_id)
return await get_email_details(credentials, message_id)
@app.get("/")
async def root():
"""根路径 - 返回前端页面"""
return FileResponse("static/index.html")
@app.delete("/cache/{email_id}")
async def clear_cache(email_id: str):
"""清除指定邮箱的缓存"""
clear_email_cache(email_id)
return {"message": f"Cache cleared for {email_id}"}
@app.delete("/cache")
async def clear_all_cache():
"""清除所有缓存"""
clear_email_cache()
return {"message": "All cache cleared"}
@app.get("/api")
async def api_status():
"""API状态检查"""
return {
"message": "Outlook邮件API服务正在运行",
"version": "1.0.0",
"endpoints": {
"get_accounts": "GET /accounts",
"register_account": "POST /accounts",
"get_emails": "GET /emails/{email_id}?refresh=true",
"get_dual_view_emails": "GET /emails/{email_id}/dual-view",
"get_email_detail": "GET /emails/{email_id}/{message_id}",
"clear_cache": "DELETE /cache/{email_id}",
"clear_all_cache": "DELETE /cache"
}
}
# ============================================================================
# 启动配置
# ============================================================================
if __name__ == "__main__":
import uvicorn
# 启动配置
HOST = "0.0.0.0"
PORT = 8000
logger.info(f"Starting Outlook Email Management System on {HOST}:{PORT}")
logger.info("Access the web interface at: http://localhost:8000")
logger.info("Access the API documentation at: http://localhost:8000/docs")
uvicorn.run(
app,
host=HOST,
port=PORT,
log_level="info",
access_log=True
) |