| 
									
										
										
										
											2015-05-02 15:45:17 +02:00
										 |  |  | """
 | 
					
						
							|  |  |  |  Google (Images) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |  @website     https://www.google.com | 
					
						
							| 
									
										
										
										
											2015-12-09 01:20:46 +01:00
										 |  |  |  @provide-api yes (https://developers.google.com/custom-search/) | 
					
						
							| 
									
										
										
										
											2015-05-02 15:45:17 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-12-09 01:23:05 +01:00
										 |  |  |  @using-api   no | 
					
						
							|  |  |  |  @results     HTML chunks with JSON inside | 
					
						
							| 
									
										
										
										
											2015-12-09 01:20:46 +01:00
										 |  |  |  @stable      no | 
					
						
							| 
									
										
										
										
											2015-05-02 15:45:17 +02:00
										 |  |  |  @parse       url, title, img_src | 
					
						
							|  |  |  | """
 | 
					
						
							| 
									
										
										
										
											2013-10-19 22:19:14 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-12-11 16:39:12 +01:00
										 |  |  | from datetime import date, timedelta | 
					
						
							| 
									
										
										
										
											2013-10-19 23:12:18 +02:00
										 |  |  | from json import loads | 
					
						
							| 
									
										
										
										
											2015-12-09 01:20:46 +01:00
										 |  |  | from lxml import html | 
					
						
							| 
									
										
										
										
											2016-11-30 18:43:03 +01:00
										 |  |  | from searx.url_utils import urlencode | 
					
						
							| 
									
										
										
										
											2013-10-19 22:19:14 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-12-11 16:39:12 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-09-01 15:10:05 +02:00
										 |  |  | # engine dependent config | 
					
						
							| 
									
										
										
										
											2013-10-19 22:19:31 +02:00
										 |  |  | categories = ['images'] | 
					
						
							| 
									
										
										
										
											2014-09-01 15:10:05 +02:00
										 |  |  | paging = True | 
					
						
							| 
									
										
										
										
											2015-02-08 22:15:25 +01:00
										 |  |  | safesearch = True | 
					
						
							| 
									
										
										
										
											2016-07-18 17:25:40 +02:00
										 |  |  | time_range_support = True | 
					
						
							| 
									
										
										
										
											2016-08-13 00:43:21 +02:00
										 |  |  | number_of_results = 100 | 
					
						
							| 
									
										
										
										
											2013-10-19 22:19:14 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-12-09 01:20:46 +01:00
										 |  |  | search_url = 'https://www.google.com/search'\ | 
					
						
							|  |  |  |     '?{query}'\ | 
					
						
							| 
									
										
										
										
											2016-08-13 00:43:21 +02:00
										 |  |  |     '&asearch=ichunk'\ | 
					
						
							|  |  |  |     '&async=_id:rg_s,_pms:s'\ | 
					
						
							| 
									
										
										
										
											2015-12-09 01:20:46 +01:00
										 |  |  |     '&tbm=isch'\ | 
					
						
							| 
									
										
										
										
											2016-08-13 00:43:21 +02:00
										 |  |  |     '&yv=2'\ | 
					
						
							|  |  |  |     '&{search_options}' | 
					
						
							|  |  |  | time_range_attr = "qdr:{range}" | 
					
						
							| 
									
										
										
										
											2016-12-11 16:39:12 +01:00
										 |  |  | time_range_custom_attr = "cdr:1,cd_min:{start},cd_max{end}" | 
					
						
							| 
									
										
										
										
											2016-07-18 17:25:40 +02:00
										 |  |  | time_range_dict = {'day': 'd', | 
					
						
							|  |  |  |                    'week': 'w', | 
					
						
							|  |  |  |                    'month': 'm'} | 
					
						
							| 
									
										
										
										
											2013-10-19 22:19:14 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-07-19 10:14:11 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-09-01 15:10:05 +02:00
										 |  |  | # do search-request | 
					
						
							| 
									
										
										
										
											2013-10-19 22:19:14 +02:00
										 |  |  | def request(query, params): | 
					
						
							| 
									
										
										
										
											2016-08-13 00:43:21 +02:00
										 |  |  |     search_options = { | 
					
						
							|  |  |  |         'ijn': params['pageno'] - 1, | 
					
						
							|  |  |  |         'start': (params['pageno'] - 1) * number_of_results | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-07-26 00:22:05 +02:00
										 |  |  |     if params['time_range'] in time_range_dict: | 
					
						
							| 
									
										
										
										
											2016-08-13 00:43:21 +02:00
										 |  |  |         search_options['tbs'] = time_range_attr.format(range=time_range_dict[params['time_range']]) | 
					
						
							| 
									
										
										
										
											2016-12-11 16:39:12 +01:00
										 |  |  |     elif params['time_range'] == 'year': | 
					
						
							|  |  |  |         now = date.today() | 
					
						
							|  |  |  |         then = now - timedelta(days=365) | 
					
						
							|  |  |  |         start = then.strftime('%m/%d/%Y') | 
					
						
							|  |  |  |         end = now.strftime('%m/%d/%Y') | 
					
						
							|  |  |  |         search_options['tbs'] = time_range_custom_attr.format(start=start, end=end) | 
					
						
							| 
									
										
										
										
											2014-09-01 15:10:05 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-12-09 01:20:46 +01:00
										 |  |  |     if safesearch and params['safesearch']: | 
					
						
							| 
									
										
										
										
											2016-08-13 00:43:21 +02:00
										 |  |  |         search_options['safe'] = 'on' | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     params['url'] = search_url.format(query=urlencode({'q': query}), | 
					
						
							|  |  |  |                                       search_options=urlencode(search_options)) | 
					
						
							| 
									
										
										
										
											2015-12-09 01:20:46 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-10-19 22:19:14 +02:00
										 |  |  |     return params | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-01-20 02:31:20 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-09-01 15:10:05 +02:00
										 |  |  | # get response from search-request | 
					
						
							| 
									
										
										
										
											2013-10-19 22:19:14 +02:00
										 |  |  | def response(resp): | 
					
						
							|  |  |  |     results = [] | 
					
						
							| 
									
										
										
										
											2014-09-01 15:10:05 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-08-13 00:43:21 +02:00
										 |  |  |     g_result = loads(resp.text) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     dom = html.fromstring(g_result[1][1]) | 
					
						
							| 
									
										
										
										
											2014-09-01 15:10:05 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |     # parse results | 
					
						
							| 
									
										
										
										
											2015-12-09 01:20:46 +01:00
										 |  |  |     for result in dom.xpath('//div[@data-ved]'): | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-08-13 00:43:21 +02:00
										 |  |  |         try: | 
					
						
							|  |  |  |             metadata = loads(''.join(result.xpath('./div[@class="rg_meta"]/text()'))) | 
					
						
							|  |  |  |         except: | 
					
						
							|  |  |  |             continue | 
					
						
							| 
									
										
										
										
											2015-12-09 01:20:46 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |         thumbnail_src = metadata['tu'] | 
					
						
							| 
									
										
										
										
											2014-09-01 15:10:05 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-05-02 11:43:12 +02:00
										 |  |  |         # http to https | 
					
						
							|  |  |  |         thumbnail_src = thumbnail_src.replace("http://", "https://") | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-09-01 15:10:05 +02:00
										 |  |  |         # append result | 
					
						
							| 
									
										
										
										
											2016-04-07 08:04:36 +02:00
										 |  |  |         results.append({'url': metadata['ru'], | 
					
						
							| 
									
										
										
										
											2015-12-09 01:20:46 +01:00
										 |  |  |                         'title': metadata['pt'], | 
					
						
							|  |  |  |                         'content': metadata['s'], | 
					
						
							| 
									
										
										
										
											2016-04-07 08:04:36 +02:00
										 |  |  |                         'thumbnail_src': thumbnail_src, | 
					
						
							|  |  |  |                         'img_src': metadata['ou'], | 
					
						
							| 
									
										
										
										
											2014-01-20 02:31:20 +01:00
										 |  |  |                         'template': 'images.html'}) | 
					
						
							| 
									
										
										
										
											2014-09-01 15:10:05 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |     # return results | 
					
						
							| 
									
										
										
										
											2013-10-19 22:19:14 +02:00
										 |  |  |     return results |