Package org.fao.geonet.services.resources

Source Code of org.fao.geonet.services.resources.Download

//=============================================================================
//===  Copyright (C) 2001-2007 Food and Agriculture Organization of the
//===  United Nations (FAO-UN), United Nations World Food Programme (WFP)
//===  and United Nations Environment Programme (UNEP)
//===
//===  This program is free software; you can redistribute it and/or modify
//===  it under the terms of the GNU General Public License as published by
//===  the Free Software Foundation; either version 2 of the License, or (at
//===  your option) any later version.
//===
//===  This program is distributed in the hope that it will be useful, but
//===  WITHOUT ANY WARRANTY; without even the implied warranty of
//===  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
//===  General Public License for more details.
//===
//===  You should have received a copy of the GNU General Public License
//===  along with this program; if not, write to the Free Software
//===  Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
//===
//===  Contact: Jeroen Ticheler - FAO - Viale delle Terme di Caracalla 2,
//===  Rome - Italy. email: geonetwork@osgeo.org
//==============================================================================

package org.fao.geonet.services.resources;

import org.fao.geonet.domain.Group;
import org.fao.geonet.exceptions.BadParameterEx;
import org.fao.geonet.exceptions.ResourceNotFoundEx;
import jeeves.interfaces.Service;
import jeeves.server.ServiceConfig;
import jeeves.server.context.ServiceContext;
import org.fao.geonet.repository.GroupRepository;
import org.fao.geonet.services.resources.handlers.IResourceDownloadHandler;
import org.fao.geonet.Util;
import org.fao.geonet.GeonetContext;
import org.fao.geonet.constants.Geonet;
import org.fao.geonet.constants.Params;
import org.fao.geonet.domain.OperationAllowed;
import org.fao.geonet.domain.ReservedOperation;
import org.fao.geonet.kernel.DataManager;
import org.fao.geonet.kernel.setting.SettingManager;
import org.fao.geonet.lib.Lib;
import org.fao.geonet.repository.OperationAllowedRepository;
import org.fao.geonet.services.Utils;
import org.fao.geonet.util.MailSender;
import org.jdom.Element;

import java.io.File;
import java.util.List;

//=============================================================================

/** Sends the resource to the client
  */

public class Download implements Service
{
  //-----------------------------------------------------------------------------
  //---
  //--- Init
  //---
  //-----------------------------------------------------------------------------

  public void init(String appPath, ServiceConfig params) throws Exception {}

  //-----------------------------------------------------------------------------
  //---
  //--- Service
  //---
  //-----------------------------------------------------------------------------

  public Element exec(Element params, ServiceContext context) throws Exception
  {
    String id = Utils.getIdentifierFromParameters(params, context);
    String fname  = Util.getParam(params, Params.FNAME);
    String access = Util.getParam(params, Params.ACCESS, Params.Access.PUBLIC);

    boolean doNotify = false;

    if (fname.contains("..")) {
      throw new BadParameterEx("Invalid character found in resource name.", fname);
    }
   
    if (access.equals(Params.Access.PRIVATE))
    {
      Lib.resource.checkPrivilege(context, id, ReservedOperation.download);
      doNotify = true;
    }

    // Build the response
    File dir = new File(Lib.resource.getDir(context, access, id));
    File file= new File(dir, fname);

    context.info("File is : " +file);

    if (!file.exists())
      throw new ResourceNotFoundEx(fname);

    GeonetContext  gc = (GeonetContext) context.getHandlerContext(Geonet.CONTEXT_NAME);
    SettingManager sm = gc.getBean(SettingManager.class);
    DataManager    dm = gc.getBean(DataManager.class);

    //--- increase metadata popularity
    if (access.equals(Params.Access.PRIVATE))
      dm.increasePopularity(context, id);

    //--- send email notification

    if (doNotify)
    {
      String host = sm.getValue("system/feedback/mailServer/host");
      String port = sm.getValue("system/feedback/mailServer/port");
      String from = sm.getValue("system/feedback/email");

      String fromDescr = "GeoNetwork administrator";

      if (host.trim().length() == 0 || from.trim().length() == 0)
                if(context.isDebugEnabled())
                    context.debug("Skipping email notification");
      else
      {
                if(context.isDebugEnabled()) {
                    context.debug("Sending email notification for file : "+ file);
                }

        // send emails about downloaded file to groups with notify privilege

                OperationAllowedRepository opAllowedRepo = context.getBean(OperationAllowedRepository.class);
                final GroupRepository groupRepository = context.getBean(GroupRepository.class);

                List<OperationAllowed> opsAllowed = opAllowedRepo.findByMetadataId(id);
               
        for (OperationAllowed opAllowed : opsAllowed) {
                    Group group = groupRepository.findOne(opAllowed.getId().getGroupId());
          String  name  = group.getName();
          String  email = group.getEmail();

          if (email.trim().length() != 0)
          {
              // TODO i18n
            String subject = "File " + fname + " has been downloaded";
            String message = "GeoNetwork notifies you, as contact person of group "+ name
              + " that data file "+ fname
              + " belonging metadata "+ id
              + " has beed downloaded from address " + context.getIpAddress() + ".";

            try
            {
              MailSender sender = new MailSender(context);
              sender.send(host, Integer.parseInt(port),
                      sm.getValue("system/feedback/mailServer/username"),
                      sm.getValue("system/feedback/mailServer/password"),
                      sm.getValueAsBool("system/feedback/mailServer/ssl"),
                      from, fromDescr, email, null, subject, message);
            }
            catch (Exception e)
            {
              e.printStackTrace();
            }
          }
        }
      }
    }

        IResourceDownloadHandler downloadHook = (IResourceDownloadHandler) context.getApplicationContext().getBean("resourceDownloadHandler");
        return downloadHook.onDownload(context, params, Integer.parseInt(id), fname, file);
  }
}

//=============================================================================
TOP

Related Classes of org.fao.geonet.services.resources.Download

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.