Automated daily report that analyzes all workflow logs and sends email summary at 7pm. NEW SCRIPT: daily_report.py - Analyzes last 24 hours of all workflow logs - Parses campaign and asset statistics - Extracts error messages - Sends comprehensive email report - Run via cron at 7pm daily FEATURES: ✓ Overall summary statistics across all workflows ✓ Per-workflow breakdown (A1→A2, A2→A3, A5→A6, B1→B2) ✓ Success rate calculation ✓ Campaign details with status (completed/partial/no_assets) ✓ Error log extraction ✓ Collapsible sections for campaign and error details ✓ Color-coded metrics (green=good, orange=warning, red=error) STATISTICS TRACKED: - Campaigns found/processed/completed/partial - Total assets processed/successful/failed - NOT APPROVED assets (A5→A6) - Skipped assets (approved items) - Success rate percentage - Error count and messages EMAIL TEMPLATE: daily_report - Blue theme (#1976d2) - Grid layout for statistics - Collapsible campaign details - Collapsible error logs (max 10 shown) - Professional dashboard-style formatting USAGE: python scripts/daily_report.py CRON SCHEDULE (7pm daily): 0 19 * * * cd ~/Python-Version && venv/bin/python scripts/daily_report.py >> logs/daily_report.log 2>&1 TESTED: ✓ Successfully parsed all 4 workflow logs ✓ Found 26 campaigns, 58 assets from last 24 hours ✓ Email sent successfully with all statistics ✓ Success rate: 48.3% (from test data) ✓ Error extraction working Changes: - NEW: scripts/daily_report.py (241 lines) - EDIT: shared/notifier.py (add daily_report template) 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
732 lines
51 KiB
Python
732 lines
51 KiB
Python
"""
|
|
Notifier - Email and Webhook Notifications
|
|
Handles SMTP emails (Mailgun) and outgoing webhooks
|
|
Compatible with Python 3.6+
|
|
"""
|
|
|
|
import requests
|
|
import logging
|
|
import smtplib
|
|
from email.mime.text import MIMEText
|
|
from email.mime.multipart import MIMEMultipart
|
|
from jinja2 import Template
|
|
|
|
logger = logging.getLogger('Notifier')
|
|
|
|
class Notifier:
|
|
def __init__(self, config):
|
|
self.config = config
|
|
self.enabled = config['notifications']['enabled']
|
|
|
|
# SMTP configuration (preferred method)
|
|
smtp_config = config['notifications'].get('smtp', {})
|
|
self.smtp_server = smtp_config.get('server')
|
|
self.smtp_port = smtp_config.get('port', 587)
|
|
self.smtp_user = smtp_config.get('user')
|
|
self.smtp_password = smtp_config.get('password')
|
|
self.sender_email = smtp_config.get('sender_email')
|
|
|
|
self.recipients = config['notifications']['recipients']
|
|
self.webhook_config = config.get('webhooks', {})
|
|
|
|
def send_email(self, template_name, recipients, data):
|
|
"""
|
|
Send email via SMTP (Mailgun)
|
|
|
|
Args:
|
|
template_name: Name of email template
|
|
recipients: List of email addresses or single email
|
|
data: Template data dict
|
|
"""
|
|
if not self.enabled:
|
|
logger.info("Notifications disabled, skipping email")
|
|
return
|
|
|
|
if not self.smtp_server or not self.smtp_user:
|
|
logger.warning("SMTP not configured, skipping email")
|
|
return
|
|
|
|
try:
|
|
# Simple templates (full template system would load from YAML)
|
|
templates = {
|
|
'a1_to_a2_complete': {
|
|
'subject': "✅ Master Assets Downloaded - Campaign {campaign_name}",
|
|
'html': """
|
|
<div style="font-family: Arial, sans-serif; max-width: 900px; margin: 0 auto;">
|
|
<div style="background-color: #28a745; color: white; padding: 20px; text-align: center; border-radius: 8px 8px 0 0;">
|
|
<h1 style="margin: 0;">✅ Master Assets Downloaded Successfully</h1>
|
|
</div>
|
|
|
|
<div style="background-color: #d4edda; border-left: 4px solid #28a745; padding: 15px; margin: 20px 0;">
|
|
<p style="margin: 0;"><strong>Campaign:</strong> {{ campaign_name }} ({{ campaign_number }})</p>
|
|
<p style="margin: 5px 0 0 0;"><strong>Assets Downloaded:</strong> {{ asset_count }}</p>
|
|
<p style="margin: 5px 0 0 0;"><strong>Status Updated:</strong> A1 → A2</p>
|
|
</div>
|
|
|
|
<h3 style="margin-top: 30px; color: #333;">Processed Assets:</h3>
|
|
{% for asset in processed_assets %}
|
|
<div style="border: 1px solid #ddd; margin: 15px 0; padding: 15px; background-color: #fafafa; border-radius: 4px;">
|
|
<div style="background-color: #28a745; color: white; padding: 10px 15px; margin: -15px -15px 15px -15px; border-radius: 4px 4px 0 0;">
|
|
<strong>{{ asset.asset_name }}</strong>
|
|
</div>
|
|
<div style="padding: 10px; background-color: white; border-radius: 4px;">
|
|
<p style="margin: 5px 0;"><span style="font-weight: bold;">Tracking ID:</span> <code>{{ asset.tracking_id }}</code></p>
|
|
<p style="margin: 5px 0;"><span style="font-weight: bold;">Box File ID:</span> {{ asset.box_file_id }}</p>
|
|
<p style="margin: 5px 0;"><span style="font-weight: bold;">Box URL:</span> <a href="{{ asset.box_url }}">{{ asset.box_url }}</a></p>
|
|
{% if asset.folder_path %}<p style="margin: 5px 0;"><span style="font-weight: bold;">DAM Path:</span> {{ asset.folder_path }}</p>{% endif %}
|
|
</div>
|
|
</div>
|
|
{% endfor %}
|
|
|
|
<div style="background-color: #d4edda; border-left: 4px solid #28a745; padding: 15px; margin: 20px 0;">
|
|
<p style="margin: 0;"><strong>✓ Complete:</strong> All assets downloaded from DAM and uploaded to Box with tracking IDs.</p>
|
|
</div>
|
|
|
|
<p style="color: #666; font-size: 12px; margin-top: 20px;">Campaign status updated from A1 to A2. Box Folder: 348304357505 (Local Adaptation)</p>
|
|
</div>
|
|
"""
|
|
},
|
|
'a2_to_a3_complete': {
|
|
'subject': "✅ Localized Assets Uploaded - Campaign {campaign_name}",
|
|
'html': """
|
|
<div style="font-family: Arial, sans-serif; max-width: 900px; margin: 0 auto;">
|
|
<div style="background-color: #28a745; color: white; padding: 20px; text-align: center; border-radius: 8px 8px 0 0;">
|
|
<h1 style="margin: 0;">✅ Localized Assets Uploaded Successfully</h1>
|
|
</div>
|
|
|
|
<div style="background-color: #d4edda; border-left: 4px solid #28a745; padding: 15px; margin: 20px 0;">
|
|
<p style="margin: 0;"><strong>Campaign:</strong> {{ campaign_name }}</p>
|
|
<p style="margin: 5px 0 0 0;"><strong>Campaign ID:</strong> {{ campaign_id }}</p>
|
|
<p style="margin: 5px 0 0 0;"><strong>Assets Uploaded:</strong> {{ asset_count }}</p>
|
|
<p style="margin: 5px 0 0 0;"><strong>Status Updated:</strong> A2 → A3</p>
|
|
</div>
|
|
|
|
<div style="background-color: #d4edda; border-left: 4px solid #28a745; padding: 15px; margin: 20px 0;">
|
|
<p style="margin: 0;"><strong>✓ Complete:</strong> All localized assets have been uploaded to DAM.</p>
|
|
</div>
|
|
|
|
<p style="color: #666; font-size: 12px; margin-top: 20px;">Campaign status updated from A2 to A3.</p>
|
|
</div>
|
|
"""
|
|
},
|
|
'upload_failed': {
|
|
'subject': "❌ Upload Failed - {filename}",
|
|
'html': """
|
|
<div style="font-family: Arial, sans-serif; max-width: 900px; margin: 0 auto;">
|
|
<div style="background-color: #d32f2f; color: white; padding: 20px; text-align: center; border-radius: 8px 8px 0 0;">
|
|
<h1 style="margin: 0;">❌ Upload Failed</h1>
|
|
</div>
|
|
|
|
<div style="background-color: #ffebee; border-left: 4px solid #d32f2f; padding: 15px; margin: 20px 0;">
|
|
<p style="margin: 0;"><strong>Filename:</strong> {{ filename }}</p>
|
|
<p style="margin: 5px 0 0 0;"><strong>Tracking ID:</strong> <code>{{ tracking_id }}</code></p>
|
|
</div>
|
|
|
|
<div style="border: 1px solid #ddd; margin: 20px 0; padding: 15px; background-color: #ffebee; border-radius: 4px;">
|
|
<div style="background-color: #d32f2f; color: white; padding: 10px 15px; margin: -15px -15px 15px -15px; border-radius: 4px 4px 0 0;">
|
|
<strong>Error Details</strong>
|
|
</div>
|
|
<div style="padding: 10px; background-color: white; border-radius: 4px;">
|
|
<p style="margin: 5px 0; color: #d32f2f;"><strong>Error:</strong> {{ error }}</p>
|
|
</div>
|
|
</div>
|
|
|
|
<div style="background-color: #fff3cd; border-left: 4px solid #ffc107; padding: 15px; margin: 20px 0;">
|
|
<p style="margin: 0;"><strong>📌 Action Required:</strong> Please investigate the error and retry the upload.</p>
|
|
</div>
|
|
</div>
|
|
"""
|
|
},
|
|
'a1_to_a2_partial': {
|
|
'subject': "⚠️ Partial Download - Campaign {campaign_name}",
|
|
'html': """
|
|
<div style="font-family: Arial, sans-serif; max-width: 900px; margin: 0 auto;">
|
|
<div style="background-color: #ff9800; color: white; padding: 20px; text-align: center; border-radius: 8px 8px 0 0;">
|
|
<h1 style="margin: 0;">⚠️ Campaign Partially Processed</h1>
|
|
</div>
|
|
|
|
<div style="background-color: #fff3cd; border-left: 4px solid #ffc107; padding: 15px; margin: 20px 0;">
|
|
<p style="margin: 0;"><strong>Campaign:</strong> {{ campaign_name }} ({{ campaign_number }})</p>
|
|
<p style="margin: 5px 0 0 0;"><strong>Total Assets:</strong> {{ total_assets }}</p>
|
|
<p style="margin: 5px 0 0 0;"><strong>Successful:</strong> {{ successful }} | <strong>Failed:</strong> {{ failed }}</p>
|
|
</div>
|
|
|
|
{% if successful > 0 %}
|
|
<h3 style="margin-top: 30px; color: #28a745;">✅ Successfully Processed ({{ successful }}):</h3>
|
|
{% for asset in processed_assets %}
|
|
<div style="border: 1px solid #ddd; margin: 15px 0; padding: 15px; background-color: #fafafa; border-radius: 4px;">
|
|
<div style="background-color: #28a745; color: white; padding: 10px 15px; margin: -15px -15px 15px -15px; border-radius: 4px 4px 0 0;">
|
|
<strong>{{ asset.asset_name }}</strong>
|
|
</div>
|
|
<div style="padding: 10px; background-color: white; border-radius: 4px;">
|
|
<p style="margin: 5px 0;"><span style="font-weight: bold;">Tracking ID:</span> <code>{{ asset.tracking_id }}</code></p>
|
|
<p style="margin: 5px 0;"><span style="font-weight: bold;">Box File ID:</span> {{ asset.box_file_id }}</p>
|
|
<p style="margin: 5px 0;"><span style="font-weight: bold;">Box URL:</span> <a href="{{ asset.box_url }}">{{ asset.box_url }}</a></p>
|
|
{% if asset.folder_path %}<p style="margin: 5px 0;"><span style="font-weight: bold;">DAM Path:</span> {{ asset.folder_path }}</p>{% endif %}
|
|
</div>
|
|
</div>
|
|
{% endfor %}
|
|
{% endif %}
|
|
|
|
{% if failed > 0 %}
|
|
<h3 style="margin-top: 30px; color: #d32f2f;">❌ Failed Assets ({{ failed }}):</h3>
|
|
{% for asset in failed_assets %}
|
|
<div style="border: 1px solid #ddd; margin: 15px 0; padding: 15px; background-color: #ffebee; border-radius: 4px;">
|
|
<div style="background-color: #d32f2f; color: white; padding: 10px 15px; margin: -15px -15px 15px -15px; border-radius: 4px 4px 0 0;">
|
|
<strong>{{ asset.asset_name }}</strong>
|
|
</div>
|
|
<div style="padding: 10px; background-color: white; border-radius: 4px;">
|
|
<p style="margin: 5px 0; color: #d32f2f;"><span style="font-weight: bold;">Error:</span> {{ asset.error }}</p>
|
|
</div>
|
|
</div>
|
|
{% endfor %}
|
|
{% endif %}
|
|
|
|
<div style="background-color: #ffebee; border-left: 4px solid #d32f2f; padding: 15px; margin: 20px 0;">
|
|
<p style="margin: 0; color: #d32f2f;"><strong>⚠️ Status NOT updated.</strong> Campaign remains at A1.</p>
|
|
<p style="margin: 5px 0 0 0;">The script will retry failed assets on the next run (every 5 minutes).</p>
|
|
</div>
|
|
</div>
|
|
"""
|
|
},
|
|
'a2_to_a3_file_uploaded': {
|
|
'subject': "✅ Asset Uploaded to DAM - {clean_filename}",
|
|
'html': """
|
|
<div style="font-family: Arial, sans-serif; max-width: 900px; margin: 0 auto;">
|
|
<div style="background-color: #28a745; color: white; padding: 20px; text-align: center; border-radius: 8px 8px 0 0;">
|
|
<h1 style="margin: 0;">✅ Asset Uploaded Successfully (A2→A3)</h1>
|
|
</div>
|
|
|
|
<div style="background-color: #d4edda; border-left: 4px solid #28a745; padding: 15px; margin: 20px 0;">
|
|
<p style="margin: 0;"><strong>Original Filename (from Box):</strong> <code>{{ filename }}</code></p>
|
|
<p style="margin: 5px 0 0 0;"><strong>Clean Filename (in DAM):</strong> <code>{{ clean_filename }}</code></p>
|
|
<p style="margin: 5px 0 0 0;"><strong>DAM Asset ID:</strong> <code>{{ asset_id }}</code></p>
|
|
<p style="margin: 5px 0 0 0;"><strong>Tracking ID:</strong> <code>{{ tracking_id }}</code></p>
|
|
</div>
|
|
|
|
<h3 style="margin-top: 30px; color: #333;">Processing Details:</h3>
|
|
<div style="padding: 15px; background-color: #f8f9fa; border-radius: 4px; margin: 10px 0;">
|
|
<p style="margin: 5px 0;"><strong>Master Asset ID:</strong> {{ master_asset_name }}</p>
|
|
<p style="margin: 5px 0;"><strong>Uploaded to DAM Folder:</strong> {{ upload_folder }}</p>
|
|
<p style="margin: 5px 0;"><strong>Downloaded from Box Folder:</strong> {{ box_folder }}</p>
|
|
</div>
|
|
|
|
<h3 style="margin-top: 30px; color: #333;">What Was Done:</h3>
|
|
<div style="padding: 15px; background-color: #f8f9fa; border-radius: 4px; margin: 10px 0;">
|
|
<ul style="margin: 10px 0; padding-left: 20px;">
|
|
<li>✅ Downloaded from Box processing folder (348526703108)</li>
|
|
<li>✅ Loaded master metadata from database ({{ tracking_id }})</li>
|
|
<li>✅ Built asset representation with 27 MVP fields</li>
|
|
<li>✅ Updated Description from filename</li>
|
|
<li>✅ Updated Language from filename</li>
|
|
<li>✅ Set State to "Local"</li>
|
|
<li>✅ Stripped OMG Job Number and Tracking ID from filename</li>
|
|
<li>✅ Uploaded to DAM Final Assets folder</li>
|
|
<li>✅ <strong>Deleted file from Box</strong></li>
|
|
</ul>
|
|
</div>
|
|
|
|
<div style="background-color: #e3f2fd; border-left: 4px solid #1976d2; padding: 15px; margin: 20px 0;">
|
|
<p style="margin: 0;"><strong>Status:</strong> Asset processing complete.</p>
|
|
<p style="margin: 5px 0 0 0;"><em>Note: Campaign status will be updated to A3 once all assets are uploaded.</em></p>
|
|
</div>
|
|
</div>
|
|
"""
|
|
},
|
|
'b1_to_b2_complete': {
|
|
'subject': "✅ Global Master Assets Downloaded - Campaign {campaign_name}",
|
|
'html': """
|
|
<div style="font-family: Arial, sans-serif; max-width: 900px; margin: 0 auto;">
|
|
<div style="background-color: #1976d2; color: white; padding: 20px; text-align: center; border-radius: 8px 8px 0 0;">
|
|
<h1 style="margin: 0;">✅ Global Master Assets Downloaded Successfully</h1>
|
|
</div>
|
|
|
|
<div style="background-color: #e3f2fd; border-left: 4px solid #1976d2; padding: 15px; margin: 20px 0;">
|
|
<p style="margin: 0;"><strong>Campaign:</strong> {{ campaign_name }} ({{ campaign_number }})</p>
|
|
<p style="margin: 5px 0 0 0;"><strong>Campaign Type:</strong> Global Masters</p>
|
|
<p style="margin: 5px 0 0 0;"><strong>Assets Downloaded:</strong> {{ asset_count }}</p>
|
|
<p style="margin: 5px 0 0 0;"><strong>Status Updated:</strong> B1 → B2</p>
|
|
</div>
|
|
|
|
<h3 style="margin-top: 30px; color: #333;">Processed Assets:</h3>
|
|
{% for asset in processed_assets %}
|
|
<div style="border: 1px solid #ddd; margin: 15px 0; padding: 15px; background-color: #fafafa; border-radius: 4px;">
|
|
<div style="background-color: #1976d2; color: white; padding: 10px 15px; margin: -15px -15px 15px -15px; border-radius: 4px 4px 0 0;">
|
|
<strong>{{ asset.asset_name }}</strong>
|
|
</div>
|
|
<div style="padding: 10px; background-color: white; border-radius: 4px;">
|
|
<p style="margin: 5px 0;"><span style="font-weight: bold;">Tracking ID:</span> <code>{{ asset.tracking_id }}</code></p>
|
|
<p style="margin: 5px 0;"><span style="font-weight: bold;">Box File ID:</span> {{ asset.box_file_id }}</p>
|
|
<p style="margin: 5px 0;"><span style="font-weight: bold;">Box URL:</span> <a href="{{ asset.box_url }}">{{ asset.box_url }}</a></p>
|
|
{% if asset.folder_path %}<p style="margin: 5px 0;"><span style="font-weight: bold;">DAM Path:</span> {{ asset.folder_path }}</p>{% endif %}
|
|
</div>
|
|
</div>
|
|
{% endfor %}
|
|
|
|
<div style="background-color: #e3f2fd; border-left: 4px solid #1976d2; padding: 15px; margin: 20px 0;">
|
|
<p style="margin: 0;"><strong>✓ Complete:</strong> All Global Master assets downloaded from DAM and uploaded to Box with tracking IDs.</p>
|
|
</div>
|
|
|
|
<p style="color: #666; font-size: 12px; margin-top: 20px;">Campaign status updated from B1 to B2. Box Folder: 349261192115 (Global Masters)</p>
|
|
</div>
|
|
"""
|
|
},
|
|
'b1_to_b2_partial': {
|
|
'subject': "⚠️ Partial Download - Global Campaign {campaign_name}",
|
|
'html': """
|
|
<div style="font-family: Arial, sans-serif; max-width: 900px; margin: 0 auto;">
|
|
<div style="background-color: #ff9800; color: white; padding: 20px; text-align: center; border-radius: 8px 8px 0 0;">
|
|
<h1 style="margin: 0;">⚠️ Global Campaign Partially Processed</h1>
|
|
</div>
|
|
|
|
<div style="background-color: #fff3cd; border-left: 4px solid #ffc107; padding: 15px; margin: 20px 0;">
|
|
<p style="margin: 0;"><strong>Campaign:</strong> {{ campaign_name }} ({{ campaign_number }})</p>
|
|
<p style="margin: 5px 0 0 0;"><strong>Campaign Type:</strong> Global Masters (B1→B2)</p>
|
|
<p style="margin: 5px 0 0 0;"><strong>Total Assets:</strong> {{ total_assets }}</p>
|
|
<p style="margin: 5px 0 0 0;"><strong>Successful:</strong> {{ successful }} | <strong>Failed:</strong> {{ failed }}</p>
|
|
</div>
|
|
|
|
{% if successful > 0 %}
|
|
<h3 style="margin-top: 30px; color: #28a745;">✅ Successfully Processed ({{ successful }}):</h3>
|
|
{% for asset in processed_assets %}
|
|
<div style="border: 1px solid #ddd; margin: 15px 0; padding: 15px; background-color: #fafafa; border-radius: 4px;">
|
|
<div style="background-color: #28a745; color: white; padding: 10px 15px; margin: -15px -15px 15px -15px; border-radius: 4px 4px 0 0;">
|
|
<strong>{{ asset.asset_name }}</strong>
|
|
</div>
|
|
<div style="padding: 10px; background-color: white; border-radius: 4px;">
|
|
<p style="margin: 5px 0;"><span style="font-weight: bold;">Tracking ID:</span> <code>{{ asset.tracking_id }}</code></p>
|
|
<p style="margin: 5px 0;"><span style="font-weight: bold;">Box URL:</span> <a href="{{ asset.box_url }}">{{ asset.box_url }}</a></p>
|
|
{% if asset.folder_path %}<p style="margin: 5px 0;"><span style="font-weight: bold;">DAM Path:</span> {{ asset.folder_path }}</p>{% endif %}
|
|
</div>
|
|
</div>
|
|
{% endfor %}
|
|
{% endif %}
|
|
|
|
{% if failed > 0 %}
|
|
<h3 style="margin-top: 30px; color: #d32f2f;">❌ Failed Assets ({{ failed }}):</h3>
|
|
{% for asset in failed_assets %}
|
|
<div style="border: 1px solid #ddd; margin: 15px 0; padding: 15px; background-color: #ffebee; border-radius: 4px;">
|
|
<div style="background-color: #d32f2f; color: white; padding: 10px 15px; margin: -15px -15px 15px -15px; border-radius: 4px 4px 0 0;">
|
|
<strong>{{ asset.asset_name }}</strong>
|
|
</div>
|
|
<div style="padding: 10px; background-color: white; border-radius: 4px;">
|
|
<p style="margin: 5px 0; color: #d32f2f;"><span style="font-weight: bold;">Error:</span> {{ asset.error }}</p>
|
|
</div>
|
|
</div>
|
|
{% endfor %}
|
|
{% endif %}
|
|
|
|
<div style="background-color: #ffebee; border-left: 4px solid #d32f2f; padding: 15px; margin: 20px 0;">
|
|
<p style="margin: 0; color: #d32f2f;"><strong>⚠️ Status NOT updated.</strong> Campaign remains at B1.</p>
|
|
<p style="margin: 5px 0 0 0;">The script will retry failed assets on the next run (every 5 minutes).</p>
|
|
</div>
|
|
</div>
|
|
"""
|
|
},
|
|
'a5_to_a6_rejections': {
|
|
'subject': "⚠️ NOT APPROVED Assets - Rework Required - Campaign {campaign_name}",
|
|
'html': """
|
|
<div style="font-family: Arial, sans-serif; max-width: 900px; margin: 0 auto;">
|
|
<div style="background-color: #d32f2f; color: white; padding: 20px; text-align: center; border-radius: 8px 8px 0 0;">
|
|
<h1 style="margin: 0;">⚠️ NOT APPROVED ASSETS - REWORK REQUIRED</h1>
|
|
</div>
|
|
|
|
<div style="background-color: #fff3cd; border-left: 4px solid #ffc107; padding: 15px; margin: 20px 0;">
|
|
<p style="margin: 0;"><strong>⚠️ Campaign:</strong> {{ campaign_name }} ({{ campaign_number }})</p>
|
|
<p style="margin: 5px 0 0 0;"><strong>NOT APPROVED assets:</strong> {{ rejected_count }} | <strong>Approved/skipped:</strong> {{ skipped_count }}</p>
|
|
<p style="margin: 5px 0 0 0;"><strong>Status Updated:</strong> A5 → A6</p>
|
|
</div>
|
|
|
|
{% for asset in rejected_assets %}
|
|
<div style="border: 1px solid #ddd; margin: 20px 0; padding: 20px; background-color: #fafafa; border-radius: 4px;">
|
|
<div style="background-color: #424242; color: white; padding: 12px 15px; margin: -20px -20px 20px -20px; border-radius: 4px 4px 0 0;">
|
|
<strong>{{ asset.asset_name }}</strong>
|
|
</div>
|
|
|
|
<div style="margin: 10px 0; padding: 10px; background-color: white; border-radius: 4px;">
|
|
<p><span style="font-weight: bold;">Status:</span> <span style="color: #d32f2f; font-weight: bold;">NOT APPROVED</span></p>
|
|
<p><span style="font-weight: bold;">Tracking ID:</span> <code>{{ asset.tracking_id }}</code>{% if asset.is_existing %} <span style="color: #007bff;">(Updated existing)</span>{% endif %}</p>
|
|
<p><span style="font-weight: bold;">Box URL:</span> <a href="{{ asset.box_url }}">{{ asset.box_url }}</a></p>
|
|
{% if asset.folder_path %}<p><span style="font-weight: bold;">DAM Path:</span> {{ asset.folder_path }}</p>{% endif %}
|
|
</div>
|
|
|
|
{% if asset.rejection_details %}
|
|
{% set approver = asset.rejection_details.approver %}
|
|
{% set legal = asset.rejection_details.legal %}
|
|
{% set ia_cc = asset.rejection_details.ia_cc %}
|
|
|
|
{% if approver.comment %}
|
|
<div style="margin: 15px 0; padding: 15px; border-left: 4px solid #d32f2f; background-color: #ffebee; border-radius: 0 4px 4px 0;">
|
|
<div style="font-weight: bold; color: #d32f2f; margin-bottom: 10px;">🔴 APPROVER REJECTION</div>
|
|
<p style="margin: 8px 0;"><strong>Reason:</strong> {{ approver.comment }}</p>
|
|
{% if approver.certifier_name %}<p style="margin: 8px 0;"><strong>Rejected By:</strong> {{ approver.certifier_name }}</p>{% endif %}
|
|
{% if approver.date %}<p style="margin: 8px 0;"><strong>Date:</strong> {{ approver.date }}</p>{% endif %}
|
|
</div>
|
|
{% endif %}
|
|
|
|
{% if legal.comment %}
|
|
<div style="margin: 15px 0; padding: 15px; border-left: 4px solid #d32f2f; background-color: #ffebee; border-radius: 0 4px 4px 0;">
|
|
<div style="font-weight: bold; color: #d32f2f; margin-bottom: 10px;">⚖️ LEGAL REJECTION</div>
|
|
<p style="margin: 8px 0;"><strong>Reason:</strong> {{ legal.comment }}</p>
|
|
{% if legal.certifier_name %}<p style="margin: 8px 0;"><strong>Rejected By:</strong> {{ legal.certifier_name }}</p>{% endif %}
|
|
{% if legal.date %}<p style="margin: 8px 0;"><strong>Date:</strong> {{ legal.date }}</p>{% endif %}
|
|
</div>
|
|
{% endif %}
|
|
|
|
{% if ia_cc.comment %}
|
|
<div style="margin: 15px 0; padding: 15px; border-left: 4px solid #d32f2f; background-color: #ffebee; border-radius: 0 4px 4px 0;">
|
|
<div style="font-weight: bold; color: #d32f2f; margin-bottom: 10px;">🔍 IA&CC REJECTION</div>
|
|
<p style="margin: 8px 0;"><strong>Reason:</strong> {{ ia_cc.comment }}</p>
|
|
{% if ia_cc.certifier_name %}<p style="margin: 8px 0;"><strong>Rejected By:</strong> {{ ia_cc.certifier_name }}</p>{% endif %}
|
|
{% if ia_cc.date %}<p style="margin: 8px 0;"><strong>Date:</strong> {{ ia_cc.date }}</p>{% endif %}
|
|
</div>
|
|
{% endif %}
|
|
|
|
{% if not approver.comment and not legal.comment and not ia_cc.comment %}
|
|
<div style="color: #999; font-style: italic; padding: 10px;">(No specific rejection comments available)</div>
|
|
{% endif %}
|
|
{% else %}
|
|
<div style="color: #999; font-style: italic; padding: 10px;">(No rejection details available)</div>
|
|
{% endif %}
|
|
</div>
|
|
{% endfor %}
|
|
|
|
<div style="background-color: #fff3cd; border-left: 4px solid #ffc107; padding: 15px; margin: 20px 0;">
|
|
<strong>📌 Next Steps:</strong> Please review and rework the above assets according to the rejection comments.
|
|
</div>
|
|
|
|
<p style="color: #666; font-size: 12px; margin-top: 20px;">All rejected assets have been downloaded to Box Revisions folder (349441822875). Campaign status updated A5 → A6.</p>
|
|
</div>
|
|
"""
|
|
},
|
|
'a5_to_a6_partial': {
|
|
'subject': "⚠️ Partial Rework Download - Campaign {campaign_name}",
|
|
'html': """
|
|
<h2 style="color: orange;">Rework Campaign Partially Processed (A5→A6)</h2>
|
|
<p><strong>Campaign:</strong> {{ campaign_name }} ({{ campaign_id }})</p>
|
|
<p><strong>Campaign Number:</strong> {{ campaign_number }}</p>
|
|
<p><strong>Total NOT APPROVED:</strong> {{ total_assets }}</p>
|
|
<p><strong>Successful:</strong> {{ successful }}</p>
|
|
<p><strong>Failed:</strong> {{ failed }}</p>
|
|
<hr>
|
|
|
|
{% if successful > 0 %}
|
|
<h3 style="color: green;">✅ Successfully Processed ({{ successful }}):</h3>
|
|
<ul>
|
|
{% for asset in rejected_assets %}
|
|
<li><strong>{{ asset.asset_name }}</strong>
|
|
<br>Tracking ID: <code>{{ asset.tracking_id }}</code>{% if asset.is_existing %} <span style="color: #007bff;">(Updated existing)</span>{% endif %}
|
|
<br>Box URL: <a href="{{ asset.box_url }}">{{ asset.box_url }}</a>
|
|
</li>
|
|
{% endfor %}
|
|
</ul>
|
|
{% endif %}
|
|
|
|
{% if failed > 0 %}
|
|
<h3 style="color: red;">❌ Failed Assets ({{ failed }}):</h3>
|
|
<ul>
|
|
{% for asset in failed_assets %}
|
|
<li><strong>{{ asset.asset_name }}</strong>
|
|
<br><span style="color: red;">Error: {{ asset.error }}</span>
|
|
</li>
|
|
{% endfor %}
|
|
</ul>
|
|
{% endif %}
|
|
|
|
<hr>
|
|
<p style="color: red;"><strong>Status NOT updated.</strong> Campaign remains at A5.</p>
|
|
<p>The script will retry failed assets on the next run (every 5 minutes).</p>
|
|
"""
|
|
},
|
|
'a5_to_a6_no_rejections': {
|
|
'subject': "✅ No Rework Required - Campaign {campaign_name}",
|
|
'html': """
|
|
<div style="font-family: Arial, sans-serif; max-width: 900px; margin: 0 auto;">
|
|
<div style="background-color: #28a745; color: white; padding: 20px; text-align: center; border-radius: 8px 8px 0 0;">
|
|
<h1 style="margin: 0;">✅ No Rework Required</h1>
|
|
</div>
|
|
|
|
<div style="background-color: #d4edda; border-left: 4px solid #28a745; padding: 15px; margin: 20px 0;">
|
|
<p style="margin: 0;"><strong>Campaign:</strong> {{ campaign_name }} ({{ campaign_number }})</p>
|
|
<p style="margin: 5px 0 0 0;"><strong>Total assets checked:</strong> {{ total_assets }}</p>
|
|
<p style="margin: 5px 0 0 0;"><strong>Approved/other status:</strong> {{ skipped_count }}</p>
|
|
<p style="margin: 5px 0 0 0;"><strong>NOT APPROVED assets:</strong> 0</p>
|
|
</div>
|
|
|
|
<div style="padding: 20px; background-color: #f8f9fa; border-radius: 4px; margin: 20px 0;">
|
|
<h3 style="color: #28a745; margin-top: 0;">Good News!</h3>
|
|
<p>All assets in the Final Assets folder are approved or have other status.</p>
|
|
<p>No assets with "NOT APPROVED" status were found, so no rework is required.</p>
|
|
</div>
|
|
|
|
<div style="background-color: #fff3cd; border-left: 4px solid #ffc107; padding: 15px; margin: 20px 0;">
|
|
<p style="margin: 0;"><strong>📌 Note:</strong></p>
|
|
<ul style="margin: 10px 0;">
|
|
<li>No downloads were performed</li>
|
|
<li>Status NOT updated (remains A5)</li>
|
|
<li>Script will check again on next run</li>
|
|
</ul>
|
|
</div>
|
|
|
|
<p style="color: #666; font-size: 12px; margin-top: 20px;">A5→A6 script completed successfully with no rejected assets found.</p>
|
|
</div>
|
|
"""
|
|
},
|
|
'a1_to_a2_no_assets': {
|
|
'subject': "⚠️ No Assets Found - Campaign {campaign_name}",
|
|
'html': """
|
|
<div style="font-family: Arial, sans-serif; max-width: 900px; margin: 0 auto;">
|
|
<div style="background-color: #ff9800; color: white; padding: 20px; text-align: center; border-radius: 8px 8px 0 0;">
|
|
<h1 style="margin: 0;">⚠️ No Master Assets Found</h1>
|
|
</div>
|
|
|
|
<div style="background-color: #fff3cd; border-left: 4px solid #ffc107; padding: 15px; margin: 20px 0;">
|
|
<p style="margin: 0;"><strong>Campaign:</strong> {{ campaign_name }} ({{ campaign_number }})</p>
|
|
<p style="margin: 5px 0 0 0;"><strong>Campaign ID:</strong> {{ campaign_id }}</p>
|
|
<p style="margin: 5px 0 0 0;"><strong>Status:</strong> A1</p>
|
|
</div>
|
|
|
|
<div style="padding: 20px; background-color: #f8f9fa; border-radius: 4px; margin: 20px 0;">
|
|
<h3 style="color: #ff9800; margin-top: 0;">Campaign Set to A1 but No Assets Found</h3>
|
|
<p>The Master Assets folder was searched (including subfolders) but no assets were found.</p>
|
|
<p>This campaign is set to status A1 but appears to have no master assets ready for download.</p>
|
|
</div>
|
|
|
|
<div style="background-color: #fff3cd; border-left: 4px solid #ffc107; padding: 15px; margin: 20px 0;">
|
|
<p style="margin: 0;"><strong>📌 What Happens Next:</strong></p>
|
|
<ul style="margin: 10px 0;">
|
|
<li>No downloads were performed</li>
|
|
<li>Status NOT updated (remains A1)</li>
|
|
<li>Script will check again on next run (every 5 minutes)</li>
|
|
<li>Please verify assets exist in Master Assets folder</li>
|
|
</ul>
|
|
</div>
|
|
|
|
<p style="color: #666; font-size: 12px; margin-top: 20px;">A1→A2 script completed with no assets to process.</p>
|
|
</div>
|
|
"""
|
|
},
|
|
'b1_to_b2_no_assets': {
|
|
'subject': "⚠️ No Assets Found - Global Campaign {campaign_name}",
|
|
'html': """
|
|
<div style="font-family: Arial, sans-serif; max-width: 900px; margin: 0 auto;">
|
|
<div style="background-color: #ff9800; color: white; padding: 20px; text-align: center; border-radius: 8px 8px 0 0;">
|
|
<h1 style="margin: 0;">⚠️ No Global Master Assets Found</h1>
|
|
</div>
|
|
|
|
<div style="background-color: #fff3cd; border-left: 4px solid #ffc107; padding: 15px; margin: 20px 0;">
|
|
<p style="margin: 0;"><strong>Campaign:</strong> {{ campaign_name }} ({{ campaign_number }})</p>
|
|
<p style="margin: 5px 0 0 0;"><strong>Campaign ID:</strong> {{ campaign_id }}</p>
|
|
<p style="margin: 5px 0 0 0;"><strong>Status:</strong> B1</p>
|
|
<p style="margin: 5px 0 0 0;"><strong>Campaign Type:</strong> Global Masters</p>
|
|
</div>
|
|
|
|
<div style="padding: 20px; background-color: #f8f9fa; border-radius: 4px; margin: 20px 0;">
|
|
<h3 style="color: #ff9800; margin-top: 0;">Campaign Set to B1 but No Assets Found</h3>
|
|
<p>The Final Assets folder was searched (including subfolders) but no assets were found.</p>
|
|
<p>This Global Masters campaign is set to status B1 but appears to have no assets ready for download.</p>
|
|
</div>
|
|
|
|
<div style="background-color: #fff3cd; border-left: 4px solid #ffc107; padding: 15px; margin: 20px 0;">
|
|
<p style="margin: 0;"><strong>📌 What Happens Next:</strong></p>
|
|
<ul style="margin: 10px 0;">
|
|
<li>No downloads were performed</li>
|
|
<li>Status NOT updated (remains B1)</li>
|
|
<li>Script will check again on next run (every 5 minutes)</li>
|
|
<li>Please verify assets exist in Final Assets folder</li>
|
|
</ul>
|
|
</div>
|
|
|
|
<p style="color: #666; font-size: 12px; margin-top: 20px;">B1→B2 script completed with no assets to process.</p>
|
|
</div>
|
|
"""
|
|
},
|
|
'daily_report': {
|
|
'subject': "📊 Ferrero Automation Daily Report - {report_date}",
|
|
'html': """
|
|
<div style="font-family: Arial, sans-serif; max-width: 1000px; margin: 0 auto;">
|
|
<div style="background-color: #1976d2; color: white; padding: 20px; text-align: center; border-radius: 8px 8px 0 0;">
|
|
<h1 style="margin: 0;">📊 Ferrero Automation Daily Report</h1>
|
|
<p style="margin: 10px 0 0 0; opacity: 0.9;">{{ report_date }} - Generated at {{ report_time }}</p>
|
|
</div>
|
|
|
|
<!-- Overall Summary -->
|
|
<div style="background-color: #e3f2fd; border-left: 4px solid #1976d2; padding: 15px; margin: 20px 0;">
|
|
<h2 style="margin: 0 0 10px 0; color: #1976d2;">📈 Overall Summary (Last 24 Hours)</h2>
|
|
<div style="display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 10px;">
|
|
<div><strong>Campaigns Found:</strong> {{ total_stats.campaigns_found }}</div>
|
|
<div><strong>Campaigns Processed:</strong> {{ total_stats.campaigns_processed }}</div>
|
|
<div><strong>✅ Completed:</strong> <span style="color: #28a745;">{{ total_stats.campaigns_completed }}</span></div>
|
|
<div><strong>⚠️ Partial:</strong> <span style="color: #ff9800;">{{ total_stats.campaigns_partial }}</span></div>
|
|
<div><strong>No Assets:</strong> {{ total_stats.campaigns_no_assets }}</div>
|
|
<div><strong>Total Assets:</strong> {{ total_stats.total_assets }}</div>
|
|
<div><strong>✓ Successful:</strong> <span style="color: #28a745;">{{ total_stats.assets_successful }}</span></div>
|
|
<div><strong>✗ Failed:</strong> <span style="color: #d32f2f;">{{ total_stats.assets_failed }}</span></div>
|
|
{% if total_stats.assets_skipped > 0 %}<div><strong>Skipped (Approved):</strong> {{ total_stats.assets_skipped }}</div>{% endif %}
|
|
{% if total_stats.not_approved_count > 0 %}<div><strong>🔴 NOT APPROVED:</strong> {{ total_stats.not_approved_count }}</div>{% endif %}
|
|
</div>
|
|
{% if total_stats.total_assets > 0 %}
|
|
<div style="margin-top: 15px; padding: 10px; background-color: white; border-radius: 4px;">
|
|
<strong>Success Rate:</strong>
|
|
<span style="font-size: 24px; font-weight: bold; color: {% if total_stats.success_rate >= 95 %}#28a745{% elif total_stats.success_rate >= 80 %}#ff9800{% else %}#d32f2f{% endif %};">
|
|
{{ "%.1f"|format(total_stats.success_rate) }}%
|
|
</span>
|
|
</div>
|
|
{% endif %}
|
|
</div>
|
|
|
|
<!-- Workflow Breakdown -->
|
|
<h2 style="margin: 30px 0 20px 0; color: #333;">🔄 Workflow Breakdown</h2>
|
|
|
|
{% for workflow_name, stats in workflow_stats.items() %}
|
|
<div style="border: 1px solid #ddd; margin: 15px 0; padding: 0; background-color: #fafafa; border-radius: 4px;">
|
|
<div style="background-color: #424242; color: white; padding: 12px 15px; border-radius: 4px 4px 0 0;">
|
|
<strong>{{ workflow_name }}</strong>
|
|
</div>
|
|
<div style="padding: 15px;">
|
|
{% if stats.campaigns_processed > 0 %}
|
|
<div style="display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-bottom: 10px;">
|
|
<div><strong>Campaigns:</strong> {{ stats.campaigns_processed }}</div>
|
|
<div><strong>Assets:</strong> {{ stats.total_assets }}</div>
|
|
<div style="color: #28a745;"><strong>✓ Successful:</strong> {{ stats.assets_successful }}</div>
|
|
<div style="color: #d32f2f;"><strong>✗ Failed:</strong> {{ stats.assets_failed }}</div>
|
|
{% if stats.assets_skipped > 0 %}<div><strong>Skipped:</strong> {{ stats.assets_skipped }}</div>{% endif %}
|
|
{% if stats.not_approved_count > 0 %}<div style="color: #d32f2f;"><strong>NOT APPROVED:</strong> {{ stats.not_approved_count }}</div>{% endif %}
|
|
</div>
|
|
|
|
{% if stats.campaign_details %}
|
|
<details style="margin-top: 10px;">
|
|
<summary style="cursor: pointer; font-weight: bold; color: #1976d2;">View Campaign Details ({{ stats.campaign_details|length }})</summary>
|
|
<div style="margin-top: 10px;">
|
|
{% for campaign in stats.campaign_details %}
|
|
<div style="padding: 8px; margin: 5px 0; background-color: white; border-left: 3px solid {% if campaign.status == 'completed' %}#28a745{% elif campaign.status == 'partial' %}#ff9800{% else %}#999{% endif %}; border-radius: 2px;">
|
|
<strong>{{ campaign.name }}</strong> ({{ campaign.number }})
|
|
<br><small>Total: {{ campaign.total_assets }}, Success: {{ campaign.successful }}, Failed: {{ campaign.failed }}{% if campaign.get('skipped') %}, Skipped: {{ campaign.skipped }}{% endif %}</small>
|
|
</div>
|
|
{% endfor %}
|
|
</div>
|
|
</details>
|
|
{% endif %}
|
|
|
|
{% if stats.errors %}
|
|
<details style="margin-top: 10px;">
|
|
<summary style="cursor: pointer; font-weight: bold; color: #d32f2f;">⚠️ Errors ({{ stats.errors|length }})</summary>
|
|
<div style="margin-top: 10px;">
|
|
{% for error in stats.errors[:10] %}
|
|
<div style="padding: 5px; margin: 3px 0; background-color: #ffebee; border-radius: 2px; font-size: 12px;">
|
|
{{ error }}
|
|
</div>
|
|
{% endfor %}
|
|
{% if stats.errors|length > 10 %}
|
|
<div style="padding: 5px; margin: 3px 0; font-style: italic; color: #666;">
|
|
... and {{ stats.errors|length - 10 }} more errors
|
|
</div>
|
|
{% endif %}
|
|
</div>
|
|
</details>
|
|
{% endif %}
|
|
{% else %}
|
|
<p style="color: #999; font-style: italic; margin: 0;">No activity in the last 24 hours</p>
|
|
{% endif %}
|
|
</div>
|
|
</div>
|
|
{% endfor %}
|
|
|
|
<!-- Footer -->
|
|
<div style="background-color: #f8f9fa; padding: 15px; margin: 20px 0; border-radius: 4px; text-align: center;">
|
|
<p style="margin: 0; color: #666;">
|
|
<strong>📌 Automation Scripts:</strong> A1→A2, A2→A3, A5→A6, B1→B2
|
|
</p>
|
|
<p style="margin: 5px 0 0 0; color: #666; font-size: 12px;">
|
|
Scripts run every 5 minutes | Report generated daily at 7:00 PM
|
|
</p>
|
|
</div>
|
|
</div>
|
|
"""
|
|
}
|
|
}
|
|
|
|
template_config = templates.get(template_name, {
|
|
'subject': 'Ferrero Automation Notification',
|
|
'html': '<p>{}</p>'.format(data)
|
|
})
|
|
|
|
# Render subject and body
|
|
subject = template_config['subject'].format(**data)
|
|
html_template = Template(template_config['html'])
|
|
html_body = html_template.render(**data)
|
|
|
|
# Prepare email
|
|
msg = MIMEMultipart('alternative')
|
|
msg['Subject'] = subject
|
|
msg['From'] = self.sender_email
|
|
msg['To'] = ', '.join(recipients) if isinstance(recipients, list) else recipients
|
|
|
|
# Attach HTML body
|
|
html_part = MIMEText(html_body, 'html')
|
|
msg.attach(html_part)
|
|
|
|
# Send via SMTP
|
|
with smtplib.SMTP(self.smtp_server, self.smtp_port) as server:
|
|
server.starttls()
|
|
server.login(self.smtp_user, self.smtp_password)
|
|
server.send_message(msg)
|
|
|
|
logger.info("Email sent via SMTP: {} to {}".format(template_name, recipients))
|
|
|
|
except Exception as e:
|
|
logger.error("Email error: {}".format(str(e)))
|
|
|
|
def send_webhook(self, url, payload):
|
|
"""
|
|
Send outgoing webhook notification
|
|
|
|
Args:
|
|
url: Webhook URL
|
|
payload: dict to send as JSON
|
|
|
|
Returns:
|
|
bool: Success status
|
|
"""
|
|
try:
|
|
# Get webhook config if exists
|
|
webhook_config = None
|
|
for name, config in self.webhook_config.items():
|
|
if config.get('url') == url:
|
|
webhook_config = config
|
|
break
|
|
|
|
if not webhook_config:
|
|
webhook_config = {'timeout_seconds': 10, 'auth': {}}
|
|
|
|
# Prepare headers
|
|
headers = {'Content-Type': 'application/json'}
|
|
|
|
# Add auth if configured
|
|
auth_config = webhook_config.get('auth', {})
|
|
if auth_config.get('type') == 'bearer' and auth_config.get('token'):
|
|
headers['Authorization'] = 'Bearer {}'.format(auth_config['token'])
|
|
elif auth_config.get('type') == 'basic':
|
|
# Could add basic auth here if needed
|
|
pass
|
|
|
|
# Send webhook
|
|
response = requests.post(
|
|
url,
|
|
json=payload,
|
|
headers=headers,
|
|
timeout=webhook_config.get('timeout_seconds', 10)
|
|
)
|
|
|
|
if response.status_code in [200, 201, 202]:
|
|
logger.info("Webhook sent successfully: {}".format(url))
|
|
return True
|
|
else:
|
|
logger.warning("Webhook failed: HTTP {} - {}".format(
|
|
response.status_code, response.text[:200]
|
|
))
|
|
return False
|
|
|
|
except Exception as e:
|
|
logger.error("Webhook error: {}".format(str(e)))
|
|
return False
|