mirror of
https://github.com/google/nomulus.git
synced 2025-05-01 20:47:52 +02:00
This change required several things: - Separating out the interfaces that merely do HTTP calls to the backend from those that require the remote API (only load the remote API for the latter). Only the tools service provides the remote api endpoint. - Removing the XSRF token as an authentication mechanism (with OAUTH, we no longer need this, and trying to provide it requires initialization of the datastore code which requires the remote API) I can't think of a compelling unit test for this beyond what already exists. Tested: Verified that: - nomulus tool commands (e.g. "list_tlds") work against the tools service as they currently do - The "curl" command hits endpoints on "tools" by default. - We can use --server to specify endpoints on the default service. ------------- Created by MOE: https://github.com/google/moe MOE_MIGRATED_REVID=211510454
120 lines
4.5 KiB
Java
120 lines
4.5 KiB
Java
// 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.
|
|
|
|
package google.registry.tools;
|
|
|
|
import static com.google.appengine.api.taskqueue.TaskOptions.Builder.withUrl;
|
|
import static google.registry.model.registry.Registries.assertTldsExist;
|
|
import static google.registry.rde.RdeModule.PARAM_DIRECTORY;
|
|
import static google.registry.rde.RdeModule.PARAM_MANUAL;
|
|
import static google.registry.rde.RdeModule.PARAM_MODE;
|
|
import static google.registry.rde.RdeModule.PARAM_REVISION;
|
|
import static google.registry.rde.RdeModule.PARAM_WATERMARKS;
|
|
import static google.registry.request.RequestParameters.PARAM_TLDS;
|
|
|
|
import com.beust.jcommander.Parameter;
|
|
import com.beust.jcommander.ParameterException;
|
|
import com.beust.jcommander.Parameters;
|
|
import com.google.appengine.api.taskqueue.Queue;
|
|
import com.google.appengine.api.taskqueue.TaskOptions;
|
|
import google.registry.model.rde.RdeMode;
|
|
import google.registry.rde.RdeStagingAction;
|
|
import google.registry.tools.params.DateTimeParameter;
|
|
import google.registry.util.AppEngineServiceUtils;
|
|
import java.util.List;
|
|
import java.util.stream.Collectors;
|
|
import javax.inject.Inject;
|
|
import javax.inject.Named;
|
|
import org.joda.time.DateTime;
|
|
|
|
/**
|
|
* Command to kick off the server-side generation of an XML RDE or BRDA escrow deposit, which will
|
|
* be stored in the specified manual subdirectory of the GCS RDE bucket.
|
|
*/
|
|
@Parameters(separators = " =", commandDescription = "Generate an XML escrow deposit.")
|
|
final class GenerateEscrowDepositCommand implements RemoteApiCommand {
|
|
|
|
@Parameter(
|
|
names = {"-t", "--tld"},
|
|
description = "Top level domain(s) for which deposit should be generated.",
|
|
required = true)
|
|
private List<String> tlds;
|
|
|
|
@Parameter(
|
|
names = {"-w", "--watermark"},
|
|
description = "Point-in-time timestamp(s) for snapshotting Datastore.",
|
|
required = true,
|
|
converter = DateTimeParameter.class)
|
|
private List<DateTime> watermarks;
|
|
|
|
@Parameter(
|
|
names = {"-m", "--mode"},
|
|
description = "Mode of operation: FULL for RDE deposits, THIN for BRDA deposits.")
|
|
private RdeMode mode = RdeMode.FULL;
|
|
|
|
@Parameter(
|
|
names = {"-r", "--revision"},
|
|
description = "Revision number. Use >0 for resends.")
|
|
private Integer revision;
|
|
|
|
@Parameter(
|
|
names = {"-o", "--outdir"},
|
|
description = "Specify output subdirectory (under GCS RDE bucket, directory manual).",
|
|
required = true)
|
|
private String outdir;
|
|
|
|
@Inject AppEngineServiceUtils appEngineServiceUtils;
|
|
@Inject @Named("rde-report") Queue queue;
|
|
|
|
@Override
|
|
public void run() {
|
|
|
|
if (tlds.isEmpty()) {
|
|
throw new ParameterException("At least one TLD must be specified");
|
|
}
|
|
assertTldsExist(tlds);
|
|
|
|
for (DateTime watermark : watermarks) {
|
|
if (!watermark.withTimeAtStartOfDay().equals(watermark)) {
|
|
throw new ParameterException("Each watermark date must be the start of a day");
|
|
}
|
|
}
|
|
|
|
if ((revision != null) && (revision < 0)) {
|
|
throw new ParameterException("Revision must be greater than or equal to zero");
|
|
}
|
|
|
|
if (outdir.isEmpty()) {
|
|
throw new ParameterException("Output subdirectory must not be empty");
|
|
}
|
|
|
|
// Unlike many tool commands, this command is actually invoking an action on the backend module
|
|
// (because it's a mapreduce). So we invoke it in a different way.
|
|
String hostname = appEngineServiceUtils.getCurrentVersionHostname("backend");
|
|
TaskOptions opts =
|
|
withUrl(RdeStagingAction.PATH)
|
|
.header("Host", hostname)
|
|
.param(PARAM_MANUAL, String.valueOf(true))
|
|
.param(PARAM_MODE, mode.toString())
|
|
.param(PARAM_DIRECTORY, outdir)
|
|
.param(PARAM_TLDS, tlds.stream().collect(Collectors.joining(",")))
|
|
.param(
|
|
PARAM_WATERMARKS,
|
|
watermarks.stream().map(DateTime::toString).collect(Collectors.joining(",")));
|
|
if (revision != null) {
|
|
opts = opts.param(PARAM_REVISION, String.valueOf(revision));
|
|
}
|
|
queue.add(opts);
|
|
}
|
|
}
|