23 lines
		
	
	
		
			782 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			23 lines
		
	
	
		
			782 B
		
	
	
	
		
			Python
		
	
	
	
	
	
| """AWS Processor"""
 | |
| 
 | |
| from passbook.saml_idp.base import Processor, xml_render
 | |
| 
 | |
| 
 | |
| class AWSProcessor(Processor):
 | |
|     """AWS Response Handler Processor for testing against django-saml2-sp."""
 | |
| 
 | |
|     def _determine_audience(self):
 | |
|         self._audience = 'urn:amazon:webservices'
 | |
| 
 | |
|     def _format_assertion(self):
 | |
|         """Formats _assertion_params as _assertion_xml."""
 | |
|         super()._format_assertion()
 | |
|         self._assertion_params['ATTRIBUTES'].append(
 | |
|             {
 | |
|                 'Name': 'https://aws.amazon.com/SAML/Attributes/RoleSessionName',
 | |
|                 'Value': self._django_request.user.username,
 | |
|             }
 | |
|         )
 | |
|         self._assertion_xml = xml_render.get_assertion_xml(
 | |
|             'saml/xml/assertions/generic.xml', self._assertion_params, signed=True)
 | 
