105 lines
3.4 KiB
Lua
105 lines
3.4 KiB
Lua
local twitter_user = {}
|
|
|
|
require "./miku/encoding"
|
|
|
|
function twitter_user:init(config)
|
|
if not cred_data.tw_consumer_key then
|
|
print('Fehlender Key: tw_consumer_key.')
|
|
print('twitter_user.lua wird nicht aktiviert.')
|
|
return
|
|
elseif not cred_data.tw_consumer_secret then
|
|
print('Fehlender Key: tw_consumer_secret.')
|
|
print('twitter_user.lua wird nicht aktiviert.')
|
|
return
|
|
elseif not cred_data.tw_access_token then
|
|
print('Fehlender Key: tw_access_token.')
|
|
print('twitter_user.lua wird nicht aktiviert.')
|
|
return
|
|
elseif not cred_data.tw_access_token_secret then
|
|
print('Fehlender Key: tw_access_token_secret.')
|
|
print('twitter_user.lua wird nicht aktiviert.')
|
|
return
|
|
end
|
|
|
|
twitter_user.triggers = {
|
|
"twitter.com/([A-Za-z0-9-_-.-_-]+)$"
|
|
}
|
|
end
|
|
|
|
local consumer_key = cred_data.tw_consumer_key
|
|
local consumer_secret = cred_data.tw_consumer_secret
|
|
local access_token = cred_data.tw_access_token
|
|
local access_token_secret = cred_data.tw_access_token_secret
|
|
|
|
local client = OAuth.new(consumer_key, consumer_secret, {
|
|
RequestToken = "https://api.twitter.com/oauth/request_token",
|
|
AuthorizeUser = {"https://api.twitter.com/oauth/authorize", method = "GET"},
|
|
AccessToken = "https://api.twitter.com/oauth/access_token"
|
|
}, {
|
|
OAuthToken = access_token,
|
|
OAuthTokenSecret = access_token_secret
|
|
})
|
|
|
|
function twitter_user:action(msg, config, matches)
|
|
local twitter_url = "https://api.twitter.com/1.1/users/show/"..matches[1]..".json"
|
|
local response_code, response_headers, response_status_line, response_body = client:PerformRequest("GET", twitter_url)
|
|
if response_code ~= 200 then return end
|
|
local response = json.decode(response_body)
|
|
|
|
local full_name = response.name
|
|
local user_name = response.screen_name
|
|
if response.verified then
|
|
user_name = user_name..' ✅'
|
|
end
|
|
if response.protected then
|
|
user_name = user_name..' 🔒'
|
|
end
|
|
local header = full_name.. " (@" ..user_name.. ")\n"
|
|
|
|
local description = unescape(response.description)
|
|
if response.location then
|
|
location = response.location
|
|
else
|
|
location = ''
|
|
end
|
|
if response.url and response.location ~= '' then
|
|
url = ' | '..response.url..'\n'
|
|
elseif response.url and response.location == '' then
|
|
url = response.url..'\n'
|
|
else
|
|
url = '\n'
|
|
end
|
|
|
|
-- replace short url
|
|
if response.entities.url then
|
|
for k, v in pairs(response.entities.url.urls) do
|
|
local short = v.url
|
|
local long = v.expanded_url
|
|
local long = long:gsub('%%', '%%%%')
|
|
url = url:gsub(short, long)
|
|
end
|
|
end
|
|
|
|
local body = description..'\n'..location..url
|
|
|
|
local favorites = comma_value(response.favourites_count)
|
|
local follower = comma_value(response.followers_count)
|
|
local following = comma_value(response.friends_count)
|
|
local statuses = comma_value(response.statuses_count)
|
|
local footer = statuses..' Tweets, '..follower..' Follower, '..following..' folge ich, '..favorites..' Tweets favorisiert'
|
|
|
|
local pic_url = string.gsub(response.profile_image_url_https, "normal", "400x400")
|
|
utilities.send_typing(msg.chat.id, 'upload_photo')
|
|
|
|
local text = header..body..footer
|
|
if string.len(text) > 199 then -- can only send captions with < 200 characters
|
|
utilities.send_photo(msg.chat.id, pic_url, nil, msg.message_id)
|
|
utilities.send_reply(msg, text)
|
|
return
|
|
else
|
|
utilities.send_photo(msg.chat.id, pic_url, text, msg.message_id)
|
|
return
|
|
end
|
|
end
|
|
|
|
return twitter_user |