| 
									
										
										
										
											2017-07-17 02:37:27 +02:00
										 |  |  | # frozen_string_literal: true | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-03-27 15:55:23 +01:00
										 |  |  | class ActivityPub::PublicKeySerializer < ActivityPub::Serializer | 
					
						
							|  |  |  |   context :security | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-07-17 02:37:27 +02:00
										 |  |  |   attributes :id, :owner, :public_key_pem | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   def id | 
					
						
							|  |  |  |     [ActivityPub::TagManager.instance.uri_for(object), '#main-key'].join | 
					
						
							|  |  |  |   end | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   def owner | 
					
						
							|  |  |  |     ActivityPub::TagManager.instance.uri_for(object) | 
					
						
							|  |  |  |   end | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   def public_key_pem | 
					
						
							|  |  |  |     object.public_key | 
					
						
							|  |  |  |   end | 
					
						
							|  |  |  | end |