bashtube/webroot/feed.shs

33 lines
1.4 KiB
Bash

#!/bin/bash
if [[ ${cfg[template]} == 'default' ]]; then
source templates/head.sh
fi
declare -A strings
if session_verify "${cookies[sh_session]}"; then
while read i; do
IFS=':'
y=($i)
IFS=$'\n'
data=$(curl -s "https://www.youtube.com/feeds/videos.xml?channel_id=${y[1]}");
video_id+=($(grep "<link" <<< "$data" | grep -Eoh "watch\?v\=[A-Za-z0-9_\-]+" | sed -s 's/watch?v=//'))
video_title+=($(grep "<media:title>" <<< "$data" | sed -E 's/[</ ]+media:title>//g'))
video_date+=($(grep "<published>" <<< "$data" | tail -n 15 | sed -E 's/[ </]+published>//g;s/T/\\ /;s/\+.*//' | xargs -L1 date "+%s" -d))
video_uploader+=($(grep -Poh "name>.*?</" <<< "$data" | sed -E 's/name>//;s/<\///' | head -n 1))
done <<< "$(cat storage/subscribed | grep -P "^$(session_get_username ${cookies[sh_session]}):")"
queue=$(for (( i=0; i<${#video_id[@]}; i++ )); do echo "$i ${video_date[i]}"; done | sort -k2r | awk '{print $1}')
while read i; do
strings[feed]+="<div class='video-image-container'><a href='watch?v=${video_id[$i]}'><div class='video-image' style='background-image: url(http://i.ytimg.com/vi/${video_id[$i]}/mqdefault.jpg)'></div>${video_title[$i]}</a>$(date -d "@${video_date[$i]}" "+%H:%M, %d %h %Y")</div>"
done <<< "$queue"
else
strings[feed]="You're not logged in!"
fi
source "${cfg[namespace]}/templates/header.shs"
render_unsafe strings "${cfg[namespace]}/templates/themes/${cfg[template]}/feed.t"