mirror of
https://github.com/google/nomulus.git
synced 2025-05-01 20:47:52 +02:00
Our goal is to be able to address every Action by looking at the class itself, and to make it clearer at a glance what you need to access the Action's endpoint Currently, we can know from the @Action annotation: - the endpoint path - the Method needed - the authentication level needed This CL adds the service where the Action is hosted, which also translates to the URL. NOTE - currently we don't have any Action hosted on multiple services. I don't think we will ever need it (since they do the same thing no matter which service they are on, so why host it twice?), but if we do we'll have to update the code to allow it. The next step after this is to make sure all the @Parameters are defined on the Action itself, and then we will be able to craft access to the endpoint programatically (or at least verify at run-time we crafted a correct URL) ------------- Created by MOE: https://github.com/google/moe MOE_MIGRATED_REVID=229375735
91 lines
3.8 KiB
Java
91 lines
3.8 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.export;
|
|
|
|
import static com.google.common.base.Strings.isNullOrEmpty;
|
|
import static com.google.common.net.MediaType.PLAIN_TEXT_UTF_8;
|
|
import static google.registry.request.Action.Method.POST;
|
|
import static java.nio.charset.StandardCharsets.UTF_8;
|
|
import static javax.servlet.http.HttpServletResponse.SC_INTERNAL_SERVER_ERROR;
|
|
import static javax.servlet.http.HttpServletResponse.SC_OK;
|
|
|
|
import com.google.common.flogger.FluentLogger;
|
|
import com.google.common.net.MediaType;
|
|
import google.registry.model.registry.Registry;
|
|
import google.registry.request.Action;
|
|
import google.registry.request.Parameter;
|
|
import google.registry.request.RequestParameters;
|
|
import google.registry.request.Response;
|
|
import google.registry.request.auth.Auth;
|
|
import google.registry.storage.drive.DriveConnection;
|
|
import javax.inject.Inject;
|
|
|
|
/** Action that exports the publicly viewable reserved terms list for a TLD to Google Drive. */
|
|
@Action(
|
|
service = Action.Service.BACKEND,
|
|
path = "/_dr/task/exportReservedTerms",
|
|
method = POST,
|
|
auth = Auth.AUTH_INTERNAL_ONLY)
|
|
public class ExportReservedTermsAction implements Runnable {
|
|
|
|
private static final FluentLogger logger = FluentLogger.forEnclosingClass();
|
|
static final MediaType EXPORT_MIME_TYPE = MediaType.PLAIN_TEXT_UTF_8;
|
|
static final String RESERVED_TERMS_FILENAME = "reserved_terms.txt";
|
|
|
|
@Inject DriveConnection driveConnection;
|
|
@Inject ExportUtils exportUtils;
|
|
@Inject @Parameter(RequestParameters.PARAM_TLD) String tld;
|
|
@Inject Response response;
|
|
@Inject ExportReservedTermsAction() {}
|
|
|
|
/**
|
|
* Exports the reserved terms for the TLD specified via the "tld" param to a newline-delimited
|
|
* UTF-8-formatted CSV file (with one column) named "reserved_terms.txt" in the Google Drive
|
|
* folder with the id specified for that TLD.
|
|
*
|
|
* <p>This servlet prints the ID of the file in GoogleDrive that was created/updated.
|
|
*/
|
|
@Override
|
|
public void run() {
|
|
response.setContentType(PLAIN_TEXT_UTF_8);
|
|
try {
|
|
Registry registry = Registry.get(tld);
|
|
String resultMsg;
|
|
if (registry.getReservedLists().isEmpty() && isNullOrEmpty(registry.getDriveFolderId())) {
|
|
resultMsg = "No reserved lists configured";
|
|
logger.atInfo().log("No reserved terms to export for TLD %s", tld);
|
|
} else if (registry.getDriveFolderId() == null) {
|
|
resultMsg = "Skipping export because no Drive folder is associated with this TLD";
|
|
logger.atInfo().log(
|
|
"Skipping reserved terms export for TLD %s because Drive folder isn't specified", tld);
|
|
} else {
|
|
resultMsg = driveConnection.createOrUpdateFile(
|
|
RESERVED_TERMS_FILENAME,
|
|
EXPORT_MIME_TYPE,
|
|
registry.getDriveFolderId(),
|
|
exportUtils.exportReservedTerms(registry).getBytes(UTF_8));
|
|
logger.atInfo().log(
|
|
"Exporting reserved terms succeeded for TLD %s, response was: %s", tld, resultMsg);
|
|
}
|
|
response.setStatus(SC_OK);
|
|
response.setPayload(resultMsg);
|
|
} catch (Throwable e) {
|
|
response.setStatus(SC_INTERNAL_SERVER_ERROR);
|
|
response.setPayload(e.getMessage());
|
|
throw new RuntimeException(
|
|
String.format("Exception occurred while exporting reserved terms for TLD %s.", tld), e);
|
|
}
|
|
}
|
|
}
|