Package com.google.api.ads.adwords.awreporting.kratubackend.restserver.reports

Source Code of com.google.api.ads.adwords.awreporting.kratubackend.restserver.reports.GenerateReportsRest

//Copyright 2012 Google Inc. 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 com.google.api.ads.adwords.awreporting.kratubackend.restserver.reports;

import com.google.api.ads.adwords.awreporting.kratubackend.data.RunnableReport;
import com.google.api.ads.adwords.awreporting.kratubackend.restserver.AbstractServerResource;
import com.google.api.ads.adwords.awreporting.processors.ReportProcessor;
import com.google.api.ads.adwords.awreporting.util.DynamicPropertyPlaceholderConfigurer;

import org.restlet.data.Status;
import org.restlet.representation.Representation;
import org.restlet.service.TaskService;
import org.springframework.core.io.ClassPathResource;
import org.springframework.core.io.FileSystemResource;
import org.springframework.core.io.Resource;
import org.springframework.core.io.support.PropertiesLoaderUtils;

import java.util.Properties;

/**
*
* @author jtoledo
*
*/
public class GenerateReportsRest extends AbstractServerResource {
 
  static TaskService taskService = new TaskService();
 
  public Representation getHandler() {
    String result = null;
    try {
      getParameters();

      // Generate Reports at MCC level for dates
      if (topAccountId != null && dateStart != null && dateEnd != null ) {

        getContext().getParameters().add("maxThreads", "512");

       
        Resource resource = new ClassPathResource(file);
        if (!resource.exists()) {
          resource = new FileSystemResource(file);
        }
        DynamicPropertyPlaceholderConfigurer.setDynamicResource(resource);
        Properties properties = PropertiesLoaderUtils.loadProperties(resource);
       
        ReportProcessor processor = getApplicationContext().getBean(ReportProcessor.class);

        // Launching a new Service(Thread) to make the request async.
        RunnableReport runnableReport = new RunnableReport(topAccountId, processor, properties, dateStart, dateEnd);
       
        taskService.submit(runnableReport);

        result = "OK - Task created, this usually takes 10-15mins for 1000 accounts/month";
      } else {
        taskService.getContext();
      }
    } catch (Exception exception) {
      return handleException(exception);
    }
    addReadOnlyHeaders();
    return createJsonResult(result);
  }

  public void deleteHandler() {
    this.setStatus(Status.CLIENT_ERROR_METHOD_NOT_ALLOWED);
  }

  public Representation postPutHandler(String json) {
    this.setStatus(Status.CLIENT_ERROR_METHOD_NOT_ALLOWED);
    return createJsonResult(Status.CLIENT_ERROR_METHOD_NOT_ALLOWED.getDescription());
  }
}
TOP

Related Classes of com.google.api.ads.adwords.awreporting.kratubackend.restserver.reports.GenerateReportsRest

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.