Package play.modules.elasticsearch

Source Code of play.modules.elasticsearch.ElasticSearchIndexAction

/**
* Copyright 2011 The Apache Software Foundation
*
* 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.
*
* @author Felipe Oliveira (http://mashup.fm)
*
*/
package play.modules.elasticsearch;

import org.elasticsearch.client.Client;

import play.Logger;
import play.db.Model;
import play.modules.elasticsearch.adapter.ElasticSearchAdapter;
import play.modules.elasticsearch.mapping.ModelMapper;
import play.modules.elasticsearch.util.ExceptionUtil;

/**
* The Class ElasticSearchIndexAction.
*/
public class ElasticSearchIndexAction implements play.libs.F.Action<ElasticSearchIndexEvent> {

  /**
   * Invoke Action
   *
   * @see play.libs.F.Action#invoke(java.lang.Object)
   */
  @Override
  public void invoke(ElasticSearchIndexEvent message) {
    // Log Debug
    Logger.info("Elastic Search - %s Event", message);

    Client client = ElasticSearchPlugin.client();
    Model object = message.getObject();
    @SuppressWarnings("unchecked")
    ModelMapper<Model> mapper = (ModelMapper<Model>) ElasticSearchPlugin.getMapper(object.getClass());

    // Index Event
    try {
      switch (message.getType()) {
      case INDEX:
        ElasticSearchAdapter.indexModel(client, mapper, object);
        break;
      case DELETE:
        ElasticSearchAdapter.deleteModel(client, mapper, object);
        break;
      }
    } catch (Throwable t) {
      Logger.error(ExceptionUtil.getStackTrace(t));
    }
  }

}
TOP

Related Classes of play.modules.elasticsearch.ElasticSearchIndexAction

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.