Package org.structr.websocket.command

Source Code of org.structr.websocket.command.ListFilesCommand

/**
* Copyright (C) 2010-2014 Morgner UG (haftungsbeschränkt)
*
* This file is part of Structr <http://structr.org>.
*
* Structr is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as
* published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any later version.
*
* Structr 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 Affero General Public License
* along with Structr.  If not, see <http://www.gnu.org/licenses/>.
*/
package org.structr.websocket.command;

import org.structr.common.SecurityContext;
import org.structr.common.error.FrameworkException;
import org.structr.core.GraphObject;
import org.structr.web.entity.Image;
import org.structr.core.entity.AbstractNode;
import org.structr.core.property.PropertyKey;
import org.structr.common.PagingHelper;
import org.structr.websocket.message.WebSocketMessage;
import org.structr.websocket.StructrWebSocket;

//~--- JDK imports ------------------------------------------------------------

import java.util.*;
import org.structr.core.app.Query;
import org.structr.core.app.StructrApp;
import org.structr.schema.SchemaHelper;
import org.structr.web.entity.relation.FileChildren;

//~--- classes ----------------------------------------------------------------

/**
*
* @author Axel Morgner
*/
public class ListFilesCommand extends AbstractCommand {

  static {

    StructrWebSocket.addCommand(ListFilesCommand.class);

  }

  @Override
  public void processMessage(WebSocketMessage webSocketData) {
   

    final SecurityContext securityContext  = getWebSocket().getSecurityContext();
    final String rawType                   = (String) webSocketData.getNodeData().get("type");
    final Class type                       = SchemaHelper.getEntityClassForRawType(rawType);
    final String sortOrder                 = webSocketData.getSortOrder();
    final String sortKey                   = webSocketData.getSortKey();
    final int pageSize                     = webSocketData.getPageSize();
    final int page                         = webSocketData.getPage();
    final PropertyKey sortProperty         = StructrApp.getConfiguration().getPropertyKeyForJSONName(type, sortKey);
    final Query query                      = StructrApp.getInstance(securityContext).nodeQuery(type).includeDeletedAndHidden().sort(sortProperty).order("desc".equals(sortOrder));
   
    // for image lists, suppress thumbnails
    if (type.equals(Image.class)) {
     
      query.and(Image.isThumbnail, false);
    }
   

    try {

      // do search
      List<AbstractNode> filteredResults     = new LinkedList();
      List<? extends GraphObject> resultList = query.getAsList();

      // add only root folders to the list
      for (GraphObject obj : resultList) {

        if (obj instanceof AbstractNode) {

          AbstractNode node = (AbstractNode) obj;

          if (!node.hasIncomingRelationships(FileChildren.class)) {

            filteredResults.add(node);
          }

        }

      }

      // save raw result count
      int resultCountBeforePaging = filteredResults.size();
     
      // set full result list
      webSocketData.setResult(PagingHelper.subList(filteredResults, pageSize, page, null));
      webSocketData.setRawResultCount(resultCountBeforePaging);

      // send only over local connection
      getWebSocket().send(webSocketData, true);
     
    } catch (FrameworkException fex) {

      fex.printStackTrace();

    }

  }

  //~--- get methods ----------------------------------------------------

  @Override
  public String getCommand() {

    return "LIST_FILES";

  }

}
TOP

Related Classes of org.structr.websocket.command.ListFilesCommand

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.