48 lines
1.6 KiB
Lua
48 lines
1.6 KiB
Lua
-- This is a proprietary plugin, property of Andreas Bielawski, (c) 2015 <andi (dot) b (at) outlook (dot) de>
|
|
-- DO NOT USE WITHOUT PERMISSION
|
|
|
|
do
|
|
|
|
local BASE_URL = 'https://www.googleapis.com/youtube/v3'
|
|
|
|
function get_pl_data (pl_code)
|
|
local apikey = cred_data.google_apikey
|
|
local url = BASE_URL..'/playlists?part=snippet,contentDetails&key='..apikey..'&id='..pl_code..'&fields=items(snippet(channelTitle,localized(title,description)),contentDetails(itemCount))'
|
|
local res,code = https.request(url)
|
|
if code ~= 200 then return "HTTP-FEHLER" end
|
|
local data = json:decode(res).items[1]
|
|
return data
|
|
end
|
|
|
|
function send_youtubepl_data(data, receiver)
|
|
local title = data.snippet.localized.title
|
|
if data.snippet.localized.description == '(null)' or data.snippet.localized.description == '' then
|
|
description = ''
|
|
else
|
|
description = '\n'..data.snippet.localized.description
|
|
end
|
|
local author = data.snippet.channelTitle
|
|
if data.contentDetails.itemCount == 1 then
|
|
itemCount = data.contentDetails.itemCount..' Video'
|
|
else
|
|
itemCount = comma_value(data.contentDetails.itemCount)..' Videos'
|
|
end
|
|
local text = title..description..'\nErstellt von: '..author..', '..itemCount
|
|
send_msg(receiver, text, ok_cb, false)
|
|
end
|
|
|
|
function run(msg, matches)
|
|
local pl_code = matches[1]
|
|
local data = get_pl_data(pl_code)
|
|
local receiver = get_receiver(msg)
|
|
send_youtubepl_data(data, receiver)
|
|
end
|
|
|
|
return {
|
|
description = "Sendet YouTube-Playlist-Info.",
|
|
usage = "URL zu YouTube-Playlist",
|
|
patterns = {"youtube.com/playlist%?list=([A-Za-z0-9-_-]+)"},
|
|
run = run
|
|
}
|
|
|
|
end |