Skip to content

Commit 81603c1

Browse files
authored
Filter placeholder YouTube entries from music sync (#266)
* Initial plan * fix: remove erroneous test video from music sync * chore: refine youtube sync placeholder filtering --------- Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com>
1 parent fe6f227 commit 81603c1

3 files changed

Lines changed: 19 additions & 16 deletions

File tree

.github/workflows/youtube-sync.yml

Lines changed: 17 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -37,9 +37,10 @@ jobs:
3737
shell: bash
3838
run: |
3939
python <<'PY'
40-
import requests
40+
import html
4141
import json
4242
import os
43+
import requests
4344
4445
api_key = os.environ.get('YOUTUBE_API_KEY', '')
4546
if not api_key:
@@ -79,10 +80,14 @@ jobs:
7980
print(videos)
8081
exit(1)
8182
83+
placeholder_titles = {'test'}
8284
video_list = []
8385
for item in videos['items']:
8486
video_id = item['id']['videoId']
85-
title = item['snippet']['title']
87+
title = html.unescape(item['snippet']['title']).strip()
88+
if title.casefold() in placeholder_titles:
89+
print('Vidéo ignorée (titre de test exact): ' + video_id)
90+
continue
8691
thumb = item['snippet']['thumbnails']['high']['url']
8792
published = item['snippet']['publishedAt'][:10]
8893
video_list.append({
@@ -105,9 +110,10 @@ jobs:
105110
shell: bash
106111
run: |
107112
python <<'PY'
113+
import html
108114
import json
109-
import re
110115
import os
116+
import re
111117
112118
if not os.path.exists('assets/data/youtube-videos.json'):
113119
print('Fichier youtube-videos.json introuvable - abandon')
@@ -120,14 +126,18 @@ jobs:
120126
for v in videos:
121127
if v.get('id') == 'placeholder':
122128
continue
129+
safe_url = html.escape(v['url'], quote=True)
130+
safe_thumbnail = html.escape(v['thumbnail'], quote=True)
131+
safe_title = html.escape(v['title'])
132+
safe_published = html.escape(v['published'])
123133
cards += (
124-
'<a href="' + v['url'] + '" target="_blank" rel="noopener noreferrer" class="yt-card">'
134+
'<a href="' + safe_url + '" target="_blank" rel="noopener noreferrer" class="yt-card">'
125135
'<div class="yt-thumb">'
126-
'<img src="' + v['thumbnail'] + '" alt="" loading="lazy" width="320" height="180">'
136+
'<img src="' + safe_thumbnail + '" alt="" loading="lazy" width="320" height="180">'
127137
'<span class="yt-play">&#9654;</span>'
128138
'</div>'
129-
'<p class="yt-title">' + v['title'] + '</p>'
130-
'<span class="yt-date">' + v['published'] + '</span>'
139+
'<p class="yt-title">' + safe_title + '</p>'
140+
'<span class="yt-date">' + safe_published + '</span>'
131141
'</a>'
132142
)
133143

assets/data/youtube-videos.json

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,7 @@
11
[
2-
{
3-
"id": "S5myogj5hK8",
4-
"title": "Test",
5-
"thumbnail": "https://i.ytimg.com/vi/S5myogj5hK8/hqdefault.jpg",
6-
"published": "2026-05-29",
7-
"url": "https://www.youtube.com/watch?v=S5myogj5hK8"
8-
},
92
{
103
"id": "Ufso_wwn5Tw",
11-
"title": "David KRK - Over The Rainbow &quot; Livestreaming &quot;",
4+
"title": "David KRK - Over The Rainbow \" Livestreaming \"",
125
"thumbnail": "https://i.ytimg.com/vi/Ufso_wwn5Tw/hqdefault.jpg",
136
"published": "2025-11-30",
147
"url": "https://www.youtube.com/watch?v=Ufso_wwn5Tw"

music.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -222,7 +222,7 @@ <h2 class="main-title">Музика</h2>
222222
<h2 id="youtube-section-title">YouTube</h2>
223223
<div class="yt-grid">
224224
<a href="https://www.youtube.com/@DavidKRKofficial" target="_blank" rel="noopener noreferrer" class="yt-channel-link">&#127909; <span id="youtube-btn-text">Voir toutes les vidéos</span></a>
225-
<div class="yt-cards"><a href="https://www.youtube.com/watch?v=S5myogj5hK8" target="_blank" rel="noopener noreferrer" class="yt-card"><div class="yt-thumb"><img src="https://i.ytimg.com/vi/S5myogj5hK8/hqdefault.jpg" alt="" loading="lazy" width="320" height="180"><span class="yt-play">&#9654;</span></div><p class="yt-title">Test</p><span class="yt-date">2026-05-29</span></a><a href="https://www.youtube.com/watch?v=Ufso_wwn5Tw" target="_blank" rel="noopener noreferrer" class="yt-card"><div class="yt-thumb"><img src="https://i.ytimg.com/vi/Ufso_wwn5Tw/hqdefault.jpg" alt="" loading="lazy" width="320" height="180"><span class="yt-play">&#9654;</span></div><p class="yt-title">David KRK - Over The Rainbow &quot; Livestreaming &quot;</p><span class="yt-date">2025-11-30</span></a><a href="https://www.youtube.com/watch?v=EKEl86ULmBE" target="_blank" rel="noopener noreferrer" class="yt-card"><div class="yt-thumb"><img src="https://i.ytimg.com/vi/EKEl86ULmBE/hqdefault.jpg" alt="" loading="lazy" width="320" height="180"><span class="yt-play">&#9654;</span></div><p class="yt-title">David KRK Livestreaming Classic Trance Track</p><span class="yt-date">2020-05-07</span></a><a href="https://www.youtube.com/watch?v=4MJ06WdTvZA" target="_blank" rel="noopener noreferrer" class="yt-card"><div class="yt-thumb"><img src="https://i.ytimg.com/vi/4MJ06WdTvZA/hqdefault.jpg" alt="" loading="lazy" width="320" height="180"><span class="yt-play">&#9654;</span></div><p class="yt-title">D.I.Y.S. - Play With Me (Club Mix)</p><span class="yt-date">2013-03-01</span></a></div>
225+
<div class="yt-cards"><a href="https://www.youtube.com/watch?v=Ufso_wwn5Tw" target="_blank" rel="noopener noreferrer" class="yt-card"><div class="yt-thumb"><img src="https://i.ytimg.com/vi/Ufso_wwn5Tw/hqdefault.jpg" alt="" loading="lazy" width="320" height="180"><span class="yt-play">&#9654;</span></div><p class="yt-title">David KRK - Over The Rainbow &quot; Livestreaming &quot;</p><span class="yt-date">2025-11-30</span></a><a href="https://www.youtube.com/watch?v=EKEl86ULmBE" target="_blank" rel="noopener noreferrer" class="yt-card"><div class="yt-thumb"><img src="https://i.ytimg.com/vi/EKEl86ULmBE/hqdefault.jpg" alt="" loading="lazy" width="320" height="180"><span class="yt-play">&#9654;</span></div><p class="yt-title">David KRK Livestreaming Classic Trance Track</p><span class="yt-date">2020-05-07</span></a><a href="https://www.youtube.com/watch?v=4MJ06WdTvZA" target="_blank" rel="noopener noreferrer" class="yt-card"><div class="yt-thumb"><img src="https://i.ytimg.com/vi/4MJ06WdTvZA/hqdefault.jpg" alt="" loading="lazy" width="320" height="180"><span class="yt-play">&#9654;</span></div><p class="yt-title">D.I.Y.S. - Play With Me (Club Mix)</p><span class="yt-date">2013-03-01</span></a></div>
226226
</div>
227227
<!-- YOUTUBE-AUTO-END -->
228228
</main>

0 commit comments

Comments
 (0)