896 lines
64 KiB
Python
896 lines
64 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>
|
||
{% if creativex_found %}
|
||
<li>✅ <strong>CreativeX Score Added:</strong> {{ creativex_score }} (from database)</li>
|
||
{% else %}
|
||
<li>⚠️ <strong>CreativeX Score:</strong> Not found - used default (0)</li>
|
||
{% endif %}
|
||
<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>
|
||
|
||
{% if not creativex_found %}
|
||
<div style="background-color: #fff3e0; border-left: 4px solid #ff9800; padding: 15px; margin: 20px 0;">
|
||
<p style="margin: 0;"><strong>⚠️ CreativeX Score Missing</strong></p>
|
||
<p style="margin: 5px 0 0 0;">No CreativeX score found in database for: <code>{{ clean_filename }}</code></p>
|
||
<p style="margin: 5px 0 0 0;"><strong>Default Values Used:</strong></p>
|
||
<ul style="margin: 5px 0 0 20px; padding: 0;">
|
||
<li>Score: 0</li>
|
||
<li>URL: https://app.creativex.com/preflight/pretests</li>
|
||
</ul>
|
||
<p style="margin: 10px 0 0 0; font-size: 12px; color: #666;">
|
||
<em>To add CreativeX score: Upload PDF report to Box folder 350605024645 and run creativex_scoring_storing.py</em>
|
||
</p>
|
||
</div>
|
||
{% endif %}
|
||
|
||
<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>
|
||
|
||
{# Rejection details commented out
|
||
{% 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>
|
||
"""
|
||
},
|
||
'a4_webhook_sent': {
|
||
'subject': "📢 A4 Campaign Webhook Sent - {campaign_name}",
|
||
'html': """
|
||
<div style="font-family: Arial, sans-serif; max-width: 900px; margin: 0 auto;">
|
||
<div style="background-color: #607d8b; color: white; padding: 20px; text-align: center; border-radius: 8px 8px 0 0;">
|
||
<h1 style="margin: 0;">📢 A4 Campaign Webhook Sent</h1>
|
||
</div>
|
||
|
||
<div style="background-color: #eceff1; border-left: 4px solid #607d8b; 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>Status:</strong> A4 (Not Going Live)</p>
|
||
<p style="margin: 5px 0 0 0;"><strong>Live Campaign:</strong> <span style="color: #d32f2f; font-weight: bold;">NO</span></p>
|
||
</div>
|
||
|
||
<div style="padding: 20px; background-color: #f8f9fa; border-radius: 4px; margin: 20px 0;">
|
||
<h3 style="color: #607d8b; margin-top: 0;">Webhook Notification Sent</h3>
|
||
<p>A webhook notification has been sent indicating this campaign is marked as A4 and will not go live.</p>
|
||
<p><strong>Webhook URL:</strong> <code style="font-size: 11px;">{{ webhook_url }}</code></p>
|
||
</div>
|
||
|
||
<div style="background-color: #e3f2fd; border-left: 4px solid #1976d2; padding: 15px; margin: 20px 0;">
|
||
<p style="margin: 0;"><strong>Payload Sent:</strong></p>
|
||
<ul style="margin: 10px 0;">
|
||
<li>campaign_id: {{ campaign_id }}</li>
|
||
<li>campaign_number: {{ campaign_number }}</li>
|
||
<li>campaign_name: {{ campaign_name }}</li>
|
||
<li>status: A4</li>
|
||
<li><strong>live_campaign: NO</strong></li>
|
||
</ul>
|
||
</div>
|
||
|
||
<p style="color: #666; font-size: 12px; margin-top: 20px;">A4 webhook monitor completed successfully.</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>
|
||
"""
|
||
},
|
||
'creativex_complete': {
|
||
'subject': "✅ CreativeX Scores Extracted - {file_count} files processed",
|
||
'html': """
|
||
<div style="font-family: Arial, sans-serif; max-width: 900px; margin: 0 auto;">
|
||
<div style="background-color: #9c27b0; color: white; padding: 20px; text-align: center; border-radius: 8px 8px 0 0;">
|
||
<h1 style="margin: 0;">✅ CreativeX Score Extraction Complete</h1>
|
||
</div>
|
||
|
||
<div style="background-color: #f3e5f5; border-left: 4px solid #9c27b0; padding: 15px; margin: 20px 0;">
|
||
<p style="margin: 0;"><strong>Files Processed:</strong> {{ file_count }}</p>
|
||
<p style="margin: 5px 0 0 0;"><strong>Scores Extracted:</strong> {{ success_count }}</p>
|
||
<p style="margin: 5px 0 0 0;"><strong>Source:</strong> Box Folder 350605024645</p>
|
||
</div>
|
||
|
||
<h3 style="margin-top: 30px; color: #333;">Extracted Scores:</h3>
|
||
{% for score in processed_files %}
|
||
<div style="border: 1px solid #ddd; margin: 15px 0; padding: 15px; background-color: #fafafa; border-radius: 4px;">
|
||
<div style="background-color: #9c27b0; color: white; padding: 10px 15px; margin: -15px -15px 15px -15px; border-radius: 4px 4px 0 0;">
|
||
<strong>{{ score.filename }}</strong>
|
||
{% if score.version_number > 1 %}<span style="float: right; background-color: rgba(255,255,255,0.2); padding: 2px 8px; border-radius: 3px; font-size: 12px;">Version {{ score.version_number }}{% if score.is_update %} (Updated){% endif %}</span>{% endif %}
|
||
</div>
|
||
<div style="padding: 10px; background-color: white; border-radius: 4px;">
|
||
<p style="margin: 5px 0;"><span style="font-weight: bold;">Quality Score:</span> <span style="font-size: 20px; color: #9c27b0;">{{ score.quality_score }}</span></p>
|
||
<p style="margin: 5px 0;"><span style="font-weight: bold;">CreativeX ID:</span> {{ score.creativex_id }}</p>
|
||
{% if score.creativex_url %}<p style="margin: 5px 0;"><span style="font-weight: bold;">CreativeX URL:</span> <a href="{{ score.creativex_url }}">{{ score.creativex_url }}</a></p>{% endif %}
|
||
<p style="margin: 5px 0;"><span style="font-weight: bold;">Box File ID:</span> {{ score.box_file_id }}</p>
|
||
{% if score.version_number > 1 %}<p style="margin: 5px 0; color: #ff9800;"><span style="font-weight: bold;">📝 Note:</span> This is version {{ score.version_number }} of this file (previous versions preserved in database)</p>{% endif %}
|
||
</div>
|
||
</div>
|
||
{% endfor %}
|
||
|
||
<div style="background-color: #f3e5f5; border-left: 4px solid #9c27b0; padding: 15px; margin: 20px 0;">
|
||
<p style="margin: 0;"><strong>✓ Complete:</strong> All scores extracted and stored in database.</p>
|
||
<p style="margin: 5px 0 0 0;"><strong>Files Removed:</strong> Processed PDFs deleted from Box folder.</p>
|
||
</div>
|
||
|
||
<p style="color: #666; font-size: 12px; margin-top: 20px;">CreativeX scores stored with full JSON for future lookups.</p>
|
||
</div>
|
||
"""
|
||
},
|
||
'creativex_partial': {
|
||
'subject': "⚠️ CreativeX Extraction Partial - {success_count}/{file_count} successful",
|
||
'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;">⚠️ CreativeX Extraction Partially Complete</h1>
|
||
</div>
|
||
|
||
<div style="background-color: #fff3e0; border-left: 4px solid #ff9800; padding: 15px; margin: 20px 0;">
|
||
<p style="margin: 0;"><strong>Total Files:</strong> {{ file_count }}</p>
|
||
<p style="margin: 5px 0 0 0;"><strong>✓ Successful:</strong> <span style="color: #28a745;">{{ success_count }}</span></p>
|
||
<p style="margin: 5px 0 0 0;"><strong>✗ Failed:</strong> <span style="color: #d32f2f;">{{ failed_count }}</span></p>
|
||
<p style="margin: 5px 0 0 0;"><strong>Source:</strong> Box Folder 350605024645</p>
|
||
</div>
|
||
|
||
{% if processed_files %}
|
||
<h3 style="margin-top: 30px; color: #28a745;">✅ Successful Extractions ({{ success_count }}):</h3>
|
||
{% for score in processed_files %}
|
||
<div style="border: 1px solid #c8e6c9; margin: 10px 0; padding: 12px; background-color: #f1f8e9; border-radius: 4px;">
|
||
<strong>{{ score.filename }}</strong> - Score: {{ score.quality_score }}
|
||
{% if score.version_number > 1 %}<span style="color: #ff9800; font-size: 12px;"> (Version {{ score.version_number }})</span>{% endif %}
|
||
</div>
|
||
{% endfor %}
|
||
{% endif %}
|
||
|
||
{% if failed_files %}
|
||
<h3 style="margin-top: 30px; color: #d32f2f;">❌ Failed Extractions ({{ failed_count }}):</h3>
|
||
{% for file in failed_files %}
|
||
<div style="border: 1px solid #ffcdd2; margin: 10px 0; padding: 12px; background-color: #ffebee; border-radius: 4px;">
|
||
<strong>{{ file.filename }}</strong>
|
||
<br><small style="color: #666;">Error: {{ file.error }}</small>
|
||
</div>
|
||
{% endfor %}
|
||
{% endif %}
|
||
|
||
<div style="background-color: #fff3e0; border-left: 4px solid #ff9800; padding: 15px; margin: 20px 0;">
|
||
<p style="margin: 0;"><strong>⚠️ Action Required:</strong> Review failed extractions above.</p>
|
||
<p style="margin: 5px 0 0 0;">Failed files remain in Box folder for retry.</p>
|
||
</div>
|
||
|
||
<p style="color: #666; font-size: 12px; margin-top: 20px;">Successful scores stored in database. Failed files not deleted from Box.</p>
|
||
</div>
|
||
"""
|
||
},
|
||
'creativex_no_files': {
|
||
'subject': "ℹ️ CreativeX Extraction - No files found",
|
||
'html': """
|
||
<div style="font-family: Arial, sans-serif; max-width: 900px; margin: 0 auto;">
|
||
<div style="background-color: #607d8b; color: white; padding: 20px; text-align: center; border-radius: 8px 8px 0 0;">
|
||
<h1 style="margin: 0;">ℹ️ CreativeX Extraction - No Files</h1>
|
||
</div>
|
||
|
||
<div style="background-color: #eceff1; border-left: 4px solid #607d8b; padding: 15px; margin: 20px 0;">
|
||
<p style="margin: 0;"><strong>Status:</strong> No PDF files found</p>
|
||
<p style="margin: 5px 0 0 0;"><strong>Source:</strong> Box Folder 350605024645</p>
|
||
<p style="margin: 5px 0 0 0;"><strong>Run Time:</strong> {{ timestamp }}</p>
|
||
</div>
|
||
|
||
<div style="background-color: #e3f2fd; border-left: 4px solid #2196f3; padding: 15px; margin: 20px 0;">
|
||
<p style="margin: 0;"><strong>ℹ️ Note:</strong> This is expected behavior when no new PDFs are ready for processing.</p>
|
||
<p style="margin: 5px 0 0 0;">Upload PDFs to Box folder 350605024645 to process CreativeX scores.</p>
|
||
</div>
|
||
|
||
<p style="color: #666; font-size: 12px; margin-top: 20px;">Script completed successfully with no errors.</p>
|
||
</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
|