mirror of
https://github.com/elisiariocouto/leggen.git
synced 2025-12-13 20:42:39 +00:00
- Change filters config from nested dict to simple arrays - Update NotificationFilters model to use List[str] instead of Dict[str, str] - Modify notification service to handle list-based filters - Update API routes and tests for new format - Update README with new configuration example Before: [filters.case-insensitive] salary = 'salary' After: [filters] case-insensitive = ['salary', 'utility']
205 lines
8.0 KiB
Python
205 lines
8.0 KiB
Python
from typing import List, Dict, Any
|
|
|
|
from loguru import logger
|
|
|
|
from leggend.config import config
|
|
|
|
|
|
class NotificationService:
|
|
def __init__(self):
|
|
self.notifications_config = config.notifications_config
|
|
self.filters_config = config.filters_config
|
|
|
|
async def send_transaction_notifications(
|
|
self, transactions: List[Dict[str, Any]]
|
|
) -> None:
|
|
"""Send notifications for new transactions that match filters"""
|
|
if not self.filters_config:
|
|
logger.info("No notification filters configured, skipping notifications")
|
|
return
|
|
|
|
# Filter transactions that match notification criteria
|
|
matching_transactions = self._filter_transactions(transactions)
|
|
|
|
if not matching_transactions:
|
|
logger.info("No transactions matched notification filters")
|
|
return
|
|
|
|
# Send to enabled notification services
|
|
if self._is_discord_enabled():
|
|
await self._send_discord_notifications(matching_transactions)
|
|
|
|
if self._is_telegram_enabled():
|
|
await self._send_telegram_notifications(matching_transactions)
|
|
|
|
async def send_test_notification(self, service: str, message: str) -> bool:
|
|
"""Send a test notification"""
|
|
try:
|
|
if service == "discord" and self._is_discord_enabled():
|
|
await self._send_discord_test(message)
|
|
return True
|
|
elif service == "telegram" and self._is_telegram_enabled():
|
|
await self._send_telegram_test(message)
|
|
return True
|
|
else:
|
|
logger.error(
|
|
f"Notification service '{service}' not enabled or not found"
|
|
)
|
|
return False
|
|
except Exception as e:
|
|
logger.error(f"Failed to send test notification to {service}: {e}")
|
|
return False
|
|
|
|
async def send_expiry_notification(self, notification_data: Dict[str, Any]) -> None:
|
|
"""Send notification about account expiry"""
|
|
if self._is_discord_enabled():
|
|
await self._send_discord_expiry(notification_data)
|
|
|
|
if self._is_telegram_enabled():
|
|
await self._send_telegram_expiry(notification_data)
|
|
|
|
def _filter_transactions(
|
|
self, transactions: List[Dict[str, Any]]
|
|
) -> List[Dict[str, Any]]:
|
|
"""Filter transactions based on notification criteria"""
|
|
matching = []
|
|
filters_case_insensitive = self.filters_config.get("case-insensitive", [])
|
|
filters_case_sensitive = self.filters_config.get("case-sensitive", [])
|
|
|
|
for transaction in transactions:
|
|
description = transaction.get("description", "")
|
|
description_lower = description.lower()
|
|
|
|
# Check case-insensitive filters
|
|
for filter_value in filters_case_insensitive:
|
|
if filter_value.lower() in description_lower:
|
|
matching.append(
|
|
{
|
|
"name": transaction["description"],
|
|
"value": transaction["transactionValue"],
|
|
"currency": transaction["transactionCurrency"],
|
|
"date": transaction["transactionDate"],
|
|
}
|
|
)
|
|
break
|
|
|
|
# Check case-sensitive filters
|
|
for filter_value in filters_case_sensitive:
|
|
if filter_value in description:
|
|
matching.append(
|
|
{
|
|
"name": transaction["description"],
|
|
"value": transaction["transactionValue"],
|
|
"currency": transaction["transactionCurrency"],
|
|
"date": transaction["transactionDate"],
|
|
}
|
|
)
|
|
break
|
|
|
|
return matching
|
|
|
|
def _is_discord_enabled(self) -> bool:
|
|
"""Check if Discord notifications are enabled"""
|
|
discord_config = self.notifications_config.get("discord", {})
|
|
return bool(
|
|
discord_config.get("webhook") and discord_config.get("enabled", True)
|
|
)
|
|
|
|
def _is_telegram_enabled(self) -> bool:
|
|
"""Check if Telegram notifications are enabled"""
|
|
telegram_config = self.notifications_config.get("telegram", {})
|
|
return bool(
|
|
telegram_config.get("token")
|
|
or telegram_config.get("api-key")
|
|
and (telegram_config.get("chat_id") or telegram_config.get("chat-id"))
|
|
and telegram_config.get("enabled", True)
|
|
)
|
|
|
|
async def _send_discord_notifications(
|
|
self, transactions: List[Dict[str, Any]]
|
|
) -> None:
|
|
"""Send Discord notifications - placeholder implementation"""
|
|
# Would import and use leggen.notifications.discord
|
|
logger.info(f"Sending {len(transactions)} transaction notifications to Discord")
|
|
|
|
async def _send_telegram_notifications(
|
|
self, transactions: List[Dict[str, Any]]
|
|
) -> None:
|
|
"""Send Telegram notifications - placeholder implementation"""
|
|
# Would import and use leggen.notifications.telegram
|
|
logger.info(
|
|
f"Sending {len(transactions)} transaction notifications to Telegram"
|
|
)
|
|
|
|
async def _send_discord_test(self, message: str) -> None:
|
|
"""Send Discord test notification"""
|
|
try:
|
|
from leggen.notifications.discord import send_expire_notification
|
|
import click
|
|
|
|
# Create a mock context with the webhook
|
|
ctx = click.Context(click.Command("test"))
|
|
ctx.obj = {
|
|
"notifications": {
|
|
"discord": {
|
|
"webhook": self.notifications_config.get("discord", {}).get(
|
|
"webhook"
|
|
)
|
|
}
|
|
}
|
|
}
|
|
|
|
# Send test notification using the actual implementation
|
|
test_notification = {
|
|
"bank": "Test",
|
|
"requisition_id": "test-123",
|
|
"status": "active",
|
|
"days_left": 30,
|
|
}
|
|
send_expire_notification(ctx, test_notification)
|
|
logger.info(f"Discord test notification sent: {message}")
|
|
except Exception as e:
|
|
logger.error(f"Failed to send Discord test notification: {e}")
|
|
raise
|
|
|
|
async def _send_telegram_test(self, message: str) -> None:
|
|
"""Send Telegram test notification"""
|
|
try:
|
|
from leggen.notifications.telegram import send_expire_notification
|
|
import click
|
|
|
|
# Create a mock context with the telegram config
|
|
ctx = click.Context(click.Command("test"))
|
|
telegram_config = self.notifications_config.get("telegram", {})
|
|
ctx.obj = {
|
|
"notifications": {
|
|
"telegram": {
|
|
"api-key": telegram_config.get("token")
|
|
or telegram_config.get("api-key"),
|
|
"chat-id": telegram_config.get("chat_id")
|
|
or telegram_config.get("chat-id"),
|
|
}
|
|
}
|
|
}
|
|
|
|
# Send test notification using the actual implementation
|
|
test_notification = {
|
|
"bank": "Test",
|
|
"requisition_id": "test-123",
|
|
"status": "active",
|
|
"days_left": 30,
|
|
}
|
|
send_expire_notification(ctx, test_notification)
|
|
logger.info(f"Telegram test notification sent: {message}")
|
|
except Exception as e:
|
|
logger.error(f"Failed to send Telegram test notification: {e}")
|
|
raise
|
|
|
|
async def _send_discord_expiry(self, notification_data: Dict[str, Any]) -> None:
|
|
"""Send Discord expiry notification"""
|
|
logger.info(f"Sending Discord expiry notification: {notification_data}")
|
|
|
|
async def _send_telegram_expiry(self, notification_data: Dict[str, Any]) -> None:
|
|
"""Send Telegram expiry notification"""
|
|
logger.info(f"Sending Telegram expiry notification: {notification_data}")
|