mirror of
https://github.com/google/nomulus.git
synced 2025-05-02 21:17:50 +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
125 lines
4.7 KiB
Java
125 lines
4.7 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.reporting.billing;
|
|
|
|
import static google.registry.reporting.ReportingModule.PARAM_YEAR_MONTH;
|
|
import static google.registry.request.Action.Method.POST;
|
|
import static javax.servlet.http.HttpServletResponse.SC_INTERNAL_SERVER_ERROR;
|
|
import static javax.servlet.http.HttpServletResponse.SC_NOT_MODIFIED;
|
|
import static javax.servlet.http.HttpServletResponse.SC_NO_CONTENT;
|
|
import static javax.servlet.http.HttpServletResponse.SC_OK;
|
|
|
|
import com.google.api.services.dataflow.Dataflow;
|
|
import com.google.api.services.dataflow.model.Job;
|
|
import com.google.appengine.api.taskqueue.QueueFactory;
|
|
import com.google.appengine.api.taskqueue.TaskOptions;
|
|
import com.google.common.flogger.FluentLogger;
|
|
import com.google.common.net.MediaType;
|
|
import google.registry.config.RegistryConfig.Config;
|
|
import google.registry.reporting.ReportingModule;
|
|
import google.registry.request.Action;
|
|
import google.registry.request.Parameter;
|
|
import google.registry.request.Response;
|
|
import google.registry.request.auth.Auth;
|
|
import java.io.IOException;
|
|
import javax.inject.Inject;
|
|
import org.joda.time.YearMonth;
|
|
|
|
/**
|
|
* Uploads the results of the {@link google.registry.beam.invoicing.InvoicingPipeline}.
|
|
*
|
|
* <p>This relies on the retry semantics in {@code queue.xml} to ensure proper upload, in spite of
|
|
* fluctuations in generation timing.
|
|
*
|
|
* @see <a
|
|
* href=https://cloud.google.com/dataflow/docs/reference/rest/v1b3/projects.jobs#Job.JobState>
|
|
* Job States</a>
|
|
*/
|
|
@Action(
|
|
service = Action.Service.BACKEND,
|
|
path = PublishInvoicesAction.PATH,
|
|
method = POST,
|
|
auth = Auth.AUTH_INTERNAL_OR_ADMIN)
|
|
public class PublishInvoicesAction implements Runnable {
|
|
|
|
private static final FluentLogger logger = FluentLogger.forEnclosingClass();
|
|
private static final String JOB_DONE = "JOB_STATE_DONE";
|
|
private static final String JOB_FAILED = "JOB_STATE_FAILED";
|
|
|
|
private final String projectId;
|
|
private final String jobId;
|
|
private final BillingEmailUtils emailUtils;
|
|
private final Dataflow dataflow;
|
|
private final Response response;
|
|
private final YearMonth yearMonth;
|
|
|
|
@Inject
|
|
PublishInvoicesAction(
|
|
@Config("projectId") String projectId,
|
|
@Parameter(ReportingModule.PARAM_JOB_ID) String jobId,
|
|
BillingEmailUtils emailUtils,
|
|
Dataflow dataflow,
|
|
Response response,
|
|
YearMonth yearMonth) {
|
|
this.projectId = projectId;
|
|
this.jobId = jobId;
|
|
this.emailUtils = emailUtils;
|
|
this.dataflow = dataflow;
|
|
this.response = response;
|
|
this.yearMonth = yearMonth;
|
|
}
|
|
|
|
static final String PATH = "/_dr/task/publishInvoices";
|
|
|
|
@Override
|
|
public void run() {
|
|
try {
|
|
logger.atInfo().log("Starting publish job.");
|
|
Job job = dataflow.projects().jobs().get(projectId, jobId).execute();
|
|
String state = job.getCurrentState();
|
|
switch (state) {
|
|
case JOB_DONE:
|
|
logger.atInfo().log("Dataflow job %s finished successfully, publishing results.", jobId);
|
|
response.setStatus(SC_OK);
|
|
enqueueCopyDetailReportsTask();
|
|
emailUtils.emailOverallInvoice();
|
|
break;
|
|
case JOB_FAILED:
|
|
logger.atSevere().log("Dataflow job %s finished unsuccessfully.", jobId);
|
|
response.setStatus(SC_NO_CONTENT);
|
|
emailUtils.sendAlertEmail(
|
|
String.format("Dataflow job %s ended in status failure.", jobId));
|
|
break;
|
|
default:
|
|
logger.atInfo().log("Job in non-terminal state %s, retrying:", state);
|
|
response.setStatus(SC_NOT_MODIFIED);
|
|
break;
|
|
}
|
|
} catch (IOException e) {
|
|
emailUtils.sendAlertEmail(String.format("Publish action failed due to %s", e.getMessage()));
|
|
response.setStatus(SC_INTERNAL_SERVER_ERROR);
|
|
response.setContentType(MediaType.PLAIN_TEXT_UTF_8);
|
|
response.setPayload(String.format("Template launch failed: %s", e.getMessage()));
|
|
}
|
|
}
|
|
|
|
private void enqueueCopyDetailReportsTask() {
|
|
TaskOptions copyDetailTask =
|
|
TaskOptions.Builder.withUrl(CopyDetailReportsAction.PATH)
|
|
.method(TaskOptions.Method.POST)
|
|
.param(PARAM_YEAR_MONTH, yearMonth.toString());
|
|
QueueFactory.getQueue(BillingModule.CRON_QUEUE).add(copyDetailTask);
|
|
}
|
|
}
|