| 
									
										
										
										
											2015-01-07 11:48:36 +01:00
										 |  |  | #  Vimeo (Videos) | 
					
						
							| 
									
										
										
										
											2014-12-07 16:37:56 +01:00
										 |  |  | # | 
					
						
							| 
									
										
										
										
											2014-09-01 17:10:25 +02:00
										 |  |  | # @website     https://vimeo.com/ | 
					
						
							| 
									
										
										
										
											2014-12-07 16:37:56 +01:00
										 |  |  | # @provide-api yes (http://developer.vimeo.com/api), | 
					
						
							|  |  |  | #              they have a maximum count of queries/hour | 
					
						
							|  |  |  | # | 
					
						
							| 
									
										
										
										
											2014-09-01 17:10:25 +02:00
										 |  |  | # @using-api   no (TODO, rewrite to api) | 
					
						
							|  |  |  | # @results     HTML (using search portal) | 
					
						
							|  |  |  | # @stable      no (HTML can change) | 
					
						
							| 
									
										
										
										
											2015-01-05 02:04:23 +01:00
										 |  |  | # @parse       url, title, publishedDate,  thumbnail, embedded | 
					
						
							| 
									
										
										
										
											2014-09-01 17:10:25 +02:00
										 |  |  | # | 
					
						
							|  |  |  | # @todo        rewrite to api | 
					
						
							|  |  |  | # @todo        set content-parameter with correct data | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-12-11 02:33:04 +01:00
										 |  |  | from json import loads | 
					
						
							| 
									
										
										
										
											2014-03-18 15:56:22 +01:00
										 |  |  | from dateutil import parser | 
					
						
							| 
									
										
										
										
											2016-11-30 18:43:03 +01:00
										 |  |  | from searx.url_utils import urlencode | 
					
						
							| 
									
										
										
										
											2014-01-05 22:10:46 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-09-01 17:10:25 +02:00
										 |  |  | # engine dependent config | 
					
						
							|  |  |  | categories = ['videos'] | 
					
						
							|  |  |  | paging = True | 
					
						
							| 
									
										
										
										
											2014-01-05 22:10:46 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-09-01 17:10:25 +02:00
										 |  |  | # search-url | 
					
						
							| 
									
										
										
										
											2016-12-11 02:33:04 +01:00
										 |  |  | base_url = 'https://vimeo.com/' | 
					
						
							| 
									
										
										
										
											2014-09-01 17:10:25 +02:00
										 |  |  | search_url = base_url + '/search/page:{pageno}?{query}' | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-07-13 07:57:10 +02:00
										 |  |  | embedded_url = '<iframe data-src="https://player.vimeo.com/video/{videoid}" ' +\ | 
					
						
							| 
									
										
										
										
											2015-01-05 02:04:23 +01:00
										 |  |  |     'width="540" height="304" frameborder="0" ' +\ | 
					
						
							|  |  |  |     'webkitallowfullscreen mozallowfullscreen allowfullscreen></iframe>' | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-01-20 02:31:20 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-09-01 17:10:25 +02:00
										 |  |  | # do search-request | 
					
						
							| 
									
										
										
										
											2014-01-05 22:10:46 +01:00
										 |  |  | def request(query, params): | 
					
						
							| 
									
										
										
										
											2014-12-07 16:37:56 +01:00
										 |  |  |     params['url'] = search_url.format(pageno=params['pageno'], | 
					
						
							| 
									
										
										
										
											2014-09-01 17:10:25 +02:00
										 |  |  |                                       query=urlencode({'q': query})) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-01-05 22:10:46 +01:00
										 |  |  |     return params | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-01-20 02:31:20 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-09-01 17:10:25 +02:00
										 |  |  | # get response from search-request | 
					
						
							| 
									
										
										
										
											2014-01-05 22:10:46 +01:00
										 |  |  | def response(resp): | 
					
						
							|  |  |  |     results = [] | 
					
						
							| 
									
										
										
										
											2016-12-11 02:33:04 +01:00
										 |  |  |     data_start_pos = resp.text.find('{"filtered"') | 
					
						
							|  |  |  |     data_end_pos = resp.text.find(';\n', data_start_pos + 1) | 
					
						
							|  |  |  |     data = loads(resp.text[data_start_pos:data_end_pos]) | 
					
						
							| 
									
										
										
										
											2014-01-11 11:14:46 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-09-01 17:10:25 +02:00
										 |  |  |     # parse results | 
					
						
							| 
									
										
										
										
											2016-12-11 02:33:04 +01:00
										 |  |  |     for result in data['filtered']['data']: | 
					
						
							|  |  |  |         result = result[result['type']] | 
					
						
							|  |  |  |         videoid = result['uri'].split('/')[-1] | 
					
						
							| 
									
										
										
										
											2015-01-05 02:04:23 +01:00
										 |  |  |         url = base_url + videoid | 
					
						
							| 
									
										
										
										
											2016-12-11 02:33:04 +01:00
										 |  |  |         title = result['name'] | 
					
						
							|  |  |  |         thumbnail = result['pictures']['sizes'][-1]['link'] | 
					
						
							|  |  |  |         publishedDate = parser.parse(result['created_time']) | 
					
						
							| 
									
										
										
										
											2015-01-05 02:04:23 +01:00
										 |  |  |         embedded = embedded_url.format(videoid=videoid) | 
					
						
							| 
									
										
										
										
											2014-03-18 15:56:22 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-09-01 17:10:25 +02:00
										 |  |  |         # append result | 
					
						
							| 
									
										
										
										
											2014-01-20 02:31:20 +01:00
										 |  |  |         results.append({'url': url, | 
					
						
							|  |  |  |                         'title': title, | 
					
						
							| 
									
										
										
										
											2014-09-01 17:10:25 +02:00
										 |  |  |                         'content': '', | 
					
						
							| 
									
										
										
										
											2014-01-20 02:31:20 +01:00
										 |  |  |                         'template': 'videos.html', | 
					
						
							| 
									
										
										
										
											2014-03-18 15:56:22 +01:00
										 |  |  |                         'publishedDate': publishedDate, | 
					
						
							| 
									
										
										
										
											2015-01-05 02:04:23 +01:00
										 |  |  |                         'embedded': embedded, | 
					
						
							| 
									
										
										
										
											2014-01-20 02:31:20 +01:00
										 |  |  |                         'thumbnail': thumbnail}) | 
					
						
							| 
									
										
										
										
											2014-09-01 17:10:25 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |     # return results | 
					
						
							| 
									
										
										
										
											2014-01-05 22:10:46 +01:00
										 |  |  |     return results |