plugins/urltitle.lua

Fri, 02 Oct 2020 17:02:37 +0200

author
Seve Ferrer <seve@delape.net>
date
Fri, 02 Oct 2020 17:02:37 +0200
changeset 160
eb5a04a9877a
parent 115
6498ca5ed831
permissions
-rw-r--r--

plugins/groupchat.lua: Add support for muc passwords

function riddim.plugins.urltitle(bot)
	local http = require "net.http";

	local function handler(message)
		local url = message.body and message.body:match("https?://%S+");
		if url then
			http.request(url, nil, function (data, code)
				if code ~= 200 then return end
				local title = data:match("<title[^>]*>([^<]+)");

				if title then
					title = title:gsub("\n", "");
					if message.room then
						message.room:send_message(title)
					else
						message:reply(title);
					end
				end
			end);
		end
	end
	bot:hook("message", handler);
	bot:hook("groupchat/joined", function(room)
		room:hook("message", handler)
	end);
end

mercurial