import os import pymysql import requests import json import re import threading import urllib3 import fitz # PyMuPDF import base64 import hashlib from io import BytesIO from PIL import Image, ImageDraw, ImageFont from flask import Flask, render_template, request, redirect, url_for, session, flash, jsonify, Response, stream_with_context, send_file from werkzeug.utils import secure_filename from oss_utils import upload_to_oss from ocr_utils import extract_page_number import time from datetime import datetime # Suppress InsecureRequestWarning urllib3.disable_warnings(urllib3.exceptions.InsecureRequestWarning) # 静态资源目录使用绝对路径,避免服务器工作目录不同导致找不到文件 _BASE_DIR = os.path.dirname(os.path.abspath(__file__)) _STATIC_DIR = os.path.join(_BASE_DIR, 'static') _HOME_IMAGES_DIR = os.path.join(_STATIC_DIR, 'images', 'home') _HOME_FONTS_DIR = os.path.join(_STATIC_DIR, 'fonts', 'home') app = Flask(__name__, static_folder=_STATIC_DIR, static_url_path='/manager/static') app.secret_key = 'genealogy_secret_key' app.config['UPLOAD_FOLDER'] = 'uploads' os.makedirs(app.config['UPLOAD_FOLDER'], exist_ok=True) os.makedirs(_HOME_IMAGES_DIR, exist_ok=True) os.makedirs(_HOME_FONTS_DIR, exist_ok=True) @app.context_processor def inject_home_assets(): """首页静态资源 URL 助手,统一走 /manager/static/ 前缀。""" prefix = app.static_url_path.rstrip('/') def home_img(filename): return f"{prefix}/images/home/{filename}" def home_font(filename): return f"{prefix}/fonts/home/{filename}" return dict(home_img=home_img, home_font=home_font, static_prefix=prefix) # 数据库配置 DB_CONFIG = { "host": "rm-f8ze60yirdj8786u2wo.mysql.rds.aliyuncs.com", "port": 3306, "user": "root", "password": "csqz@20255", "db": "csqz-client", "charset": "utf8mb4", "cursorclass": pymysql.cursors.DictCursor } # 微信小程序配置 WECHAT_APP_ID = "wx98f5cf1c60f793b8" WECHAT_APP_SECRET = "3d34d5be301f893fe86349122deada65" # Access Token 缓存 access_token = None access_token_expire_time = 0 access_token_lock = threading.Lock() # 图片扩展名列表 IMAGE_EXTENSIONS = {'.jpg', '.jpeg', '.png', '.gif', '.bmp', '.webp', '.tiff'} # ── 水印配置 ────────────────────────────────────────────── WM_CACHE_DIR = '/tmp/wm_cache' WM_CACHE_TTL = 7 * 24 * 3600 # 7天(秒) WM_TEXT_LINES = [ '族谱资料 未经纸质原件持有人授权', '禁止任何形式复制、传播', ] WM_ALPHA = 180 # 0-255,70% 不透明 WM_ANGLE = 30 # 斜放角度(度) WM_COLOR = (150, 0, 0) WM_FONT_SIZE_RATIO = 52 # font_size = min(W,H) // ratio WM_FONT_PATHS = [ # 按优先级尝试(项目内字体优先,跨平台通用) os.path.join(os.path.dirname(__file__), 'static', 'fonts', 'wqy-microhei.ttc'), '/System/Library/Fonts/STHeiti Medium.ttc', # macOS '/System/Library/Fonts/STHeiti Light.ttc', # macOS '/System/Library/Fonts/PingFang.ttc', # macOS '/usr/share/fonts/truetype/wqy/wqy-microhei.ttc', # Linux (apt) '/usr/share/fonts/truetype/wqy/wqy-zenhei.ttc', # Linux (apt) '/usr/share/fonts/wqy-microhei/wqy-microhei.ttc', # Linux (yum) ] os.makedirs(WM_CACHE_DIR, exist_ok=True) _wm_font_cache = {} def _get_wm_font(size): if size in _wm_font_cache: return _wm_font_cache[size] font = None for fp in WM_FONT_PATHS: if os.path.exists(fp): try: font = ImageFont.truetype(fp, size) break except Exception: continue if font is None: font = ImageFont.load_default() _wm_font_cache[size] = font return font def _apply_pillow_watermark(img_bytes): """对图片二进制数据叠加平铺水印,返回 JPEG 字节。""" orig = Image.open(BytesIO(img_bytes)).convert('RGBA') W, H = orig.size font_size = max(14, min(W, H) // WM_FONT_SIZE_RATIO) font = _get_wm_font(font_size) color_with_alpha = WM_COLOR + (WM_ALPHA,) # 测量文字尺寸 dummy = Image.new('RGBA', (1, 1)) dd = ImageDraw.Draw(dummy) bboxes = [dd.textbbox((0, 0), t, font=font) for t in WM_TEXT_LINES] tw = max(b[2] - b[0] for b in bboxes) + 40 line_h = max(b[3] - b[1] for b in bboxes) th = line_h * len(WM_TEXT_LINES) + 30 # 绘制单块水印贴片 tile = Image.new('RGBA', (tw, th), (0, 0, 0, 0)) td = ImageDraw.Draw(tile) for i, line in enumerate(WM_TEXT_LINES): td.text((20, 10 + i * (line_h + 8)), line, font=font, fill=color_with_alpha) rotated = tile.rotate(WM_ANGLE, expand=True) rw, rh = rotated.size # 交错平铺到与原图等大的水印层 wm_layer = Image.new('RGBA', (W, H), (0, 0, 0, 0)) step_x = rw + max(10, W // 18) step_y = rh + max(8, H // 22) row = 0 for py in range(-rh, H + rh, step_y): ox = (row % 2) * (step_x // 2) for px in range(-rw + ox, W + rw, step_x): wm_layer.paste(rotated, (px, py), rotated) row += 1 result = Image.alpha_composite(orig, wm_layer).convert('RGB') buf = BytesIO() result.save(buf, format='JPEG', quality=88) return buf.getvalue() def _wm_cache_path(oss_url): key = hashlib.sha256(oss_url.encode()).hexdigest() return os.path.join(WM_CACHE_DIR, key + '.jpg') def _add_dynamic_watermark(img_bytes, username, dt_str): """ 在静态平铺水印基础上,叠加 1-2 个动态水印(当前用户名 + 查看时间)。 位置:左上角、右下角,横排,不旋转,半透明深红色。 """ img = Image.open(BytesIO(img_bytes)).convert('RGBA') W, H = img.size dyn_font_size = max(12, min(W, H) // 60) dyn_font = _get_wm_font(dyn_font_size) dyn_color = (150, 0, 0, 160) # 深红,62% 不透明 dyn_text = f'{username} {dt_str}' overlay = Image.new('RGBA', (W, H), (0, 0, 0, 0)) od = ImageDraw.Draw(overlay) # 测量文字宽高 bbox = od.textbbox((0, 0), dyn_text, font=dyn_font) tw = bbox[2] - bbox[0] th = bbox[3] - bbox[1] pad = max(8, dyn_font_size // 2) # 位置1:左上角 od.text((pad, pad), dyn_text, font=dyn_font, fill=dyn_color) # 位置2:右下角 od.text((W - tw - pad, H - th - pad), dyn_text, font=dyn_font, fill=dyn_color) result = Image.alpha_composite(img, overlay).convert('RGB') buf = BytesIO() result.save(buf, format='JPEG', quality=88) return buf.getvalue() def add_oss_watermark(url, username=None): """ 将图片 URL 替换为本地水印代理 URL(展示层使用,数据库原链接不受影响)。 非图片格式直接返回原 URL。 """ if not url: return url lower_url = url.lower().split('?')[0] is_image = any(lower_url.endswith(ext) for ext in IMAGE_EXTENSIONS) if not is_image: return url encoded = base64.urlsafe_b64encode(url.encode()).decode().rstrip('=') return f'/manager/image/wm?u={encoded}' def get_wechat_access_token(): """获取微信小程序access_token,带缓存和线程安全""" global access_token, access_token_expire_time with access_token_lock: # 检查缓存是否有效(提前1小时刷新) now = time.time() if access_token and access_token_expire_time > now + 3600: return access_token # 需要获取新的access_token url = "https://api.weixin.qq.com/cgi-bin/token" params = { "grant_type": "client_credential", "appid": WECHAT_APP_ID, "secret": WECHAT_APP_SECRET } try: response = requests.get(url, params=params, timeout=30) data = response.json() if 'access_token' in data: access_token = data['access_token'] expires_in = data.get('expires_in', 7200) access_token_expire_time = now + expires_in print(f"[WeChat API] Access token obtained, expires in {expires_in} seconds") return access_token else: print(f"[WeChat API] Failed to get access_token: {data}") return None except Exception as e: print(f"[WeChat API] Error getting access_token: {e}") return None def decrypt_wechat_phone(encrypted_data, iv, session_key): """解密微信手机号(需要使用官方解密库)""" try: from cryptography.hazmat.primitives.ciphers import Cipher, algorithms, modes from cryptography.hazmat.backends import default_backend import base64 # AES解密 session_key = base64.b64decode(session_key) encrypted_data = base64.b64decode(encrypted_data) iv = base64.b64decode(iv) cipher = Cipher(algorithms.AES(session_key), modes.CBC(iv), backend=default_backend()) decryptor = cipher.decryptor() decrypted = decryptor.update(encrypted_data) + decryptor.finalize() # PKCS7 padding去除 padding = ord(decrypted[-1:]) decrypted = decrypted[:-padding] return json.loads(decrypted.decode('utf-8')) except Exception as e: print(f"[WeChat Decrypt] Error decrypting phone: {e}") return None from PIL import Image def compress_image_if_needed(file_path, max_dim=2000): """Compress, resize and normalize image to JPEG for AI processing.""" try: # We always want to normalize to JPEG so AI doesn't complain about format with Image.open(file_path) as img: # Convert RGBA/P or any other mode to RGB for JPEG saving if img.mode != 'RGB': img = img.convert('RGB') width, height = img.size if max(width, height) > max_dim: ratio = max_dim / max(width, height) new_size = (int(width * ratio), int(height * ratio)) img = img.resize(new_size, Image.Resampling.LANCZOS) # Always save as JPEG to normalize the format new_path = os.path.splitext(file_path)[0] + '_normalized.jpg' img.save(new_path, 'JPEG', quality=85) return new_path except Exception as e: print(f"Warning: Image compression/normalization failed for {file_path}: {e}") return file_path REFERENCE_IMAGE_EXTENSIONS = {'.jpg', '.jpeg', '.png', '.gif', '.webp', '.bmp'} def save_reference_image_to_oss(file, member_id=None): """Upload a reference document image to OSS. Returns (oss_url, file_name).""" import uuid if not file or not file.filename: raise ValueError('未选择文件') ext = os.path.splitext(file.filename)[1].lower() if ext not in REFERENCE_IMAGE_EXTENSIONS: raise ValueError('仅支持 JPG、PNG、GIF、WEBP 格式的图片') timestamp = int(time.time()) if member_id: custom_filename = f"参考件_{member_id}_{timestamp}{ext}" else: custom_filename = f"参考件_temp_{uuid.uuid4().hex[:8]}_{timestamp}{ext}" filename = secure_filename(custom_filename) if not filename or not os.path.splitext(filename)[1]: filename = f"reference_{uuid.uuid4().hex[:8]}{ext}" file_path = os.path.join(app.config['UPLOAD_FOLDER'], filename) file.save(file_path) try: upload_path = compress_image_if_needed(file_path) oss_url = upload_to_oss(upload_path, custom_filename=filename) if not oss_url: raise ValueError('上传到 OSS 失败') return oss_url, filename finally: for path in {file_path, os.path.splitext(file_path)[0] + '_normalized.jpg'}: if path and os.path.exists(path): try: os.remove(path) except OSError: pass def apply_reference_from_form(data, form, session, is_update=False): """Apply reference document fields from form submission.""" delete_reference = form.get('delete_reference') == '1' reference_oss_url = (form.get('reference_oss_url') or '').strip() reference_file_name = (form.get('reference_file_name') or '').strip() if delete_reference: data['reference_oss_url'] = None data['reference_file_name'] = None data['reference_upload_time'] = None data['reference_upload_uid'] = None elif reference_oss_url: data['reference_oss_url'] = reference_oss_url data['reference_file_name'] = reference_file_name or None data['reference_upload_time'] = datetime.now() data['reference_upload_uid'] = session['user_id'] elif not is_update: data['reference_oss_url'] = None data['reference_file_name'] = None data['reference_upload_time'] = None data['reference_upload_uid'] = None return data INVALID_SOURCE_RECORD_ID = 1 # 历史占位值,表示未关联扫描件 def normalize_source_record_id(source_record_id): """source_record_id=1 视为未关联扫描件。""" if source_record_id is None or source_record_id == '': return None try: val = int(source_record_id) except (TypeError, ValueError): return source_record_id return None if val == INVALID_SOURCE_RECORD_ID else val def clear_invalid_member_scan_fields(member): """清除因 source_record_id=1 误关联的扫描件展示字段。""" if not member: return member if normalize_source_record_id(member.get('source_record_id')) is None: member['source_record_id'] = None for field in ('source_image_url', 'source_page', 'genealogy_version', 'genealogy_source', 'upload_person'): member[field] = None return member # 尝试使用数据库连接池,如果不可用则使用普通连接 try: try: from dbutils.pooled_db import PooledDB # dbutils >= 2.0(新包名) except ImportError: from DBUtils.PooledDB import PooledDB # DBUtils <= 1.x(旧包名) # 创建连接池 pool = PooledDB( creator=pymysql, maxconnections=10, # 连接池最大连接数 mincached=2, # 初始化时创建的空闲连接数 maxcached=5, # 最大空闲连接数 maxshared=3, # 最大共享连接数 blocking=True, # 连接池满时是否阻塞等待 maxusage=1000, # 一个连接最多被重复使用的次数,防止连接长时间使用失效 setsession=[], # 开始会话前执行的命令列表 ping=1, # 每次获取连接时都检查连接是否可用 **DB_CONFIG ) def get_db_connection(): conn = pool.connection() print(f"[Database] Got connection from pool: {id(conn)}") return conn print("[Database] Database connection pool initialized successfully") except ImportError: # 如果DBUtils不可用,使用普通连接 def get_db_connection(): conn = pymysql.connect(**DB_CONFIG) print(f"[Database] Created new connection: {id(conn)}") return conn print("[Database] DBUtils not available, using regular database connections") def get_mp_user_from_token(token): """通过 token 获取小程序用户信息,返回 mp_users 行或 None""" if not token: return None conn = get_db_connection() try: with conn.cursor() as cursor: cursor.execute("SELECT id, openid, phone FROM mp_users WHERE token = %s", (token,)) return cursor.fetchone() except Exception: return None finally: conn.close() def verify_connection(conn): """Verify database connection is still alive""" try: cursor = conn.cursor() cursor.execute("SELECT 1") cursor.fetchone() cursor.close() return True except Exception as e: print(f"[Database] Connection verification failed: {e}") return False def safe_commit(conn): """Safely commit transaction with error handling""" try: conn.commit() print(f"[Database] Transaction committed successfully") return True except Exception as e: print(f"[Database] Commit failed: {e}") try: conn.rollback() print(f"[Database] Rollback completed") except Exception as rollback_err: print(f"[Database] Rollback also failed: {rollback_err}") return False def format_timestamp(ts): if not ts: return '未知' try: # 兼容秒和毫秒 if ts > 10000000000: # 超过2286年的秒数,通常认为是毫秒 ts = ts / 1000 return time.strftime('%Y-%m-%d', time.localtime(ts)) except: return '未知' def manual_simplify(text): """ Simple fallback for common Traditional to Simplified conversion if AI fails to convert specific characters. """ if not text: return text mapping = { '學': '学', '國': '国', '萬': '万', '寶': '宝', '興': '兴', '華': '华', '會': '会', '葉': '叶', '藝': '艺', '號': '号', '處': '处', '見': '见', '視': '视', '言': '言', '語': '语', '貝': '贝', '車': '车', '長': '长', '門': '门', '韋': '韦', '頁': '页', '風': '风', '飛': '飞', '食': '食', '馬': '马', '魚': '鱼', '鳥': '鸟', '麥': '麦', '黃': '黄', '齊': '齐', '齒': '齿', '龍': '龙', '龜': '龟', '壽': '寿', '榮': '荣', '愛': '爱', '慶': '庆', '衛': '卫', '賢': '贤', '義': '义', '禮': '礼', '樂': '乐', '靈': '灵', '滅': '灭', '氣': '气', '智': '智', '信': '信', '仁': '仁', '勇': '勇', '嚴': '严', '銳': '锐', '優': '优', '楊': '杨', '吳': '吴', '銀': '银' } result = "" for char in text: result += mapping.get(char, char) return result def convert_to_simplified(text): """繁体转简体,优先使用 zhconv 库,失败则降级到 manual_simplify""" if not text: return text try: import zhconv return zhconv.convert(text, 'zh-hans') except Exception: return manual_simplify(text) def _build_reverse_simplify_map(): """ Build a reverse map from simplified char -> list of traditional chars based on the fallback manual_simplify mapping. """ mapping = { '學': '学', '國': '国', '萬': '万', '寶': '宝', '興': '兴', '華': '华', '會': '会', '葉': '叶', '藝': '艺', '號': '号', '處': '处', '見': '见', '視': '视', '言': '言', '語': '语', '貝': '贝', '車': '车', '長': '长', '門': '门', '韋': '韦', '頁': '页', '風': '风', '飛': '飞', '食': '食', '馬': '马', '魚': '鱼', '鳥': '鸟', '麥': '麦', '黃': '黄', '齊': '齐', '齒': '齿', '龍': '龙', '龜': '龟', '壽': '寿', '榮': '荣', '愛': '爱', '慶': '庆', '衛': '卫', '賢': '贤', '義': '义', '禮': '礼', '樂': '乐', '靈': '灵', '滅': '灭', '氣': '气', '智': '智', '信': '信', '仁': '仁', '勇': '勇', '嚴': '严', '銳': '锐', '優': '优', '楊': '杨', '吳': '吴', '銀': '银' } rev = {} for trad, simp in mapping.items(): rev.setdefault(simp, []) if trad not in rev[simp]: rev[simp].append(trad) return rev _REVERSE_SIMPLIFY_MAP = _build_reverse_simplify_map() def expand_name_search_variants(keyword, max_variants=60): """ Expand keyword into a small set of variants so Simplified/Traditional searches can match both `name` and `simplified_name`. - Always includes original keyword - Includes fallback-trad->simp conversion - Includes best-effort simp->trad expansions based on reverse map """ if not keyword: return [] kw = str(keyword).strip() if not kw: return [] variants = set([kw]) variants.add(manual_simplify(kw)) # Build possible traditional variants when the input is simplified. # For each char, if we have traditional candidates, branch; otherwise keep itself. choices = [] for ch in kw: cand = _REVERSE_SIMPLIFY_MAP.get(ch) if cand: # include itself too (covers already-traditional or neutral chars) choices.append([ch] + cand) else: choices.append([ch]) # Cartesian product with early stop. results = [''] for opts in choices: new_results = [] for prefix in results: for opt in opts: new_results.append(prefix + opt) if len(new_results) >= max_variants: break if len(new_results) >= max_variants: break results = new_results if len(results) >= max_variants: break for r in results: if r: variants.add(r) variants.add(manual_simplify(r)) # Keep deterministic order for stable SQL params ordered = [] for v in variants: v2 = (v or '').strip() if v2 and v2 not in ordered: ordered.append(v2) if len(ordered) >= max_variants: break return ordered def clean_name(name): """ Clean name according to Liu family genealogy rules: 1. If name is '学公' or '留学公', keep 'Gong' (exception). 2. Otherwise, if name ends with '公', remove '公'. 3. If name does not start with '留', prepend '留'. """ if not name: return name name = name.strip() # Pre-process: Ensure Simplified Chinese for specific chars name = manual_simplify(name) # 1. Check exceptions (names that SHOULD keep 'Gong') exceptions = ['学公', '留学公'] if name in exceptions: if not name.startswith('留'): name = '留' + name return name # 2. General Rule: Remove 'Gong' suffix if name.endswith('公'): name = name[:-1] # 3. Ensure 'Liu' surname if not name.startswith('留'): name = '留' + name return name def is_female_value(sex_value): """Return True when sex value represents female.""" if sex_value is None: return False s = str(sex_value).strip().lower() return s in ('女', '2', 'female', 'f') def normalize_lookup_name(name): """Normalize names for loose matching in AI parsed content.""" if not name: return '' return manual_simplify(str(name)).strip() def should_skip_liu_prefix_for_person(person, spouse_name_set): """ Female spouse records should not auto-prepend '留' in simplified_name. We treat a person as female spouse if: 1) sex is female, and 2) has spouse_name field OR appears in another person's spouse_name list. """ if not isinstance(person, dict): return False if not is_female_value(person.get('sex')): return False own_names = set() own_names.add(normalize_lookup_name(person.get('name'))) own_names.add(normalize_lookup_name(person.get('original_name'))) own_names.discard('') has_spouse_name = bool(normalize_lookup_name(person.get('spouse_name'))) referenced_by_other = any(n in spouse_name_set for n in own_names) return has_spouse_name or referenced_by_other def get_normalized_base64_image(image_url): """Download image, normalize to JPEG, and return base64 data URI for AI payload.""" import io import base64 import requests from PIL import Image try: response = requests.get(image_url, timeout=30) response.raise_for_status() with Image.open(io.BytesIO(response.content)) as img: # Convert to RGB to ensure JPEG compatibility if img.mode != 'RGB': img = img.convert('RGB') # Resize if too large max_dim = 2000 if max(img.width, img.height) > max_dim: ratio = max_dim / max(img.width, img.height) new_size = (int(img.width * ratio), int(img.height * ratio)) img = img.resize(new_size, Image.Resampling.LANCZOS) # Save as JPEG in memory buffer = io.BytesIO() img.save(buffer, format='JPEG', quality=85) b64_str = base64.b64encode(buffer.getvalue()).decode('utf-8') return f"data:image/jpeg;base64,{b64_str}" except Exception as e: print(f"Error normalizing image from {image_url}: {e}") return image_url # Fallback to original URL if processing fails def process_ai_task(record_id, image_url): """Background task to process image with AI and store result.""" print(f"[AI Task] Starting task for record {record_id}...") conn = get_db_connection() try: with conn.cursor() as cursor: cursor.execute("UPDATE genealogy_records SET ai_status = 1 WHERE id = %s", (record_id,)) conn.commit() print(f"[AI Task] Status updated to 'Processing' for record {record_id}") api_key = "a1800657-9212-4afe-9b7c-b49f015c54d3" api_url = "https://ark.cn-beijing.volces.com/api/v3/responses" prompt = """ 请分析这张家谱图片,提取其中关于人物的信息。 请务必将繁体字转换为简体字(original_name 字段除外)。 特别注意:'name' 字段必须是纯简体中文,不能包含繁体字(例如:'學'应转换为'学','劉'应转换为'刘','萬'应转换为'万')。 请提取以下字段(如果存在): - original_name: 原始姓名(严格保持图片上的繁体字,不做任何修改或转换) - name: 简体姓名(必须转换为简体中文,去除不需要的敬称) - sex: 性别(男/女) - birthday: 出生日期(尝试转换为YYYY-MM-DD格式,如果无法确定年份可只填月日) - death_date: 逝世日期(如文本中出现“殁”、“葬”、“卒”等字眼及其对应的时间,请提取) - father_name: 父亲姓名 - spouse_name: 配偶姓名 - generation: 第几世/代数 - name_word: 字辈(例如名字为“学勤公”,“学”为字辈;提取名字中的字辈信息) - education: 学历/功名 - title: 官职/称号 请严格以JSON列表格式返回,不要包含Markdown代码块标记(如 ```json ... ```),直接返回JSON数组。 如果包含多个人物,请都提取出来。 Do not output any reasoning or explanation, just the JSON. """ ai_payload_url = get_normalized_base64_image(image_url) payload = { "model": "doubao-seed-1-8-251228", "stream": True, # Streaming for robust handling "input": [ { "role": "user", "content": [ {"type": "input_image", "image_url": ai_payload_url}, {"type": "input_text", "text": prompt} ] } ] } headers = { "Authorization": f"Bearer {api_key}", "Content-Type": "application/json" } max_retries = 3 last_exception = None for attempt in range(max_retries): try: print(f"[AI Task] Attempt {attempt+1}/{max_retries} connecting to API for record {record_id}...") response = requests.post( api_url, json=payload, headers=headers, timeout=1200, stream=True, verify=False, proxies={"http": None, "https": None} ) if response.status_code == 200: print(f"[AI Task] Connection established for record {record_id}, receiving stream...") full_content = "" for line in response.iter_lines(): if not line: continue line_str = line.decode('utf-8') # Debug: Print full line to understand event flow print(f"[AI Task Debug] Raw Line: {line_str[:500]}") # Truncate very long lines if line_str.startswith('data: '): json_str = line_str[6:] if json_str.strip() == '[DONE]': print("[AI Task Debug] Received [DONE]") break try: chunk = json.loads(json_str) chunk_type = chunk.get('type') # Standard OpenAI format (choices) if 'choices' in chunk and len(chunk['choices']) > 0: delta = chunk['choices'][0].get('delta', {}) if 'content' in delta: full_content += delta['content'] # Doubao/Volcengine specific formats (delta) elif chunk_type == 'response.text.delta': full_content += chunk.get('delta', '') # Check response.completed if empty elif chunk_type == 'response.completed' and not full_content: output = chunk.get('response', {}).get('output', []) for item in output: # Also extract from reasoning if it contains JSON-like text if item.get('type') == 'reasoning': summary = item.get('summary', []) for sum_item in summary: if sum_item.get('type') == 'summary_text': full_content += sum_item.get('text', '') elif item.get('type') == 'message': content = item.get('content') if isinstance(content, str): full_content += content elif isinstance(content, list): for part in content: if isinstance(part, dict) and part.get('type') == 'text': full_content += part.get('text', '') # Fallback: output_item.added elif chunk_type == 'response.output_item.added': item = chunk.get('item', {}) if item.get('role') == 'assistant': content_field = item.get('content', []) if isinstance(content_field, str): full_content += content_field elif isinstance(content_field, list): for part in content_field: if isinstance(part, dict) and part.get('type') == 'text': full_content += part.get('text', '') except Exception as e: print(f"[AI Task] Chunk parse error: {e}") else: # Fallback for non-SSE try: chunk = json.loads(line_str) if 'choices' in chunk and len(chunk['choices']) > 0: content = chunk['choices'][0]['message']['content'] full_content += content except: pass print(f"[AI Task] Stream finished. Content length: {len(full_content)}") if len(full_content) == 0: print(f"[AI Task] WARNING: No content received from AI stream.") # Continue to JSON parse to fail gracefully # Clean JSON try: # 1. Try finding [...] array start = full_content.find('[') end = full_content.rfind(']') # 2. If not found, try finding {...} object and wrap it is_single_object = False if start == -1 or end == -1 or end <= start: start = full_content.find('{') end = full_content.rfind('}') is_single_object = True if start != -1 and end != -1 and end > start: content_clean = full_content[start:end+1] else: # Fallback to regex or raw content_clean = re.sub(r'^```json\s*', '', full_content) content_clean = re.sub(r'```$', '', content_clean) parsed = json.loads(content_clean) # Normalize single object to list if is_single_object and isinstance(parsed, dict): parsed = [parsed] content_clean = json.dumps(parsed, ensure_ascii=False) elif isinstance(parsed, dict) and not isinstance(parsed, list): # Just in case json.loads parsed a dict even if we looked for [] parsed = [parsed] content_clean = json.dumps(parsed, ensure_ascii=False) # Build spouse name lookup for "female spouse" detection spouse_name_set = set() if isinstance(parsed, list): for person in parsed: n = normalize_lookup_name(person.get('spouse_name')) if n: spouse_name_set.add(n) # Clean names in parsed content if isinstance(parsed, list): for person in parsed: # Process Name: 'name' is Simplified from AI, 'original_name' is Traditional/Raw from AI simplified_name = person.get('name', '') or person.get('original_name', '') original_name = person.get('original_name', '') # Female spouse: only simplify Chinese, do NOT prepend '留' if should_skip_liu_prefix_for_person(person, spouse_name_set): cleaned_simplified = manual_simplify(simplified_name) else: # Same-clan default: prepend '留' and handle trailing '公' cleaned_simplified = clean_name(simplified_name) person['simplified_name'] = cleaned_simplified # Store raw name in 'name' field (as requested) if original_name: person['name'] = original_name else: # Fallback: if no original_name returned, use the uncleaned name as 'name' # or keep existing logic. But user wants raw in 'name'. # If AI didn't return original_name, 'name' is likely simplified. pass # Keep 'name' as is (which is Simplified) if original_name missing # Father name:同族,需要按“留”姓规则清洗 if 'father_name' in person and person['father_name']: person['father_name'] = clean_name(person['father_name']) # Spouse name:只做繁转简,不拼接“留”姓,也不去“公” if 'spouse_name' in person and person['spouse_name']: person['spouse_name'] = manual_simplify(person['spouse_name']) # Re-serialize content_clean = json.dumps(parsed, ensure_ascii=False) with conn.cursor() as cursor: cursor.execute("UPDATE genealogy_records SET ai_status = 2, ai_content = %s WHERE id = %s", (content_clean, record_id)) conn.commit() print(f"[AI Task] SUCCESS: Record {record_id} processed and saved.") return # Success except json.JSONDecodeError as err: raise Exception(f"JSON Parse Error: {str(err)}. Raw: {full_content}") else: raise Exception(f"API Error {response.status_code}: {response.text}") except Exception as e: print(f"[AI Task] Attempt {attempt+1} failed for record {record_id}: {e}") last_exception = e if attempt < max_retries - 1: wait_time = 2 * (attempt + 1) print(f"[AI Task] Waiting {wait_time}s before retry...") time.sleep(wait_time) raise last_exception or Exception("Unknown error") except Exception as e: print(f"[AI Task] FINAL FAILURE for record {record_id}: {e}") try: with conn.cursor() as cursor: cursor.execute("UPDATE genealogy_records SET ai_status = 3, ai_content = %s WHERE id = %s", (f"Max Retries Exceeded. Error: {str(e)}", record_id)) conn.commit() except: pass finally: conn.close() print(f"[AI Task] Task finished for record {record_id}") def ensure_pdf_table(): conn = get_db_connection() try: with conn.cursor() as cursor: cursor.execute(""" CREATE TABLE IF NOT EXISTS genealogy_pdfs ( id INT AUTO_INCREMENT PRIMARY KEY, file_name VARCHAR(255) NOT NULL, oss_url TEXT NOT NULL, description VARCHAR(500) DEFAULT '', upload_time TIMESTAMP DEFAULT CURRENT_TIMESTAMP, uploader VARCHAR(100) DEFAULT '', version_name VARCHAR(255) DEFAULT '', version_source VARCHAR(255) DEFAULT '', file_provider VARCHAR(100) DEFAULT '', parse_status INT DEFAULT 0 ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 """) # 检查是否存在parse_status字段,如果不存在则添加 cursor.execute("SHOW COLUMNS FROM genealogy_pdfs LIKE 'parse_status'") if not cursor.fetchone(): cursor.execute("ALTER TABLE genealogy_pdfs ADD COLUMN parse_status INT DEFAULT 0") # 检查是否存在version_name字段,如果不存在则添加 cursor.execute("SHOW COLUMNS FROM genealogy_pdfs LIKE 'version_name'") if not cursor.fetchone(): cursor.execute("ALTER TABLE genealogy_pdfs ADD COLUMN version_name VARCHAR(255) DEFAULT ''") # 检查是否存在version_source字段,如果不存在则添加 cursor.execute("SHOW COLUMNS FROM genealogy_pdfs LIKE 'version_source'") if not cursor.fetchone(): cursor.execute("ALTER TABLE genealogy_pdfs ADD COLUMN version_source VARCHAR(255) DEFAULT ''") # 检查是否存在file_provider字段,如果不存在则添加 cursor.execute("SHOW COLUMNS FROM genealogy_pdfs LIKE 'file_provider'") if not cursor.fetchone(): cursor.execute("ALTER TABLE genealogy_pdfs ADD COLUMN file_provider VARCHAR(100) DEFAULT ''") conn.commit() finally: conn.close() @app.route('/manager/image/wm') def image_watermark_proxy(): """ 图片水印代理:下载 OSS 原图,叠加 Pillow 平铺水印后返回给浏览器。 原数据库中的 oss_url 字段保持不变,水印仅在展示层生效。 query param: u = base64url(oss_url) """ if 'user_id' not in session: return '', 401 u_param = request.args.get('u', '') if not u_param: return '', 400 # 还原原始 OSS URL try: padding = 4 - len(u_param) % 4 oss_url = base64.urlsafe_b64decode(u_param + '=' * (padding % 4)).decode() except Exception: return '', 400 # 安全校验:只允许代理已知域名的图片 allowed_hosts = ('file.chunsunqiuzhu.com', 'chunsunqiuzhu.com') from urllib.parse import urlparse parsed = urlparse(oss_url) if not any(parsed.netloc.endswith(h) for h in allowed_hosts): return '', 403 cache_path = _wm_cache_path(oss_url) # 阶段1:获取静态平铺水印(优先从磁盘缓存读取) static_bytes = None if os.path.exists(cache_path): age = time.time() - os.path.getmtime(cache_path) if age < WM_CACHE_TTL: try: with open(cache_path, 'rb') as f: static_bytes = f.read() except Exception: static_bytes = None if static_bytes is None: # 下载原图 try: resp = requests.get(oss_url, timeout=30) resp.raise_for_status() except Exception as e: print(f'[WM Proxy] Failed to fetch {oss_url}: {e}') return '', 502 # 叠加静态平铺水印 try: static_bytes = _apply_pillow_watermark(resp.content) except Exception as e: print(f'[WM Proxy] Static watermark error for {oss_url}: {e}') static_bytes = resp.content # 降级:使用原图 # 写磁盘缓存 try: with open(cache_path, 'wb') as f: f.write(static_bytes) except Exception as e: print(f'[WM Proxy] Cache write error: {e}') # 阶段2:在静态水印上实时叠加动态水印(用户名 + 当前时间,不缓存) username = session.get('username', 'genealogy') dt_str = datetime.now().strftime('%Y-%m-%d %H:%M') try: final_bytes = _add_dynamic_watermark(static_bytes, username, dt_str) except Exception as e: print(f'[WM Proxy] Dynamic watermark error: {e}') final_bytes = static_bytes return Response(final_bytes, mimetype='image/jpeg', headers={'Cache-Control': 'no-store'}) @app.route('/manager/pdf_management') def pdf_management(): if 'user_id' not in session: return redirect(url_for('login')) username = session.get('username', 'unknown') is_super_admin = session.get('is_super_admin', 'NOT_SET') print(f"[PDF Management Access] User: {username}, is_super_admin: {is_super_admin}") # Verify is_super_admin against database - always check latest status conn = get_db_connection() try: with conn.cursor() as cursor: cursor.execute("SELECT is_super_admin FROM users WHERE id = %s", (session['user_id'],)) db_result = cursor.fetchone() db_is_super = db_result['is_super_admin'] if db_result else 0 print(f"[PDF Management Access] DB is_super_admin: {db_is_super}") if not db_is_super: print(f"[PDF Management Access] Denied for {username} (DB check)") flash('无权限访问此页面') return redirect(url_for('home')) finally: conn.close() print(f"[PDF Management Access] Allowed for {username}") ensure_pdf_table() view_id = request.args.get('view', type=int) preview = request.args.get('preview', type=bool, default=False) selected_pdf = None conn = get_db_connection() try: with conn.cursor() as cursor: cursor.execute("SELECT * FROM genealogy_pdfs ORDER BY upload_time DESC") pdfs = cursor.fetchall() if view_id and preview: cursor.execute("SELECT * FROM genealogy_pdfs WHERE id = %s", (view_id,)) selected_pdf = cursor.fetchone() finally: conn.close() return render_template('pdf_management.html', pdfs=pdfs, selected_pdf=selected_pdf) @app.route('/manager/parse_pdf/', methods=['POST']) def parse_pdf(pdf_id): if 'user_id' not in session: return jsonify({"success": False, "message": "Unauthorized"}), 401 # 标记PDF为解析中 conn = get_db_connection() try: with conn.cursor() as cursor: cursor.execute("UPDATE genealogy_pdfs SET parse_status = 1 WHERE id = %s", (pdf_id,)) conn.commit() finally: conn.close() # 异步执行PDF解析 def parse_pdf_async(): try: # 获取PDF信息 conn = get_db_connection() pdf_info = None try: with conn.cursor() as cursor: cursor.execute("SELECT * FROM genealogy_pdfs WHERE id = %s", (pdf_id,)) pdf_info = cursor.fetchone() finally: conn.close() if not pdf_info: return # 下载PDF并拆分 pdf_url = pdf_info['oss_url'] response = requests.get(pdf_url) response.raise_for_status() # 保存临时PDF文件 temp_pdf_path = f"/tmp/{pdf_info['file_name']}" with open(temp_pdf_path, 'wb') as f: f.write(response.content) # 使用PyMuPDF拆分PDF doc = fitz.open(temp_pdf_path) page_count = doc.page_count # 每个PDF的页码从1开始计算 max_page = 0 # 逐页处理 for i in range(page_count): page = doc[i] pix = page.get_pixmap() image_path = f"/tmp/{pdf_info['file_name']}_page_{i+1}.png" pix.save(image_path) # 上传图片到OSS image_oss_url = upload_to_oss(image_path, f"{pdf_info['file_name']}_page_{i+1}.png") # 检查上传是否成功 if not image_oss_url: raise Exception(f"Failed to upload image to OSS: {image_path}") # 保存到genealogy_records表 conn = get_db_connection() try: with conn.cursor() as cursor: cursor.execute(""" INSERT INTO genealogy_records (file_name, oss_url, file_type, page_number, genealogy_version, genealogy_source, upload_person, upload_time) VALUES (%s, %s, %s, %s, %s, %s, %s, CURRENT_TIMESTAMP) """, ( f"{pdf_info['file_name']}_page_{i+1}.png", image_oss_url, '图片', max_page + i + 1, pdf_info['version_name'], pdf_info['version_source'], pdf_info['file_provider'] )) conn.commit() finally: conn.close() # 删除临时图片文件 if os.path.exists(image_path): os.remove(image_path) # 删除临时PDF文件 if os.path.exists(temp_pdf_path): os.remove(temp_pdf_path) # 更新PDF解析状态为成功 conn = get_db_connection() try: with conn.cursor() as cursor: cursor.execute("UPDATE genealogy_pdfs SET parse_status = 2 WHERE id = %s", (pdf_id,)) conn.commit() finally: conn.close() except Exception as e: # 更新PDF解析状态为失败 conn = get_db_connection() try: with conn.cursor() as cursor: cursor.execute("UPDATE genealogy_pdfs SET parse_status = 3 WHERE id = %s", (pdf_id,)) conn.commit() finally: conn.close() print(f"PDF解析失败: {e}") # 启动异步任务 thread = threading.Thread(target=parse_pdf_async) thread.daemon = True thread.start() return jsonify({"success": True, "message": "PDF解析已开始,将在后台执行"}) @app.route('/manager/batch_ai_parse', methods=['GET']) def batch_ai_parse(): """Batch AI parse for unprocessed records.""" if 'user_id' not in session: return jsonify({"success": False, "message": "Unauthorized"}), 401 # Start background thread thread = threading.Thread(target=batch_ai_parse_async) thread.daemon = True thread.start() return jsonify({"success": True, "message": "批量AI解析已开始,请稍候查看结果"}) def batch_ai_parse_async(): """Background task to batch AI parse unprocessed records.""" timestamp = datetime.now().strftime('%Y-%m-%d %H:%M:%S') print(f"[{timestamp}] [Batch AI Parse] Starting batch AI parse task...") # Get unprocessed records (ai_status = 0) conn = None unprocessed_records = [] try: conn = get_db_connection() with conn.cursor() as cursor: cursor.execute("SELECT id, oss_url FROM genealogy_records WHERE ai_status = 0 order by page_number") unprocessed_records = cursor.fetchall() conn.close() conn = None total_records = len(unprocessed_records) timestamp = datetime.now().strftime('%Y-%m-%d %H:%M:%S') print(f"[{timestamp}] [Batch AI Parse] Found {total_records} unprocessed records") if total_records == 0: timestamp = datetime.now().strftime('%Y-%m-%d %H:%M:%S') print(f"[{timestamp}] [Batch AI Parse] No unprocessed records found") return # Control concurrency to 5 max_concurrency = 5 semaphore = threading.Semaphore(max_concurrency) threads = [] def process_record(record): """Process a single record with semaphore.""" with semaphore: try: record_id = record['id'] image_url = record['oss_url'] timestamp = datetime.now().strftime('%Y-%m-%d %H:%M:%S') print(f"[{timestamp}] [Batch AI Parse] Processing record {record_id}") process_ai_task(record_id, image_url) except Exception as e: timestamp = datetime.now().strftime('%Y-%m-%d %H:%M:%S') print(f"[{timestamp}] [Batch AI Parse] Error processing record {record['id']}: {e}") # If failed, we'll handle it in the next batch # Start threads for each record for record in unprocessed_records: thread = threading.Thread(target=process_record, args=(record,)) thread.daemon = True thread.start() threads.append(thread) # Wait for all threads to complete for thread in threads: thread.join() timestamp = datetime.now().strftime('%Y-%m-%d %H:%M:%S') print(f"[{timestamp}] [Batch AI Parse] Batch processing completed. Processed {total_records} records") # Check for failed records and restart them check_failed_records() except Exception as e: timestamp = datetime.now().strftime('%Y-%m-%d %H:%M:%S') print(f"[{timestamp}] [Batch AI Parse] Error: {e}") finally: if conn: try: conn.close() except: pass def check_failed_records(): """Check for failed records and restart them.""" timestamp = datetime.now().strftime('%Y-%m-%d %H:%M:%S') print(f"[{timestamp}] [Batch AI Parse] Checking for failed records...") conn = None failed_records = [] try: conn = get_db_connection() with conn.cursor() as cursor: cursor.execute("SELECT id, oss_url FROM genealogy_records WHERE ai_status = 3") failed_records = cursor.fetchall() conn.close() conn = None total_failed = len(failed_records) timestamp = datetime.now().strftime('%Y-%m-%d %H:%M:%S') print(f"[{timestamp}] [Batch AI Parse] Found {total_failed} failed records") if total_failed == 0: timestamp = datetime.now().strftime('%Y-%m-%d %H:%M:%S') print(f"[{timestamp}] [Batch AI Parse] No failed records found") return # Control concurrency to 5 for failed records max_concurrency = 5 semaphore = threading.Semaphore(max_concurrency) threads = [] def process_failed_record(record): """Process a failed record with semaphore.""" with semaphore: retry_conn = None try: record_id = record['id'] image_url = record['oss_url'] timestamp = datetime.now().strftime('%Y-%m-%d %H:%M:%S') print(f"[{timestamp}] [Batch AI Parse] Retrying failed record {record_id}") # Reset status to processing retry_conn = get_db_connection() with retry_conn.cursor() as cursor: cursor.execute("UPDATE genealogy_records SET ai_status = 1 WHERE id = %s", (record_id,)) retry_conn.commit() retry_conn.close() retry_conn = None process_ai_task(record_id, image_url) except Exception as e: timestamp = datetime.now().strftime('%Y-%m-%d %H:%M:%S') print(f"[{timestamp}] [Batch AI Parse] Error retrying record {record['id']}: {e}") finally: if retry_conn: try: retry_conn.close() except: pass # Start threads for each failed record for record in failed_records: thread = threading.Thread(target=process_failed_record, args=(record,)) thread.daemon = True thread.start() threads.append(thread) # Wait for all threads to complete for thread in threads: thread.join() timestamp = datetime.now().strftime('%Y-%m-%d %H:%M:%S') print(f"[{timestamp}] [Batch AI Parse] Retry processing completed. Retried {total_failed} failed records") except Exception as e: timestamp = datetime.now().strftime('%Y-%m-%d %H:%M:%S') print(f"[{timestamp}] [Batch AI Parse] Error checking failed records: {e}") finally: if conn: try: conn.close() except: pass @app.route('/manager/delete_pdf/', methods=['POST']) def delete_pdf(pdf_id): if 'user_id' not in session: return jsonify({"success": False, "message": "Unauthorized"}), 401 conn = get_db_connection() try: with conn.cursor() as cursor: cursor.execute("DELETE FROM genealogy_pdfs WHERE id = %s", (pdf_id,)) conn.commit() flash('PDF文件记录已删除') except Exception as e: flash(f'删除失败: {e}') finally: conn.close() return redirect(url_for('pdf_management')) @app.route('/manager/') def index(): if 'user_id' not in session: return redirect(url_for('login')) # 获取当前登录用户名 username = session.get('username', 'genealogy') page = request.args.get('page', 1, type=int) version = request.args.get('version', '').strip() print(f"Received version parameter: '{version}'") source = request.args.get('source', '').strip() person = request.args.get('person', '').strip() file_type = request.args.get('file_type', '').strip() per_page = 10 offset = (page - 1) * per_page conn = get_db_connection() try: with conn.cursor() as cursor: query_conditions = [] params = [] if version: query_conditions.append("genealogy_version LIKE %s") params.append(f"%{version}%") if source: query_conditions.append("genealogy_source LIKE %s") params.append(f"%{source}%") if person: query_conditions.append("upload_person LIKE %s") params.append(f"%{person}%") if file_type: query_conditions.append("file_type = %s") params.append(file_type) where_clause = "" if query_conditions: where_clause = "WHERE " + " AND ".join(query_conditions) count_sql = f"SELECT COUNT(*) as count FROM genealogy_records {where_clause}" cursor.execute(count_sql, params) total = cursor.fetchone()['count'] sql = f"SELECT * FROM genealogy_records {where_clause} ORDER BY page_number ASC LIMIT %s OFFSET %s" cursor.execute(sql, params + [per_page, offset]) records = cursor.fetchall() # 为图片URL添加水印 for record in records: if record.get('oss_url'): record['oss_url'] = add_oss_watermark(record['oss_url'], username) total_pages = (total + per_page - 1) // per_page finally: conn.close() return render_template('index.html', records=records, page=page, total_pages=total_pages, version=version, source=source, person=person, file_type=file_type, total=total) @app.route('/manager/members') def members(): if 'user_id' not in session: return redirect(url_for('login')) search_name = request.args.get('name', '').strip() search_type = request.args.get('search_type', 'name').strip() # name | name_word page = request.args.get('page', 1, type=int) per_page = 10 offset = (page - 1) * per_page print(f"[Members List] Fetching members page: {page}, search: '{search_name}', type: '{search_type}', per_page: {per_page}") conn = get_db_connection() try: with conn.cursor() as cursor: order_clause = "ORDER BY COALESCE(fmi.modified_time, fmi.create_time) DESC" father_join = """ LEFT JOIN family_relation_info fri ON fmi.id = fri.child_mid AND fri.relation_type = 1 AND COALESCE(fri.sub_relation_type, 0) != 3 LEFT JOIN family_member_info father ON fri.parent_mid = father.id """ father_cols = ", father.id as father_id, father.name as father_name, father.simplified_name as father_simplified_name, fri.child_order as child_order_to_father" if search_name and search_type == 'name_word': # 字辈精确搜索 where_clause = "fmi.name_word = %s" count_params = [search_name] data_params = [search_name] elif search_name: # 姓名模糊搜索(支持繁简变体) variants = expand_name_search_variants(search_name) where_parts = [] count_params = [] for v in variants: where_parts.append("(fmi.name LIKE %s OR fmi.simplified_name LIKE %s)") like = f"%{v}%" count_params.extend([like, like]) where_clause = " OR ".join(where_parts) if where_parts else "(fmi.name LIKE %s OR fmi.simplified_name LIKE %s)" if not where_parts: like = f"%{search_name}%" count_params = [like, like] data_params = count_params[:] else: where_clause = None count_params = [] data_params = [] # 1. 计算总数 if where_clause: count_sql = f"SELECT COUNT(*) as count FROM family_member_info fmi WHERE {where_clause}" cursor.execute(count_sql, tuple(count_params)) else: cursor.execute("SELECT COUNT(*) as count FROM family_member_info") result = cursor.fetchone() total = result['count'] if result else 0 total_pages = (total + per_page - 1) // per_page # 2. 查询分页数据 select_cols = f"fmi.id, fmi.name, fmi.simplified_name, fmi.sex, fmi.name_word, fmi.name_word_generation, fmi.birthday, fmi.occupation, fmi.family_rank, fmi.branch_family_hall, fmi.residential_address, fmi.is_pass_away, fmi.create_time, fmi.modified_time{father_cols}" if where_clause: sql = f"SELECT {select_cols} FROM family_member_info fmi {father_join} WHERE {where_clause} {order_clause} LIMIT %s OFFSET %s" cursor.execute(sql, tuple(data_params + [per_page, offset])) else: sql = f"SELECT {select_cols} FROM family_member_info fmi {father_join} {order_clause} LIMIT %s OFFSET %s" cursor.execute(sql, (per_page, offset)) members = cursor.fetchall() print(f"[Members List] Fetched {len(members)} members") # 格式化日期 for m in members: m['birthday_str'] = format_timestamp(m.get('birthday')) if m.get('create_time'): m['create_time_str'] = m['create_time'].strftime('%Y-%m-%d') if m.get('modified_time'): m['modified_time_str'] = m['modified_time'].strftime('%Y-%m-%d %H:%M') # 批量查询兄弟信息(只含有 father_id 的成员) father_ids = list({m['father_id'] for m in members if m.get('father_id')}) member_ids_set = {m['id'] for m in members} siblings_map = {} # father_id -> list of {id, name, simplified_name} if father_ids: fmt = ','.join(['%s'] * len(father_ids)) cursor.execute(f""" SELECT fr.parent_mid AS father_id, m.id AS sibling_id, m.name AS sibling_name, m.simplified_name AS sibling_simplified_name FROM family_relation_info fr JOIN family_member_info m ON fr.child_mid = m.id WHERE fr.parent_mid IN ({fmt}) AND fr.relation_type = 1 AND COALESCE(fr.sub_relation_type, 0) != 2 ORDER BY COALESCE(fr.child_order, 9999), m.id """, father_ids) for row in cursor.fetchall(): fid = row['father_id'] if fid not in siblings_map: siblings_map[fid] = [] siblings_map[fid].append({ 'id': row['sibling_id'], 'name': row['sibling_name'], 'simplified_name': row['sibling_simplified_name'], }) # 将兄弟列表(排除自身)附加到每个成员 for m in members: fid = m.get('father_id') mid = m['id'] if fid and fid in siblings_map: m['siblings'] = [s for s in siblings_map[fid] if s['id'] != mid] else: m['siblings'] = [] finally: print(f"[Members List] Closing database connection") conn.close() return render_template('members.html', members=members, search_name=search_name, search_type=search_type, page=page, total_pages=total_pages, total=total) @app.route('/manager/batch_genealogy') def batch_genealogy(): if 'user_id' not in session: return redirect(url_for('login')) return render_template('batch_genealogy.html') @app.route('/manager/suspected_errors') def suspected_errors(): if 'user_id' not in session: return redirect(url_for('login')) search_name = request.args.get('name', '').strip() page = request.args.get('page', 1, type=int) per_page = 20 offset = (page - 1) * per_page conn = get_db_connection() try: with conn.cursor() as cursor: # Base query with condition for non-empty suspected_error (using TRIM to remove whitespace) base_query = "SELECT id, name, simplified_name, sex, name_word_generation, birthday, suspected_error FROM family_member_info WHERE suspected_error IS NOT NULL AND TRIM(suspected_error) != ''" count_query = "SELECT COUNT(*) as count FROM family_member_info WHERE suspected_error IS NOT NULL AND TRIM(suspected_error) != ''" # Add search condition if provided params = [] if search_name: # Support both traditional and simplified name search base_query += " AND (name LIKE %s OR simplified_name LIKE %s)" count_query += " AND (name LIKE %s OR simplified_name LIKE %s)" search_param = f"%{search_name}%" params.extend([search_param, search_param]) # Get total count cursor.execute(count_query, params) result = cursor.fetchone() total = result['count'] if result else 0 total_pages = (total + per_page - 1) // per_page # Get members with pagination base_query += " ORDER BY name LIMIT %s OFFSET %s" params.extend([per_page, offset]) cursor.execute(base_query, params) members = cursor.fetchall() # Format birthday for display for member in members: if member['birthday']: member['birthday_str'] = format_timestamp(member['birthday']) else: member['birthday_str'] = '未知' finally: conn.close() return render_template('suspected_errors.html', members=members, search_name=search_name, page=page, total_pages=total_pages, total=total) @app.route('/manager/tree') def tree(): if 'user_id' not in session: return redirect(url_for('login')) return render_template('tree.html') @app.route('/manager/lineage_query') def lineage_query(): if 'user_id' not in session: return redirect(url_for('login')) return render_template('lineage_query.html') @app.route('/manager/tree_classic') def tree_classic(): if 'user_id' not in session: return redirect(url_for('login')) return render_template('tree_classic.html') @app.route('/manager/tree_gen') def tree_gen(): if 'user_id' not in session: return redirect(url_for('login')) return render_template('tree_gen.html') @app.route('/manager/api/tree_data') def tree_data(): if 'user_id' not in session: return jsonify({"error": "Unauthorized"}), 401 conn = get_db_connection() try: with conn.cursor() as cursor: # 获取所有成员 cursor.execute("SELECT id, name, simplified_name, sex, family_rank, name_word_generation FROM family_member_info") members = cursor.fetchall() # 获取所有关系 (1:父子 2:母子 10:夫妻 11:兄弟 12:姐妹),包括子类型 cursor.execute("SELECT parent_mid, child_mid, relation_type, sub_relation_type FROM family_relation_info") relations = cursor.fetchall() return jsonify({"members": members, "relations": relations}) finally: conn.close() @app.route('/manager/api/search_member', methods=['POST']) def search_member(): if 'user_id' not in session: return jsonify({"success": False, "message": "Unauthorized"}), 401 data = request.get_json() keyword = data.get('keyword', '').strip() search_type = data.get('search_type', 'name') # name | former_name | childhood_name | name_word if not keyword: return jsonify({"success": False, "message": "请输入搜索关键词"}) conn = get_db_connection() try: with conn.cursor() as cursor: like = f'%{keyword}%' # 根据搜索类型构建 WHERE 子句 if search_type == 'former_name': where_clause = "fmi.former_name LIKE %s" where_params = (like,) order_params = (keyword, keyword, f'{keyword}%', f'{keyword}%') elif search_type == 'childhood_name': where_clause = "fmi.childhood_name LIKE %s" where_params = (like,) order_params = (keyword, keyword, f'{keyword}%', f'{keyword}%') elif search_type == 'name_word': where_clause = "fmi.name_word LIKE %s" where_params = (like,) order_params = (keyword, keyword, f'{keyword}%', f'{keyword}%') else: # name(默认:姓名搜索) where_clause = "fmi.name LIKE %s OR fmi.simplified_name LIKE %s OR fmi.former_name LIKE %s" where_params = (like, like, like) order_params = (keyword, keyword, f'{keyword}%', f'{keyword}%') cursor.execute(f""" SELECT fmi.id, fmi.name, fmi.simplified_name, fmi.name_word_generation, fmi.former_name, fmi.childhood_name, fmi.name_word, -- 父亲:优先非入继父(sub_type != 3),取第一条 (SELECT p.name FROM family_relation_info r JOIN family_member_info p ON r.parent_mid = p.id WHERE r.child_mid = fmi.id AND r.relation_type = 1 ORDER BY CASE WHEN COALESCE(r.sub_relation_type,0)=3 THEN 1 ELSE 0 END, r.id LIMIT 1) AS father_name, (SELECT p.simplified_name FROM family_relation_info r JOIN family_member_info p ON r.parent_mid = p.id WHERE r.child_mid = fmi.id AND r.relation_type = 1 ORDER BY CASE WHEN COALESCE(r.sub_relation_type,0)=3 THEN 1 ELSE 0 END, r.id LIMIT 1) AS father_simplified_name, -- 出继标注 (SELECT CONCAT( '出继自', COALESCE(pbio.simplified_name, pbio.name, '?'), ',入继至', COALESCE(padopt.simplified_name, padopt.name, '?')) FROM family_relation_info rbio JOIN family_member_info pbio ON rbio.parent_mid = pbio.id JOIN family_relation_info radopt ON radopt.child_mid = fmi.id AND radopt.sub_relation_type = 3 JOIN family_member_info padopt ON radopt.parent_mid = padopt.id WHERE rbio.child_mid = fmi.id AND rbio.sub_relation_type = 2 LIMIT 1) AS adoption_note FROM family_member_info fmi WHERE {where_clause} GROUP BY fmi.id ORDER BY CASE WHEN fmi.name = %s THEN 1 WHEN fmi.simplified_name = %s THEN 2 WHEN fmi.name LIKE %s THEN 3 WHEN fmi.simplified_name LIKE %s THEN 4 ELSE 5 END """, (*where_params, *order_params)) members = cursor.fetchall() if not members: return jsonify({"success": False, "message": "未找到匹配的成员"}) # 批量查询每位命中人员的子女(按 child_order 排序) member_ids = [m['id'] for m in members] fmt = ','.join(['%s'] * len(member_ids)) cursor.execute(f""" SELECT r.parent_mid, c.id AS child_id, COALESCE(c.simplified_name, c.name) AS child_display_name FROM family_relation_info r JOIN family_member_info c ON r.child_mid = c.id WHERE r.parent_mid IN ({fmt}) AND r.relation_type = 1 ORDER BY COALESCE(r.child_order, 9999), c.id """, member_ids) children_map = {} for row in cursor.fetchall(): pid = row['parent_mid'] if pid not in children_map: children_map[pid] = [] children_map[pid].append({'id': row['child_id'], 'name': row['child_display_name']}) members_out = [] for m in members: d = dict(m) d['children'] = children_map.get(m['id'], []) members_out.append(d) return jsonify({"success": True, "members": members_out}) finally: conn.close() @app.route('/manager/api/get_lineage/') def get_lineage(member_id): if 'user_id' not in session: return jsonify({"success": False, "message": "Unauthorized"}), 401 # 追溯模式:incense(香火传承,入继→养父为上辈) | blood(血脉追溯,亲生父为上辈) mode = request.args.get('mode', 'incense') import time start_time = time.time() print(f"[Lineage Query] Starting query for member_id: {member_id} mode={mode} at {time.strftime('%Y-%m-%d %H:%M:%S')}") conn = get_db_connection() try: with conn.cursor() as cursor: # Step 1: Get center person step_start = time.time() cursor.execute("SELECT id, name, simplified_name, name_word, name_word_generation, former_name, childhood_name FROM family_member_info WHERE id = %s", (member_id,)) center = cursor.fetchone() print(f"[Lineage Query] Step 1 - Get center: {time.time() - step_start:.3f}s") if not center: return jsonify({"success": False, "message": "成员不存在"}) # Step 2: Get ancestors with their siblings (generations) step_start = time.time() generations = [] # Array of generations, each with main ancestor and siblings current_id = member_id max_depth = 100 # 支持最多 100 代祖先(实际家谱一般不超过 80 代) ancestor_ids = [] # Track ancestor IDs for exclusion when expanding displayed_ids = set() # Track IDs that are already displayed displayed_ids.add(member_id) # Center person is displayed visited_ancestor_ids = set([member_id]) # 循环检测:避免脏数据死循环 for depth in range(max_depth): # 获取所有父母关系(支持出继/入继) cursor.execute(""" SELECT p.id, p.name, p.simplified_name, p.name_word, p.name_word_generation, p.former_name, p.childhood_name, EXISTS(SELECT 1 FROM family_relation_info WHERE parent_mid = p.id AND relation_type IN (1, 2)) as has_children, r.sub_relation_type FROM family_relation_info r JOIN family_member_info p ON r.parent_mid = p.id WHERE r.child_mid = %s AND r.relation_type IN (1, 2) """, (current_id,)) parents = cursor.fetchall() if not parents: break # 分拣各类父母关系 normal_parent = None adoptive_parent = None # sub_type=3:入继养父 bio_parent = None # sub_type=2:出继亲生父 for p in parents: if p['sub_relation_type'] == 3: adoptive_parent = p elif p['sub_relation_type'] == 2: bio_parent = p else: normal_parent = p if mode == 'blood': # 血脉追溯:亲生父优先(出继亦沿亲生路径) parent = normal_parent or bio_parent or adoptive_parent # 血脉模式下若存在养父,仍标注出继/入继关系 if adoptive_parent is not None: _bio_src = bio_parent or normal_parent bio_name = (_bio_src.get('simplified_name') or _bio_src.get('name')) if _bio_src else None adop_name = adoptive_parent.get('simplified_name') or adoptive_parent.get('name') if bio_name and adop_name: adopt_label = f"出继自{bio_name},入继至{adop_name}" elif adop_name: adopt_label = f"入继至{adop_name}" else: adopt_label = "出继" if depth == 0: center['adoption_label'] = adopt_label elif generations: generations[-1]['ancestor']['adoption_label'] = adopt_label else: # 香火传承(默认):入继养父优先 parent = adoptive_parent or normal_parent or bio_parent # 若走入继路径,在当事人卡片标注"出继自xx,入继至yy" if parent is adoptive_parent and adoptive_parent is not None: # bio 父:sub_type=2 优先,否则取 normal (sub_type=0) _bio_src = bio_parent or normal_parent bio_name = (_bio_src.get('simplified_name') or _bio_src.get('name')) if _bio_src else None adop_name = adoptive_parent.get('simplified_name') or adoptive_parent.get('name') if bio_name and adop_name: adopt_label = f"出继自{bio_name},入继至{adop_name}" elif bio_name: adopt_label = f"出继自{bio_name}" else: adopt_label = "出继" if depth == 0: center['adoption_label'] = adopt_label elif generations: generations[-1]['ancestor']['adoption_label'] = adopt_label # 祖先卡片不携带子辈关系类型(避免把子的出继/入继标在父身上) parent['sub_relation_type'] = None # 循环检测:如果该祖先已在链中出现过,终止(数据异常保护) if parent['id'] in visited_ancestor_ids: break visited_ancestor_ids.add(parent['id']) ancestor_ids.append(parent['id']) displayed_ids.add(parent['id']) # Get siblings of this ancestor (father's brothers) # First get grandparent (parent's father) # 香火传承:优先选养父(sub_type=3);血脉传承:优先选生父(sub_type=0/2) if mode == 'incense': gp_order = "CASE WHEN COALESCE(r.sub_relation_type, 0) = 3 THEN 0 ELSE 1 END" else: gp_order = "CASE WHEN COALESCE(r.sub_relation_type, 0) = 3 THEN 1 ELSE 0 END" cursor.execute(f""" SELECT gp.id, gp.name, gp.simplified_name FROM family_relation_info r JOIN family_member_info gp ON r.parent_mid = gp.id WHERE r.child_mid = %s AND r.relation_type IN (1, 2) ORDER BY {gp_order}, r.id LIMIT 1 """, (parent['id'],)) grandparent = cursor.fetchone() parent_siblings = [] if grandparent: # 获取祖先自身的 child_order(在祖父下的排行) cursor.execute(""" SELECT COALESCE(child_order, NULL) AS child_order FROM family_relation_info WHERE parent_mid = %s AND child_mid = %s AND relation_type IN (1, 2) LIMIT 1 """, (grandparent['id'], parent['id'])) co_row = cursor.fetchone() parent['child_order'] = co_row['child_order'] if co_row else None # 获取祖先的兄弟(按模式过滤 + 出继/入继标注) if mode == 'blood': anc_sib_filter = "AND COALESCE(r.sub_relation_type, 0) != 3" else: anc_sib_filter = """AND ( COALESCE(r.sub_relation_type, 0) != 2 OR NOT EXISTS ( SELECT 1 FROM family_relation_info r2 WHERE r2.child_mid = c.id AND r2.sub_relation_type = 3 ) )""" cursor.execute(f""" SELECT c.id, c.name, c.simplified_name, c.name_word, c.name_word_generation, c.former_name, c.childhood_name, EXISTS(SELECT 1 FROM family_relation_info WHERE parent_mid = c.id AND relation_type IN (1, 2)) as has_children, COALESCE(r.child_order, NULL) AS child_order, r.sub_relation_type FROM family_relation_info r JOIN family_member_info c ON r.child_mid = c.id WHERE r.parent_mid = %s AND r.relation_type IN (1, 2) AND c.id != %s {anc_sib_filter} ORDER BY COALESCE(r.child_order, 99999), c.id LIMIT 30 """, (grandparent['id'], parent['id'])) parent_siblings = cursor.fetchall() # 生成兄弟节点标注(入继/出继双向) # 兄弟是祖父的子女,所以"入继至/出继自"用祖父名,不是当前祖先名 gp_display = grandparent.get('simplified_name') or grandparent.get('name') or '' for sib in parent_siblings: if sib.get('sub_relation_type') == 3: # 入继兄弟:出继自bio,入继至祖父(祖父是收养方) cursor.execute(""" SELECT p.simplified_name, p.name FROM family_relation_info r JOIN family_member_info p ON r.parent_mid = p.id WHERE r.child_mid = %s AND r.sub_relation_type != 3 ORDER BY r.sub_relation_type DESC LIMIT 1 """, (sib['id'],)) sbp = cursor.fetchone() bio_name = (sbp['simplified_name'] or sbp['name']) if sbp else None if bio_name and gp_display: sib['adoption_label'] = f"出继自{bio_name},入继至{gp_display}" elif bio_name: sib['adoption_label'] = f"出继自{bio_name}" else: sib['adoption_label'] = "出继" elif mode == 'blood' and sib.get('sub_relation_type') == 2: # 血脉模式出继兄弟:出继自祖父(祖父是出继方),入继至养父 cursor.execute(""" SELECT p.simplified_name, p.name FROM family_relation_info r JOIN family_member_info p ON r.parent_mid = p.id WHERE r.child_mid = %s AND r.sub_relation_type = 3 LIMIT 1 """, (sib['id'],)) adop = cursor.fetchone() adop_name = (adop['simplified_name'] or adop['name']) if adop else None if gp_display and adop_name: sib['adoption_label'] = f"出继自{gp_display},入继至{adop_name}" elif adop_name: sib['adoption_label'] = f"入继至{adop_name}" else: sib['adoption_label'] = "出继" # Mark sibling IDs as displayed for sibling in parent_siblings: displayed_ids.add(sibling['id']) # Check if parent has any children NOT already displayed # Only show expand button if there are undisplayed children cursor.execute(""" SELECT COUNT(*) as count FROM family_relation_info r JOIN family_member_info c ON r.child_mid = c.id WHERE r.parent_mid = %s AND r.relation_type IN (1, 2) """, (parent['id'],)) total_children = cursor.fetchone()['count'] # Check if current child is displayed (current_id is the child of parent) child_displayed = current_id in displayed_ids # Show expand if there are children not displayed show_expand = total_children > (1 if child_displayed else 0) parent['show_expand'] = show_expand generations.append({ 'ancestor': parent, 'siblings': parent_siblings, 'depth': depth }) current_id = parent['id'] print(f"[Lineage Query] Step 2 - Get generations ({len(generations)}): {time.time() - step_start:.3f}s") # Step 3: Get immediate children only (limited count) step_start = time.time() # 获取子女:根据模式选择不同过滤策略 # 香火传承:包含入继子女、普通子女,排除已被人收继的出继子女 # 血脉追溯:包含亲生子女(含出继走的),排除从别处入继的子女 if mode == 'blood': children_filter = "AND COALESCE(r.sub_relation_type, 0) != 3" else: children_filter = """AND ( COALESCE(r.sub_relation_type, 0) != 2 OR NOT EXISTS ( SELECT 1 FROM family_relation_info r2 WHERE r2.child_mid = c.id AND r2.sub_relation_type = 3 ) )""" cursor.execute(f""" SELECT c.id, c.name, c.simplified_name, c.name_word, c.name_word_generation, c.former_name, c.childhood_name, EXISTS(SELECT 1 FROM family_relation_info WHERE parent_mid = c.id AND relation_type IN (1, 2)) as has_children, r.sub_relation_type, r.child_order FROM family_relation_info r JOIN family_member_info c ON r.child_mid = c.id WHERE r.parent_mid = %s AND r.relation_type IN (1, 2) {children_filter} ORDER BY COALESCE(r.child_order, 99999), c.id LIMIT 30 """, (member_id,)) children = cursor.fetchall() # 香火模式:对入继子女标注"出继自xx,入继至yy";血脉模式:对出继子女同样双标 center_display = center.get('simplified_name') or center.get('name') or '' for child in children: if mode == 'incense' and child['sub_relation_type'] == 3: # 亲生父:可能是 sub_type=2(出继标记)或 sub_type=0(普通关系) cursor.execute(""" SELECT p.simplified_name, p.name FROM family_relation_info r JOIN family_member_info p ON r.parent_mid = p.id WHERE r.child_mid = %s AND r.sub_relation_type != 3 ORDER BY r.sub_relation_type DESC LIMIT 1 """, (child['id'],)) bio_p = cursor.fetchone() bio_name = (bio_p['simplified_name'] or bio_p['name']) if bio_p else None if bio_name and center_display: child['adoption_label'] = f"出继自{bio_name},入继至{center_display}" elif bio_name: child['adoption_label'] = f"出继自{bio_name}" else: child['adoption_label'] = "出继" elif mode == 'blood' and child['sub_relation_type'] in (0, 2): # 血脉模式:找养父(sub_type=3)标注去向 cursor.execute(""" SELECT p.simplified_name, p.name FROM family_relation_info r JOIN family_member_info p ON r.parent_mid = p.id WHERE r.child_mid = %s AND r.sub_relation_type = 3 LIMIT 1 """, (child['id'],)) adop_p = cursor.fetchone() adop_name = (adop_p['simplified_name'] or adop_p['name']) if adop_p else None if adop_name: if center_display: child['adoption_label'] = f"出继自{center_display},入继至{adop_name}" else: child['adoption_label'] = f"入继至{adop_name}" child['sub_relation_type'] = 2 # 保持供前端显示 adopted-out 样式 # Initialize children array for child in children: child['children'] = [] print(f"[Lineage Query] Step 3 - Get children ({len(children)}): {time.time() - step_start:.3f}s") # Step 4: Get siblings of center person + center's own child_order step_start = time.time() siblings = [] center_child_order = None if generations: parent_id = generations[0]['ancestor']['id'] # Father # 中心人物自身的排行 cursor.execute(""" SELECT COALESCE(child_order, NULL) AS child_order FROM family_relation_info WHERE parent_mid = %s AND child_mid = %s AND relation_type IN (1, 2) LIMIT 1 """, (parent_id, member_id)) co_row = cursor.fetchone() center_child_order = co_row['child_order'] if co_row else None # 香火模式:排除已出继的兄弟(已被别家收入的);血脉模式:排除从外面入继进来的 if mode == 'blood': sib_filter = "AND COALESCE(r.sub_relation_type, 0) != 3" else: sib_filter = """AND ( COALESCE(r.sub_relation_type, 0) != 2 OR NOT EXISTS ( SELECT 1 FROM family_relation_info r2 WHERE r2.child_mid = c.id AND r2.sub_relation_type = 3 ) )""" cursor.execute(f""" SELECT c.id, c.name, c.simplified_name, c.name_word, c.name_word_generation, c.former_name, c.childhood_name, EXISTS(SELECT 1 FROM family_relation_info WHERE parent_mid = c.id AND relation_type IN (1, 2)) as has_children, r.sub_relation_type, COALESCE(r.child_order, NULL) AS child_order FROM family_relation_info r JOIN family_member_info c ON r.child_mid = c.id WHERE r.parent_mid = %s AND r.relation_type IN (1, 2) AND c.id != %s {sib_filter} ORDER BY COALESCE(r.child_order, 99999), c.id LIMIT 30 """, (parent_id, member_id)) siblings = cursor.fetchall() # 为入继兄弟补充"出继自xx,入继至yy"标注 parent_display = (generations[0]['ancestor'].get('simplified_name') or generations[0]['ancestor'].get('name') or '') if generations else '' for sib in siblings: if sib.get('sub_relation_type') == 3: cursor.execute(""" SELECT p.simplified_name, p.name FROM family_relation_info r JOIN family_member_info p ON r.parent_mid = p.id WHERE r.child_mid = %s AND r.sub_relation_type != 3 ORDER BY r.sub_relation_type DESC LIMIT 1 """, (sib['id'],)) sbp = cursor.fetchone() bio_name = (sbp['simplified_name'] or sbp['name']) if sbp else None if bio_name and parent_display: sib['adoption_label'] = f"出继自{bio_name},入继至{parent_display}" elif bio_name: sib['adoption_label'] = f"出继自{bio_name}" else: sib['adoption_label'] = "出继" elif mode == 'blood' and sib.get('sub_relation_type') == 2: # 血脉模式:出继兄弟 → 出继自当前父亲,入继至养父 cursor.execute(""" SELECT p.simplified_name, p.name FROM family_relation_info r JOIN family_member_info p ON r.parent_mid = p.id WHERE r.child_mid = %s AND r.sub_relation_type = 3 LIMIT 1 """, (sib['id'],)) adop = cursor.fetchone() adop_name = (adop['simplified_name'] or adop['name']) if adop else None if parent_display and adop_name: sib['adoption_label'] = f"出继自{parent_display},入继至{adop_name}" elif adop_name: sib['adoption_label'] = f"入继至{adop_name}" else: sib['adoption_label'] = "出继" print(f"[Lineage Query] Step 4 - Get siblings ({len(siblings)}): {time.time() - step_start:.3f}s") total_time = time.time() - start_time print(f"[Lineage Query] Total time: {total_time:.3f}s") # 判断是否还有更高的祖先(顶端祖先是否仍有父亲) has_more_ancestors = False topmost_ancestor_id = None if generations: topmost_ancestor_id = generations[-1]['ancestor']['id'] cursor.execute(""" SELECT COUNT(*) as cnt FROM family_relation_info WHERE child_mid = %s AND relation_type IN (1,2) """, (topmost_ancestor_id,)) has_more_ancestors = cursor.fetchone()['cnt'] > 0 return jsonify({ "success": True, "data": { "center": {**center, "child_order": center_child_order}, "generations": generations, "ancestor_ids": ancestor_ids, "siblings": siblings, "children": children, "has_more_ancestors": has_more_ancestors, "topmost_ancestor_id": topmost_ancestor_id } }) except Exception as e: print(f"[Lineage Query] Error: {e}") return jsonify({"success": False, "message": str(e)}) finally: conn.close() @app.route('/manager/api/get_ancestors_above/') def get_ancestors_above(ancestor_id): """从指定祖先节点继续向上追溯,用于世系查询"继续向上"按钮""" if 'user_id' not in session: return jsonify({"success": False, "message": "Unauthorized"}), 401 mode = request.args.get('mode', 'incense') conn = get_db_connection() try: with conn.cursor() as cursor: generations = [] current_id = ancestor_id max_depth = 100 visited_ids = set([ancestor_id]) # 计算 anchor 节点(ancestor_id)自身的 adoption_label(已在上层渲染,此处只补充标签) anchor_adoption_label = None cursor.execute(""" SELECT p.id, p.name, p.simplified_name, r.sub_relation_type FROM family_relation_info r JOIN family_member_info p ON r.parent_mid = p.id WHERE r.child_mid = %s AND r.relation_type IN (1, 2) """, (ancestor_id,)) anchor_parents = cursor.fetchall() anchor_bio = None anchor_adop = None anchor_normal = None for ap in anchor_parents: if ap['sub_relation_type'] == 3: anchor_adop = ap elif ap['sub_relation_type'] == 2: anchor_bio = ap else: anchor_normal = ap if anchor_adop: _bio_src = anchor_bio or anchor_normal bio_name = (_bio_src.get('simplified_name') or _bio_src.get('name')) if _bio_src else None adop_name = anchor_adop.get('simplified_name') or anchor_adop.get('name') if bio_name and adop_name: anchor_adoption_label = f"出继自{bio_name},入继至{adop_name}" elif bio_name: anchor_adoption_label = f"出继自{bio_name}" else: anchor_adoption_label = "出继" for depth in range(max_depth): cursor.execute(""" SELECT p.id, p.name, p.simplified_name, p.name_word, p.name_word_generation, p.former_name, p.childhood_name, EXISTS(SELECT 1 FROM family_relation_info WHERE parent_mid = p.id AND relation_type IN (1,2)) as has_children, r.sub_relation_type FROM family_relation_info r JOIN family_member_info p ON r.parent_mid = p.id WHERE r.child_mid = %s AND r.relation_type IN (1, 2) """, (current_id,)) parents = cursor.fetchall() if not parents: break # 分拣各类父母关系 normal_parent = None adoptive_parent = None bio_parent = None for p in parents: if p['sub_relation_type'] == 3: adoptive_parent = p elif p['sub_relation_type'] == 2: bio_parent = p else: normal_parent = p if mode == 'blood': parent = normal_parent or bio_parent or adoptive_parent # 血脉模式下若存在养父,仍标注出继/入继关系 if adoptive_parent is not None: _bio_src = bio_parent or normal_parent bio_name = (_bio_src.get('simplified_name') or _bio_src.get('name')) if _bio_src else None adop_name = adoptive_parent.get('simplified_name') or adoptive_parent.get('name') if bio_name and adop_name: adopt_label = f"出继自{bio_name},入继至{adop_name}" elif adop_name: adopt_label = f"入继至{adop_name}" else: adopt_label = "出继" if depth == 0: anchor_adoption_label = adopt_label elif generations: generations[-1]['ancestor']['adoption_label'] = adopt_label else: parent = adoptive_parent or normal_parent or bio_parent # 若走入继路径,在 current_id 对应的人物上标注"出继自xx,入继至yy" if parent is adoptive_parent and adoptive_parent is not None: _bio_src = bio_parent or normal_parent bio_name = (_bio_src.get('simplified_name') or _bio_src.get('name')) if _bio_src else None adop_name = adoptive_parent.get('simplified_name') or adoptive_parent.get('name') if bio_name and adop_name: adopt_label = f"出继自{bio_name},入继至{adop_name}" elif bio_name: adopt_label = f"出继自{bio_name}" else: adopt_label = "出继" if depth == 0: anchor_adoption_label = adopt_label elif generations: generations[-1]['ancestor']['adoption_label'] = adopt_label # 祖先卡片不携带子辈关系类型 parent['sub_relation_type'] = None if parent['id'] in visited_ids: break visited_ids.add(parent['id']) # 查祖父,用于获取该祖先的兄弟 # 香火传承:优先养父(sub_type=3);血脉传承:优先生父 if mode == 'incense': gp_order_ab = "CASE WHEN COALESCE(r.sub_relation_type, 0) = 3 THEN 0 ELSE 1 END" else: gp_order_ab = "CASE WHEN COALESCE(r.sub_relation_type, 0) = 3 THEN 1 ELSE 0 END" cursor.execute(f""" SELECT gp.id, gp.name, gp.simplified_name FROM family_relation_info r JOIN family_member_info gp ON r.parent_mid = gp.id WHERE r.child_mid = %s AND r.relation_type IN (1, 2) ORDER BY {gp_order_ab}, r.id LIMIT 1 """, (parent['id'],)) grandparent = cursor.fetchone() parent_siblings = [] if grandparent: cursor.execute(""" SELECT COALESCE(child_order, 1) AS child_order FROM family_relation_info WHERE parent_mid = %s AND child_mid = %s AND relation_type IN (1,2) LIMIT 1 """, (grandparent['id'], parent['id'])) co_row = cursor.fetchone() parent['child_order'] = co_row['child_order'] if co_row else 1 if mode == 'blood': ab_sib_filter = "AND COALESCE(r.sub_relation_type, 0) != 3" else: ab_sib_filter = """AND ( COALESCE(r.sub_relation_type, 0) != 2 OR NOT EXISTS ( SELECT 1 FROM family_relation_info r2 WHERE r2.child_mid = c.id AND r2.sub_relation_type = 3 ) )""" cursor.execute(f""" SELECT c.id, c.name, c.simplified_name, c.name_word, c.name_word_generation, c.former_name, c.childhood_name, EXISTS(SELECT 1 FROM family_relation_info WHERE parent_mid = c.id AND relation_type IN (1,2)) as has_children, COALESCE(r.child_order, 1) AS child_order FROM family_relation_info r JOIN family_member_info c ON r.child_mid = c.id WHERE r.parent_mid = %s AND r.relation_type IN (1,2) AND c.id != %s {ab_sib_filter} ORDER BY COALESCE(r.child_order, 1), c.id LIMIT 10 """, (grandparent['id'], parent['id'])) parent_siblings = cursor.fetchall() # 兄弟是祖父的子女,"入继至/出继自"用祖父名 ab_gp_display = grandparent.get('simplified_name') or grandparent.get('name') or '' for s in parent_siblings: s['has_children'] = bool(s['has_children']) if s.get('sub_relation_type') == 3: cursor.execute(""" SELECT p.simplified_name, p.name FROM family_relation_info r JOIN family_member_info p ON r.parent_mid = p.id WHERE r.child_mid = %s AND r.sub_relation_type != 3 ORDER BY r.sub_relation_type DESC LIMIT 1 """, (s['id'],)) sbp = cursor.fetchone() bio_name = (sbp['simplified_name'] or sbp['name']) if sbp else None if bio_name and ab_gp_display: s['adoption_label'] = f"出继自{bio_name},入继至{ab_gp_display}" elif bio_name: s['adoption_label'] = f"出继自{bio_name}" else: s['adoption_label'] = "出继" elif mode == 'blood' and s.get('sub_relation_type') == 2: cursor.execute(""" SELECT p.simplified_name, p.name FROM family_relation_info r JOIN family_member_info p ON r.parent_mid = p.id WHERE r.child_mid = %s AND r.sub_relation_type = 3 LIMIT 1 """, (s['id'],)) adop = cursor.fetchone() adop_name = (adop['simplified_name'] or adop['name']) if adop else None if ab_gp_display and adop_name: s['adoption_label'] = f"出继自{ab_gp_display},入继至{adop_name}" elif adop_name: s['adoption_label'] = f"入继至{adop_name}" else: s['adoption_label'] = "出继" else: parent['child_order'] = None parent['has_children'] = bool(parent['has_children']) generations.append({ 'ancestor': parent, 'siblings': list(parent_siblings), 'depth': depth }) current_id = parent['id'] # 是否还有更高的祖先 has_more_ancestors = False topmost_ancestor_id = None if generations: topmost_ancestor_id = generations[-1]['ancestor']['id'] cursor.execute(""" SELECT COUNT(*) as cnt FROM family_relation_info WHERE child_mid = %s AND relation_type IN (1,2) """, (topmost_ancestor_id,)) has_more_ancestors = cursor.fetchone()['cnt'] > 0 return jsonify({ "success": True, "data": { "generations": generations, "has_more_ancestors": has_more_ancestors, "topmost_ancestor_id": topmost_ancestor_id, "anchor_adoption_label": anchor_adoption_label } }) except Exception as e: return jsonify({"success": False, "message": str(e)}) finally: conn.close() @app.route('/manager/api/get_descendants/') def get_descendants(parent_id): if 'user_id' not in session: return jsonify({"success": False, "message": "Unauthorized"}), 401 excluded_ids = request.args.get('exclude', '') excluded_list = [int(i.strip()) for i in excluded_ids.split(',') if i.strip().isdigit()] mode = request.args.get('mode', 'incense') # 按模式决定子女过滤策略(与 get_lineage 保持一致) if mode == 'blood': mode_filter = "AND COALESCE(r.sub_relation_type, 0) != 3" else: # incense mode_filter = """AND ( COALESCE(r.sub_relation_type, 0) != 2 OR NOT EXISTS ( SELECT 1 FROM family_relation_info r2 WHERE r2.child_mid = c.id AND r2.sub_relation_type = 3 ) )""" print(f"[get_descendants] Parent ID: {parent_id}, mode={mode}, Excluded IDs: {excluded_list}") conn = get_db_connection() try: with conn.cursor() as cursor: # 先获取父节点名字(用于"入继至xx"标注) cursor.execute( "SELECT simplified_name, name FROM family_member_info WHERE id = %s", (parent_id,) ) parent_row = cursor.fetchone() parent_display = (parent_row.get('simplified_name') or parent_row.get('name') or '') if parent_row else '' if excluded_list: placeholders = ', '.join(['%s'] * len(excluded_list)) cursor.execute(f""" SELECT c.id, c.name, c.simplified_name, c.name_word, c.name_word_generation, c.former_name, c.childhood_name, r.sub_relation_type, COALESCE(r.child_order, 99999) AS child_order, EXISTS(SELECT 1 FROM family_relation_info WHERE parent_mid = c.id AND relation_type IN (1, 2)) as has_children FROM family_relation_info r JOIN family_member_info c ON r.child_mid = c.id WHERE r.parent_mid = %s AND r.relation_type IN (1, 2) AND c.id NOT IN ({placeholders}) {mode_filter} ORDER BY COALESCE(r.child_order, 99999), c.id LIMIT 20 """, (parent_id,) + tuple(excluded_list)) else: cursor.execute(f""" SELECT c.id, c.name, c.simplified_name, c.name_word, c.name_word_generation, c.former_name, c.childhood_name, r.sub_relation_type, COALESCE(r.child_order, 99999) AS child_order, EXISTS(SELECT 1 FROM family_relation_info WHERE parent_mid = c.id AND relation_type IN (1, 2)) as has_children FROM family_relation_info r JOIN family_member_info c ON r.child_mid = c.id WHERE r.parent_mid = %s AND r.relation_type IN (1, 2) {mode_filter} ORDER BY COALESCE(r.child_order, 99999), c.id LIMIT 20 """, (parent_id,)) children = cursor.fetchall() # 为入继/出继子女生成 adoption_label for child in children: child['children'] = [] if child.get('sub_relation_type') == 3: # 入继子女:出继自bio父,入继至当前节点 cursor.execute(""" SELECT p.simplified_name, p.name FROM family_relation_info r JOIN family_member_info p ON r.parent_mid = p.id WHERE r.child_mid = %s AND r.sub_relation_type != 3 ORDER BY r.sub_relation_type DESC LIMIT 1 """, (child['id'],)) bio_p = cursor.fetchone() bio_name = (bio_p['simplified_name'] or bio_p['name']) if bio_p else None if bio_name and parent_display: child['adoption_label'] = f"出继自{bio_name},入继至{parent_display}" elif bio_name: child['adoption_label'] = f"出继自{bio_name}" else: child['adoption_label'] = "出继" elif mode == 'blood' and child.get('sub_relation_type') == 2: # 血脉模式出继子女:出继自当前节点,入继至养父 cursor.execute(""" SELECT p.simplified_name, p.name FROM family_relation_info r JOIN family_member_info p ON r.parent_mid = p.id WHERE r.child_mid = %s AND r.sub_relation_type = 3 LIMIT 1 """, (child['id'],)) adop_p = cursor.fetchone() adop_name = (adop_p['simplified_name'] or adop_p['name']) if adop_p else None if parent_display and adop_name: child['adoption_label'] = f"出继自{parent_display},入继至{adop_name}" elif adop_name: child['adoption_label'] = f"入继至{adop_name}" else: child['adoption_label'] = "出继" return jsonify({"success": True, "children": children}) finally: conn.close() @app.route('/manager/api/save_relation', methods=['POST']) def save_relation(): if 'user_id' not in session: return jsonify({"success": False, "message": "Unauthorized"}), 401 data = request.json source_mid = data.get('source_mid') # The member being dragged target_mid = data.get('target_mid') # The member being dropped onto rel_type = int(data.get('relation_type')) sub_rel_type = int(data.get('sub_relation_type', 0)) if not source_mid or not target_mid or not rel_type: return jsonify({"success": False, "message": "参数不完整"}), 400 conn = get_db_connection() try: with conn.cursor() as cursor: # 简单处理:如果是父子/母子关系 # target_mid 是父辈,source_mid 是子辈 parent_mid = target_mid child_mid = source_mid gen_diff = 1 if rel_type == 10: # 夫妻 # 夫妻关系中,我们通常把关联人设为 parent_mid parent_mid = target_mid child_mid = source_mid gen_diff = 0 elif rel_type in [11, 12]: # 兄弟姐妹 # 这里逻辑上比较复杂,通常兄弟姐妹有共同父母。 # 简化处理:暂时存为同级关系 (gen_diff=0) parent_mid = target_mid child_mid = source_mid gen_diff = 0 # 删除旧关系 cursor.execute("DELETE FROM family_relation_info WHERE source_mid = %s", (source_mid,)) # 插入新关系 sql = """ INSERT INTO family_relation_info (parent_mid, child_mid, relation_type, sub_relation_type, source_mid, generation_diff) VALUES (%s, %s, %s, %s, %s, %s) """ cursor.execute(sql, (parent_mid, child_mid, rel_type, sub_rel_type, source_mid, gen_diff)) conn.commit() return jsonify({"success": True, "message": "关系已保存"}) except Exception as e: return jsonify({"success": False, "message": str(e)}), 500 finally: conn.close() @app.route('/manager/api/members') def get_members(): if 'user_id' not in session: return jsonify({"success": False, "message": "Unauthorized"}), 401 page = int(request.args.get('page', 1)) search = request.args.get('search', '') search_type = request.args.get('search_type', 'name') # name | name_word per_page = 10 offset = (page - 1) * per_page conn = get_db_connection() try: with conn.cursor() as cursor: if search and search_type == 'name_word': where_clause = "fmi.name_word = %s" count_params = (search,) data_params = (search, per_page, offset) elif search: where_clause = "fmi.name LIKE %s OR fmi.simplified_name LIKE %s" count_params = (f'%{search}%', f'%{search}%') data_params = (f'%{search}%', f'%{search}%', per_page, offset) else: where_clause = None count_params = () data_params = (per_page, offset) if where_clause: cursor.execute(f"SELECT COUNT(*) as total FROM family_member_info fmi WHERE {where_clause}", count_params) else: cursor.execute("SELECT COUNT(*) as total FROM family_member_info") total_result = cursor.fetchone() total = total_result['total'] if total_result else 0 base_sql = """ SELECT fmi.id, fmi.name, fmi.simplified_name, fmi.sex, fmi.name_word, fmi.name_word_generation, father.name as father_name, father.simplified_name as father_simplified_name, father.name_word_generation as father_generation FROM family_member_info fmi LEFT JOIN family_relation_info fri ON fmi.id = fri.child_mid AND fri.relation_type IN (1, 2) LEFT JOIN family_member_info father ON fri.parent_mid = father.id """ if where_clause: cursor.execute(base_sql + f" WHERE {where_clause} LIMIT %s OFFSET %s", data_params) else: cursor.execute(base_sql + " LIMIT %s OFFSET %s", data_params) members = cursor.fetchall() members_list = [] for member in members: members_list.append({ 'id': member['id'], 'name': member['name'], 'simplified_name': member['simplified_name'], 'sex': member['sex'], 'name_word': member.get('name_word'), 'name_word_generation': member.get('name_word_generation'), 'father_name': member.get('father_name'), 'father_simplified_name': member.get('father_simplified_name'), 'father_generation': member.get('father_generation') }) return jsonify({"success": True, "members": members_list, "total": total}) except Exception as e: return jsonify({"success": False, "message": f"获取成员失败: {e}"}), 500 finally: conn.close() def call_doubao_api(prompt, image_url=None): """调用豆包API处理文本""" api_key = "a1800657-9212-4afe-9b7c-b49f015c54d3" api_url = "https://ark.cn-beijing.volces.com/api/v3/responses" payload = { "model": "doubao-seed-1-8-251228", "stream": False, "input": [ { "role": "user", "content": [ {"type": "input_text", "text": prompt} ] } ] } headers = { "Authorization": f"Bearer {api_key}", "Content-Type": "application/json" } try: response = requests.post( api_url, json=payload, headers=headers, timeout=120, verify=False, proxies={"http": None, "https": None} ) if response.status_code == 200: result = response.json() print(f"[AI API] Raw response: {result}") # 解析响应 - 尝试多种格式 if 'output' in result: for item in result['output']: if item.get('type') == 'message': content = item.get('content') if isinstance(content, str): return content elif isinstance(content, list): for part in content: if isinstance(part, dict) and part.get('type') == 'text': return part.get('text', '') elif isinstance(content, dict) and 'text' in content: return content.get('text', '') # 尝试其他响应格式 if 'choices' in result and len(result['choices']) > 0: message = result['choices'][0].get('message', {}) return message.get('content', '') # 尝试直接获取文本内容 if 'text' in result: return result['text'] # 尝试获取响应中的message if 'message' in result: msg = result['message'] if isinstance(msg, str): return msg elif isinstance(msg, dict) and 'content' in msg: return msg['content'] # 返回字符串形式 return str(result) else: print(f"[AI API] Error: {response.status_code} - {response.text}") return None except Exception as e: print(f"[AI API] Exception: {e}") return None def parse_ai_response(ai_response): """解析AI响应,提取族谱原文""" if not ai_response: return None, None # 尝试从响应中提取JSON try: # 移除可能的markdown代码块标记 text = ai_response.strip() if text.startswith('```json'): text = text[7:] if text.endswith('```'): text = text[:-3] text = text.strip() # 尝试解析JSON result = json.loads(text) traditional = result.get('genealogy_traditional', '') simplified = result.get('genealogy_simplified', '') if traditional or simplified: return traditional, simplified except json.JSONDecodeError: print(f"[AI Parse] JSON decode error: {ai_response[:200]}") # 如果JSON解析失败,尝试直接提取文本 # 尝试匹配模式 import re traditional_match = re.search(r'genealogy_traditional["\']?\s*[,:]\s*["\']([^"\']+)["\']', ai_response) simplified_match = re.search(r'genealogy_simplified["\']?\s*[,:]\s*["\']([^"\']+)["\']', ai_response) traditional = traditional_match.group(1) if traditional_match else '' simplified = simplified_match.group(1) if simplified_match else '' return traditional, simplified @app.route('/manager/api/members/empty_genealogy', methods=['GET']) def get_members_empty_genealogy(): """获取族谱原文为空的成员列表""" if 'user_id' not in session: return jsonify({"success": False, "message": "Unauthorized"}), 401 page = int(request.args.get('page', 1)) per_page = int(request.args.get('per_page', 20)) offset = (page - 1) * per_page conn = get_db_connection() try: with conn.cursor() as cursor: # Count total cursor.execute(""" SELECT COUNT(*) as total FROM family_member_info WHERE (genealogy_original_traditional IS NULL OR genealogy_original_traditional = '' OR genealogy_original_traditional = 'None') AND (genealogy_original_simplified IS NULL OR genealogy_original_simplified = '' OR genealogy_original_simplified = 'None') """) total_result = cursor.fetchone() total = total_result['total'] if total_result else 0 # Get members cursor.execute(""" SELECT id, name, simplified_name, name_word_generation, sex, occupation, notes, birth_place FROM family_member_info WHERE (genealogy_original_traditional IS NULL OR genealogy_original_traditional = '' OR genealogy_original_traditional = 'None') AND (genealogy_original_simplified IS NULL OR genealogy_original_simplified = '' OR genealogy_original_simplified = 'None') LIMIT %s OFFSET %s """, (per_page, offset)) members = cursor.fetchall() # 关联查询父亲信息 member_list = [] for member in members: cursor.execute(""" SELECT p.name, p.simplified_name, p.name_word_generation FROM family_relation_info r JOIN family_member_info p ON r.parent_mid = p.id WHERE r.child_mid = %s AND r.relation_type = 1 LIMIT 1 """, (member['id'],)) father = cursor.fetchone() cursor.execute(""" SELECT p.name, p.simplified_name FROM family_relation_info r JOIN family_member_info p ON r.parent_mid = p.id WHERE r.child_mid = %s AND r.relation_type = 2 LIMIT 1 """, (member['id'],)) mother = cursor.fetchone() member_list.append({ 'id': member['id'], 'name': member['name'], 'simplified_name': member['simplified_name'], 'name_word_generation': member['name_word_generation'], 'sex': member['sex'], 'occupation': member['occupation'], 'notes': member['notes'], 'birth_place': member['birth_place'], 'father_name': father['name'] if father else None, 'father_simplified_name': father['simplified_name'] if father else None, 'father_generation': father['name_word_generation'] if father else None, 'mother_name': mother['name'] if mother else None, 'mother_simplified_name': mother['simplified_name'] if mother else None }) return jsonify({"success": True, "members": member_list, "total": total}) except Exception as e: return jsonify({"success": False, "message": f"获取成员失败: {e}"}), 500 finally: conn.close() @app.route('/manager/api/members/batch_process_genealogy', methods=['POST']) def batch_process_genealogy(): """批量处理成员族谱原文""" if 'user_id' not in session: return jsonify({"success": False, "message": "Unauthorized"}), 401 data = request.get_json() member_ids = data.get('member_ids', []) if not member_ids or len(member_ids) > 10: return jsonify({"success": False, "message": "请选择1-10个成员进行处理"}), 400 conn = get_db_connection() results = [] try: for member_id in member_ids: with conn.cursor() as cursor: cursor.execute(""" SELECT id, name, simplified_name, name_word_generation, birth_place, occupation, notes, sex FROM family_member_info WHERE id = %s """, (member_id,)) member = cursor.fetchone() # 获取父亲信息 cursor.execute(""" SELECT p.name, p.simplified_name FROM family_relation_info r JOIN family_member_info p ON r.parent_mid = p.id WHERE r.child_mid = %s AND r.relation_type = 1 LIMIT 1 """, (member_id,)) father = cursor.fetchone() # 获取母亲信息 cursor.execute(""" SELECT p.name, p.simplified_name FROM family_relation_info r JOIN family_member_info p ON r.parent_mid = p.id WHERE r.child_mid = %s AND r.relation_type = 2 LIMIT 1 """, (member_id,)) mother = cursor.fetchone() member['father_name'] = father['name'] if father else None member['father_simplified_name'] = father['simplified_name'] if father else None member['mother_name'] = mother['name'] if mother else None member['mother_simplified_name'] = mother['simplified_name'] if mother else None if not member: results.append({"member_id": member_id, "success": False, "message": "成员不存在"}) continue # 构建AI提示词 member_info = f""" 姓名(繁体):{member['name']} 姓名(简体):{member['simplified_name'] or '未知'} 世系世代:{member['name_word_generation'] or '未知'} 父亲姓名:{member['father_name'] or '未知'} 母亲姓名:{member['mother_name'] or '未知'} 出生地:{member['birth_place'] or '未知'} 职业:{member['occupation'] or '未知'} 备注:{member['notes'] or '无'} """ prompt = f""" 请根据以下人员信息,模拟生成该人员的族谱原文: {member_info} 请输出两个字段: 1. genealogy_traditional: 族谱原文(繁体中文,模仿传统族谱格式) 2. genealogy_simplified: 族谱原文(简体中文,将繁体转换为简体) 请严格按照JSON格式输出,不要包含任何额外解释: {{ "genealogy_traditional": "繁体族谱原文内容", "genealogy_simplified": "简体族谱原文内容" }} """ ai_response = call_doubao_api(prompt) print(f"[AI Response] Member {member_id}: {ai_response}") if ai_response: # 使用新的解析函数 traditional, simplified = parse_ai_response(ai_response) if traditional or simplified: with conn.cursor() as cursor: cursor.execute(""" UPDATE family_member_info SET genealogy_original_traditional = %s, genealogy_original_simplified = %s WHERE id = %s """, (traditional, simplified, member_id)) conn.commit() results.append({ "member_id": member_id, "name": member['name'], "success": True, "traditional": traditional[:100] + "..." if len(traditional) > 100 else traditional, "simplified": simplified[:100] + "..." if len(simplified) > 100 else simplified }) else: results.append({ "member_id": member_id, "name": member['name'], "success": False, "message": "AI未返回有效数据" }) else: results.append({ "member_id": member_id, "name": member['name'], "success": False, "message": "AI调用失败" }) return jsonify({"success": True, "results": results}) except Exception as e: print(f"[Batch Process] Exception: {e}") return jsonify({"success": False, "message": f"批量处理失败: {e}"}), 500 finally: conn.close() @app.route('/manager/api/member/') def get_member(member_id): if 'user_id' not in session: return jsonify({"success": False, "message": "Unauthorized"}), 401 conn = get_db_connection() try: with conn.cursor() as cursor: cursor.execute("SELECT id, name, name_word_generation, source_record_id FROM family_member_info WHERE id = %s", (member_id,)) member = cursor.fetchone() if not member: return jsonify({"success": False, "message": "成员不存在"}), 404 return jsonify({"member": member}) except Exception as e: return jsonify({"success": False, "message": f"获取成员失败: {e}"}), 500 finally: conn.close() @app.route('/manager/api/check_relations', methods=['POST']) def check_relations(): if 'user_id' not in session: return jsonify({"success": False, "message": "Unauthorized"}), 401 data = request.json people = data.get('people', []) if not people: return jsonify({"success": False, "matches": {}}) conn = get_db_connection() matches = {} try: with conn.cursor() as cursor: # Collect all father names and spouse names to query names_to_check = set() for p in people: if p.get('father_name'): names_to_check.add(p['father_name']) if p.get('spouse_name'): names_to_check.add(p['spouse_name']) if not names_to_check: return jsonify({"success": True, "matches": {}}) # Query DB format_strings = ','.join(['%s'] * len(names_to_check)) if names_to_check: sql = "SELECT id, name, simplified_name, sex, birthday FROM family_member_info WHERE name IN (%s) OR simplified_name IN (%s)" % (format_strings, format_strings) cursor.execute(sql, tuple(names_to_check) * 2) results = cursor.fetchall() else: results = [] # Organize by name db_map = {} # name -> [list of members] for r in results: # Add under 'name' (Traditional/Old Simplified) if r['name'] not in db_map: db_map[r['name']] = [] db_map[r['name']].append(r) # Add under 'simplified_name' if exists if r.get('simplified_name'): sname = r['simplified_name'] if sname not in db_map: db_map[sname] = [] # Avoid duplicates if simplified_name is same as name? # The list might contain same object reference, which is fine. if sname != r['name']: db_map[sname].append(r) # Build matches for each input person for index, p in enumerate(people): p_match = {} # Check Father fname = p.get('father_name') if fname and fname in db_map: candidates = db_map[fname] # Filter: Father should be Male usually, and older than child (if birthday available) valid_fathers = [c for c in candidates if c['sex'] == 1] if valid_fathers: p_match['father'] = valid_fathers # Return all candidates # Check Spouse sname = p.get('spouse_name') if sname and sname in db_map: candidates = db_map[sname] # Filter: Spouse usually opposite sex target_sex = 1 if p.get('sex') == '女' else 2 valid_spouses = [c for c in candidates if c['sex'] == target_sex] if valid_spouses: p_match['spouse'] = valid_spouses if p_match: matches[index] = p_match return jsonify({"success": True, "matches": matches}) finally: conn.close() @app.route('/manager/api/upload_reference', methods=['POST']) def api_upload_reference(): """新增成员时上传参考件(无需 member_id)""" if 'user_id' not in session: return jsonify({"success": False, "message": "未登录"}), 401 file = request.files.get('file') try: oss_url, file_name = save_reference_image_to_oss(file) username = session.get('username', 'genealogy') return jsonify({ "success": True, "oss_url": add_oss_watermark(oss_url, username), "oss_url_raw": oss_url, "file_name": file_name, }) except ValueError as e: return jsonify({"success": False, "message": str(e)}), 400 except Exception as e: print(f"[Upload Reference] Error: {e}") return jsonify({"success": False, "message": str(e)}), 500 @app.route('/manager/api/member//reference', methods=['POST', 'DELETE']) def api_member_reference(member_id): """编辑成员时上传或删除参考件""" if 'user_id' not in session: return jsonify({"success": False, "message": "未登录"}), 401 username = session.get('username', 'genealogy') conn = get_db_connection() try: with conn.cursor() as cursor: cursor.execute("SELECT id FROM family_member_info WHERE id = %s", (member_id,)) if not cursor.fetchone(): return jsonify({"success": False, "message": "成员不存在"}), 404 if request.method == 'DELETE': cursor.execute(""" UPDATE family_member_info SET reference_oss_url = NULL, reference_file_name = NULL, reference_upload_time = NULL, reference_upload_uid = NULL WHERE id = %s """, (member_id,)) conn.commit() return jsonify({"success": True, "message": "参考件已删除"}) file = request.files.get('file') oss_url, file_name = save_reference_image_to_oss(file, member_id=member_id) cursor.execute(""" UPDATE family_member_info SET reference_oss_url = %s, reference_file_name = %s, reference_upload_time = %s, reference_upload_uid = %s WHERE id = %s """, (oss_url, file_name, datetime.now(), session['user_id'], member_id)) conn.commit() return jsonify({ "success": True, "message": "参考件上传成功", "oss_url": add_oss_watermark(oss_url, username), "oss_url_raw": oss_url, "file_name": file_name, }) except ValueError as e: return jsonify({"success": False, "message": str(e)}), 400 except Exception as e: conn.rollback() print(f"[Member Reference] Error: {e}") return jsonify({"success": False, "message": str(e)}), 500 finally: conn.close() @app.route('/manager/add_member', methods=['GET', 'POST']) def add_member(): if 'user_id' not in session: return redirect(url_for('login')) # 获取当前登录用户名 username = session.get('username', 'genealogy') conn = get_db_connection() try: # Check for source_record_id (from GET or POST) source_record_id = normalize_source_record_id( request.args.get('record_id') or request.form.get('source_record_id') ) prefilled_content = None source_oss_url = None if source_record_id: with conn.cursor() as cursor: cursor.execute("SELECT oss_url, ai_content, ai_status FROM genealogy_records WHERE id = %s", (source_record_id,)) rec = cursor.fetchone() if rec: source_oss_url = rec['oss_url'] # Check ai_status (2 = success) if rec['ai_status'] == 2 and rec['ai_content']: prefilled_content = rec['ai_content'] if request.method == 'POST': # 处理生日转换为 Unix 时间戳 birthday_str = request.form.get('birthday') birthday_ts = 0 if birthday_str: try: birthday_ts = int(datetime.strptime(birthday_str, '%Y-%m-%d').timestamp()) except ValueError: birthday_ts = 0 # 关系数据 - 支持多条关系 relations = [] # Parse relations from form data i = 0 while i < 50: parent_mid = request.form.get(f'relations[{i}][parent_mid]') rel_type = request.form.get(f'relations[{i}][relation_type]') if parent_mid is None and rel_type is None: break i += 1 if not parent_mid or not rel_type: continue sub_rel_type = request.form.get(f'relations[{i-1}][sub_relation_type]', '0') child_order_raw = request.form.get(f'relations[{i-1}][child_order]', '') child_order = int(child_order_raw) if child_order_raw.strip().isdigit() else None relations.append({ 'parent_mid': int(parent_mid), 'relation_type': int(rel_type), 'sub_relation_type': int(sub_rel_type), 'child_order': child_order }) # For backward compatibility, check old-style single relation if not relations: related_mid = request.form.get('related_mid') relation_type = request.form.get('relation_type') if related_mid and relation_type: child_order_raw = request.form.get('child_order', '') child_order = int(child_order_raw) if child_order_raw.strip().isdigit() else None relations.append({ 'parent_mid': int(related_mid), 'relation_type': int(relation_type), 'sub_relation_type': int(request.form.get('sub_relation_type', '0')), 'child_order': child_order }) # 年龄校验逻辑 for rel in relations: if rel['relation_type'] in [1, 2]: # 1:父子 2:母子 with conn.cursor() as cursor: cursor.execute("SELECT name, birthday FROM family_member_info WHERE id = %s", (rel['parent_mid'],)) parent = cursor.fetchone() if parent and parent['birthday'] > 0 and birthday_ts > 0: if birthday_ts < parent['birthday']: error_msg = f"数据冲突:成员年龄不能比其父亲/母亲({parent['name']})大,请检查并修正出生日期。" flash(error_msg) # Re-fetch data for rendering cursor.execute("SELECT id, name FROM family_member_info ORDER BY name") all_members = cursor.fetchall() cursor.execute("SELECT * FROM genealogy_records ORDER BY page_number ASC") images = cursor.fetchall() # 为图片URL添加水印 for img in images: if img.get('oss_url'): img['oss_url'] = add_oss_watermark(img['oss_url'], username) if request.headers.get('X-Requested-With') == 'XMLHttpRequest' or request.is_json: return jsonify({ "success": False, "message": error_msg }), 400 selected_member_name = '' return render_template('add_member.html', all_members=all_members, images=images, prefilled_content=prefilled_content, source_oss_url=source_oss_url, source_record_id=source_record_id, selected_member_name=selected_member_name) break # 获取表单数据 data = { 'name': request.form['name'], 'simplified_name': request.form.get('simplified_name'), 'genealogy_original_traditional': request.form.get('genealogy_original_traditional'), 'genealogy_original_simplified': request.form.get('genealogy_original_simplified'), 'former_name': request.form.get('former_name'), 'childhood_name': request.form.get('childhood_name'), 'name_word': request.form.get('name_word'), 'name_word_generation': ';'.join([g.strip() for g in request.form.getlist('lineage_generations[]') if g.strip()]), 'name_title': request.form.get('name_title'), 'sex': request.form['sex'], 'birthday': birthday_ts, 'is_pass_away': request.form.get('is_pass_away', 0), 'marital_status': request.form.get('marital_status', 0), 'birth_place': request.form.get('birth_place'), 'branch_family_hall': request.form.get('branch_family_hall'), 'cluster_place': request.form.get('cluster_place'), 'nation': request.form.get('nation'), 'residential_address': request.form.get('residential_address'), 'phone': request.form.get('phone'), 'mail': request.form.get('mail'), 'wechat_account': request.form.get('wechat_account'), 'id_number': request.form.get('id_number'), 'occupation': request.form.get('occupation'), 'educational': request.form.get('educational'), 'blood_type': request.form.get('blood_type'), 'religion': request.form.get('religion'), 'hobbies': request.form.get('hobbies'), 'personal_achievements': request.form.get('personal_achievements'), 'family_rank': request.form.get('family_rank'), 'tags': request.form.get('tags'), 'notes': request.form.get('notes'), 'suspected_error': request.form.get('suspected_error').strip() if request.form.get('suspected_error') else '', 'source_record_id': normalize_source_record_id(request.form.get('source_record_id') or None), 'create_uid': session['user_id'] # 记录当前操作人 } apply_reference_from_form(data, request.form, session, is_update=False) # ... (rest of logic) ... with conn.cursor() as cursor: print(f"[Add Member] Inserting member data: {data}") fields = ", ".join(data.keys()) placeholders = ", ".join(["%s"] * len(data)) sql = f"INSERT INTO family_member_info ({fields}) VALUES ({placeholders})" print(f"[Add Member] Executing SQL: {sql}") print(f"[Add Member] SQL parameters: {list(data.values())}") cursor.execute(sql, list(data.values())) member_id = cursor.lastrowid print(f"[Add Member] Inserted member with ID: {member_id}") # 录入关系(支持多条) sql_relation = """ INSERT INTO family_relation_info (parent_mid, child_mid, relation_type, sub_relation_type, source_mid, generation_diff, child_order) VALUES (%s, %s, %s, %s, %s, %s, %s) """ for rel in relations: rel_type = rel['relation_type'] parent_mid = rel['parent_mid'] sub_relation_type = rel['sub_relation_type'] child_order = rel.get('child_order') if rel_type in [1, 2] else None gen_diff = 1 if rel_type in [1, 2] else 0 print(f"[Add Member] Inserting relation: parent_mid={parent_mid}, child_mid={member_id}, relation_type={rel_type}, sub_relation_type={sub_relation_type}, child_order={child_order}") cursor.execute(sql_relation, (parent_mid, member_id, rel_type, sub_relation_type, member_id, gen_diff, child_order)) # Update AI Record Status if applicable source_record_id = data.get('source_record_id') source_index = request.form.get('source_index') if source_record_id and source_index and source_index.isdigit(): try: idx = int(source_index) print(f"[Add Member] Updating AI record status: record_id={source_record_id}, index={idx}") cursor.execute("SELECT ai_content FROM genealogy_records WHERE id = %s FOR UPDATE", (source_record_id,)) rec = cursor.fetchone() if rec and rec['ai_content']: import json content = json.loads(rec['ai_content']) # Ensure content is a list (it might be a dict if single object, though we try to normalize) if isinstance(content, dict): content = [content] if isinstance(content, list): updated = False if 0 <= idx < len(content): # Always update the status regardless of current value content[idx]['is_imported'] = True content[idx]['imported_member_id'] = member_id updated = True if updated: new_content = json.dumps(content, ensure_ascii=False) cursor.execute("UPDATE genealogy_records SET ai_content = %s WHERE id = %s", (new_content, source_record_id)) print(f"[Add Member] Updated AI record status") except Exception as e: print(f"[Add Member] Error updating AI content status: {e}") print(f"[Add Member] Committing transaction") if safe_commit(conn): print(f"[Add Member] Transaction committed successfully") # 代数连续性校验 gen_warns = _check_member_generation(conn, member_id) if request.headers.get('X-Requested-With') == 'XMLHttpRequest' or request.is_json: return jsonify({"success": True, "message": "成员录入成功", "member_id": member_id, "generation_warnings": gen_warns}) flash('成员录入成功') for w in gen_warns: flash(w, 'warning') return redirect(url_for('members')) else: print(f"[Add Member] Transaction commit failed!") if request.headers.get('X-Requested-With') == 'XMLHttpRequest' or request.is_json: return jsonify({"success": False, "message": "成员录入失败,事务提交失败"}), 500 flash('成员录入失败,事务提交失败') return redirect(url_for('add_member')) with conn.cursor() as cursor: cursor.execute("SELECT id, name FROM family_member_info ORDER BY name") all_members = cursor.fetchall() cursor.execute("SELECT * FROM genealogy_records ORDER BY page_number ASC") images = cursor.fetchall() # 为图片URL添加水印 for img in images: if img.get('oss_url'): img['oss_url'] = add_oss_watermark(img['oss_url'], username) except Exception as e: flash(f'发生错误: {e}') all_members = [] images = [] finally: conn.close() selected_member_name = '' return render_template('add_member.html', all_members=all_members, images=images, prefilled_content=prefilled_content, source_oss_url=source_oss_url, source_record_id=source_record_id, selected_member_name=selected_member_name) @app.route('/manager/edit_member/', methods=['GET', 'POST']) def edit_member(member_id): if 'user_id' not in session: return redirect(url_for('login')) # 获取当前登录用户名 username = session.get('username', 'genealogy') conn = get_db_connection() try: if request.method == 'POST': birthday_str = request.form.get('birthday') birthday_ts = 0 if birthday_str: try: birthday_ts = int(datetime.strptime(birthday_str, '%Y-%m-%d').timestamp()) except ValueError: birthday_ts = 0 # 关系数据 - 支持多条关系 relations = [] i = 0 while i < 50: # 最多 50 条,防止无限循环 parent_mid = request.form.get(f'relations[{i}][parent_mid]') rel_type = request.form.get(f'relations[{i}][relation_type]') # 该索引在表单中完全不存在时(非空值,而是键不存在)说明已超出行数,退出 if parent_mid is None and rel_type is None: break i += 1 # parent_mid 或 relation_type 为空(用户清除了该行)则跳过,不入库 if not parent_mid or not rel_type: continue sub_rel_type = request.form.get(f'relations[{i-1}][sub_relation_type]', '0') child_order_raw = request.form.get(f'relations[{i-1}][child_order]', '') child_order = int(child_order_raw) if child_order_raw.strip().isdigit() else None relations.append({ 'parent_mid': int(parent_mid), 'relation_type': int(rel_type), 'sub_relation_type': int(sub_rel_type), 'child_order': child_order, }) # For backward compatibility if not relations: related_mid = request.form.get('related_mid') relation_type = request.form.get('relation_type') if related_mid and relation_type: child_order_raw = request.form.get('child_order', '') relations.append({ 'parent_mid': int(related_mid), 'relation_type': int(relation_type), 'sub_relation_type': int(request.form.get('sub_relation_type', '0')), 'child_order': int(child_order_raw) if child_order_raw.strip().isdigit() else None, }) # 年龄校验逻辑 for rel in relations: if rel['relation_type'] in [1, 2]: with conn.cursor() as cursor: cursor.execute("SELECT name, birthday FROM family_member_info WHERE id = %s", (rel['parent_mid'],)) parent = cursor.fetchone() if parent and parent['birthday'] > 0 and birthday_ts > 0: if birthday_ts < parent['birthday']: flash(f"数据冲突:成员年龄不能比其父亲/母亲({parent['name']})大,请检查并修正出生日期。") # 重新加载编辑页所需数据 cursor.execute("SELECT * FROM family_member_info WHERE id = %s", (member_id,)) member = cursor.fetchone() member['birthday_date'] = birthday_str # 保持用户输入 cursor.execute("SELECT id, name FROM family_member_info WHERE id != %s ORDER BY name", (member_id,)) all_members = cursor.fetchall() cursor.execute("SELECT * FROM genealogy_records ORDER BY page_number ASC") images = cursor.fetchall() # 为图片URL添加水印 for img in images: if img.get('oss_url'): img['oss_url'] = add_oss_watermark(img['oss_url'], username) if request.headers.get('X-Requested-With') == 'XMLHttpRequest' or request.is_json: return jsonify({ "success": False, "message": f"数据冲突:成员年龄不能比其父亲/母亲({parent['name']})大,请检查并修正出生日期。" }), 400 selected_member_name = '' if member: clear_invalid_member_scan_fields(member) return render_template('add_member.html', member=member, images=images, all_members=all_members, selected_member_name=selected_member_name, source_record_id=normalize_source_record_id(member.get('source_record_id') if member else None)) break data = { 'name': request.form['name'], 'simplified_name': request.form.get('simplified_name'), 'genealogy_original_traditional': request.form.get('genealogy_original_traditional'), 'genealogy_original_simplified': request.form.get('genealogy_original_simplified'), 'former_name': request.form.get('former_name'), 'childhood_name': request.form.get('childhood_name'), 'name_word': request.form.get('name_word'), 'name_word_generation': ';'.join([g.strip() for g in request.form.getlist('lineage_generations[]') if g.strip()]), 'name_title': request.form.get('name_title'), 'sex': request.form['sex'], 'birthday': birthday_ts, 'is_pass_away': request.form.get('is_pass_away', 0), 'marital_status': request.form.get('marital_status', 0), 'birth_place': request.form.get('birth_place'), 'branch_family_hall': request.form.get('branch_family_hall'), 'cluster_place': request.form.get('cluster_place'), 'nation': request.form.get('nation'), 'residential_address': request.form.get('residential_address'), 'phone': request.form.get('phone'), 'mail': request.form.get('mail'), 'wechat_account': request.form.get('wechat_account'), 'id_number': request.form.get('id_number'), 'occupation': request.form.get('occupation'), 'educational': request.form.get('educational'), 'blood_type': request.form.get('blood_type'), 'religion': request.form.get('religion'), 'hobbies': request.form.get('hobbies'), 'personal_achievements': request.form.get('personal_achievements'), 'family_rank': request.form.get('family_rank'), 'tags': request.form.get('tags'), 'notes': request.form.get('notes'), 'suspected_error': request.form.get('suspected_error').strip() if request.form.get('suspected_error') else '', 'source_record_id': normalize_source_record_id(request.form.get('source_record_id') or None), 'create_uid': session['user_id'] # 记录当前操作人 } apply_reference_from_form(data, request.form, session, is_update=True) with conn.cursor() as cursor: print(f"[Edit Member] Updating member data: {data}") update_parts = [f"{k} = %s" for k in data.keys()] sql = f"UPDATE family_member_info SET {', '.join(update_parts)} WHERE id = %s" print(f"[Edit Member] Executing SQL: {sql}") print(f"[Edit Member] SQL parameters: {list(data.values()) + [member_id]}") cursor.execute(sql, list(data.values()) + [member_id]) print(f"[Edit Member] Updated member with ID: {member_id}") # 更新关系(支持多条) print(f"[Edit Member] Deleting existing relations for member ID: {member_id}") cursor.execute("DELETE FROM family_relation_info WHERE source_mid = %s", (member_id,)) sql_relation = """ INSERT INTO family_relation_info (parent_mid, child_mid, relation_type, sub_relation_type, source_mid, generation_diff, child_order) VALUES (%s, %s, %s, %s, %s, %s, %s) """ for rel in relations: rel_type = rel['relation_type'] parent_mid = rel['parent_mid'] sub_relation_type = rel['sub_relation_type'] child_order = rel.get('child_order') if rel_type in [1, 2] else None gen_diff = 1 if rel_type in [1, 2] else 0 print(f"[Edit Member] Inserting relation: parent_mid={parent_mid}, child_mid={member_id}, relation_type={rel_type}, sub_relation_type={sub_relation_type}, child_order={child_order}") cursor.execute(sql_relation, (parent_mid, member_id, rel_type, sub_relation_type, member_id, gen_diff, child_order)) # Update AI Record Status if applicable source_record_id = data.get('source_record_id') source_index = request.form.get('source_index') if source_record_id and source_index and source_index.isdigit(): try: idx = int(source_index) print(f"[Edit Member] Updating AI record status: record_id={source_record_id}, index={idx}") cursor.execute("SELECT ai_content FROM genealogy_records WHERE id = %s FOR UPDATE", (source_record_id,)) rec = cursor.fetchone() if rec and rec['ai_content']: import json content = json.loads(rec['ai_content']) if isinstance(content, dict): content = [content] if isinstance(content, list): updated = False if 0 <= idx < len(content): # Always update the status regardless of current value content[idx]['is_imported'] = True content[idx]['imported_member_id'] = member_id updated = True if updated: new_content = json.dumps(content, ensure_ascii=False) cursor.execute("UPDATE genealogy_records SET ai_content = %s WHERE id = %s", (new_content, source_record_id)) print(f"[Edit Member] Updated AI record status") except Exception as e: print(f"[Edit Member] Error updating AI content status: {e}") print(f"[Edit Member] Committing transaction") conn.commit() print(f"[Edit Member] Transaction committed successfully") # 代数连续性校验 gen_warns = _check_member_generation(conn, member_id) if request.headers.get('X-Requested-With') == 'XMLHttpRequest' or request.is_json: return jsonify({"success": True, "message": "成员信息更新成功", "generation_warnings": gen_warns}) flash('成员信息更新成功') for w in gen_warns: flash(w, 'warning') return redirect(url_for('members')) with conn.cursor() as cursor: cursor.execute("SELECT * FROM family_member_info WHERE id = %s", (member_id,)) member = cursor.fetchone() if not member: flash('成员不存在') return redirect(url_for('members')) # 格式化日期供显示 if member.get('birthday'): member['birthday_date'] = format_timestamp(member['birthday']) # 获取现有关系(支持多条) cursor.execute("SELECT * FROM family_relation_info WHERE source_mid = %s ORDER BY id", (member_id,)) relations = cursor.fetchall() cursor.execute("SELECT id, name FROM family_member_info WHERE id != %s ORDER BY name", (member_id,)) all_members = cursor.fetchall() cursor.execute("SELECT * FROM genealogy_records ORDER BY page_number ASC") images = cursor.fetchall() # 为图片URL添加水印 for img in images: if img.get('oss_url'): img['oss_url'] = add_oss_watermark(img['oss_url'], username) if member.get('reference_oss_url'): member['reference_image_url'] = add_oss_watermark(member['reference_oss_url'], username) finally: conn.close() # Calculate selected_member_names based on relations selected_member_names = [] if relations: for rel in relations: if rel.get('parent_mid'): for m in all_members: if m['id'] == rel['parent_mid']: selected_member_names.append(m['name']) break else: selected_member_names.append('') else: selected_member_names.append('') # Get source_record_id from member data if member: clear_invalid_member_scan_fields(member) source_record_id = normalize_source_record_id(member.get('source_record_id') if member else None) return render_template('add_member.html', member=member, images=images, all_members=all_members, relations=relations, selected_member_names=selected_member_names, source_record_id=source_record_id) @app.route('/manager/member_detail/') def member_detail(member_id): if 'user_id' not in session: return redirect(url_for('login')) # 获取当前登录用户名 username = session.get('username', 'genealogy') conn = get_db_connection() try: with conn.cursor() as cursor: # Join with genealogy_records to get source image info sql = """ SELECT m.*, r.oss_url as source_image_url, r.page_number as source_page, r.genealogy_version, r.genealogy_source, r.upload_person FROM family_member_info m LEFT JOIN genealogy_records r ON m.source_record_id = r.id AND m.source_record_id != %s WHERE m.id = %s """ cursor.execute(sql, (INVALID_SOURCE_RECORD_ID, member_id)) member = cursor.fetchone() if not member: flash('成员不存在') return redirect(url_for('members')) clear_invalid_member_scan_fields(member) # 为图片URL添加水印 if member.get('source_image_url'): member['source_image_url'] = add_oss_watermark(member['source_image_url'], username) if member.get('reference_oss_url'): member['reference_image_url'] = add_oss_watermark(member['reference_oss_url'], username) member['birthday_str'] = format_timestamp(member.get('birthday')) # 获取关系(包含子类型和第几子) cursor.execute(""" SELECT m.id, m.name, m.simplified_name, r.relation_type, r.sub_relation_type, r.child_order FROM family_relation_info r JOIN family_member_info m ON r.parent_mid = m.id WHERE r.child_mid = %s """, (member_id,)) parents = cursor.fetchall() cursor.execute(""" SELECT m.id, m.name, m.simplified_name, r.relation_type, r.sub_relation_type, r.child_order FROM family_relation_info r JOIN family_member_info m ON r.child_mid = m.id WHERE r.parent_mid = %s ORDER BY COALESCE(r.child_order, 99999), m.id """, (member_id,)) children = cursor.fetchall() # 计算入继说明:若该成员有 sub_relation_type=3(养父母)记录, # 则从 sub_relation_type=2(生父母)记录中取排行,生成"由xxx公第N子入继" _order_labels = {1:'长', 2:'次', 3:'三', 4:'四', 5:'五', 6:'六', 7:'七', 8:'八', 9:'九', 10:'十'} adopt_info = None is_adopted_in = any(p['sub_relation_type'] == 3 for p in parents) if is_adopted_in: bio = next((p for p in parents if p['sub_relation_type'] == 2), None) if bio: bio_name = bio['simplified_name'] or bio['name'] order = bio['child_order'] order_str = _order_labels.get(order, f'第{order}') if order else '某' adopt_info = f"由{bio_name}公{order_str}子入继" finally: conn.close() return render_template('member_detail.html', member=member, parents=parents, children=children, adopt_info=adopt_info) @app.route('/manager/delete_member/', methods=['POST']) def delete_member(member_id): if 'user_id' not in session: return jsonify({"success": False, "message": "Unauthorized"}), 401 conn = get_db_connection() try: with conn.cursor() as cursor: # 1. 删除关系表中关联该成员的所有记录 cursor.execute("DELETE FROM family_relation_info WHERE parent_mid = %s OR child_mid = %s OR source_mid = %s", (member_id, member_id, member_id)) # 2. 删除成员本身 cursor.execute("DELETE FROM family_member_info WHERE id = %s", (member_id,)) conn.commit() flash('成员及其关系已成功删除') return redirect(url_for('members')) except Exception as e: conn.rollback() flash(f'删除失败: {e}') return redirect(url_for('members')) finally: conn.close() @app.route('/manager/home') def home(): """Home page - Dashboard for the genealogy management system""" if 'user_id' not in session: return redirect(url_for('login')) # Force re-login if is_super_admin not set in session (fresh login required) if 'is_super_admin' not in session: session.clear() flash('请重新登录以获取最新权限') return redirect(url_for('login')) conn = get_db_connection() try: with conn.cursor() as cursor: # Get member count cursor.execute("SELECT COUNT(*) as count FROM family_member_info") member_count = cursor.fetchone()['count'] # Get record count cursor.execute("SELECT COUNT(*) as count FROM genealogy_records") record_count = cursor.fetchone()['count'] # Get PDF count cursor.execute("SELECT COUNT(*) as count FROM genealogy_pdfs") pdf_count = cursor.fetchone()['count'] # Get suspected error count cursor.execute("SELECT COUNT(*) as count FROM family_member_info WHERE suspected_error IS NOT NULL AND TRIM(suspected_error) != ''") error_count = cursor.fetchone()['count'] finally: conn.close() return render_template('home.html', member_count=member_count, record_count=record_count, pdf_count=pdf_count, error_count=error_count) @app.route('/manager/login', methods=['GET', 'POST']) def login(): if request.method == 'POST': username = request.form['username'] password = request.form['password'] try: conn = get_db_connection() try: with conn.cursor() as cursor: cursor.execute("SELECT * FROM users WHERE username=%s AND password=%s", (username, password)) user = cursor.fetchone() if user: session['user_id'] = user['id'] session['username'] = user['username'] session['is_super_admin'] = user.get('is_super_admin', 0) == 1 return redirect(url_for('home')) else: flash('用户名或密码错误') finally: conn.close() except Exception as e: flash(f'数据库连接错误: {str(e)}') print(f'Login error: {str(e)}') return render_template('login.html') @app.route('/manager/logout') def logout(): session.clear() return redirect(url_for('login')) @app.route('/manager/api/check_name') def check_name(): if 'user_id' not in session: return jsonify({"success": False, "message": "Unauthorized"}), 401 name = request.args.get('name', '').strip() if not name: return jsonify({"success": True, "exists": False}) conn = get_db_connection() try: with conn.cursor() as cursor: # Check for name or simplified_name match cursor.execute("SELECT id, name, simplified_name, sex, birthday, is_pass_away FROM family_member_info WHERE name = %s OR simplified_name = %s", (name, name)) matches = cursor.fetchall() if matches: # Format birthday for display for m in matches: if m.get('birthday'): m['birthday_str'] = format_timestamp(m['birthday']) else: m['birthday_str'] = '未知' return jsonify({"success": True, "exists": True, "matches": matches}) else: return jsonify({"success": True, "exists": False}) except Exception as e: return jsonify({"success": False, "error": str(e)}), 500 finally: conn.close() import requests import json import re @app.route('/manager/api/recognize_image', methods=['POST']) def recognize_image(): if 'user_id' not in session: return jsonify({"success": False, "message": "Unauthorized"}), 401 data = request.json image_url = data.get('image_url') if not image_url: return jsonify({"success": False, "message": "No image URL provided"}), 400 api_key = "a1800657-9212-4afe-9b7c-b49f015c54d3" api_url = "https://ark.cn-beijing.volces.com/api/v3/responses" prompt = """ 请分析这张家谱图片,提取其中关于人物的信息。 请务必将繁体字转换为简体字(original_name 字段除外)。 特别注意:'name' 字段必须是纯简体中文,不能包含繁体字(例如:'學'应转换为'学','劉'应转换为'刘','萬'应转换为'万')。 请提取以下字段(如果存在): - original_name: 原始姓名(严格保持图片上的繁体字,不做任何修改或转换) - name: 简体姓名(必须转换为简体中文,去除不需要的敬称) - sex: 性别(男/女) - birthday: 出生日期(尝试转换为YYYY-MM-DD格式,如果无法确定年份可只填月日) - death_date: 逝世日期(如文本中出现“殁”、“葬”、“卒”等字眼及其对应的时间,请提取) - father_name: 父亲姓名 - spouse_name: 配偶姓名 - generation: 第几世/代数 - name_word: 字辈(例如名字为“学勤公”,“学”为字辈;提取名字中的字辈信息) - education: 学历/功名 - title: 官职/称号 请严格以JSON列表格式返回,不要包含Markdown代码块标记(如 ```json ... ```),直接返回JSON数组。 如果包含多个人物,请都提取出来。 """ ai_payload_url = get_normalized_base64_image(image_url) payload = { "model": "doubao-seed-1-8-251228", "stream": True, "input": [ { "role": "user", "content": [ { "type": "input_image", "image_url": ai_payload_url }, { "type": "input_text", "text": prompt } ] } ] } headers = { "Authorization": f"Bearer {api_key}", "Content-Type": "application/json" } def generate(): yield "正在连接 AI 服务...\n" try: # 使用 stream=True, timeout=120 # 增加 verify=False 以防 SSL 问题(开发环境) # 增加 proxies=None 以防本地代理干扰 with requests.post( api_url, json=payload, headers=headers, stream=True, timeout=1200, verify=False, proxies={"http": None, "https": None} ) as r: if r.status_code != 200: yield f"Error: API returned status code {r.status_code}. Response: {r.text}" return yield "连接成功,正在等待 AI 响应...\n" full_reasoning = "" json_started = False for line in r.iter_lines(): if line: line_str = line.decode('utf-8') if line_str.startswith('data: '): json_str = line_str[6:] if json_str.strip() == '[DONE]': break try: chunk = json.loads(json_str) # 处理 standard OpenAI choices format (content) if 'choices' in chunk and len(chunk['choices']) > 0: delta = chunk['choices'][0].get('delta', {}) if 'content' in delta: if not json_started: yield "|||JSON_START|||" json_started = True yield delta['content'] # 处理 standard OpenAI choices format (reasoning_content) if any if 'reasoning_content' in delta: yield f"\n[推理]: {delta['reasoning_content']}" # 处理 Doubao/Volcano specific formats # Type: response.reasoning_summary_text.delta if chunk.get('type') == 'response.reasoning_summary_text.delta': if 'delta' in chunk: yield chunk['delta'] # Type: response.text.delta if chunk.get('type') == 'response.text.delta': if 'delta' in chunk: if not json_started: yield "|||JSON_START|||" json_started = True yield chunk['delta'] # Type: response.output_item.added (May contain initial content or status) # Type: response.reasoning_summary_part.added except Exception as e: print(f"Chunk parse error: {e}") else: # 尝试直接解析非 data: 开头的行 try: chunk = json.loads(line_str) if 'choices' in chunk and len(chunk['choices']) > 0: content = chunk['choices'][0]['message']['content'] yield content except: pass except Exception as e: yield f"\n[Error: {str(e)}]" return Response(stream_with_context(generate()), mimetype='text/plain') @app.route('/manager/api/start_analysis/', methods=['POST']) def start_analysis(record_id): if 'user_id' not in session: return jsonify({"success": False, "message": "Unauthorized"}), 401 conn = get_db_connection() try: with conn.cursor() as cursor: # Check if record exists cursor.execute("SELECT oss_url, ai_status FROM genealogy_records WHERE id = %s", (record_id,)) record = cursor.fetchone() if not record: return jsonify({"success": False, "message": "Record not found"}), 404 # Update status to processing (1) cursor.execute("UPDATE genealogy_records SET ai_status = 1 WHERE id = %s", (record_id,)) conn.commit() # Start background task threading.Thread(target=process_ai_task, args=(record_id, record['oss_url'])).start() return jsonify({"success": True, "message": "Analysis started"}) except Exception as e: return jsonify({"success": False, "message": str(e)}), 500 finally: conn.close() def process_files_background(upload_folder, saved_files, manual_page, suggested_page, genealogy_version, genealogy_source, upload_person): current_suggested_page = int(manual_page) if manual_page and str(manual_page).isdigit() else suggested_page ensure_pdf_table() for item in saved_files: if len(item) >= 4: filename, file_path, file_page, original_filename = item[0], item[1], item[2], item[3] elif len(item) == 3: filename, file_path, file_page = item original_filename = filename else: filename, file_path = item[0], item[1] file_page = None original_filename = filename try: if filename.lower().endswith('.pdf'): import uuid display_pdf_name = (original_filename or filename).strip() or filename oss_pdf_name = secure_filename(display_pdf_name) if not oss_pdf_name or not oss_pdf_name.lower().endswith('.pdf'): oss_pdf_name = f"genealogy_pdf_{uuid.uuid4().hex[:8]}.pdf" pdf_oss_url = upload_to_oss(file_path, custom_filename=oss_pdf_name) if pdf_oss_url: desc_parts = [] if genealogy_version: desc_parts.append(genealogy_version) if genealogy_source: desc_parts.append(genealogy_source) pdf_description = ' · '.join(desc_parts) if desc_parts else '' conn_pdf = get_db_connection() try: with conn_pdf.cursor() as cursor: cursor.execute( "INSERT INTO genealogy_pdfs (file_name, oss_url, description, uploader) VALUES (%s, %s, %s, %s)", (display_pdf_name, pdf_oss_url, pdf_description, upload_person or '') ) conn_pdf.commit() except Exception as pdf_meta_e: print(f"Error inserting genealogy_pdfs for {display_pdf_name}: {pdf_meta_e}") finally: conn_pdf.close() else: print(f"Warning: full PDF upload to OSS failed for {filename}, scan pages will still be processed.") doc = fitz.open(file_path) for page_index in range(len(doc)): img_path = None try: page = doc.load_page(page_index) max_dim = max(page.rect.width, page.rect.height) zoom = 2000 / max_dim if max_dim > 0 else 2.0 if zoom > 2.5: zoom = 2.5 mat = fitz.Matrix(zoom, zoom) # Use get_pixmap with matrix directly pix = page.get_pixmap(matrix=mat) final_page = current_suggested_page if genealogy_version and genealogy_source: if final_page is not None and str(final_page).strip() != '': img_filename = f"{genealogy_version}_{genealogy_source}_{final_page}.jpg" else: img_filename = f"{genealogy_version}_{genealogy_source}.jpg" else: img_filename = f"{os.path.splitext(filename)[0]}_page_{page_index+1}.jpg" img_path = os.path.join(upload_folder, img_filename) # Save the pixmap to the image path pix.save(img_path) oss_url = upload_to_oss(img_path, custom_filename=img_filename) if oss_url: conn = get_db_connection() try: with conn.cursor() as cursor: sql = """INSERT INTO genealogy_records (file_name, oss_url, page_number, ai_status, genealogy_version, genealogy_source, upload_person, file_type) VALUES (%s, %s, %s, 1, %s, %s, %s, %s)""" cursor.execute(sql, (img_filename, oss_url, final_page, genealogy_version, genealogy_source, upload_person, 'PDF')) record_id = cursor.lastrowid conn.commit() threading.Thread(target=process_ai_task, args=(record_id, oss_url)).start() current_suggested_page += 1 finally: conn.close() except Exception as page_e: print(f"Error processing page {page_index} of {filename}: {page_e}") finally: if img_path and os.path.exists(img_path): try: os.remove(img_path) except: pass doc.close() else: img_path = compress_image_if_needed(file_path) # Use explicitly set page number if provided, otherwise extract from filename or auto-increment if file_page and str(file_page).isdigit(): final_page = int(file_page) current_suggested_page = final_page + 1 page_num = final_page else: page_num = extract_page_number(img_path) final_page = page_num if page_num else current_suggested_page ext = os.path.splitext(img_path)[1] if genealogy_version and genealogy_source: if final_page is not None and str(final_page).strip() != '': img_filename = f"{genealogy_version}_{genealogy_source}_{final_page}{ext}" else: img_filename = f"{genealogy_version}_{genealogy_source}{ext}" else: img_filename = os.path.basename(img_path) oss_url = upload_to_oss(img_path, custom_filename=img_filename) if oss_url: conn = get_db_connection() try: with conn.cursor() as cursor: sql = """INSERT INTO genealogy_records (file_name, oss_url, page_number, ai_status, genealogy_version, genealogy_source, upload_person, file_type) VALUES (%s, %s, %s, 1, %s, %s, %s, %s)""" cursor.execute(sql, (img_filename, oss_url, final_page, genealogy_version, genealogy_source, upload_person, '图片')) record_id = cursor.lastrowid conn.commit() threading.Thread(target=process_ai_task, args=(record_id, oss_url)).start() if page_num: current_suggested_page = page_num + 1 else: current_suggested_page += 1 finally: conn.close() if img_path and img_path != file_path and os.path.exists(img_path): try: os.remove(img_path) except: pass except Exception as e: print(f"Error processing file {filename}: {e}") finally: if os.path.exists(file_path): try: os.remove(file_path) except: pass @app.route('/manager/upload', methods=['GET', 'POST']) def upload(): if 'user_id' not in session: return redirect(url_for('login')) # 获取建议页码 (当前最大页码 + 1) conn = get_db_connection() suggested_page = 1 try: with conn.cursor() as cursor: cursor.execute("SELECT MAX(page_number) as max_p FROM genealogy_records") result = cursor.fetchone() if result and result['max_p']: suggested_page = result['max_p'] + 1 finally: conn.close() if request.method == 'POST': if 'file' not in request.files: flash('未选择文件') return redirect(request.url) files = request.files.getlist('file') if not files or files[0].filename == '': flash('未选择文件') return redirect(request.url) manual_page = request.form.get('manual_page') genealogy_version = request.form.get('genealogy_version', '') genealogy_source = request.form.get('genealogy_source', '') upload_person = request.form.get('upload_person', '') if not upload_person: upload_person = session.get('username', '') import uuid saved_files = [] for i, file in enumerate(files): if not file or not file.filename: continue original_filename = file.filename ext = os.path.splitext(original_filename)[1].lower() base_name = secure_filename(original_filename) # If secure_filename removes all characters (e.g., pure Chinese name) or just leaves 'pdf' if not base_name or base_name == ext.strip('.'): filename = f"upload_{uuid.uuid4().hex[:8]}{ext}" else: # Ensure the extension is preserved if not base_name.lower().endswith(ext): filename = f"{base_name}{ext}" else: filename = base_name file_path = os.path.join(app.config['UPLOAD_FOLDER'], filename) file.save(file_path) # Fetch individual page number if it exists file_page = request.form.get(f'page_number_{i}') saved_files.append((filename, file_path, file_page, original_filename)) if saved_files: threading.Thread( target=process_files_background, args=(app.config['UPLOAD_FOLDER'], saved_files, manual_page, suggested_page, genealogy_version, genealogy_source, upload_person) ).start() flash('上传完成,AI解析中,稍后查看') time.sleep(1.5) return redirect(url_for('index')) return render_template('upload.html', suggested_page=suggested_page) @app.route('/manager/save_upload', methods=['POST']) def save_upload(): if 'user_id' not in session: return redirect(url_for('login')) filename = request.form.get('filename') oss_url = request.form.get('oss_url') page_number = request.form.get('page_number') genealogy_version = request.form.get('genealogy_version', '') genealogy_source = request.form.get('genealogy_source', '') upload_person = request.form.get('upload_person', session.get('username', '')) file_type = request.form.get('file_type', '图片') if not oss_url or not page_number: flash('页码不能为空') return redirect(url_for('upload')) conn = get_db_connection() try: with conn.cursor() as cursor: sql = """INSERT INTO genealogy_records (file_name, oss_url, page_number, ai_status, genealogy_version, genealogy_source, upload_person, file_type) VALUES (%s, %s, %s, 1, %s, %s, %s, %s)""" cursor.execute(sql, (filename, oss_url, page_number, genealogy_version, genealogy_source, upload_person, file_type)) record_id = cursor.lastrowid conn.commit() # Start AI Task threading.Thread(target=process_ai_task, args=(record_id, oss_url)).start() flash('上传完成,AI解析中,稍后查看') except Exception as e: flash(f'保存失败: {e}') finally: conn.close() return redirect(url_for('index')) @app.route('/manager/delete_upload/', methods=['POST']) def delete_upload(record_id): if 'user_id' not in session: return jsonify({"success": False, "message": "Unauthorized"}), 401 conn = get_db_connection() try: with conn.cursor() as cursor: # 删除记录 cursor.execute("DELETE FROM genealogy_records WHERE id = %s", (record_id,)) conn.commit() flash('文件记录已成功删除') return redirect(url_for('index')) except Exception as e: conn.rollback() flash(f'删除失败: {e}') return redirect(url_for('index')) finally: conn.close() @app.route('/manager/upload_pdf', methods=['GET', 'POST']) def upload_pdf(): if 'user_id' not in session: return redirect(url_for('login')) if request.method == 'GET': return render_template('upload_pdf.html') # POST请求处理 if 'file' not in request.files: flash('请选择要上传的PDF文件') return redirect(request.url) file = request.files['file'] if file.filename == '': flash('请选择要上传的PDF文件') return redirect(request.url) # 检查文件类型 if not file.filename.lower().endswith('.pdf'): flash('只支持PDF文件上传') return redirect(request.url) # 获取表单数据 version_name = request.form.get('version_name', '').strip() version_source = request.form.get('version_source', '').strip() file_provider = request.form.get('file_provider', '').strip() # 验证必填字段 if not version_name: flash('版本名称为必填项') return redirect(request.url) if not version_source: flash('版本来源为必填项') return redirect(request.url) # 如果未提供文件提供人,使用当前登录用户 if not file_provider: file_provider = session.get('user_id', '未知') import uuid original_filename = file.filename ext = os.path.splitext(original_filename)[1].lower() base_name = secure_filename(original_filename) if not base_name or base_name == ext.strip('.'): filename = f"genealogy_pdf_{uuid.uuid4().hex[:8]}{ext}" else: if not base_name.lower().endswith(ext): filename = f"{base_name}{ext}" else: filename = base_name file_path = os.path.join(app.config['UPLOAD_FOLDER'], filename) file.save(file_path) try: # Upload to OSS oss_url = upload_to_oss(file_path, custom_filename=filename) if not oss_url: flash('文件上传失败') return redirect(request.url) # Save to database conn = get_db_connection() try: with conn.cursor() as cursor: cursor.execute( "INSERT INTO genealogy_pdfs (file_name, oss_url, version_name, version_source, file_provider, upload_time) VALUES (%s, %s, %s, %s, %s, CURRENT_TIMESTAMP)", (original_filename, oss_url, version_name, version_source, file_provider) ) conn.commit() flash('PDF文件上传成功') return redirect(url_for('pdf_management')) except Exception as e: flash(f'保存失败: {e}') return redirect(request.url) finally: conn.close() finally: if os.path.exists(file_path): try: os.remove(file_path) except: pass def process_pdf_pages(file_path, pdf_oss_url, uploader): """Process PDF pages and add them to genealogy records""" try: import fitz doc = fitz.open(file_path) # Get current max page number conn = get_db_connection() suggested_page = 1 try: with conn.cursor() as cursor: cursor.execute("SELECT MAX(page_number) as max_p FROM genealogy_records") result = cursor.fetchone() if result and result['max_p']: suggested_page = result['max_p'] + 1 finally: conn.close() for page_index in range(len(doc)): try: page = doc[page_index] pix = page.get_pixmap(dpi=150) # Save as image img_filename = f"{os.path.splitext(os.path.basename(file_path))[0]}_page_{page_index+1}.jpg" img_path = os.path.join(app.config['UPLOAD_FOLDER'], img_filename) pix.save(img_path) # Upload to OSS img_oss_url = upload_to_oss(img_path, custom_filename=img_filename) if img_oss_url: # Save to genealogy_records conn = get_db_connection() try: with conn.cursor() as cursor: cursor.execute( "INSERT INTO genealogy_records (file_name, oss_url, page_number, ai_status, upload_person, file_type) VALUES (%s, %s, %s, 1, %s, %s)", (img_filename, img_oss_url, suggested_page + page_index, uploader, '图片') ) record_id = cursor.lastrowid conn.commit() # Start AI processing threading.Thread(target=process_ai_task, args=(record_id, img_oss_url)).start() finally: conn.close() except Exception as e: print(f"Error processing page {page_index+1}: {e}") finally: if 'img_path' in locals() and os.path.exists(img_path): try: os.remove(img_path) except: pass except Exception as e: print(f"Error processing PDF: {e}") # --- Settlement Routes --- @app.route('/manager/settlements') def settlements(): if 'user_id' not in session: return redirect(url_for('login')) return render_template('settlements.html') @app.route('/manager/api/settlements', methods=['GET']) def get_settlements(): if 'user_id' not in session: return jsonify({"success": False, "message": "Unauthorized"}), 401 conn = get_db_connection() try: with conn.cursor() as cursor: cursor.execute(""" SELECT s.*, m.name as representative_name, m.simplified_name as representative_simplified_name FROM family_settlements s LEFT JOIN family_member_info m ON s.representative_id = m.id ORDER BY s.created_at DESC """) settlements = cursor.fetchall() # Convert Decimal to float/int for JSON serialization result = [] for s in settlements: item = dict(s) if item.get('latitude'): item['latitude'] = float(item['latitude']) if item.get('longitude'): item['longitude'] = float(item['longitude']) if item.get('population'): item['population'] = int(item['population']) result.append(item) return jsonify({"success": True, "settlements": result}) finally: conn.close() @app.route('/manager/api/settlements/', methods=['GET']) def get_settlement(id): if 'user_id' not in session: return jsonify({"success": False, "message": "Unauthorized"}), 401 conn = get_db_connection() try: with conn.cursor() as cursor: cursor.execute(""" SELECT s.*, m.name as representative_name, m.simplified_name as representative_simplified_name FROM family_settlements s LEFT JOIN family_member_info m ON s.representative_id = m.id WHERE s.id = %s """, (id,)) settlement = cursor.fetchone() if settlement: # Convert Decimal to float/int for JSON serialization item = dict(settlement) if item.get('latitude'): item['latitude'] = float(item['latitude']) if item.get('longitude'): item['longitude'] = float(item['longitude']) if item.get('population'): item['population'] = int(item['population']) return jsonify({"success": True, "settlement": item}) else: return jsonify({"success": False, "message": "聚落不存在"}) finally: conn.close() @app.route('/manager/api/settlements', methods=['POST']) def add_settlement(): if 'user_id' not in session: return jsonify({"success": False, "message": "Unauthorized"}), 401 if not session.get('is_super_admin'): return jsonify({"success": False, "message": "权限不足"}), 403 data = request.get_json() conn = get_db_connection() try: with conn.cursor() as cursor: cursor.execute(""" INSERT INTO family_settlements (name, region, latitude, longitude, population, representative_id, description, surname_type, new_surname, enthusiastic_members) VALUES (%s, %s, %s, %s, %s, %s, %s, %s, %s, %s) """, ( data.get('name'), data.get('region'), data.get('latitude') or None, data.get('longitude') or None, data.get('population') or 0, data.get('representative_id') or None, data.get('description'), data.get('surname_type') or 0, data.get('new_surname') or None, data.get('enthusiastic_members') or None )) conn.commit() return jsonify({"success": True, "message": "添加成功"}) finally: conn.close() @app.route('/manager/api/settlements/', methods=['PUT']) def update_settlement(id): if 'user_id' not in session: return jsonify({"success": False, "message": "Unauthorized"}), 401 if not session.get('is_super_admin'): return jsonify({"success": False, "message": "权限不足"}), 403 data = request.get_json() conn = get_db_connection() try: with conn.cursor() as cursor: cursor.execute(""" UPDATE family_settlements SET name=%s, region=%s, latitude=%s, longitude=%s, population=%s, representative_id=%s, description=%s, surname_type=%s, new_surname=%s, enthusiastic_members=%s WHERE id=%s """, ( data.get('name'), data.get('region'), data.get('latitude') or None, data.get('longitude') or None, data.get('population') or 0, data.get('representative_id') or None, data.get('description'), data.get('surname_type') or 0, data.get('new_surname') or None, data.get('enthusiastic_members') or None, id )) conn.commit() return jsonify({"success": True, "message": "更新成功"}) finally: conn.close() @app.route('/manager/api/settlements/', methods=['DELETE']) def delete_settlement(id): if 'user_id' not in session: return jsonify({"success": False, "message": "Unauthorized"}), 401 if not session.get('is_super_admin'): return jsonify({"success": False, "message": "权限不足"}), 403 conn = get_db_connection() try: with conn.cursor() as cursor: cursor.execute("DELETE FROM family_settlements WHERE id=%s", (id,)) conn.commit() return jsonify({"success": True, "message": "删除成功"}) finally: conn.close() # 异步批量处理族谱原文功能 import uuid def init_batch_task_table(): """初始化批量任务表(如果不存在)""" conn = get_db_connection() try: with conn.cursor() as cursor: cursor.execute(""" CREATE TABLE IF NOT EXISTS batch_genealogy_task ( id INT AUTO_INCREMENT PRIMARY KEY, task_id VARCHAR(64) UNIQUE NOT NULL, user_id INT NOT NULL, status VARCHAR(20) DEFAULT 'pending', total_count INT DEFAULT 0, completed_count INT DEFAULT 0, failed_count INT DEFAULT 0, last_processed_id INT DEFAULT 0, created_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP, updated_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, results TEXT ); """) # 检查是否存在last_processed_id字段,如果不存在则添加 cursor.execute("SHOW COLUMNS FROM batch_genealogy_task LIKE 'last_processed_id'") if not cursor.fetchone(): cursor.execute("ALTER TABLE batch_genealogy_task ADD COLUMN last_processed_id INT DEFAULT 0") conn.commit() print("[Database] batch_genealogy_task table initialized") except Exception as e: print(f"[Database] Error creating batch_genealogy_task table: {e}") finally: conn.close() # 初始化表 init_batch_task_table() def migrate_child_order_column(): """为 family_relation_info 表添加 child_order 字段(如不存在)""" conn = get_db_connection() try: with conn.cursor() as cursor: cursor.execute("SHOW COLUMNS FROM family_relation_info LIKE 'child_order'") if not cursor.fetchone(): cursor.execute( "ALTER TABLE family_relation_info ADD COLUMN child_order INT DEFAULT NULL COMMENT '第几子,用于兄弟排序'" ) conn.commit() print("[DB Migrate] Added child_order column to family_relation_info") else: print("[DB Migrate] child_order column already exists") except Exception as e: print(f"[DB Migrate] Error adding child_order: {e}") finally: conn.close() migrate_child_order_column() def migrate_enthusiastic_members_column(): """为 family_settlements 表添加 enthusiastic_members 字段(如不存在)""" conn = get_db_connection() try: with conn.cursor() as cursor: cursor.execute("SHOW COLUMNS FROM family_settlements LIKE 'enthusiastic_members'") if not cursor.fetchone(): cursor.execute( "ALTER TABLE family_settlements ADD COLUMN enthusiastic_members TEXT DEFAULT NULL COMMENT '热心宗亲,多人以逗号分隔'" ) conn.commit() print("[DB Migrate] Added enthusiastic_members column to family_settlements") else: print("[DB Migrate] enthusiastic_members column already exists") except Exception as e: print(f"[DB Migrate] Error adding enthusiastic_members: {e}") finally: conn.close() migrate_enthusiastic_members_column() def migrate_reference_document_columns(): """为 family_member_info 表添加参考件字段(如不存在)""" columns = [ ("reference_oss_url", "TEXT NULL COMMENT '参考件OSS地址'"), ("reference_file_name", "VARCHAR(255) NULL COMMENT '参考件文件名'"), ("reference_upload_time", "TIMESTAMP NULL COMMENT '参考件上传时间'"), ("reference_upload_uid", "INT NULL COMMENT '参考件上传人ID'"), ] conn = get_db_connection() try: with conn.cursor() as cursor: for col_name, col_def in columns: cursor.execute(f"SHOW COLUMNS FROM family_member_info LIKE '{col_name}'") if not cursor.fetchone(): cursor.execute(f"ALTER TABLE family_member_info ADD COLUMN {col_name} {col_def}") print(f"[DB Migrate] Added {col_name} column to family_member_info") else: print(f"[DB Migrate] {col_name} column already exists") conn.commit() except Exception as e: print(f"[DB Migrate] Error adding reference document columns: {e}") finally: conn.close() migrate_reference_document_columns() def async_process_genealogy_task(task_id, member_ids, user_id): """异步处理族谱原文任务""" results = [] conn = get_db_connection() try: # 更新任务状态为处理中 with conn.cursor() as cursor: cursor.execute(""" UPDATE batch_genealogy_task SET status = 'processing', total_count = %s WHERE task_id = %s """, (len(member_ids), task_id)) conn.commit() completed_count = 0 failed_count = 0 for member_id in member_ids: try: with conn.cursor() as cursor: cursor.execute(""" SELECT id, name, simplified_name, name_word_generation, birth_place, occupation, notes, sex FROM family_member_info WHERE id = %s """, (member_id,)) member = cursor.fetchone() # 获取父亲信息 cursor.execute(""" SELECT p.name, p.simplified_name FROM family_relation_info r JOIN family_member_info p ON r.parent_mid = p.id WHERE r.child_mid = %s AND r.relation_type = 1 LIMIT 1 """, (member_id,)) father = cursor.fetchone() # 获取母亲信息 cursor.execute(""" SELECT p.name, p.simplified_name FROM family_relation_info r JOIN family_member_info p ON r.parent_mid = p.id WHERE r.child_mid = %s AND r.relation_type = 2 LIMIT 1 """, (member_id,)) mother = cursor.fetchone() member['father_name'] = father['name'] if father else None member['father_simplified_name'] = father['simplified_name'] if father else None member['mother_name'] = mother['name'] if mother else None member['mother_simplified_name'] = mother['simplified_name'] if mother else None except Exception as e: print(f"[Async Process] Error getting member {member_id}: {e}") results.append({ "member_id": member_id, "name": "未知", "success": False, "message": f"获取成员信息失败: {e}" }) failed_count += 1 continue if not member: results.append({ "member_id": member_id, "name": "未知", "success": False, "message": "成员不存在" }) failed_count += 1 continue # 构建AI提示词 member_info = f""" 姓名(繁体):{member['name']} 姓名(简体):{member['simplified_name'] or '未知'} 世系世代:{member['name_word_generation'] or '未知'} 父亲姓名:{member['father_name'] or '未知'} 母亲姓名:{member['mother_name'] or '未知'} 出生地:{member['birth_place'] or '未知'} 职业:{member['occupation'] or '未知'} 备注:{member['notes'] or '无'} """ prompt = f""" 请根据以下人员信息,模拟生成该人员的族谱原文: {member_info} 请输出两个字段: 1. genealogy_traditional: 族谱原文(繁体中文,模仿传统族谱格式) 2. genealogy_simplified: 族谱原文(简体中文,将繁体转换为简体) 请严格按照JSON格式输出,不要包含任何额外解释: {{ "genealogy_traditional": "繁体族谱原文内容", "genealogy_simplified": "简体族谱原文内容" }} """ ai_response = call_doubao_api(prompt) if ai_response: traditional, simplified = parse_ai_response(ai_response) if traditional or simplified: try: with conn.cursor() as cursor: cursor.execute(""" UPDATE family_member_info SET genealogy_original_traditional = %s, genealogy_original_simplified = %s WHERE id = %s """, (traditional, simplified, member_id)) conn.commit() results.append({ "member_id": member_id, "name": member['name'], "success": True, "traditional": traditional[:100] + "..." if len(traditional) > 100 else traditional, "simplified": simplified[:100] + "..." if len(simplified) > 100 else simplified }) completed_count += 1 except Exception as e: print(f"[Async Process] Error updating member {member_id}: {e}") results.append({ "member_id": member_id, "name": member['name'], "success": False, "message": f"保存失败: {e}" }) failed_count += 1 else: results.append({ "member_id": member_id, "name": member['name'], "success": False, "message": "AI未返回有效数据" }) failed_count += 1 else: results.append({ "member_id": member_id, "name": member['name'], "success": False, "message": "AI调用失败" }) failed_count += 1 # 更新任务状态 status = 'completed' if failed_count == 0 else 'completed_with_errors' with conn.cursor() as cursor: cursor.execute(""" UPDATE batch_genealogy_task SET status = %s, completed_count = %s, failed_count = %s, results = %s WHERE task_id = %s """, (status, completed_count, failed_count, json.dumps(results, ensure_ascii=False), task_id)) conn.commit() print(f"[Async Process] Task {task_id} completed: {completed_count} success, {failed_count} failed") except Exception as e: print(f"[Async Process] Error in task {task_id}: {e}") with conn.cursor() as cursor: cursor.execute(""" UPDATE batch_genealogy_task SET status = 'failed', results = %s WHERE task_id = %s """, (json.dumps({"error": str(e)}, ensure_ascii=False), task_id)) conn.commit() finally: conn.close() @app.route('/manager/api/members/batch_process_genealogy_async', methods=['POST']) def batch_process_genealogy_async(): """异步批量处理族谱原文""" if 'user_id' not in session: return jsonify({"success": False, "message": "Unauthorized"}), 401 data = request.get_json() member_ids = data.get('member_ids', []) if not member_ids: return jsonify({"success": False, "message": "请选择成员进行处理"}), 400 # 生成任务ID task_id = str(uuid.uuid4()) # 保存任务到数据库 conn = get_db_connection() try: with conn.cursor() as cursor: cursor.execute(""" INSERT INTO batch_genealogy_task (task_id, user_id, status, total_count) VALUES (%s, %s, 'pending', %s) """, (task_id, session['user_id'], len(member_ids))) conn.commit() finally: conn.close() # 启动异步线程处理 threading.Thread(target=async_process_genealogy_task, args=(task_id, member_ids, session['user_id'])).start() return jsonify({ "success": True, "task_id": task_id, "message": "任务已创建,正在后台处理中" }) @app.route('/manager/api/members/batch_task_status/', methods=['GET']) def get_batch_task_status(task_id): """获取批量任务状态""" if 'user_id' not in session: return jsonify({"success": False, "message": "Unauthorized"}), 401 conn = get_db_connection() try: with conn.cursor() as cursor: cursor.execute(""" SELECT task_id, status, total_count, completed_count, failed_count, created_at, updated_at, results FROM batch_genealogy_task WHERE task_id = %s AND user_id = %s """, (task_id, session['user_id'])) task = cursor.fetchone() if task: result = { "task_id": task['task_id'], "status": task['status'], "total_count": task['total_count'], "completed_count": task['completed_count'], "failed_count": task['failed_count'], "created_at": task['created_at'].isoformat() if task['created_at'] else None, "updated_at": task['updated_at'].isoformat() if task['updated_at'] else None } if task['results']: try: result['results'] = json.loads(task['results']) except: result['results'] = task['results'] return jsonify({"success": True, "task": result}) else: return jsonify({"success": False, "message": "任务不存在或无权访问"}), 404 finally: conn.close() @app.route('/manager/api/members/batch_tasks', methods=['GET']) def get_batch_tasks(): """获取用户的批量任务列表""" if 'user_id' not in session: return jsonify({"success": False, "message": "Unauthorized"}), 401 conn = get_db_connection() try: with conn.cursor() as cursor: cursor.execute(""" SELECT task_id, status, total_count, completed_count, failed_count, last_processed_id, created_at, updated_at FROM batch_genealogy_task WHERE user_id = %s ORDER BY created_at DESC LIMIT 20 """, (session['user_id'],)) tasks = cursor.fetchall() result = [] for task in tasks: result.append({ "task_id": task['task_id'], "status": task['status'], "total_count": task['total_count'], "completed_count": task['completed_count'], "failed_count": task['failed_count'], "last_processed_id": task['last_processed_id'], "created_at": task['created_at'].isoformat() if task['created_at'] else None, "updated_at": task['updated_at'].isoformat() if task['updated_at'] else None }) return jsonify({"success": True, "tasks": result}) finally: conn.close() def call_doubao_image_api(image_url, prompt): """调用豆包API处理图片,提取文本内容""" api_key = "a1800657-9212-4afe-9b7c-b49f015c54d3" api_url = "https://ark.cn-beijing.volces.com/api/v3/responses" ai_payload_url = get_normalized_base64_image(image_url) payload = { "model": "doubao-seed-1-8-251228", "stream": False, "input": [ { "role": "user", "content": [ {"type": "input_image", "image_url": ai_payload_url}, {"type": "input_text", "text": prompt} ] } ] } headers = { "Authorization": f"Bearer {api_key}", "Content-Type": "application/json" } try: response = requests.post( api_url, json=payload, headers=headers, timeout=120, verify=False, proxies={"http": None, "https": None} ) if response.status_code == 200: return response.json() else: print(f"[Image AI API] Error: {response.status_code} - {response.text}") return None except Exception as e: print(f"[Image AI API] Exception: {e}") return None def extract_pure_text(response): """从API响应中提取纯文本内容,优先返回 message 类型的最终答案""" if not response: return '' # 优先从 output 列表中提取 message 类型(最终答案) if 'output' in response: # 第一遍:只找 message 类型 for item in response['output']: if item.get('type') == 'message': content = item.get('content') if isinstance(content, str): return content elif isinstance(content, list): text_parts = [] for part in content: if isinstance(part, dict) and part.get('type') == 'text': text_parts.append(part.get('text', '')) elif isinstance(part, str): text_parts.append(part) result = ''.join(text_parts) if result: return result # 第二遍:没有 message 时才使用 reasoning 内容作为兜底 for item in response['output']: if item.get('type') == 'reasoning': content = item.get('content') all_text = '' summary = item.get('summary', []) for part in summary: if isinstance(part, dict): if part.get('type') in ('summary_text', 'text'): all_text += part.get('text', '') elif isinstance(part, str): all_text += part if isinstance(content, str): all_text += content elif isinstance(content, list): for part in content: if isinstance(part, dict) and part.get('type') == 'text': all_text += part.get('text', '') elif isinstance(part, str): all_text += part if all_text: return all_text # 第三遍:content 直接是字符串的情况 for item in response['output']: content = item.get('content') if isinstance(content, str) and content: return content # 尝试从 choices 中提取(兼容 OpenAI 格式) if 'choices' in response and len(response['choices']) > 0: message = response['choices'][0].get('message', {}) return message.get('content', '') return str(response) def build_genealogy_prompt(member_name): """ 构建用于竖排繁体家谱图片 OCR 提取的 Prompt。 家谱图片为竖排版式(从上到下、从右到左),每位人物记录通常包含: 辈字+名讳、字号、行次、父子关系、配偶(配某氏)、生卒年、葬地、子嗣等。 """ return f"""这是一张竖排繁体中文家谱图片。图片文字采用竖排格式,从上到下、从右到左逐列阅读。 每位人物的记录通常包含以下内容(不一定全有): - 辈字加名讳(如:公諱光元) - 字号(如:字維亮) - 行次(如:行仁一) - 与父亲的关系(如:某某公長子、次子、三子) - 配偶(如:配李氏、娶王氏) - 生卒年月(如:生於某年某月、卒於某年某月) - 葬地(如:葬祖山某向、塟於某地) - 子嗣(如:子二:長某某、次某某) 任务:找到人物「{member_name}」在图片中的完整记录,将其繁体原文逐字准确复制输出。 要求: 1. 只输出「{member_name}」这一个人物的记录,不包含其他人的内容 2. 保持繁体字原貌,不要转换为简体 3. 保留原文中的标点符号 4. 不要添加任何解释、标注、序号或额外说明 5. 直接输出原文内容""" def _extract_from_thinking_output(text): """ 从推理模型的思维链输出中提取最终答案。 推理模型(如 doubao-seed 系列)会在 message 内容里写出完整思考过程: 反复写候选答案、说"不对"再修正,最后以"现在确认/所以输出这个内容"等结论收尾。 本函数的策略: 1. 找最后一个"答案引导词 + 冒号"之后的文本(如"准确的原文是:"、"准确复制:") 2. 若无引导词,则取"现在确认"/"所以输出这个内容"之前的最后一段文本 3. 以上均失败则原文返回 """ # 思维链特征词 THINKING_SIGNALS = ['不对,', '现在确认', '准确复制', '准确的原文是', '正确的输出是', '所以输出这个内容'] if not any(sig in text for sig in THINKING_SIGNALS): return text # 非思维链输出,原样返回 print(f"[CleanText] Detected thinking-model output, extracting final answer") # ---- 策略1:找最后一个答案引导词 ---- ANSWER_INTRO_PATTERNS = [ r'准确的原文是[::]\s*', r'正确的输出是[::]\s*', r'现在准确复制[::]\s*', r'准确复制[::]\s*', r'应该是[::]\s*', r'因此输出[::]\s*', r'所以正确.*?是[::]\s*', r'原文是[::]\s*', r'输出[::]\s*', ] last_end = -1 for pattern in ANSWER_INTRO_PATTERNS: for m in re.finditer(pattern, text): if m.end() > last_end: last_end = m.end() if last_end >= 0: remaining = text[last_end:] # 取到第一个"结束标志"前 END_MARKERS = ['不对', '现在确认', '但是', '然而', '\n\n'] end_pos = len(remaining) for marker in END_MARKERS: idx = remaining.find(marker) if 0 < idx < end_pos: end_pos = idx candidate = remaining[:end_pos].strip() if len(candidate) >= 5: print(f"[CleanText] Extracted via answer-intro pattern: '{candidate[:80]}'") return candidate # ---- 策略2:取"现在确认"之前的最后一段 ---- for end_phrase in ['现在确认', '所以输出这个内容', '这就是.*?的完整记录']: m = re.search(end_phrase, text) if m: before = text[:m.start()].rstrip() # 找最后一个换行符,取之后的内容 last_nl = before.rfind('\n') candidate = (before[last_nl + 1:] if last_nl >= 0 else before[-400:]).strip() if len(candidate) >= 5: print(f"[CleanText] Extracted before confirmation phrase: '{candidate[:80]}'") return candidate return text # 均失败则原样返回 def _apply_char_whitelist(text): """只保留汉字(含扩展A区)和常见中文标点""" return re.sub( r'[^\u4e00-\u9fff\u3400-\u4dbf\u3000-\u303f\uff00-\uffef,。;:、()【】「」『』〔〕·~—…《》]', '', text ).strip() def clean_genealogy_text(text): """ 清理从 AI 响应中提取的族谱文本。 - 处理 Markdown/JSON 格式噪声 - 自动识别思维链推理模型输出,提取最终答案段落 - 保留中文字符和中文标点,去除英文说明行 """ if not text: return '' text = text.strip() # 去除代码块标记 text = re.sub(r'^```[a-z]*\n?', '', text) text = re.sub(r'\n?```$', '', text) text = text.strip() # 尝试解析 JSON,从已知字段提取 try: result = json.loads(text) if isinstance(result, dict): for key in ['text', 'content', 'result', 'traditional', 'genealogy_traditional']: if key in result: text = str(result[key]) break except (json.JSONDecodeError, ValueError): pass # 针对思维链推理模型输出,提取最终答案(必须在行过滤之前,因为推理文本中含有必要的换行结构) text = _extract_from_thinking_output(text) # 按行过滤:去除纯英文/数字行、空行及明显解释性前缀行 lines = text.splitlines() kept_lines = [] for line in lines: line = line.strip() if not line: continue non_ascii = sum(1 for c in line if ord(c) > 127) if non_ascii == 0: continue if re.match(r'^(注[::]|说明[::]|Note[::]|备注[::])', line): continue kept_lines.append(line) text = ''.join(kept_lines) # 字符白名单:只保留汉字和中文标点 text = _apply_char_whitelist(text) return text def async_process_all_empty_genealogy(task_id, user_id): """ 异步批量处理族谱原文为空的成员,支持断点续跑。 连接管理原则:DB 连接仅在快速读写期间持有,AI 调用(最长120s)期间 不占用任何 DB 连接,避免影响其他用户的正常操作。 """ import time # ── 1. 读取断点位置,立即释放连接 ────────────────────────────────────── conn = get_db_connection() try: with conn.cursor() as cursor: cursor.execute( "SELECT last_processed_id FROM batch_genealogy_task WHERE task_id = %s", (task_id,) ) task = cursor.fetchone() last_processed_id = task['last_processed_id'] if task else 0 finally: conn.close() completed_count = 0 failed_count = 0 results = [] while True: # ── 2. 取下一条待处理成员(短暂占用连接后立即释放)──────────────── conn = get_db_connection() try: with conn.cursor() as cursor: cursor.execute(""" SELECT m.id, m.name, m.name_word_generation, m.source_record_id, r.oss_url AS image_url, r.ai_content AS record_ai_content FROM family_member_info m LEFT JOIN genealogy_records r ON m.source_record_id = r.id WHERE (m.genealogy_original_traditional IS NULL OR m.genealogy_original_traditional = '' OR m.genealogy_original_traditional = 'None') AND (m.genealogy_original_simplified IS NULL OR m.genealogy_original_simplified = '' OR m.genealogy_original_simplified = 'None') AND m.id > %s ORDER BY m.id ASC LIMIT 1 """, (last_processed_id,)) member = cursor.fetchone() finally: conn.close() if not member: break member_id = member['id'] member_name = member['name'] image_url = member['image_url'] record_ai_content = member['record_ai_content'] print(f"[Batch Process] Processing member {member_id}: {member_name}") traditional = "" simplified = "" extract_source = "basic_info" try: # ── 3. AI 提取(此阶段不持有任何 DB 连接)──────────────────── if image_url: print(f"[Batch Process] Extracting from image: {image_url}") prompt = build_genealogy_prompt(member_name) ai_response = call_doubao_image_api(image_url, prompt) print(f"[Batch Process] AI response for {member_id}: {str(ai_response)[:300]}") if ai_response: raw_text = extract_pure_text(ai_response) traditional = clean_genealogy_text(raw_text) print(f"[Batch Process] Cleaned traditional: {traditional[:100]}") name_chars = [c for c in member_name if '\u4e00' <= c <= '\u9fff'] name_found = any(c in traditional for c in name_chars) if traditional and len(traditional) >= 5 and name_found: simplified = convert_to_simplified(traditional) extract_source = "image" print(f"[Batch Process] Image extract OK - trad: {traditional[:80]}") else: traditional = "" simplified = "" print(f"[Batch Process] Image extract invalid " f"(name_found={name_found}, len={len(traditional)}), resetting") # ── 4. 回退:从 record AI content 拼装(内存操作,无需 DB)── if not (traditional and simplified) and record_ai_content: print(f"[Batch Process] Fallback: trying record AI content") try: ai_content = json.loads(record_ai_content) if isinstance(ai_content, list): current_person = None for person in ai_content: person_name = person.get('original_name', person.get('name', '')).strip() if person_name and ( member_name in person_name or person_name in member_name ): current_person = person break if current_person: name = current_person.get('original_name', current_person.get('name', member_name)) father_name = current_person.get('father_name', '') spouse_name = current_person.get('spouse_name', '') generation = current_person.get('generation', member['name_word_generation']) traditional = f"{name},{father_name}之子" if father_name else name if spouse_name: traditional += f",配{spouse_name}" if generation: traditional = f"第{generation}世 " + traditional simplified = convert_to_simplified(traditional) extract_source = "ai_content" print(f"[Batch Process] AI content fallback: {traditional[:80]}") else: print(f"[Batch Process] No matching person for '{member_name}' in AI content") except Exception as e: print(f"[Batch Process] Failed to parse record AI content: {e}") # ── 5. 最终回退:从关系表查父亲和配偶,短暂占用连接后立即释放 ── if not (traditional and simplified): print(f"[Batch Process] Fallback: basic info from DB") conn = get_db_connection() try: with conn.cursor() as cursor: cursor.execute(""" SELECT p.name FROM family_relation_info r JOIN family_member_info p ON r.parent_mid = p.id WHERE r.child_mid = %s AND r.relation_type = 1 LIMIT 1 """, (member_id,)) father = cursor.fetchone() cursor.execute(""" SELECT p.name FROM family_relation_info r JOIN family_member_info p ON r.parent_mid = p.id WHERE r.child_mid = %s AND r.relation_type = 2 LIMIT 1 """, (member_id,)) spouse = cursor.fetchone() finally: conn.close() father_name = father['name'] if father else '' spouse_name = spouse['name'] if spouse else '' generation = member['name_word_generation'] traditional = f"{member_name},{father_name}之子" if father_name else member_name if spouse_name: traditional += f",配{spouse_name}" if generation: traditional = f"第{generation}世 " + traditional simplified = convert_to_simplified(traditional) extract_source = "basic_info" print(f"[Batch Process] Basic info fallback: {traditional[:80]}") except Exception as extract_err: print(f"[Batch Process] Extraction error for member {member_id}: {extract_err}") traditional = "" simplified = "" # ── 6. 保存结果(短暂占用连接后立即释放)──────────────────────── last_processed_id = member_id conn = get_db_connection() try: if traditional and simplified: with conn.cursor() as cursor: cursor.execute(""" UPDATE family_member_info SET genealogy_original_traditional = %s, genealogy_original_simplified = %s WHERE id = %s """, (traditional, simplified, member_id)) completed_count += 1 results.append({ "member_id": member_id, "name": member_name, "success": True, "source": extract_source, "traditional_length": len(traditional), "simplified_length": len(simplified), }) print(f"[Batch Process] Saved member {member_id} (source={extract_source})") else: failed_count += 1 results.append({ "member_id": member_id, "name": member_name, "success": False, "message": "无法提取或生成族谱原文", }) print(f"[Batch Process] Skipped member {member_id}: no valid text extracted") with conn.cursor() as cursor: cursor.execute(""" UPDATE batch_genealogy_task SET completed_count = %s, failed_count = %s, last_processed_id = %s, status = 'processing' WHERE task_id = %s """, (completed_count, failed_count, last_processed_id, task_id)) conn.commit() except Exception as db_err: print(f"[Batch Process] DB save error for member {member_id}: {db_err}") failed_count += 1 finally: conn.close() # 每条处理完后短暂暂停,降低对 AI API 和服务器资源的压力 time.sleep(0.5) # ── 7. 任务完成,写入最终状态 ───────────────────────────────────────── conn = get_db_connection() try: status = 'completed' if failed_count == 0 else 'completed_with_errors' with conn.cursor() as cursor: cursor.execute(""" UPDATE batch_genealogy_task SET status = %s, completed_count = %s, failed_count = %s, results = %s WHERE task_id = %s """, (status, completed_count, failed_count, json.dumps(results, ensure_ascii=False), task_id)) conn.commit() print(f"[Batch Process] Task {task_id} done: " f"{completed_count} success, {failed_count} failed") except Exception as e: print(f"[Batch Process] Error writing final status for {task_id}: {e}") finally: conn.close() @app.route('/manager/api/members/extract_genealogy/', methods=['GET']) def extract_single_genealogy(member_id): """单人员提取族谱原文,核心逻辑与批量处理一致,提取后写入数据库""" if 'user_id' not in session: return jsonify({"success": False, "message": "Unauthorized"}), 401 conn = get_db_connection() try: # 查询成员信息 with conn.cursor() as cursor: cursor.execute(""" SELECT m.id, m.name, m.name_word_generation, m.source_record_id, r.oss_url as image_url, r.ai_content AS record_ai_content FROM family_member_info m LEFT JOIN genealogy_records r ON m.source_record_id = r.id WHERE m.id = %s """, (member_id,)) row = cursor.fetchone() if not row: return jsonify({"success": False, "message": "未找到成员"}), 404 # 处理字典或元组格式的返回 if isinstance(row, dict): member = row else: member = { 'id': row[0], 'name': row[1], 'name_word_generation': row[2], 'source_record_id': row[3], 'image_url': row[4], 'record_ai_content': row[5] } # 调试:打印查询结果 print(f"[Single Extract] Query result - id: {member['id']}, name: '{member['name']}', name_word_generation: '{member['name_word_generation']}', source_record_id: {member['source_record_id']}, image_url: '{member['image_url']}', record_ai_content: '{member['record_ai_content'][:50] if member['record_ai_content'] else None}'") traditional = "" simplified = "" source = "basic_info" image_url = member['image_url'] record_ai_content = member['record_ai_content'] print(f"[Single Extract] Processing member {member_id}: {member['name']}") # 优先从关联图片中提取族谱原文 if image_url: print(f"[Single Extract] Extracting from image: {image_url}") member_name = member['name'] prompt = build_genealogy_prompt(member_name) ai_response = call_doubao_image_api(image_url, prompt) print(f"[Single Extract] AI response: {str(ai_response)[:500]}") if ai_response: raw_text = extract_pure_text(ai_response) print(f"[Single Extract] Raw text from response: '{raw_text[:300]}'") traditional = clean_genealogy_text(raw_text) print(f"[Single Extract] Cleaned traditional: '{traditional[:200]}', length: {len(traditional)}") # 验证提取结果是否包含该人物的姓名(至少包含名字中的一个字) name_chars = [c for c in member_name if '\u4e00' <= c <= '\u9fff'] name_found = any(c in traditional for c in name_chars) if traditional and len(traditional) >= 5 and name_found: simplified = convert_to_simplified(traditional) source = "image" print(f"[Single Extract] Extracted from image - traditional: {traditional[:100]}, simplified: {simplified[:100]}") else: traditional = "" simplified = "" if not name_found: print(f"[Single Extract] Extracted text does not contain name '{member_name}', resetting") else: print(f"[Single Extract] Image extraction too short ({len(traditional)} chars), resetting") else: print(f"[Single Extract] AI response is None or empty") else: print(f"[Single Extract] No image URL found for member {member_id}") # 如果从图片提取失败或没有图片,尝试从已有的AI解析内容中提取 if not (traditional and simplified) and record_ai_content: print(f"[Single Extract] Trying to extract from record AI content") try: ai_content = json.loads(record_ai_content) if isinstance(ai_content, list) and len(ai_content) > 0: current_person = None member_name = member['name'] for person in ai_content: person_name = person.get('original_name', person.get('name', '')).strip() if person_name and (member_name in person_name or person_name in member_name): current_person = person break if current_person: name = current_person.get('original_name', current_person.get('name', member['name'])) father_name = current_person.get('father_name', '') spouse_name = current_person.get('spouse_name', '') generation = current_person.get('generation', member['name_word_generation']) traditional = f"{name},{father_name}之子" if spouse_name: traditional += f",配{spouse_name}" if generation: traditional = f"第{generation}世 " + traditional simplified = convert_to_simplified(traditional) source = "ai_content" print(f"[Single Extract] Generated from AI content: {traditional}") except Exception as e: print(f"[Single Extract] Failed to parse record AI content: {e}") # 如果还是没有内容,使用基本信息生成(标注来源为 basic_info) if not (traditional and simplified): print(f"[Single Extract] Generating from basic info") with conn.cursor() as cursor: cursor.execute(""" SELECT p.name, p.simplified_name FROM family_relation_info r JOIN family_member_info p ON r.parent_mid = p.id WHERE r.child_mid = %s AND r.relation_type = 1 LIMIT 1 """, (member_id,)) father_row = cursor.fetchone() father_name = father_row[0] if father_row else '' cursor.execute(""" SELECT p.name, p.simplified_name FROM family_relation_info r JOIN family_member_info p ON r.parent_mid = p.id WHERE r.child_mid = %s AND r.relation_type = 2 LIMIT 1 """, (member_id,)) spouse_row = cursor.fetchone() spouse_name = spouse_row[0] if spouse_row else '' generation = member['name_word_generation'] name = member['name'] traditional = f"{name},{father_name}之子" if father_name else name if spouse_name: traditional += f",配{spouse_name}" if generation: traditional = f"第{generation}世 " + traditional simplified = convert_to_simplified(traditional) source = "basic_info" print(f"[Single Extract] Generated from basic info: {traditional}") # 调试:打印最终结果 print(f"[Single Extract] Final result - traditional: '{traditional}', simplified: '{simplified}'") # 写入数据库 if traditional and simplified: with conn.cursor() as cursor: cursor.execute(""" UPDATE family_member_info SET genealogy_original_traditional = %s, genealogy_original_simplified = %s WHERE id = %s """, (traditional, simplified, member_id)) conn.commit() print(f"[Single Extract] Successfully saved to database") return jsonify({ "success": True, "member_id": member_id, "name": member['name'], "genealogy_traditional": traditional, "genealogy_simplified": simplified, "source": source }) else: return jsonify({ "success": False, "member_id": member_id, "message": "无法提取或生成族谱原文" }) except Exception as e: import traceback print(f"[Single Extract] Error: {e}") print(f"[Single Extract] Traceback: {traceback.format_exc()}") return jsonify({ "success": False, "member_id": member_id, "message": str(e), "error_type": type(e).__name__ }) finally: conn.close() @app.route('/manager/api/members/batch_resume_task', methods=['GET']) def batch_resume_task(): """ 恢复因服务重启而中断的批量任务(GET,方便浏览器直接访问)。 可选参数:?task_id=xxx 不传则自动找最近一条中断任务。 """ if 'user_id' not in session: return jsonify({"success": False, "message": "Unauthorized"}), 401 task_id = request.args.get('task_id') conn = get_db_connection() try: with conn.cursor() as cursor: if task_id: cursor.execute(""" SELECT task_id, status, last_processed_id, total_count, completed_count, failed_count FROM batch_genealogy_task WHERE task_id = %s AND user_id = %s """, (task_id, session['user_id'])) else: # 找最近一条中断的任务 cursor.execute(""" SELECT task_id, status, last_processed_id, total_count, completed_count, failed_count FROM batch_genealogy_task WHERE user_id = %s AND status IN ('pending', 'processing', 'interrupted') ORDER BY created_at DESC LIMIT 1 """, (session['user_id'],)) task = cursor.fetchone() if not task: return jsonify({"success": False, "message": "未找到可恢复的任务"}), 404 task_id = task['task_id'] # 重新标记为 processing,准备恢复线程 with conn.cursor() as cursor: cursor.execute(""" UPDATE batch_genealogy_task SET status = 'processing' WHERE task_id = %s """, (task_id,)) conn.commit() threading.Thread( target=async_process_all_empty_genealogy, args=(task_id, session['user_id']), daemon=True ).start() return jsonify({ "success": True, "task_id": task_id, "message": f"任务已从断点恢复(已完成 {task['completed_count']},从 last_processed_id={task['last_processed_id']} 继续)", "last_processed_id": task['last_processed_id'], "completed_count": task['completed_count'], "total_count": task['total_count'], }) finally: conn.close() @app.route('/manager/api/members/batch_process_all_empty', methods=['GET']) def batch_process_all_empty(): """简便批量处理接口:自动处理所有族谱原文为空的成员,支持断点续跑""" if 'user_id' not in session: return jsonify({"success": False, "message": "Unauthorized"}), 401 conn = get_db_connection() try: with conn.cursor() as cursor: cursor.execute(""" SELECT COUNT(*) as count FROM family_member_info WHERE (genealogy_original_traditional IS NULL OR genealogy_original_traditional = '' OR genealogy_original_traditional = 'None') AND (genealogy_original_simplified IS NULL OR genealogy_original_simplified = '' OR genealogy_original_simplified = 'None') """) result = cursor.fetchone() total_empty = result['count'] if result else 0 cursor.execute(""" SELECT task_id, status, last_processed_id, total_count, completed_count, failed_count FROM batch_genealogy_task WHERE user_id = %s AND status IN ('pending', 'processing') ORDER BY created_at DESC LIMIT 1 """, (session['user_id'],)) running_task = cursor.fetchone() if running_task: return jsonify({ "success": False, "message": "存在正在进行的任务,若服务已重启可调用 POST /manager/api/members/batch_resume_task 恢复", "task_id": running_task['task_id'], "status": running_task['status'], "last_processed_id": running_task['last_processed_id'], "completed_count": running_task['completed_count'], "total_count": running_task['total_count'], "resume_tip": "POST /manager/api/members/batch_resume_task body: {\"task_id\": \"" + running_task['task_id'] + "\"}" }) task_id = str(uuid.uuid4()) with conn.cursor() as cursor: cursor.execute(""" INSERT INTO batch_genealogy_task (task_id, user_id, status, total_count, last_processed_id) VALUES (%s, %s, 'processing', %s, 0) """, (task_id, session['user_id'], total_empty)) conn.commit() threading.Thread( target=async_process_all_empty_genealogy, args=(task_id, session['user_id']), daemon=True ).start() return jsonify({ "success": True, "task_id": task_id, "message": f"任务已创建,将处理 {total_empty} 个族谱原文为空的成员", "total_count": total_empty }) finally: conn.close() # ==================== 微信小程序 API 接口 ==================== @app.route('/manager/api/wechat/login', methods=['POST']) def api_wechat_login(): """微信小程序登录接口(正式流程)""" import time start_time = time.time() try: data = request.get_json() if not data: print(f"[API Wechat Login] Error: No request data") return jsonify({"success": False, "message": "请求数据为空"}), 400 code = data.get('code', '') encrypted_data = data.get('encryptedData', '') iv = data.get('iv', '') phone_code = data.get('phoneCode', '') if not code: print(f"[API Wechat Login] Error: Missing code parameter") return jsonify({"success": False, "message": "缺少code参数"}), 400 print(f"[API Wechat Login] Received login request, code: {code[:10]}..., phoneCode: {phone_code[:10]}...") # 1. 使用code获取session_key和openid session_url = "https://api.weixin.qq.com/sns/jscode2session" session_params = { "appid": WECHAT_APP_ID, "secret": WECHAT_APP_SECRET, "js_code": code, "grant_type": "authorization_code" } try: session_response = requests.get(session_url, params=session_params, timeout=15) session_response.raise_for_status() except requests.exceptions.RequestException as e: print(f"[WeChat Login] Session request failed: {e}") return jsonify({"success": False, "message": f"网络请求失败: {str(e)}"}), 500 session_data = session_response.json() print(f"[WeChat Login] Session response: {session_data}") if 'errcode' in session_data and session_data['errcode'] != 0: print(f"[WeChat Login] Session error: {session_data}") return jsonify({"success": False, "message": session_data.get('errmsg', '登录失败')}), 400 openid = session_data.get('openid') session_key = session_data.get('session_key') if not openid: print(f"[WeChat Login] Error: openid is empty") return jsonify({"success": False, "message": "获取openid失败"}), 400 # 2. 获取手机号(支持两种方式) phone = None # 方式一:使用phoneCode调用官方接口(推荐) if phone_code: print(f"[WeChat Phone] Trying to get phone via phoneCode") try: access_token = get_wechat_access_token() if access_token: phone_url = f"https://api.weixin.qq.com/wxa/business/getuserphonenumber?access_token={access_token}" phone_response = requests.post(phone_url, json={"code": phone_code}, timeout=15) phone_response.raise_for_status() phone_result = phone_response.json() print(f"[WeChat Phone] Phone API response: {phone_result}") if phone_result.get('errcode') == 0 and phone_result.get('phone_info'): phone = phone_result['phone_info'].get('phoneNumber') print(f"[WeChat Phone] Phone obtained via phoneCode: {phone}") else: print(f"[WeChat Phone] Failed to get phone via phoneCode: {phone_result}") else: print(f"[WeChat Phone] Failed to get access_token") except requests.exceptions.RequestException as e: print(f"[WeChat Phone] Phone request failed: {e}") # 方式二:使用encryptedData解密(兼容旧方式) if not phone and encrypted_data and iv and session_key: print(f"[WeChat Phone] Trying to decrypt phone via encryptedData") phone_data = decrypt_wechat_phone(encrypted_data, iv, session_key) if phone_data and 'phoneNumber' in phone_data: phone = phone_data['phoneNumber'] print(f"[WeChat Phone] Phone obtained via decryption: {phone}") # 3. 创建或获取小程序用户(使用mp_users表) conn = get_db_connection() try: with conn.cursor() as cursor: cursor.execute("SELECT id, phone FROM mp_users WHERE openid = %s", (openid,)) mp_user = cursor.fetchone() if mp_user: update_fields = [] update_params = [] if phone and phone != mp_user.get('phone'): update_fields.append("phone = %s") update_params.append(phone) update_fields.append("last_login_at = CURRENT_TIMESTAMP") update_params.append(openid) if update_fields: sql = f"UPDATE mp_users SET {', '.join(update_fields)} WHERE openid = %s" cursor.execute(sql, update_params) conn.commit() user_id = mp_user['id'] else: cursor.execute(""" INSERT INTO mp_users (openid, phone, created_at, updated_at, last_login_at) VALUES (%s, %s, CURRENT_TIMESTAMP, CURRENT_TIMESTAMP, CURRENT_TIMESTAMP) """, (openid, phone)) conn.commit() user_id = cursor.lastrowid print(f"[WeChat Login] Created new user: {user_id}, openid: {openid[:10]}...") finally: conn.close() import uuid token = str(uuid.uuid4()) # 持久化 token,用于后续接口识别用户身份 conn2 = get_db_connection() try: with conn2.cursor() as cursor2: cursor2.execute("UPDATE mp_users SET token = %s WHERE id = %s", (token, user_id)) conn2.commit() finally: conn2.close() elapsed = time.time() - start_time print(f"[API Wechat Login] Success, elapsed: {elapsed:.2f}s, user_id: {user_id}, phone: {phone}") return jsonify({ "success": True, "token": token, "user": { "id": user_id, "openid": openid, "phone": phone, "login_type": "wechat_mp" } }) except Exception as e: elapsed = time.time() - start_time print(f"[API Wechat Login] Error: {e}, elapsed: {elapsed:.2f}s") return jsonify({"success": False, "message": str(e)}), 500 @app.route('/manager/api/members/search', methods=['GET']) def api_search_members(): """搜索成员(小程序用)""" keyword = request.args.get('keyword', '') token = request.headers.get('Authorization', '').replace('Bearer ', '') if not token: return jsonify({"success": False, "message": "未登录"}), 401 conn = get_db_connection() try: with conn.cursor() as cursor: base_sql = """ SELECT m.id, m.name, m.simplified_name, m.name_word_generation, m.sex, m.birthday, m.family_rank, m.is_pass_away, m.marital_status, p.name AS father_name, p.simplified_name AS father_simplified_name, p.name_word_generation AS father_generation, r.relation_type AS father_relation_type FROM family_member_info m LEFT JOIN family_relation_info r ON r.child_mid = m.id AND r.relation_type IN (1, 2) LEFT JOIN family_member_info p ON p.id = r.parent_mid {where} ORDER BY m.name_word_generation ASC, m.id ASC LIMIT 30 """ if keyword: cursor.execute( base_sql.format(where="WHERE m.name LIKE %s OR m.simplified_name LIKE %s"), (f"%{keyword}%", f"%{keyword}%") ) else: cursor.execute(base_sql.format(where="")) members = cursor.fetchall() for m in members: m['birthday_date'] = format_timestamp(m.get('birthday')) return jsonify({"success": True, "data": members}) finally: conn.close() @app.route('/manager/api/members/check_duplicate', methods=['GET']) def api_check_duplicate(): """检查同名成员""" name = request.args.get('name', '') conn = get_db_connection() try: with conn.cursor() as cursor: cursor.execute(""" SELECT id, name, simplified_name, name_word_generation FROM family_member_info WHERE name = %s OR simplified_name = %s LIMIT 10 """, (name, name)) members = cursor.fetchall() return jsonify({ "success": True, "data": members }) finally: conn.close() @app.route('/manager/api/members/', methods=['GET']) def api_get_member(member_id): """获取单个成员信息(含关系)""" token = request.headers.get('Authorization', '').replace('Bearer ', '') if not token: return jsonify({"success": False, "message": "未登录"}), 401 conn = get_db_connection() try: with conn.cursor() as cursor: cursor.execute("SELECT * FROM family_member_info WHERE id = %s", (member_id,)) member = cursor.fetchone() if not member: return jsonify({"success": False, "message": "成员不存在"}), 404 member['birthday_date'] = format_timestamp(member.get('birthday')) if member.get('create_time'): member['create_time'] = member['create_time'].strftime('%Y-%m-%d %H:%M') if member.get('modified_time'): member['modified_time'] = member['modified_time'].strftime('%Y-%m-%d %H:%M') # 父母 cursor.execute(""" SELECT m.id, m.name, m.simplified_name, m.name_word_generation, r.relation_type, r.sub_relation_type, r.child_order FROM family_relation_info r JOIN family_member_info m ON m.id = r.parent_mid WHERE r.child_mid = %s ORDER BY r.relation_type ASC """, (member_id,)) parents = cursor.fetchall() # 子女 cursor.execute(""" SELECT m.id, m.name, m.simplified_name, m.name_word_generation, r.relation_type, r.sub_relation_type, r.child_order FROM family_relation_info r JOIN family_member_info m ON m.id = r.child_mid WHERE r.parent_mid = %s ORDER BY COALESCE(r.child_order, 9999), m.id ASC """, (member_id,)) children = cursor.fetchall() # relation_type: 1=父, 2=母 relation_labels = {1: '父', 2: '母', 3: '祖父', 4: '祖母'} for p in parents: p['relation_label'] = relation_labels.get(p.get('relation_type'), '亲属') # 计算入继说明 _order_labels = {1:'长', 2:'次', 3:'三', 4:'四', 5:'五', 6:'六', 7:'七', 8:'八', 9:'九', 10:'十'} adopt_info = None is_adopted_in = any(p.get('sub_relation_type') == 3 for p in parents) if is_adopted_in: bio = next((p for p in parents if p.get('sub_relation_type') == 2), None) if bio: bio_name = bio.get('simplified_name') or bio.get('name', '') order = bio.get('child_order') order_str = _order_labels.get(order, f'第{order}') if order else '某' adopt_info = f"由{bio_name}公{order_str}子入继" return jsonify({ "success": True, "data": {**member, "parents": parents, "children": children, "adopt_info": adopt_info} }) finally: conn.close() @app.route('/manager/api/members/add', methods=['POST']) def api_add_member(): """添加成员(小程序用)""" token = request.headers.get('Authorization', '').replace('Bearer ', '') if not token: return jsonify({"success": False, "message": "未登录"}), 401 mp_user = get_mp_user_from_token(token) mp_user_id = mp_user['id'] if mp_user else None try: data = request.get_json() name = data.get('name', '') simplified_name = data.get('simplified_name', '') sex = data.get('sex', 1) birthday_str = data.get('birthday', '') family_rank = data.get('family_rank', '') name_word_generation = data.get('name_word_generation', '') is_pass_away = data.get('is_pass_away', 0) marital_status = data.get('marital_status', 0) former_name = data.get('former_name', '') phone = data.get('phone', '') notes = data.get('notes', '') relations = data.get('relations', []) if not name: return jsonify({"success": False, "message": "姓名不能为空"}), 400 # 将日期字符串 "YYYY-MM-DD" 转为 Unix 时间戳(与后台一致) birthday_ts = 0 if birthday_str: try: birthday_ts = int(datetime.strptime(birthday_str, '%Y-%m-%d').timestamp()) except Exception: birthday_ts = 0 conn = get_db_connection() try: with conn.cursor() as cursor: cursor.execute(""" INSERT INTO family_member_info (name, simplified_name, sex, birthday, family_rank, name_word_generation, is_pass_away, marital_status, former_name, phone, notes, data_source, create_uid, create_time, modified_time) VALUES (%s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, 'miniprogram', %s, CURRENT_TIMESTAMP, CURRENT_TIMESTAMP) """, (name, simplified_name, sex, birthday_ts, family_rank, name_word_generation, is_pass_away, marital_status, former_name, phone, notes, mp_user_id)) conn.commit() new_member_id = cursor.lastrowid # 添加关系 for rel in relations: parent_mid = rel.get('parent_mid') relation_type = rel.get('relation_type', 1) sub_relation_type = rel.get('sub_relation_type', 0) if parent_mid: cursor.execute(""" INSERT INTO family_relation_info (parent_mid, child_mid, relation_type, sub_relation_type) VALUES (%s, %s, %s, %s) """, (parent_mid, new_member_id, relation_type, sub_relation_type)) conn.commit() return jsonify({ "success": True, "message": "添加成功", "memberId": new_member_id }) finally: conn.close() except Exception as e: print(f"[API Add Member] Error: {e}") return jsonify({"success": False, "message": str(e)}), 500 @app.route('/manager/api/members/my', methods=['GET']) def api_my_members(): """获取当前小程序用户录入的所有成员""" token = request.headers.get('Authorization', '').replace('Bearer ', '') mp_user = get_mp_user_from_token(token) if not mp_user: return jsonify({"success": False, "message": "未登录或登录已过期"}), 401 conn = get_db_connection() try: with conn.cursor() as cursor: cursor.execute(""" SELECT id, name, simplified_name, sex, birthday, name_word_generation, family_rank, is_pass_away, marital_status, create_time FROM family_member_info WHERE create_uid = %s AND data_source = 'miniprogram' ORDER BY create_time DESC """, (mp_user['id'],)) members = cursor.fetchall() for m in members: m['birthday_date'] = format_timestamp(m.get('birthday')) if m.get('create_time'): m['create_time'] = m['create_time'].strftime('%Y-%m-%d %H:%M') return jsonify({"success": True, "data": members}) except Exception as e: print(f"[API My Members] Error: {e}") return jsonify({"success": False, "message": str(e)}), 500 finally: conn.close() @app.route('/manager/api/member/', methods=['PUT']) def api_update_member(member_id): """更新成员信息(小程序用,只能修改自己录入的)""" token = request.headers.get('Authorization', '').replace('Bearer ', '') mp_user = get_mp_user_from_token(token) if not mp_user: return jsonify({"success": False, "message": "未登录或登录已过期"}), 401 conn = get_db_connection() try: with conn.cursor() as cursor: cursor.execute( "SELECT id, create_uid, data_source FROM family_member_info WHERE id = %s", (member_id,) ) member = cursor.fetchone() if not member: return jsonify({"success": False, "message": "成员不存在"}), 404 if member['data_source'] != 'miniprogram' or member['create_uid'] != mp_user['id']: return jsonify({"success": False, "message": "无权限修改此成员"}), 403 data = request.get_json() or {} name = data.get('name', '').strip() if not name: return jsonify({"success": False, "message": "姓名不能为空"}), 400 birthday_str = data.get('birthday', '') birthday_ts = 0 if birthday_str: try: from datetime import datetime as _dt birthday_ts = int(_dt.strptime(birthday_str, '%Y-%m-%d').timestamp()) except Exception: birthday_ts = 0 cursor.execute(""" UPDATE family_member_info SET name=%s, simplified_name=%s, sex=%s, birthday=%s, family_rank=%s, name_word_generation=%s, is_pass_away=%s, marital_status=%s, phone=%s, notes=%s, modified_time=CURRENT_TIMESTAMP WHERE id=%s """, ( name, data.get('simplified_name', ''), int(data.get('sex', 1)), birthday_ts, data.get('family_rank') or None, data.get('name_word_generation', ''), int(data.get('is_pass_away', 0)), int(data.get('marital_status', 0)), data.get('phone', ''), data.get('notes', ''), member_id )) conn.commit() return jsonify({"success": True, "message": "修改成功"}) except Exception as e: conn.rollback() print(f"[API Update Member] Error: {e}") return jsonify({"success": False, "message": str(e)}), 500 finally: conn.close() @app.route('/manager/api/members/', methods=['DELETE']) def api_delete_member(member_id): """删除成员(小程序用,只能删除自己录入的)""" token = request.headers.get('Authorization', '').replace('Bearer ', '') mp_user = get_mp_user_from_token(token) if not mp_user: return jsonify({"success": False, "message": "未登录或登录已过期"}), 401 conn = get_db_connection() try: with conn.cursor() as cursor: cursor.execute(""" SELECT id, create_uid, data_source FROM family_member_info WHERE id = %s """, (member_id,)) member = cursor.fetchone() if not member: return jsonify({"success": False, "message": "成员不存在"}), 404 if member['data_source'] != 'miniprogram' or member['create_uid'] != mp_user['id']: return jsonify({"success": False, "message": "无权限删除此成员"}), 403 cursor.execute("DELETE FROM family_relation_info WHERE parent_mid = %s OR child_mid = %s", (member_id, member_id)) cursor.execute("DELETE FROM family_member_info WHERE id = %s", (member_id,)) conn.commit() return jsonify({"success": True, "message": "删除成功"}) except Exception as e: conn.rollback() print(f"[API Delete Member] Error: {e}") return jsonify({"success": False, "message": str(e)}), 500 finally: conn.close() @app.route('/manager/api/lineage/', methods=['GET']) def api_get_lineage(member_id): """获取世系信息(小程序用)- 完整多代版""" token = request.headers.get('Authorization', '').replace('Bearer ', '') if not token: return jsonify({"success": False, "message": "未登录"}), 401 mode = request.args.get('mode', 'incense') conn = get_db_connection() try: with conn.cursor() as cursor: # Step 1: 获取查询人物 cursor.execute(""" SELECT id, name, simplified_name, name_word, name_word_generation, former_name, childhood_name FROM family_member_info WHERE id = %s """, (member_id,)) center = cursor.fetchone() if not center: return jsonify({"success": False, "message": "成员不存在"}), 404 # Step 2: 向上追溯祖先链(最多100代),每代带同辈兄弟 generations = [] current_id = member_id max_depth = 100 visited_ancestor_ids = set([member_id]) # 循环检测 for depth in range(max_depth): cursor.execute(""" SELECT p.id, p.name, p.simplified_name, p.name_word, p.name_word_generation, p.former_name, p.childhood_name, EXISTS(SELECT 1 FROM family_relation_info WHERE parent_mid = p.id AND relation_type IN (1,2)) as has_children, r.sub_relation_type FROM family_relation_info r JOIN family_member_info p ON r.parent_mid = p.id WHERE r.child_mid = %s AND r.relation_type IN (1, 2) """, (current_id,)) parents = cursor.fetchall() if not parents: break # 分拣各类父母关系 normal_parent = None adoptive_parent = None bio_parent = None for p in parents: if p['sub_relation_type'] == 3: adoptive_parent = p elif p['sub_relation_type'] == 2: bio_parent = p else: normal_parent = p if mode == 'blood': parent = normal_parent or bio_parent or adoptive_parent # 血脉模式下若存在养父,仍标注出继/入继关系 if adoptive_parent is not None: _bio_src = bio_parent or normal_parent bio_name = (_bio_src.get('simplified_name') or _bio_src.get('name')) if _bio_src else None adop_name = adoptive_parent.get('simplified_name') or adoptive_parent.get('name') if bio_name and adop_name: adopt_label = f"出继自{bio_name},入继至{adop_name}" elif adop_name: adopt_label = f"入继至{adop_name}" else: adopt_label = "出继" if depth == 0: center['adoption_label'] = adopt_label elif generations: generations[-1]['ancestor']['adoption_label'] = adopt_label else: parent = adoptive_parent or normal_parent or bio_parent if parent is adoptive_parent and adoptive_parent is not None: _bio_src = bio_parent or normal_parent bio_name = (_bio_src.get('simplified_name') or _bio_src.get('name')) if _bio_src else None adop_name = adoptive_parent.get('simplified_name') or adoptive_parent.get('name') if bio_name and adop_name: adopt_label = f"出继自{bio_name},入继至{adop_name}" elif bio_name: adopt_label = f"出继自{bio_name}" else: adopt_label = "出继" if depth == 0: center['adoption_label'] = adopt_label elif generations: generations[-1]['ancestor']['adoption_label'] = adopt_label # 祖先卡片不携带子辈关系类型 parent['sub_relation_type'] = None # 循环检测 if parent['id'] in visited_ancestor_ids: break visited_ancestor_ids.add(parent['id']) # 查祖父以获取该祖先的兄弟 # 香火传承:优先养父(sub_type=3);血脉传承:优先生父 if mode == 'incense': gp_order_wx = "CASE WHEN COALESCE(r.sub_relation_type, 0) = 3 THEN 0 ELSE 1 END" else: gp_order_wx = "CASE WHEN COALESCE(r.sub_relation_type, 0) = 3 THEN 1 ELSE 0 END" cursor.execute(f""" SELECT gp.id, gp.name, gp.simplified_name FROM family_relation_info r JOIN family_member_info gp ON r.parent_mid = gp.id WHERE r.child_mid = %s AND r.relation_type IN (1, 2) ORDER BY {gp_order_wx}, r.id LIMIT 1 """, (parent['id'],)) grandparent = cursor.fetchone() parent_siblings = [] if grandparent: # 获取祖先自身的 child_order cursor.execute(""" SELECT COALESCE(child_order, 1) AS child_order FROM family_relation_info WHERE parent_mid = %s AND child_mid = %s AND relation_type IN (1,2) LIMIT 1 """, (grandparent['id'], parent['id'])) co_row = cursor.fetchone() parent['child_order'] = co_row['child_order'] if co_row else 1 if mode == 'blood': _sib_filter = "AND COALESCE(r.sub_relation_type, 0) != 3" else: _sib_filter = """AND ( COALESCE(r.sub_relation_type, 0) != 2 OR NOT EXISTS ( SELECT 1 FROM family_relation_info r2 WHERE r2.child_mid = c.id AND r2.sub_relation_type = 3 ) )""" cursor.execute(f""" SELECT c.id, c.name, c.simplified_name, c.name_word, c.name_word_generation, c.former_name, c.childhood_name, EXISTS(SELECT 1 FROM family_relation_info WHERE parent_mid = c.id AND relation_type IN (1,2)) as has_children, COALESCE(r.child_order, 1) AS child_order FROM family_relation_info r JOIN family_member_info c ON r.child_mid = c.id WHERE r.parent_mid = %s AND r.relation_type IN (1,2) AND c.id != %s {{_sib_filter}} ORDER BY COALESCE(r.child_order, 1), c.id LIMIT 10 """, (grandparent['id'], parent['id'])) parent_siblings = cursor.fetchall() # 兄弟是祖父的子女,"入继至/出继自"用祖父名 wx_gp_display = grandparent.get('simplified_name') or grandparent.get('name') or '' for s in parent_siblings: s['has_children'] = bool(s['has_children']) if s.get('sub_relation_type') == 3: cursor.execute(""" SELECT p.simplified_name, p.name FROM family_relation_info r JOIN family_member_info p ON r.parent_mid = p.id WHERE r.child_mid = %s AND r.sub_relation_type != 3 ORDER BY r.sub_relation_type DESC LIMIT 1 """, (s['id'],)) sbp = cursor.fetchone() bio_name = (sbp['simplified_name'] or sbp['name']) if sbp else None if bio_name and wx_gp_display: s['adoption_label'] = f"出继自{bio_name},入继至{wx_gp_display}" elif bio_name: s['adoption_label'] = f"出继自{bio_name}" else: s['adoption_label'] = "出继" elif mode == 'blood' and s.get('sub_relation_type') == 2: cursor.execute(""" SELECT p.simplified_name, p.name FROM family_relation_info r JOIN family_member_info p ON r.parent_mid = p.id WHERE r.child_mid = %s AND r.sub_relation_type = 3 LIMIT 1 """, (s['id'],)) adop = cursor.fetchone() adop_name = (adop['simplified_name'] or adop['name']) if adop else None if wx_gp_display and adop_name: s['adoption_label'] = f"出继自{wx_gp_display},入继至{adop_name}" elif adop_name: s['adoption_label'] = f"入继至{adop_name}" else: s['adoption_label'] = "出继" else: parent['child_order'] = None parent['has_children'] = bool(parent['has_children']) generations.append({ 'ancestor': parent, 'siblings': list(parent_siblings), 'depth': depth }) current_id = parent['id'] # Step 3: 获取子女(排除出继、保留入继,带排行) cursor.execute(""" SELECT c.id, c.name, c.simplified_name, c.name_word, c.name_word_generation, c.former_name, c.childhood_name, EXISTS(SELECT 1 FROM family_relation_info WHERE parent_mid = c.id AND relation_type IN (1,2)) as has_children, COALESCE(r.child_order, 1) AS child_order, r.sub_relation_type FROM family_relation_info r JOIN family_member_info c ON r.child_mid = c.id WHERE r.parent_mid = %s AND r.relation_type IN (1, 2) AND ( COALESCE(r.sub_relation_type, 0) != 2 OR NOT EXISTS ( SELECT 1 FROM family_relation_info r2 WHERE r2.child_mid = c.id AND r2.sub_relation_type = 3 ) ) ORDER BY COALESCE(r.child_order, 1), c.id LIMIT 20 """, (member_id,)) children = cursor.fetchall() center_display_wx = center.get('simplified_name') or center.get('name') or '' for c in children: c['has_children'] = bool(c['has_children']) # 入继子女:附加生父信息,生成"出继自xx,入继至yy"标注 if c['sub_relation_type'] == 3: cursor.execute(""" SELECT p.name, p.simplified_name FROM family_relation_info r JOIN family_member_info p ON r.parent_mid = p.id WHERE r.child_mid = %s AND r.sub_relation_type != 3 ORDER BY r.sub_relation_type DESC LIMIT 1 """, (c['id'],)) bp = cursor.fetchone() bio_name = (bp['simplified_name'] or bp['name']) if bp else None if bio_name and center_display_wx: c['adoption_label'] = f"出继自{bio_name},入继至{center_display_wx}" elif bio_name: c['adoption_label'] = f"出继自{bio_name}" else: c['adoption_label'] = "出继" # Step 4: 获取查询人物的同辈兄弟(含center自己的child_order) siblings = [] center_child_order = None if generations: parent_id = generations[0]['ancestor']['id'] # 先获取 center 自身的 child_order cursor.execute(""" SELECT child_order FROM family_relation_info WHERE parent_mid = %s AND child_mid = %s AND relation_type IN (1,2) LIMIT 1 """, (parent_id, member_id)) co_row = cursor.fetchone() center_child_order = (co_row['child_order'] if co_row and co_row['child_order'] else 1) cursor.execute(""" SELECT c.id, c.name, c.simplified_name, c.name_word, c.name_word_generation, c.former_name, c.childhood_name, EXISTS(SELECT 1 FROM family_relation_info WHERE parent_mid = c.id AND relation_type IN (1,2)) as has_children, r.sub_relation_type, COALESCE(r.child_order, 1) AS child_order FROM family_relation_info r JOIN family_member_info c ON r.child_mid = c.id WHERE r.parent_mid = %s AND r.relation_type IN (1,2) AND c.id != %s ORDER BY COALESCE(r.child_order, 1), c.id LIMIT 10 """, (parent_id, member_id)) siblings = cursor.fetchall() for s in siblings: s['has_children'] = bool(s['has_children']) # 判断是否还有更高的祖先 has_more_ancestors = False topmost_ancestor_id = None if generations: topmost_ancestor_id = generations[-1]['ancestor']['id'] cursor.execute(""" SELECT COUNT(*) as cnt FROM family_relation_info WHERE child_mid = %s AND relation_type IN (1,2) """, (topmost_ancestor_id,)) has_more_ancestors = cursor.fetchone()['cnt'] > 0 return jsonify({ "success": True, "data": { "center": {**center, "child_order": center_child_order or 1}, "generations": generations, "siblings": list(siblings), "children": list(children), "has_more_ancestors": has_more_ancestors, "topmost_ancestor_id": topmost_ancestor_id } }) except Exception as e: print(f"[API Lineage] Error: {e}") return jsonify({"success": False, "message": str(e)}), 500 finally: conn.close() @app.route('/manager/api/lineage//ancestors_above', methods=['GET']) def api_get_ancestors_above(ancestor_id): """小程序世系查询:从指定祖先节点继续向上追溯(分批加载更多祖先)""" token = request.headers.get('Authorization', '').replace('Bearer ', '') if not token: return jsonify({"success": False, "message": "未登录"}), 401 conn = get_db_connection() try: with conn.cursor() as cursor: generations = [] current_id = ancestor_id max_depth = 100 visited_ids = set([ancestor_id]) # 计算 anchor 节点(ancestor_id)自身的 adoption_label anchor_adoption_label_wx = None cursor.execute(""" SELECT p.id, p.name, p.simplified_name, r.sub_relation_type FROM family_relation_info r JOIN family_member_info p ON r.parent_mid = p.id WHERE r.child_mid = %s AND r.relation_type IN (1, 2) """, (ancestor_id,)) anchor_parents_wx = cursor.fetchall() anchor_bio_wx = None anchor_adop_wx = None anchor_normal_wx = None for ap in anchor_parents_wx: if ap['sub_relation_type'] == 3: anchor_adop_wx = ap elif ap['sub_relation_type'] == 2: anchor_bio_wx = ap else: anchor_normal_wx = ap if anchor_adop_wx: _bio_src_wx = anchor_bio_wx or anchor_normal_wx bio_name_wx = (_bio_src_wx.get('simplified_name') or _bio_src_wx.get('name')) if _bio_src_wx else None adop_name_wx = anchor_adop_wx.get('simplified_name') or anchor_adop_wx.get('name') if bio_name_wx and adop_name_wx: anchor_adoption_label_wx = f"出继自{bio_name_wx},入继至{adop_name_wx}" elif bio_name_wx: anchor_adoption_label_wx = f"出继自{bio_name_wx}" else: anchor_adoption_label_wx = "出继" for depth in range(max_depth): cursor.execute(""" SELECT p.id, p.name, p.simplified_name, p.name_word, p.name_word_generation, p.former_name, p.childhood_name, EXISTS(SELECT 1 FROM family_relation_info WHERE parent_mid = p.id AND relation_type IN (1,2)) as has_children, r.sub_relation_type FROM family_relation_info r JOIN family_member_info p ON r.parent_mid = p.id WHERE r.child_mid = %s AND r.relation_type IN (1, 2) """, (current_id,)) parents = cursor.fetchall() if not parents: break # 父母优先级:入继养父母(3) > 普通亲生(0) > 出继亲生(2) normal_parent = None adoptive_parent = None bio_parent = None for p in parents: if p['sub_relation_type'] == 3: adoptive_parent = p elif p['sub_relation_type'] == 2: bio_parent = p else: normal_parent = p if mode == 'blood': parent = normal_parent or bio_parent or adoptive_parent if adoptive_parent is not None: _bio_src = bio_parent or normal_parent bio_name = (_bio_src.get('simplified_name') or _bio_src.get('name')) if _bio_src else None adop_name = adoptive_parent.get('simplified_name') or adoptive_parent.get('name') if bio_name and adop_name: adopt_label = f"出继自{bio_name},入继至{adop_name}" elif adop_name: adopt_label = f"入继至{adop_name}" else: adopt_label = "出继" if depth == 0: anchor_adoption_label_wx = adopt_label elif generations: generations[-1]['ancestor']['adoption_label'] = adopt_label else: parent = adoptive_parent or normal_parent or bio_parent # 若走入继路径,在 current_id 对应的人物上标注"出继自xx,入继至yy" if parent is adoptive_parent and adoptive_parent is not None: _bio_src = bio_parent or normal_parent bio_name = (_bio_src.get('simplified_name') or _bio_src.get('name')) if _bio_src else None adop_name = adoptive_parent.get('simplified_name') or adoptive_parent.get('name') if bio_name and adop_name: adopt_label = f"出继自{bio_name},入继至{adop_name}" elif bio_name: adopt_label = f"出继自{bio_name}" else: adopt_label = "出继" if depth == 0: anchor_adoption_label_wx = adopt_label elif generations: generations[-1]['ancestor']['adoption_label'] = adopt_label # 祖先卡片不携带子辈关系类型 parent['sub_relation_type'] = None if parent['id'] in visited_ids: break visited_ids.add(parent['id']) # 香火传承:优先养父(sub_type=3);血脉传承:优先生父 if mode == 'incense': gp_order_wxab = "CASE WHEN COALESCE(r.sub_relation_type, 0) = 3 THEN 0 ELSE 1 END" else: gp_order_wxab = "CASE WHEN COALESCE(r.sub_relation_type, 0) = 3 THEN 1 ELSE 0 END" cursor.execute(f""" SELECT gp.id, gp.name, gp.simplified_name FROM family_relation_info r JOIN family_member_info gp ON r.parent_mid = gp.id WHERE r.child_mid = %s AND r.relation_type IN (1, 2) ORDER BY {gp_order_wxab}, r.id LIMIT 1 """, (parent['id'],)) grandparent = cursor.fetchone() parent_siblings = [] if grandparent: cursor.execute(""" SELECT COALESCE(child_order, 1) AS child_order FROM family_relation_info WHERE parent_mid = %s AND child_mid = %s AND relation_type IN (1,2) LIMIT 1 """, (grandparent['id'], parent['id'])) co_row = cursor.fetchone() parent['child_order'] = co_row['child_order'] if co_row else 1 if mode == 'blood': _sib_filter = "AND COALESCE(r.sub_relation_type, 0) != 3" else: _sib_filter = """AND ( COALESCE(r.sub_relation_type, 0) != 2 OR NOT EXISTS ( SELECT 1 FROM family_relation_info r2 WHERE r2.child_mid = c.id AND r2.sub_relation_type = 3 ) )""" cursor.execute(f""" SELECT c.id, c.name, c.simplified_name, c.name_word, c.name_word_generation, c.former_name, c.childhood_name, EXISTS(SELECT 1 FROM family_relation_info WHERE parent_mid = c.id AND relation_type IN (1,2)) as has_children, COALESCE(r.child_order, 1) AS child_order FROM family_relation_info r JOIN family_member_info c ON r.child_mid = c.id WHERE r.parent_mid = %s AND r.relation_type IN (1,2) AND c.id != %s {{_sib_filter}} ORDER BY COALESCE(r.child_order, 1), c.id LIMIT 10 """, (grandparent['id'], parent['id'])) parent_siblings = cursor.fetchall() # 兄弟是祖父的子女,"入继至/出继自"用祖父名 wxab_gp_display = grandparent.get('simplified_name') or grandparent.get('name') or '' for s in parent_siblings: s['has_children'] = bool(s['has_children']) if s.get('sub_relation_type') == 3: cursor.execute(""" SELECT p.simplified_name, p.name FROM family_relation_info r JOIN family_member_info p ON r.parent_mid = p.id WHERE r.child_mid = %s AND r.sub_relation_type != 3 ORDER BY r.sub_relation_type DESC LIMIT 1 """, (s['id'],)) sbp = cursor.fetchone() bio_name = (sbp['simplified_name'] or sbp['name']) if sbp else None if bio_name and wxab_gp_display: s['adoption_label'] = f"出继自{bio_name},入继至{wxab_gp_display}" elif bio_name: s['adoption_label'] = f"出继自{bio_name}" else: s['adoption_label'] = "出继" elif mode == 'blood' and s.get('sub_relation_type') == 2: cursor.execute(""" SELECT p.simplified_name, p.name FROM family_relation_info r JOIN family_member_info p ON r.parent_mid = p.id WHERE r.child_mid = %s AND r.sub_relation_type = 3 LIMIT 1 """, (s['id'],)) adop = cursor.fetchone() adop_name = (adop['simplified_name'] or adop['name']) if adop else None if wxab_gp_display and adop_name: s['adoption_label'] = f"出继自{wxab_gp_display},入继至{adop_name}" elif adop_name: s['adoption_label'] = f"入继至{adop_name}" else: s['adoption_label'] = "出继" else: parent['child_order'] = None parent['has_children'] = bool(parent['has_children']) generations.append({ 'ancestor': parent, 'siblings': list(parent_siblings), 'depth': depth }) current_id = parent['id'] has_more_ancestors = False topmost_ancestor_id = None if generations: topmost_ancestor_id = generations[-1]['ancestor']['id'] cursor.execute(""" SELECT COUNT(*) as cnt FROM family_relation_info WHERE child_mid = %s AND relation_type IN (1,2) """, (topmost_ancestor_id,)) has_more_ancestors = cursor.fetchone()['cnt'] > 0 return jsonify({ "success": True, "data": { "generations": generations, "has_more_ancestors": has_more_ancestors, "topmost_ancestor_id": topmost_ancestor_id, "anchor_adoption_label": anchor_adoption_label_wx } }) except Exception as e: print(f"[API Ancestors Above] Error: {e}") return jsonify({"success": False, "message": str(e)}), 500 finally: conn.close() @app.route('/manager/api/mp/wx/auth/login', methods=['POST']) def mp_wx_login(): """微信小程序登录接口""" try: data = request.get_json() code = data.get('code', '') userInfo = data.get('userInfo', {}) if not code: return jsonify({"success": False, "message": "缺少code参数"}), 400 openid = f"mock_openid_{code[:8]}" conn = get_db_connection() try: with conn.cursor() as cursor: cursor.execute("SELECT id, openid, member_id, is_bound FROM family_member_bind WHERE openid = %s", (openid,)) bind_info = cursor.fetchone() if not bind_info: cursor.execute("INSERT INTO family_member_bind (openid, created_at) VALUES (%s, CURRENT_TIMESTAMP)", (openid,)) conn.commit() bind_info = { 'id': cursor.lastrowid, 'openid': openid, 'member_id': None, 'is_bound': 0 } finally: conn.close() return jsonify({ "success": True, "data": { "openid": openid, "token": f"mock_token_{openid}", "isBound": bool(bind_info['is_bound']), "memberId": bind_info['member_id'] } }) except Exception as e: print(f"[MP Login] Error: {e}") return jsonify({"success": False, "message": str(e)}), 500 @app.route('/manager/api/mp/wx/config/getConfig', methods=['GET']) def mp_wx_get_config(): """获取配置信息""" config_key = request.args.get('configKey', '') config_data = { "CAROUSEL": { "success": True, "images": [ { "image": "", "title": "留家族旅", "subtitle": "传承家族文化" } ] }, "HONOR": { "success": True, "data": { "name": "留越", "role": "族谱发起人", "desc": "2025年发起族谱建设,统筹信息收集" } } } result = config_data.get(config_key, {"success": False, "message": "配置不存在"}) return jsonify(result) @app.route('/manager/api/mp/wx/family/member/selfCard', methods=['GET']) def mp_wx_self_card(): """获取用户自己的卡片信息""" openid = request.headers.get('X-MP-Openid', '') if not openid: return jsonify({"success": False, "message": "未登录"}), 401 conn = get_db_connection() try: with conn.cursor() as cursor: cursor.execute("SELECT member_id FROM family_member_bind WHERE openid = %s", (openid,)) bind_info = cursor.fetchone() if not bind_info or not bind_info['member_id']: return jsonify({"success": False, "message": "未绑定成员"}) cursor.execute("SELECT id, name, simplified_name, sex, birthday, occupation, family_rank, branch_family_hall, residential_address FROM family_member_info WHERE id = %s", (bind_info['member_id'],)) member = cursor.fetchone() if not member: return jsonify({"success": False, "message": "成员不存在"}) return jsonify({ "success": True, "data": member }) finally: conn.close() @app.route('/manager/api/mp/wx/family/member/search', methods=['GET']) def mp_wx_search_members(): """搜索家族成员""" keyword = request.args.get('keyword', '') conn = get_db_connection() try: with conn.cursor() as cursor: if keyword: cursor.execute(""" SELECT id, name, simplified_name, sex, birthday, family_rank FROM family_member_info WHERE name LIKE %s OR simplified_name LIKE %s ORDER BY name_word_generation ASC, id ASC LIMIT 20 """, (f"%{keyword}%", f"%{keyword}%")) else: cursor.execute(""" SELECT id, name, simplified_name, sex, birthday, family_rank FROM family_member_info ORDER BY name_word_generation ASC, id ASC LIMIT 20 """) members = cursor.fetchall() return jsonify({ "success": True, "data": members }) finally: conn.close() @app.route('/manager/api/mp/wx/family/member/bind', methods=['POST']) def mp_wx_bind_member(): """绑定用户到家族成员""" try: data = request.get_json() openid = data.get('openid', '') member_id = data.get('memberId', '') if not openid or not member_id: return jsonify({"success": False, "message": "参数错误"}), 400 conn = get_db_connection() try: with conn.cursor() as cursor: cursor.execute("SELECT id FROM family_member_info WHERE id = %s", (member_id,)) member = cursor.fetchone() if not member: return jsonify({"success": False, "message": "成员不存在"}) cursor.execute("UPDATE family_member_bind SET member_id = %s, is_bound = 1, updated_at = CURRENT_TIMESTAMP WHERE openid = %s", (member_id, openid)) conn.commit() return jsonify({"success": True, "message": "绑定成功"}) finally: conn.close() except Exception as e: print(f"[MP Bind] Error: {e}") return jsonify({"success": False, "message": str(e)}), 500 @app.route('/manager/api/mp/wx/family/lineage', methods=['GET']) def mp_wx_get_lineage(): """获取世系信息""" openid = request.headers.get('X-MP-Openid', '') member_id = request.args.get('memberId', '') if not openid: return jsonify({"success": False, "message": "未登录"}), 401 conn = get_db_connection() try: if not member_id: with conn.cursor() as cursor: cursor.execute("SELECT member_id FROM family_member_bind WHERE openid = %s", (openid,)) bind_info = cursor.fetchone() if bind_info and bind_info['member_id']: member_id = bind_info['member_id'] else: return jsonify({"success": False, "message": "未绑定成员"}) with conn.cursor() as cursor: cursor.execute(""" SELECT id, name, simplified_name, sex, name_word_generation, birthday, occupation, family_rank, branch_family_hall, residential_address FROM family_member_info WHERE id = %s """, (member_id,)) member = cursor.fetchone() if not member: return jsonify({"success": False, "message": "成员不存在"}) current_member = { "id": member['id'], "name": member['name'], "simplified_name": member['simplified_name'], "sex": member['sex'], "name_word_generation": member['name_word_generation'], "birthday": member['birthday'], "occupation": member['occupation'], "family_rank": member['family_rank'], "branch_family_hall": member['branch_family_hall'], "residential_address": member['residential_address'] } cursor.execute(""" SELECT p.id, p.name, p.simplified_name, p.sex, p.name_word_generation, p.birthday FROM family_relation_info r JOIN family_member_info p ON r.parent_mid = p.id WHERE r.child_mid = %s AND r.relation_type = 1 """, (member_id,)) father = cursor.fetchone() cursor.execute(""" SELECT p.id, p.name, p.simplified_name, p.sex, p.name_word_generation, p.birthday FROM family_relation_info r JOIN family_member_info p ON r.parent_mid = p.id WHERE r.child_mid = %s AND r.relation_type = 2 """, (member_id,)) mother = cursor.fetchone() ancestors = [] if father or mother: ancestors.append({ "father": father, "mother": mother }) cursor.execute(""" SELECT c.id, c.name, c.simplified_name, c.sex, c.name_word_generation, c.birthday, r.child_order FROM family_relation_info r JOIN family_member_info c ON r.child_mid = c.id WHERE r.parent_mid = %s AND r.relation_type IN (1, 2) ORDER BY COALESCE(r.child_order, 999) ASC """, (member_id,)) children = cursor.fetchall() cursor.execute(""" SELECT DISTINCT s.id, s.name, s.simplified_name, s.sex FROM family_relation_info r1 JOIN family_relation_info r2 ON r1.parent_mid = r2.parent_mid JOIN family_member_info s ON r2.child_mid = s.id WHERE r1.child_mid = %s AND r2.child_mid != %s ORDER BY COALESCE(r2.child_order, 999) ASC """, (member_id, member_id)) siblings = cursor.fetchall() return jsonify({ "success": True, "data": { "member": current_member, "ancestors": ancestors, "children": children, "siblings": siblings } }) finally: conn.close() @app.route('/manager/api/mp/wx/family/member/add', methods=['POST']) def mp_wx_add_member(): """添加家族成员""" try: data = request.get_json() openid = data.get('openid', '') member_data = data.get('memberData', {}) relation_data = data.get('relationData', {}) if not openid: return jsonify({"success": False, "message": "未登录"}), 401 conn = get_db_connection() try: with conn.cursor() as cursor: member_info = { 'name': member_data.get('name', ''), 'simplified_name': member_data.get('simplified_name', '') or member_data.get('name', ''), 'sex': member_data.get('sex', 1), 'birthday': member_data.get('birthday', ''), 'occupation': member_data.get('occupation', ''), 'family_rank': member_data.get('family_rank', ''), 'branch_family_hall': member_data.get('branch_family_hall', ''), 'residential_address': member_data.get('residential_address', ''), 'genealogy_text': member_data.get('genealogy_text', ''), 'create_time': datetime.now(), 'modified_time': datetime.now() } fields = ", ".join(member_info.keys()) placeholders = ", ".join(["%s"] * len(member_info)) sql = f"INSERT INTO family_member_info ({fields}) VALUES ({placeholders})" cursor.execute(sql, list(member_info.values())) new_member_id = cursor.lastrowid relation_type = relation_data.get('relationType', '') if relation_type: parent_id = relation_data.get('parentId') child_order = relation_data.get('childOrder', 1) if parent_id and relation_type in ['father', 'mother', 'child']: rel_type = 1 if relation_type == 'father' else 2 if relation_type == 'mother' else 1 cursor.execute(""" INSERT INTO family_relation_info (parent_mid, child_mid, relation_type, child_order, source_mid, generation_diff) VALUES (%s, %s, %s, %s, %s, 1) """, (parent_id, new_member_id, rel_type, child_order, new_member_id)) conn.commit() return jsonify({ "success": True, "message": "添加成功", "memberId": new_member_id }) except Exception as e: conn.rollback() raise e finally: conn.close() except Exception as e: print(f"[MP Add Member] Error: {e}") return jsonify({"success": False, "message": str(e)}), 500 @app.route('/manager/api/mp/wx/family/member/update', methods=['POST']) def mp_wx_update_member(): """更新家族成员信息""" try: data = request.get_json() openid = data.get('openid', '') member_id = data.get('memberId', '') update_data = data.get('updateData', {}) if not openid or not member_id: return jsonify({"success": False, "message": "参数错误"}), 400 conn = get_db_connection() try: update_parts = [] params = [] if 'name' in update_data: update_parts.append("name = %s") params.append(update_data['name']) if 'simplified_name' in update_data: update_parts.append("simplified_name = %s") params.append(update_data['simplified_name']) if 'sex' in update_data: update_parts.append("sex = %s") params.append(update_data['sex']) if 'birthday' in update_data: update_parts.append("birthday = %s") params.append(update_data['birthday']) if 'occupation' in update_data: update_parts.append("occupation = %s") params.append(update_data['occupation']) if 'family_rank' in update_data: update_parts.append("family_rank = %s") params.append(update_data['family_rank']) if 'branch_family_hall' in update_data: update_parts.append("branch_family_hall = %s") params.append(update_data['branch_family_hall']) if 'residential_address' in update_data: update_parts.append("residential_address = %s") params.append(update_data['residential_address']) update_parts.append("modified_time = CURRENT_TIMESTAMP") params.append(member_id) sql = f"UPDATE family_member_info SET {', '.join(update_parts)} WHERE id = %s" with conn.cursor() as cursor: cursor.execute(sql, params) conn.commit() return jsonify({"success": True, "message": "更新成功"}) except Exception as e: conn.rollback() raise e finally: conn.close() except Exception as e: print(f"[MP Update Member] Error: {e}") return jsonify({"success": False, "message": str(e)}), 500 # ==================== End 微信小程序 API 接口 ==================== # ==================== 代数连续性核查 ==================== def _check_member_generation(conn, member_id): """ 保存成员后调用:检查该成员与其亲生父亲的代数是否连续。 返回 list of warning_str(空列表表示无问题)。 """ try: with conn.cursor() as cursor: cursor.execute( "SELECT name, simplified_name, name_word_generation FROM family_member_info WHERE id = %s", (member_id,) ) member = cursor.fetchone() if not member: return [] cursor.execute(""" SELECT p.id, p.name, p.simplified_name, p.name_word_generation FROM family_relation_info r JOIN family_member_info p ON r.parent_mid = p.id WHERE r.child_mid = %s AND r.relation_type = 1 AND COALESCE(r.sub_relation_type, 0) != 3 LIMIT 5 """, (member_id,)) parents = cursor.fetchall() if not parents: return [] member_name = member.get('simplified_name') or member.get('name') or f'ID:{member_id}' child_gens = _parse_generation_labels(member.get('name_word_generation') or '') warnings = [] for parent in parents: parent_gens = _parse_generation_labels(parent.get('name_word_generation') or '') if not parent_gens or not child_gens: continue parent_map = dict(parent_gens) child_map = dict(child_gens) common = set(parent_map.keys()) & set(child_map.keys()) for prefix in common: p_gen = parent_map[prefix] c_gen = child_map[prefix] if c_gen != p_gen + 1: parent_name = parent.get('simplified_name') or parent.get('name') or '?' expected = p_gen + 1 diff_desc = ( f"与父亲相同(均为第{c_gen}代)" if c_gen == p_gen else f"跳跃了{c_gen - p_gen - 1}代(应为第{expected}代,实为第{c_gen}代)" if c_gen > p_gen + 1 else f"倒退(父第{p_gen}代,子第{c_gen}代)" ) warnings.append( f"⚠️ 代数不连续 [{prefix}]:{member_name} 第{c_gen}代," f"父亲 {parent_name} 第{p_gen}代,{diff_desc}" ) return warnings except Exception as e: print(f"[GenerationCheck] Warning: {e}") return [] def _cn_to_int(s): """将中文数字(如"三十二")转为整数,支持 1-999。""" if not s: return None digits = {'零':0,'一':1,'二':2,'三':3,'四':4,'五':5,'六':6,'七':7,'八':8,'九':9} units = {'十':10,'百':100,'千':1000} result, temp = 0, 0 for ch in s: if ch in digits: temp = digits[ch] elif ch in units: if temp == 0 and ch == '十': # 十一 → 11,十 → 10 temp = 1 result += temp * units[ch] temp = 0 result += temp return result or None def _parse_generation_labels(gen_str): """ 解析 name_word_generation 字段(可含多个分号分隔的代数标签), 返回 list of (branch_prefix, gen_int)。 例:"衢州第三十代;某支第五代" → [("衢州", 30), ("某支", 5)] """ import re if not gen_str: return [] results = [] for part in gen_str.split(';'): part = part.strip() m = re.match(r'^(.*?)第([零一二三四五六七八九十百千]+)代$', part) if m: prefix = m.group(1) num = _cn_to_int(m.group(2)) if num is not None: results.append((prefix, num)) return results @app.route('/manager/generation_check') def generation_check_page(): if 'user_id' not in session: return redirect(url_for('login')) return render_template('generation_check.html') @app.route('/manager/api/generation_check') def generation_check_api(): """ 核查所有父子关系中代数是否连续(子=父+1)。 仅检查亲生父子关系(relation_type=1,排除入继 sub_type=3)。 返回所有不连续的情况,包含人员信息方便排查。 """ if 'user_id' not in session: return jsonify({"success": False, "message": "Unauthorized"}), 401 conn = get_db_connection() try: with conn.cursor() as cursor: # 获取所有成员的代数字段 cursor.execute(""" SELECT id, name, simplified_name, name_word_generation FROM family_member_info """) members = {row['id']: row for row in cursor.fetchall()} # 获取所有亲生父子关系(排除入继) cursor.execute(""" SELECT parent_mid, child_mid FROM family_relation_info WHERE relation_type = 1 AND COALESCE(sub_relation_type, 0) != 3 """) relations = cursor.fetchall() errors = [] warnings = [] # 父或子缺少可解析代数 for rel in relations: pid = rel['parent_mid'] cid = rel['child_mid'] parent = members.get(pid) child = members.get(cid) if not parent or not child: continue parent_gens = _parse_generation_labels(parent.get('name_word_generation') or '') child_gens = _parse_generation_labels(child.get('name_word_generation') or '') if not parent_gens or not child_gens: # 至少一方没有可解析的代数,记为警告 if parent.get('name_word_generation') or child.get('name_word_generation'): warnings.append({ 'type': 'missing_gen', 'parent_id': pid, 'parent_name': parent.get('simplified_name') or parent.get('name'), 'parent_gen_raw': parent.get('name_word_generation') or '', 'child_id': cid, 'child_name': child.get('simplified_name') or child.get('name'), 'child_gen_raw': child.get('name_word_generation') or '', }) continue # 对每个共有的支系前缀检查是否 child_gen == parent_gen + 1 parent_map = dict(parent_gens) child_map = dict(child_gens) common_prefixes = set(parent_map.keys()) & set(child_map.keys()) if not common_prefixes: # 前缀不同,可能是跨支系,不强制报错 continue for prefix in sorted(common_prefixes): p_gen = parent_map[prefix] c_gen = child_map[prefix] if c_gen != p_gen + 1: errors.append({ 'type': 'discontinuous', 'prefix': prefix, 'parent_id': pid, 'parent_name': parent.get('simplified_name') or parent.get('name'), 'parent_gen': p_gen, 'parent_gen_raw': parent.get('name_word_generation') or '', 'child_id': cid, 'child_name': child.get('simplified_name') or child.get('name'), 'child_gen': c_gen, 'child_gen_raw': child.get('name_word_generation') or '', 'expected_child_gen': p_gen + 1, 'diff': c_gen - p_gen, }) # 按支系前缀和父代数排序 errors.sort(key=lambda x: (x['prefix'], x['parent_gen'])) warnings.sort(key=lambda x: (x['parent_id'])) return jsonify({ "success": True, "error_count": len(errors), "warning_count": len(warnings), "errors": errors, "warnings": warnings, }) except Exception as e: import traceback return jsonify({"success": False, "message": str(e), "trace": traceback.format_exc()}), 500 finally: conn.close() # ==================== End 代数连续性核查 ==================== if __name__ == '__main__': app.run(debug=False, host='0.0.0.0', port=5001)