| 
									
										
										
										
											2021-01-13 11:31:25 +01:00
										 |  |  | # SPDX-License-Identifier: AGPL-3.0-or-later | 
					
						
							| 
									
										
										
										
											2024-03-06 08:18:24 +01:00
										 |  |  | # lint: pylint | 
					
						
							|  |  |  | """Searchcode (IT)
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-05-02 15:45:17 +02:00
										 |  |  | """
 | 
					
						
							| 
									
										
										
										
											2014-12-20 07:07:32 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | from json import loads | 
					
						
							| 
									
										
										
										
											2020-08-06 17:42:46 +02:00
										 |  |  | from urllib.parse import urlencode | 
					
						
							| 
									
										
										
										
											2014-12-22 16:26:45 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-01-13 11:31:25 +01:00
										 |  |  | # about | 
					
						
							|  |  |  | about = { | 
					
						
							|  |  |  |     "website": 'https://searchcode.com/', | 
					
						
							|  |  |  |     "wikidata_id": None, | 
					
						
							|  |  |  |     "official_api_documentation": 'https://searchcode.com/api/', | 
					
						
							|  |  |  |     "use_official_api": True, | 
					
						
							|  |  |  |     "require_api_key": False, | 
					
						
							|  |  |  |     "results": 'JSON', | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2014-12-20 07:07:32 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | # engine dependent config | 
					
						
							|  |  |  | categories = ['it'] | 
					
						
							| 
									
										
										
										
											2024-03-06 08:18:24 +01:00
										 |  |  | search_api = 'https://searchcode.com/api/codesearch_I/?' | 
					
						
							| 
									
										
										
										
											2014-12-20 07:07:32 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-12-22 16:26:45 +01:00
										 |  |  | # special code-endings which are not recognised by the file ending | 
					
						
							| 
									
										
										
										
											2021-12-27 09:26:22 +01:00
										 |  |  | code_endings = {'cs': 'c#', 'h': 'c', 'hpp': 'cpp', 'cxx': 'cpp'} | 
					
						
							| 
									
										
										
										
											2014-12-20 23:33:03 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-03-06 08:18:24 +01:00
										 |  |  | # paging is broken in searchcode.com's API .. not sure it will ever been fixed | 
					
						
							|  |  |  | # paging = True | 
					
						
							| 
									
										
										
										
											2014-12-20 07:07:32 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-03-06 08:18:24 +01:00
										 |  |  | def request(query, params): | 
					
						
							|  |  |  |     args = urlencode( | 
					
						
							|  |  |  |         { | 
					
						
							|  |  |  |             'q': query, | 
					
						
							|  |  |  |             # paging is broken in searchcode.com's API | 
					
						
							|  |  |  |             # 'p': params['pageno'] - 1, | 
					
						
							|  |  |  |             # 'per_page': 10, | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |     ) | 
					
						
							|  |  |  |     params['url'] = search_api + args | 
					
						
							|  |  |  |     logger.debug("query_url --> %s", params['url']) | 
					
						
							| 
									
										
										
										
											2014-12-20 07:07:32 +01:00
										 |  |  |     return params | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | def response(resp): | 
					
						
							|  |  |  |     results = [] | 
					
						
							| 
									
										
										
										
											2014-12-22 16:26:45 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-12-20 07:07:32 +01:00
										 |  |  |     search_results = loads(resp.text) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     # parse results | 
					
						
							| 
									
										
										
										
											2015-01-27 22:39:25 +01:00
										 |  |  |     for result in search_results.get('results', []): | 
					
						
							| 
									
										
										
										
											2014-12-20 07:07:32 +01:00
										 |  |  |         href = result['url'] | 
					
						
							|  |  |  |         title = "" + result['name'] + " - " + result['filename'] | 
					
						
							| 
									
										
										
										
											2014-12-20 23:33:03 +01:00
										 |  |  |         repo = result['repo'] | 
					
						
							| 
									
										
										
										
											2014-12-22 16:26:45 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-03-06 08:18:24 +01:00
										 |  |  |         lines = {} | 
					
						
							| 
									
										
										
										
											2014-12-20 07:07:32 +01:00
										 |  |  |         for line, code in result['lines'].items(): | 
					
						
							|  |  |  |             lines[int(line)] = code | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-12-22 16:26:45 +01:00
										 |  |  |         code_language = code_endings.get( | 
					
						
							| 
									
										
										
										
											2021-12-27 09:26:22 +01:00
										 |  |  |             result['filename'].split('.')[-1].lower(), result['filename'].split('.')[-1].lower() | 
					
						
							|  |  |  |         ) | 
					
						
							| 
									
										
										
										
											2014-12-20 23:33:03 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-12-20 07:07:32 +01:00
										 |  |  |         # append result | 
					
						
							| 
									
										
										
										
											2021-12-27 09:26:22 +01:00
										 |  |  |         results.append( | 
					
						
							|  |  |  |             { | 
					
						
							|  |  |  |                 'url': href, | 
					
						
							|  |  |  |                 'title': title, | 
					
						
							|  |  |  |                 'content': '', | 
					
						
							|  |  |  |                 'repository': repo, | 
					
						
							|  |  |  |                 'codelines': sorted(lines.items()), | 
					
						
							|  |  |  |                 'code_language': code_language, | 
					
						
							|  |  |  |                 'template': 'code.html', | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |         ) | 
					
						
							| 
									
										
										
										
											2014-12-20 07:07:32 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |     # return results | 
					
						
							|  |  |  |     return results |