- self muss nicht mehr überall übergeben werden - alle Plugins wurden angepasst Eigene Updates: - abort_inline_query() hinzugefügt - Mehr Plugins zum Standard-Set hinzugefügt - Eventuell noch etwas, was ich vergessen hab
		
			
				
	
	
		
			76 lines
		
	
	
		
			2.3 KiB
		
	
	
	
		
			Lua
		
	
	
	
	
	
			
		
		
	
	
			76 lines
		
	
	
		
			2.3 KiB
		
	
	
	
		
			Lua
		
	
	
	
	
	
local gSearch = {}
 | 
						|
 | 
						|
gSearch.command = 'google <Suchbegriff>'
 | 
						|
 | 
						|
function gSearch:init(config)
 | 
						|
	gSearch.triggers = utilities.triggers(self.info.username, config.cmd_pat):t('g', true):t('google', true):t('gnsfw', true).table
 | 
						|
	gSearch.doc = [[*
 | 
						|
]]..config.cmd_pat..[[google* _<Suchbegriff>_: Sendet Suchergebnisse von Google
 | 
						|
Alias: _]]..config.cmd_pat..[[g_]]
 | 
						|
end
 | 
						|
 | 
						|
function gSearch:googlethat(query, config)
 | 
						|
  local BASE_URL = 'https://www.googleapis.com/customsearch/v1'
 | 
						|
  local apikey = cred_data.google_apikey
 | 
						|
  local cseid = cred_data.google_cse_id
 | 
						|
  local number = 5 -- Set number of results 
 | 
						|
 | 
						|
  local api        = BASE_URL.."/?key="..apikey.."&cx="..cseid.."&gl=de&num="..number.."&safe=medium&fields=searchInformation%28formattedSearchTime,formattedTotalResults%29,items%28title,link,displayLink%29&"
 | 
						|
  local parameters = "q=".. (URL.escape(query) or "")
 | 
						|
  -- Do the request
 | 
						|
  local res, code = https.request(api..parameters)
 | 
						|
  if code == 403 then
 | 
						|
    return '403'
 | 
						|
  end
 | 
						|
  if code ~= 200 then
 | 
						|
    utilities.send_reply(msg, config.errors.connection)
 | 
						|
	return
 | 
						|
  end
 | 
						|
  local data = json.decode(res)
 | 
						|
  if data.searchInformation.formattedTotalResults == "0" then return nil end
 | 
						|
  
 | 
						|
  local results={}
 | 
						|
  for key,result in ipairs(data.items) do
 | 
						|
    table.insert(results, {
 | 
						|
	  result.title,
 | 
						|
      result.link,
 | 
						|
	  result.displayLink
 | 
						|
    })
 | 
						|
  end
 | 
						|
  
 | 
						|
  local stats = data.searchInformation.formattedTotalResults..' Ergebnisse, gefunden in '..data.searchInformation.formattedSearchTime..' Sekunden'
 | 
						|
  return results, stats
 | 
						|
end
 | 
						|
 | 
						|
function gSearch:stringlinks(results, stats)
 | 
						|
  local stringresults=""
 | 
						|
  for key,val in ipairs(results) do
 | 
						|
    stringresults=stringresults.."["..val[1].."]("..val[2]..") - `"..val[3].."`\n"
 | 
						|
  end
 | 
						|
  return stringresults..stats
 | 
						|
end
 | 
						|
 | 
						|
function gSearch:action(msg, config)
 | 
						|
  local input = utilities.input_from_msg(msg)
 | 
						|
  if not input then
 | 
						|
	utilities.send_reply(msg, gSearch.doc, true)
 | 
						|
	return
 | 
						|
  end
 | 
						|
  
 | 
						|
  local results, stats = gSearch:googlethat(input, onfig)
 | 
						|
  if results == '403' then
 | 
						|
    utilities.send_reply(msg, config.errors.quotaexceeded)
 | 
						|
	return
 | 
						|
  end
 | 
						|
 
 | 
						|
  if not results then
 | 
						|
    utilities.send_reply(msg, config.errors.results)
 | 
						|
	return
 | 
						|
  end
 | 
						|
 | 
						|
  utilities.send_message(msg.chat.id, gSearch:stringlinks(results, stats), true, nil, true, '{"inline_keyboard":[[{"text":"Alle Ergebnisse anzeigen","url":"https://www.google.com/search?q='..URL.escape(input)..'"}]]}')
 | 
						|
 | 
						|
end
 | 
						|
 | 
						|
return gSearch
 |