local yt_search = {} require("./miku/plugins/youtube") yt_search.command = 'yt ' function yt_search:init(config) if not cred_data.google_apikey then print('Fehlender Key: google_apikey.') print('youtube_search.lua wird nicht aktiviert.') return end yt_search.triggers = utilities.triggers(self.info.username, config.cmd_pat):t('yt', true):t('youtube', true).table yt_search.doc = [[* ]]..config.cmd_pat..[[yt* __: Sucht nach einem YouTube-Video]] end local BASE_URL = 'https://www.googleapis.com/youtube/v3' function searchYoutubeVideo(text) local apikey = cred_data.google_apikey local data = httpsRequest('https://www.googleapis.com/youtube/v3/search?part=snippet&key='..apikey..'&maxResults=1&type=video&q=' .. URL.escape(text)) if not data then print("HTTP-Fehler") return nil elseif not data.items[1] then return "YouTube-Video nicht gefunden!" end local videoId = data.items[1].id.videoId local videoURL = 'https://youtube.com/watch?v='..videoId return videoURL, videoId end function httpsRequest(url) local res,code = https.request(url) if code ~= 200 then return nil end return json.decode(res) end function yt_search:action(msg) local input = utilities.input(msg.text) if not input then if msg.reply_to_message and msg.reply_to_message.text then input = msg.reply_to_message.text else utilities.send_message(msg.chat.id, yt_search.doc, true, msg.message_id, true) return end end local link, videoId = searchYoutubeVideo(input) if link == "YouTube-Video nicht gefunden!" or nil then utilities.send_reply(msg, 'YouTube-Video nicht gefunden!') return end local data = get_yt_data(videoId) send_youtube_data(data, msg, self, link, true) return end return yt_search