You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@trafficcontrol.apache.org by GitBox <gi...@apache.org> on 2018/03/23 20:00:52 UTC

[GitHub] elsloo closed pull request #2052: Add URI Signing config files automatically when necessary.

elsloo closed pull request #2052: Add URI Signing config files automatically when necessary.
URL: https://github.com/apache/incubator-trafficcontrol/pull/2052
 
 
   

This is a PR merged from a forked repository.
As GitHub hides the original diff on merge, it is displayed below for
the sake of provenance:

As this is a foreign pull request (from a fork), the diff is supplied
below (as it won't show otherwise due to GitHub magic):

diff --git a/traffic_ops/app/lib/API/Configs/ApacheTrafficServer.pm b/traffic_ops/app/lib/API/Configs/ApacheTrafficServer.pm
index ab9c95d00..3dd206bdf 100755
--- a/traffic_ops/app/lib/API/Configs/ApacheTrafficServer.pm
+++ b/traffic_ops/app/lib/API/Configs/ApacheTrafficServer.pm
@@ -98,6 +98,37 @@ sub get_config_metadata {
 				$config_file_obj->{ $param->config_file }->{'url'} = $param->value;
 			}
 		}
+
+		# Synthesize file entries for uri_signing delivery services.
+		if ( defined $config_file_obj->{'remap.config'} && defined $config_file_obj->{'remap.config'}->{'location'} ) {
+			# Use the location of the remap.config for these files.
+			my $config_location = $config_file_obj->{'remap.config'}->{'location'};
+
+			# Query the xml_ids of all the delivery services to which this server is assigned
+			# that use uri_signing.
+			my $rs_uri_signing = $self->db->resultset('Deliveryservice')->search(
+				{
+					'server.host_name' => $host_name,
+					'me.signing_algorithm' => 'uri_signing'
+				},
+				{
+					join => {'deliveryservice_servers' => 'server'},
+					columns => ['me.xml_id']
+				}
+			);
+
+			while (my $us = $rs_uri_signing->next) {
+				# If there's already a parameter for it, don't clobber it. The user
+				# may wish to override the location.
+
+				my $cfg_name = 'uri_signing_'.$us->xml_id.'.config';
+				if (! defined $config_file_obj->{$cfg_name}) {
+					$config_file_obj->{$cfg_name}->{'fnameOnDisk'} = $cfg_name;
+					$config_file_obj->{$cfg_name}->{'location'} = $config_location;
+				}
+			}
+		}
+
 	}
 
 


 

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
users@infra.apache.org


With regards,
Apache Git Services