Compare commits
1 Commits
feature/im
...
main
| Author | SHA1 | Date | |
|---|---|---|---|
| 24f89e57b8 |
@@ -146,7 +146,6 @@ Select input_text entities containing Telegram chat IDs. Can be user IDs (positi
|
||||
- Large media lists are automatically split into multiple groups (2-10 items per group)
|
||||
- Optional chat action indicator (typing, uploading photo/video) while processing
|
||||
- Optional maximum asset size filter to skip large files
|
||||
- Respects integration quiet hours — notifications are queued and sent when quiet hours end (configurable bypass per blueprint instance)
|
||||
|
||||
### Limitations
|
||||
|
||||
|
||||
@@ -461,23 +461,6 @@ blueprint:
|
||||
- label: "Uploading Document..."
|
||||
value: "upload_document"
|
||||
|
||||
telegram_quiet_hours_start:
|
||||
name: Quiet Hours Start
|
||||
description: >
|
||||
Start time for quiet hours. During quiet hours, Telegram notifications
|
||||
are queued and sent when quiet hours end.
|
||||
default: "23:00"
|
||||
selector:
|
||||
time:
|
||||
|
||||
telegram_quiet_hours_end:
|
||||
name: Quiet Hours End
|
||||
description: >
|
||||
End time for quiet hours. Queued notifications are sent after this time.
|
||||
default: "07:00"
|
||||
selector:
|
||||
time:
|
||||
|
||||
# -------------------------------------------------------------------------
|
||||
# Periodic Summary
|
||||
# -------------------------------------------------------------------------
|
||||
@@ -954,8 +937,6 @@ variables:
|
||||
telegram_disable_url_preview: !input telegram_disable_url_preview
|
||||
telegram_chat_action: !input telegram_chat_action
|
||||
telegram_max_asset_size: !input telegram_max_asset_size
|
||||
telegram_quiet_hours_start: !input telegram_quiet_hours_start
|
||||
telegram_quiet_hours_end: !input telegram_quiet_hours_end
|
||||
|
||||
# Periodic Summary Settings
|
||||
enable_periodic_summary: !input enable_periodic_summary
|
||||
@@ -1456,25 +1437,6 @@ action:
|
||||
assets: "{{ [{'url': periodic_summary_image_url, 'type': 'photo'}] if periodic_summary_image_url | length > 0 else [] }}"
|
||||
disable_web_page_preview: "{{ telegram_disable_url_preview }}"
|
||||
chat_action: "{{ telegram_chat_action }}"
|
||||
quiet_hours_start: "{{ telegram_quiet_hours_start }}"
|
||||
quiet_hours_end: "{{ telegram_quiet_hours_end }}"
|
||||
|
||||
# Debug: Log text send result
|
||||
- choose:
|
||||
- conditions:
|
||||
- condition: template
|
||||
value_template: "{{ enable_debug_notifications }}"
|
||||
sequence:
|
||||
- service: persistent_notification.create
|
||||
data:
|
||||
title: "Immich Album Watcher - Telegram Send Debug"
|
||||
message: >
|
||||
**Periodic Summary - Send:**
|
||||
|
||||
- Chat ID: {{ repeat.item }}
|
||||
- Caption: {{ periodic_summary_formatted[:200] }}...
|
||||
- Has Image: {{ 'Yes' if periodic_summary_image_url | length > 0 else 'No' }}
|
||||
- Response: {{ telegram_periodic_response }}
|
||||
|
||||
# Delay between periodic summary and scheduled assets if both trigger at the same hour
|
||||
- if:
|
||||
@@ -1719,24 +1681,6 @@ action:
|
||||
caption: "{{ scheduled_message }}"
|
||||
disable_web_page_preview: "{{ telegram_disable_url_preview }}"
|
||||
chat_action: "{{ telegram_chat_action }}"
|
||||
quiet_hours_start: "{{ telegram_quiet_hours_start }}"
|
||||
quiet_hours_end: "{{ telegram_quiet_hours_end }}"
|
||||
|
||||
# Debug: Log text send result
|
||||
- choose:
|
||||
- conditions:
|
||||
- condition: template
|
||||
value_template: "{{ enable_debug_notifications }}"
|
||||
sequence:
|
||||
- service: persistent_notification.create
|
||||
data:
|
||||
title: "Immich Album Watcher - Telegram Send Debug"
|
||||
message: >
|
||||
**Scheduled Per-Album - Text Send:**
|
||||
|
||||
- Chat ID: {{ repeat.item }}
|
||||
- Caption: {{ scheduled_message[:200] }}...
|
||||
- Response: {{ telegram_scheduled_text_response }}
|
||||
|
||||
# Extract message ID for reply
|
||||
- variables:
|
||||
@@ -1766,25 +1710,6 @@ action:
|
||||
max_asset_data_size: "{{ telegram_max_asset_size | int * 1048576 }}"
|
||||
wait_for_response: false
|
||||
chat_action: "{{ telegram_chat_action }}"
|
||||
quiet_hours_start: "{{ telegram_quiet_hours_start }}"
|
||||
quiet_hours_end: "{{ telegram_quiet_hours_end }}"
|
||||
|
||||
# Debug: Log media send result
|
||||
- choose:
|
||||
- conditions:
|
||||
- condition: template
|
||||
value_template: "{{ enable_debug_notifications }}"
|
||||
sequence:
|
||||
- service: persistent_notification.create
|
||||
data:
|
||||
title: "Immich Album Watcher - Telegram Send Debug"
|
||||
message: >
|
||||
**Scheduled Per-Album - Media Send:**
|
||||
|
||||
- Chat ID: {{ repeat.item }}
|
||||
- Assets: {{ scheduled_media_urls | length }}
|
||||
- Reply To: {{ scheduled_reply_to_id }}
|
||||
- Response: {{ telegram_scheduled_media_response }}
|
||||
|
||||
# Combined Mode: Fetch from all albums and combine into one notification
|
||||
# Distributes the limit evenly across albums (e.g., limit=10 with 2 albums = 5 each)
|
||||
@@ -2016,24 +1941,6 @@ action:
|
||||
caption: "{{ combined_message }}"
|
||||
disable_web_page_preview: "{{ telegram_disable_url_preview }}"
|
||||
chat_action: "{{ telegram_chat_action }}"
|
||||
quiet_hours_start: "{{ telegram_quiet_hours_start }}"
|
||||
quiet_hours_end: "{{ telegram_quiet_hours_end }}"
|
||||
|
||||
# Debug: Log text send result
|
||||
- choose:
|
||||
- conditions:
|
||||
- condition: template
|
||||
value_template: "{{ enable_debug_notifications }}"
|
||||
sequence:
|
||||
- service: persistent_notification.create
|
||||
data:
|
||||
title: "Immich Album Watcher - Telegram Send Debug"
|
||||
message: >
|
||||
**Scheduled Combined - Text Send:**
|
||||
|
||||
- Chat ID: {{ repeat.item }}
|
||||
- Caption: {{ combined_message[:200] }}...
|
||||
- Response: {{ telegram_combined_text_response }}
|
||||
|
||||
- variables:
|
||||
combined_reply_to_id: "{{ telegram_combined_text_response[album_id_entities[0]].message_id | default(0) | int }}"
|
||||
@@ -2061,25 +1968,6 @@ action:
|
||||
max_asset_data_size: "{{ telegram_max_asset_size | int * 1048576 }}"
|
||||
wait_for_response: false
|
||||
chat_action: "{{ telegram_chat_action }}"
|
||||
quiet_hours_start: "{{ telegram_quiet_hours_start }}"
|
||||
quiet_hours_end: "{{ telegram_quiet_hours_end }}"
|
||||
|
||||
# Debug: Log media send result
|
||||
- choose:
|
||||
- conditions:
|
||||
- condition: template
|
||||
value_template: "{{ enable_debug_notifications }}"
|
||||
sequence:
|
||||
- service: persistent_notification.create
|
||||
data:
|
||||
title: "Immich Album Watcher - Telegram Send Debug"
|
||||
message: >
|
||||
**Scheduled Combined - Media Send:**
|
||||
|
||||
- Chat ID: {{ repeat.item }}
|
||||
- Assets: {{ combined_media_urls | length }}
|
||||
- Reply To: {{ combined_reply_to_id }}
|
||||
- Response: {{ telegram_combined_media_response }}
|
||||
|
||||
# Delay before memory mode if another scheduled notification was sent at the same hour
|
||||
- if:
|
||||
@@ -2319,24 +2207,6 @@ action:
|
||||
caption: "{{ memory_message }}"
|
||||
disable_web_page_preview: "{{ telegram_disable_url_preview }}"
|
||||
chat_action: "{{ telegram_chat_action }}"
|
||||
quiet_hours_start: "{{ telegram_quiet_hours_start }}"
|
||||
quiet_hours_end: "{{ telegram_quiet_hours_end }}"
|
||||
|
||||
# Debug: Log text send result
|
||||
- choose:
|
||||
- conditions:
|
||||
- condition: template
|
||||
value_template: "{{ enable_debug_notifications }}"
|
||||
sequence:
|
||||
- service: persistent_notification.create
|
||||
data:
|
||||
title: "Immich Album Watcher - Telegram Send Debug"
|
||||
message: >
|
||||
**Memory Per-Album - Text Send:**
|
||||
|
||||
- Chat ID: {{ repeat.item }}
|
||||
- Caption: {{ memory_message[:200] }}...
|
||||
- Response: {{ telegram_memory_text_response }}
|
||||
|
||||
# Extract message ID for reply
|
||||
- variables:
|
||||
@@ -2366,25 +2236,6 @@ action:
|
||||
max_asset_data_size: "{{ telegram_max_asset_size | int * 1048576 }}"
|
||||
wait_for_response: false
|
||||
chat_action: "{{ telegram_chat_action }}"
|
||||
quiet_hours_start: "{{ telegram_quiet_hours_start }}"
|
||||
quiet_hours_end: "{{ telegram_quiet_hours_end }}"
|
||||
|
||||
# Debug: Log media send result
|
||||
- choose:
|
||||
- conditions:
|
||||
- condition: template
|
||||
value_template: "{{ enable_debug_notifications }}"
|
||||
sequence:
|
||||
- service: persistent_notification.create
|
||||
data:
|
||||
title: "Immich Album Watcher - Telegram Send Debug"
|
||||
message: >
|
||||
**Memory Per-Album - Media Send:**
|
||||
|
||||
- Chat ID: {{ repeat.item }}
|
||||
- Assets: {{ memory_media_urls | length }}
|
||||
- Reply To: {{ memory_reply_to_id }}
|
||||
- Response: {{ telegram_memory_media_response }}
|
||||
|
||||
# Combined Mode: Fetch from all albums and combine into one notification
|
||||
- conditions:
|
||||
@@ -2606,24 +2457,6 @@ action:
|
||||
caption: "{{ memory_comb_message }}"
|
||||
disable_web_page_preview: "{{ telegram_disable_url_preview }}"
|
||||
chat_action: "{{ telegram_chat_action }}"
|
||||
quiet_hours_start: "{{ telegram_quiet_hours_start }}"
|
||||
quiet_hours_end: "{{ telegram_quiet_hours_end }}"
|
||||
|
||||
# Debug: Log text send result
|
||||
- choose:
|
||||
- conditions:
|
||||
- condition: template
|
||||
value_template: "{{ enable_debug_notifications }}"
|
||||
sequence:
|
||||
- service: persistent_notification.create
|
||||
data:
|
||||
title: "Immich Album Watcher - Telegram Send Debug"
|
||||
message: >
|
||||
**Memory Combined - Text Send:**
|
||||
|
||||
- Chat ID: {{ repeat.item }}
|
||||
- Caption: {{ memory_comb_message[:200] }}...
|
||||
- Response: {{ telegram_memory_comb_text_response }}
|
||||
|
||||
- variables:
|
||||
memory_comb_reply_to_id: "{{ telegram_memory_comb_text_response[album_id_entities[0]].message_id | default(0) | int }}"
|
||||
@@ -2651,25 +2484,6 @@ action:
|
||||
max_asset_data_size: "{{ telegram_max_asset_size | int * 1048576 }}"
|
||||
wait_for_response: false
|
||||
chat_action: "{{ telegram_chat_action }}"
|
||||
quiet_hours_start: "{{ telegram_quiet_hours_start }}"
|
||||
quiet_hours_end: "{{ telegram_quiet_hours_end }}"
|
||||
|
||||
# Debug: Log media send result
|
||||
- choose:
|
||||
- conditions:
|
||||
- condition: template
|
||||
value_template: "{{ enable_debug_notifications }}"
|
||||
sequence:
|
||||
- service: persistent_notification.create
|
||||
data:
|
||||
title: "Immich Album Watcher - Telegram Send Debug"
|
||||
message: >
|
||||
**Memory Combined - Media Send:**
|
||||
|
||||
- Chat ID: {{ repeat.item }}
|
||||
- Assets: {{ memory_comb_media_urls | length }}
|
||||
- Reply To: {{ memory_comb_reply_to_id }}
|
||||
- Response: {{ telegram_memory_comb_media_response }}
|
||||
|
||||
# Stop here if this was a scheduled trigger - don't continue to event-based actions
|
||||
- choose:
|
||||
@@ -2872,24 +2686,6 @@ action:
|
||||
caption: "{{ message }}"
|
||||
disable_web_page_preview: "{{ telegram_disable_url_preview }}"
|
||||
chat_action: "{{ telegram_chat_action }}"
|
||||
quiet_hours_start: "{{ telegram_quiet_hours_start }}"
|
||||
quiet_hours_end: "{{ telegram_quiet_hours_end }}"
|
||||
|
||||
# Debug: Log text send result
|
||||
- choose:
|
||||
- conditions:
|
||||
- condition: template
|
||||
value_template: "{{ enable_debug_notifications }}"
|
||||
sequence:
|
||||
- service: persistent_notification.create
|
||||
data:
|
||||
title: "Immich Album Watcher - Telegram Send Debug"
|
||||
message: >
|
||||
**Album Renamed - Text Send:**
|
||||
|
||||
- Chat ID: {{ repeat.item }}
|
||||
- Caption: {{ message[:200] }}...
|
||||
- Response: {{ telegram_renamed_response }}
|
||||
|
||||
# ---------------------------------------------------------------------
|
||||
# CASE 5: Album Deleted
|
||||
@@ -2927,24 +2723,6 @@ action:
|
||||
caption: "{{ message }}"
|
||||
disable_web_page_preview: "{{ telegram_disable_url_preview }}"
|
||||
chat_action: "{{ telegram_chat_action }}"
|
||||
quiet_hours_start: "{{ telegram_quiet_hours_start }}"
|
||||
quiet_hours_end: "{{ telegram_quiet_hours_end }}"
|
||||
|
||||
# Debug: Log text send result
|
||||
- choose:
|
||||
- conditions:
|
||||
- condition: template
|
||||
value_template: "{{ enable_debug_notifications }}"
|
||||
sequence:
|
||||
- service: persistent_notification.create
|
||||
data:
|
||||
title: "Immich Album Watcher - Telegram Send Debug"
|
||||
message: >
|
||||
**Album Deleted - Text Send:**
|
||||
|
||||
- Chat ID: {{ repeat.item }}
|
||||
- Caption: {{ message[:200] }}...
|
||||
- Response: {{ telegram_deleted_response }}
|
||||
|
||||
# ---------------------------------------------------------------------------
|
||||
# Send Media to Telegram (if enabled)
|
||||
@@ -3071,24 +2849,6 @@ action:
|
||||
caption: "{{ telegram_message }}"
|
||||
disable_web_page_preview: "{{ telegram_disable_url_preview }}"
|
||||
chat_action: "{{ telegram_chat_action }}"
|
||||
quiet_hours_start: "{{ telegram_quiet_hours_start }}"
|
||||
quiet_hours_end: "{{ telegram_quiet_hours_end }}"
|
||||
|
||||
# Debug: Log text send result
|
||||
- choose:
|
||||
- conditions:
|
||||
- condition: template
|
||||
value_template: "{{ enable_debug_notifications }}"
|
||||
sequence:
|
||||
- service: persistent_notification.create
|
||||
data:
|
||||
title: "Immich Album Watcher - Telegram Send Debug"
|
||||
message: >
|
||||
**Assets Added - Text Send:**
|
||||
|
||||
- Chat ID: {{ current_chat_id }}
|
||||
- Caption: {{ telegram_message[:200] }}...
|
||||
- Response: {{ telegram_text_response }}
|
||||
|
||||
# Extract message ID for replies
|
||||
- variables:
|
||||
@@ -3131,23 +2891,3 @@ action:
|
||||
max_asset_data_size: "{{ telegram_max_asset_size | int * 1048576 }}"
|
||||
wait_for_response: false
|
||||
chat_action: "{{ telegram_chat_action }}"
|
||||
quiet_hours_start: "{{ telegram_quiet_hours_start }}"
|
||||
quiet_hours_end: "{{ telegram_quiet_hours_end }}"
|
||||
|
||||
# Debug: Log media send result
|
||||
- choose:
|
||||
- conditions:
|
||||
- condition: template
|
||||
value_template: "{{ enable_debug_notifications }}"
|
||||
sequence:
|
||||
- service: persistent_notification.create
|
||||
data:
|
||||
title: "Immich Album Watcher - Telegram Send Debug"
|
||||
message: >
|
||||
**Assets Added - Media Send:**
|
||||
|
||||
- Chat ID: {{ current_chat_id }}
|
||||
- Assets: {{ media_urls | length }}
|
||||
- Reply To: {{ reply_to_message_id }}
|
||||
- Max Group Size: {{ max_media_per_group }}
|
||||
- Response: {{ telegram_media_response }}
|
||||
|
||||
@@ -242,5 +242,5 @@ action:
|
||||
sequence:
|
||||
- service: telegram_bot.send_message
|
||||
data:
|
||||
target: "{{ chat_id }}"
|
||||
chat_id: "{{ chat_id }}"
|
||||
message: "{{ reply_message }}"
|
||||
|
||||
@@ -286,7 +286,7 @@ action:
|
||||
sequence:
|
||||
- service: telegram_bot.send_message
|
||||
data:
|
||||
target: "{{ chat_id }}"
|
||||
chat_id: "{{ chat_id }}"
|
||||
message: "{{ answers[button_index] }}"
|
||||
# Reply to original message unless we're deleting it
|
||||
reply_to_message_id: >
|
||||
@@ -397,7 +397,7 @@ action:
|
||||
# Send the message with keyboard
|
||||
- service: telegram_bot.send_message
|
||||
data:
|
||||
target: "{{ result_chat_ids }}"
|
||||
chat_id: "{{ result_chat_ids }}"
|
||||
message: "{{ message_text }}"
|
||||
inline_keyboard: "{{ inline_keyboard }}"
|
||||
config_entry_id: >
|
||||
|
||||
Reference in New Issue
Block a user