diff --git a/files/helpers/config/const.py b/files/helpers/config/const.py index d4b94f245..2c2ae1b79 100644 --- a/files/helpers/config/const.py +++ b/files/helpers/config/const.py @@ -1126,7 +1126,7 @@ engine = create_engine(environ.get("DATABASE_URL").strip(), connect_args={"optio db_session = scoped_session(sessionmaker(bind=engine, autoflush=False)) approved_embed_hosts_for_csp = ' '.join(set(x.split('/')[0] for x in approved_embed_hosts)) -csp = f"default-src 'none'; frame-ancestors 'none'; form-action 'self'; manifest-src 'self'; worker-src 'self'; base-uri 'self'; font-src 'self'; style-src-elem 'self' rdrama.net watchpeopledie.tv; style-src-attr 'unsafe-inline'; style-src 'self' 'unsafe-inline'; script-src-elem 'self' challenges.cloudflare.com static.cloudflareinsights.com; script-src-attr 'none'; script-src 'self' challenges.cloudflare.com static.cloudflareinsights.com; frame-src www.tiktok.com www.instagram.com embed.reddit.com challenges.cloudflare.com cdpn.io platform.twitter.com rumble.com player.twitch.tv; connect-src 'self' submit.watchpeopledie.tv; img-src {approved_embed_hosts_for_csp} data:; media-src *.googlevideo.com archive.org *.us.archive.org {approved_embed_hosts_for_csp};" +csp = f"default-src 'none'; frame-ancestors 'none'; form-action 'self'; manifest-src 'self'; worker-src 'self'; base-uri 'self'; font-src 'self'; style-src-elem 'self' rdrama.net watchpeopledie.tv; style-src-attr 'unsafe-inline'; style-src 'self' 'unsafe-inline'; script-src-elem 'self' challenges.cloudflare.com static.cloudflareinsights.com; script-src-attr 'none'; script-src 'self' challenges.cloudflare.com static.cloudflareinsights.com; frame-src www.teamblind.com www.tiktok.com www.instagram.com embed.reddit.com challenges.cloudflare.com cdpn.io platform.twitter.com rumble.com player.twitch.tv; connect-src 'self' submit.watchpeopledie.tv; img-src {approved_embed_hosts_for_csp} data:; media-src *.googlevideo.com archive.org *.us.archive.org {approved_embed_hosts_for_csp};" if not IS_LOCALHOST: csp += ' upgrade-insecure-requests;' diff --git a/files/templates/post.html b/files/templates/post.html index 316083975..6dcbda806 100644 --- a/files/templates/post.html +++ b/files/templates/post.html @@ -149,12 +149,17 @@ {% endif %} {% if p.url and p.url.startswith('https://old.reddit.com/r/') %} - + {% elif p.url and p.url.startswith('https://tiktok.com/@') %} {% set id = p.url.split('/video/')[1] %} {% if id %} - + + {% endif %} + {% elif p.domain == 'teamblind.com' %} + {% set id = p.url.split('-')[-1] %} + {% if id %} + {% endif %} {% elif p.domain == 'instagram.com' %} {% set path = p.url.split('https://instagram.com/')[1].rstrip('/') %}