mirror of
https://github.com/google/nomulus.git
synced 2025-05-03 21:47:51 +02:00
86 lines
2.9 KiB
Text
86 lines
2.9 KiB
Text
// Copyright 2017 The Nomulus Authors. All Rights Reserved.
|
|
//
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
// you may not use this file except in compliance with the License.
|
|
// You may obtain a copy of the License at
|
|
//
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
//
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
// See the License for the specific language governing permissions and
|
|
// limitations under the License.
|
|
|
|
{namespace domain.registry.tools autoescape="strict"}
|
|
|
|
/**
|
|
* Uniform Rapid Suspension
|
|
*/
|
|
{template .uniformrapidsuspension}
|
|
{@param domainName: string}
|
|
{@param hostsToAdd: list<string>}
|
|
{@param hostsToRemove: list<string>}
|
|
{@param locksToApply: list<string>}
|
|
{@param locksToRemove: list<string>}
|
|
{@param newDsData: list<[keyTag:int, alg:int, digestType:int, digest:string]>}
|
|
{@param reason: string}
|
|
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
|
<epp xmlns="urn:ietf:params:xml:ns:epp-1.0">
|
|
<command>
|
|
<update>
|
|
<domain:update xmlns:domain="urn:ietf:params:xml:ns:domain-1.0">
|
|
<domain:name>{$domainName}</domain:name>
|
|
<domain:add>
|
|
{if length($hostsToAdd) > 0}
|
|
<domain:ns>
|
|
{foreach $ha in $hostsToAdd}
|
|
<domain:hostObj>{$ha}</domain:hostObj>
|
|
{/foreach}
|
|
</domain:ns>
|
|
{/if}
|
|
{foreach $la in $locksToApply}
|
|
<domain:status s="{$la}" />
|
|
{/foreach}
|
|
</domain:add>
|
|
<domain:rem>
|
|
{if length($hostsToRemove) > 0}
|
|
<domain:ns>
|
|
{foreach $hr in $hostsToRemove}
|
|
<domain:hostObj>{$hr}</domain:hostObj>
|
|
{/foreach}
|
|
</domain:ns>
|
|
{/if}
|
|
{foreach $lr in $locksToRemove}
|
|
<domain:status s="{$lr}" />
|
|
{/foreach}
|
|
</domain:rem>
|
|
</domain:update>
|
|
</update>
|
|
<extension>
|
|
<secDNS:update xmlns:secDNS="urn:ietf:params:xml:ns:secDNS-1.1">
|
|
<secDNS:rem>
|
|
<secDNS:all>true</secDNS:all>
|
|
</secDNS:rem>
|
|
{if length($newDsData) > 0}
|
|
<secDNS:add>
|
|
{foreach $ds in $newDsData}
|
|
<secDNS:dsData>
|
|
<secDNS:keyTag>{$ds.keyTag}</secDNS:keyTag>
|
|
<secDNS:alg>{$ds.alg}</secDNS:alg>
|
|
<secDNS:digestType>{$ds.digestType}</secDNS:digestType>
|
|
<secDNS:digest>{$ds.digest}</secDNS:digest>
|
|
</secDNS:dsData>
|
|
{/foreach}
|
|
</secDNS:add>
|
|
{/if}
|
|
</secDNS:update>
|
|
<metadata:metadata xmlns:metadata="urn:google:params:xml:ns:metadata-1.0">
|
|
<metadata:reason>{$reason}</metadata:reason>
|
|
<metadata:requestedByRegistrar>false</metadata:requestedByRegistrar>
|
|
</metadata:metadata>
|
|
</extension>
|
|
<clTRID>RegistryTool</clTRID>
|
|
</command>
|
|
</epp>
|
|
{/template}
|