This repository has been archived on 2021-04-24. You can view files and clone it, but cannot push or open issues or pull requests.
Mikubot/plugins/url_title.lua

67 lines
1.8 KiB
Lua
Raw Normal View History

2015-04-14 20:21:23 +02:00
do
function getTitle(page)
local s = page
-- Remove optional spaces from the tags.
s = string.gsub(s, "\n", " ")
s = string.gsub(s, " *< *", "<")
s = string.gsub(s, " *> *", ">")
2015-06-09 16:21:07 +02:00
s = string.gsub(s, "&#124;", "|")
2015-06-10 14:30:39 +02:00
s = string.gsub(s, "&#8249;", "")
2015-06-11 17:10:03 +02:00
s = string.gsub(s, "&lt;", "<")
s = string.gsub(s, "&gt;", ">")
s = string.gsub(s, "&amp;", "&")
2015-06-12 15:38:19 +02:00
s = string.gsub(s, "&#39;", "'")
2015-06-17 20:26:37 +02:00
s = string.gsub(s, "&ndash;", "")
2015-06-25 22:08:20 +02:00
s = string.gsub(s, "&raquo;", "»")
2015-07-02 14:09:56 +02:00
s = string.gsub(s, "&#8220;", "")
s = string.gsub(s, "&#8221;", "")
2015-04-14 20:21:23 +02:00
-- Put all the tags in lowercase.
s = string.gsub(s, "(<[^ >]+)", string.lower)
local i, f, t = string.find(s, "<title>(.+)</title>")
return t or ""
end
function string.ends(str, fin)
return fin=='' or string.sub(str,-string.len(fin)) == fin
end
function run(msg, matches)
local url = matches[1]
if string.ends(url, ".jpg") or string.ends(url, ".gif") or string.ends(url, ".png") then
return
end
local result = http.request(url)
local title = getTitle(result)
2015-04-20 18:52:25 +02:00
--Ignoring 301, 302, 404 and more
2015-04-28 17:49:11 +02:00
if title == "301 Moved Permanently" or
2015-04-20 18:52:25 +02:00
title == "" or
title == "404 Not Found" or
title == "302 Found" or
2015-04-22 16:49:24 +02:00
title == "302 Moved" or
2015-04-20 18:52:25 +02:00
title == "Moved Permanently" or
2015-04-23 17:29:03 +02:00
title == "Redirection" or
2015-04-29 21:32:17 +02:00
title == "Object moved" or
2015-05-07 19:49:26 +02:00
string.match(title, "on Steam") or
string.match(title, "521: Web server is down") or
2015-04-21 15:59:09 +02:00
string.match(title, "eBay</title>") or
2015-05-10 13:09:06 +02:00
string.match(msg.text, "twitch.tv") or
string.match(msg.text, "steamcommunity.com/app/") or
string.match(msg.text, "deviantart.com") then
2015-06-25 22:08:20 +02:00
print('Nicht gültig, da "'..title..'"')
2015-04-14 20:21:23 +02:00
else
return title
end
end
return {
2015-06-25 22:08:20 +02:00
description = "Postet den URL-Titel",
usage = {""},
patterns = {"^(https?://[%w-_%.%?%.:,/%+=&#!]+)$"},
2015-04-14 20:21:23 +02:00
run = run
}
end