Package org.mobicents.slee.service.user.ship

Source Code of org.mobicents.slee.service.user.ship.OrderShipDateSbb

package org.mobicents.slee.service.user.ship;

import java.sql.Timestamp;
import java.text.ParseException;
import java.util.HashMap;

import javax.naming.Context;
import javax.naming.InitialContext;
import javax.naming.NamingException;
import javax.persistence.EntityManager;
import javax.sip.ClientTransaction;
import javax.sip.Dialog;
import javax.sip.InvalidArgumentException;
import javax.sip.SipException;
import javax.sip.TransactionUnavailableException;
import javax.sip.address.Address;
import javax.sip.header.CallIdHeader;
import javax.sip.header.Header;
import javax.sip.message.Request;
import javax.slee.ActivityContextInterface;
import javax.slee.ChildRelation;
import javax.slee.CreateException;
import javax.slee.SbbContext;
import javax.slee.UnrecognizedActivityException;

import org.apache.log4j.Logger;
import org.mobicents.mscontrol.MsLink;
import org.mobicents.mscontrol.MsLinkEvent;
import org.mobicents.mscontrol.MsNotifyEvent;
import org.mobicents.mscontrol.MsProvider;
import org.mobicents.mscontrol.MsSignalGenerator;
import org.mobicents.mscontrol.signal.Announcement;
import org.mobicents.seam.Order;
import org.mobicents.slee.resource.media.ratype.MediaRaActivityContextInterfaceFactory;
import org.mobicents.slee.resource.persistence.ratype.PersistenceResourceAdaptorSbbInterface;
import org.mobicents.slee.resource.tts.ratype.TTSSession;
import org.mobicents.slee.service.callcontrol.CallControlSbbLocalObject;
import org.mobicents.slee.service.common.CommonSbb;
import org.mobicents.slee.service.events.CustomEvent;
import org.mobicents.slee.util.Session;
import org.mobicents.slee.util.SessionAssociation;

public abstract class OrderShipDateSbb extends CommonSbb {

  private Logger logger = Logger.getLogger(OrderShipDateSbb.class);

  private PersistenceResourceAdaptorSbbInterface persistenceResourceAdaptorSbbInterface = null;

  private MsProvider msProvider;

  private MediaRaActivityContextInterfaceFactory mediaAcif;

  private String pathToAudioDirectory = null;

  String audioFilePath = null;

  String callerSip = null;

  /** Creates a new instance of UserSbb */
  public OrderShipDateSbb() {
    super();
  }

  public void setSbbContext(SbbContext context) {
    super.setSbbContext(context);
    try {

      Context myEnv = (Context) new InitialContext()
          .lookup("java:comp/env");

      audioFilePath = (String) myEnv.lookup("audioFilePath");

      pathToAudioDirectory = "file:"
          + (String) myEnv.lookup("pathToAudioDirectory");
      callerSip = (String) myEnv.lookup("callerSip");

      persistenceResourceAdaptorSbbInterface = (PersistenceResourceAdaptorSbbInterface) myEnv
          .lookup("slee/resources/pra/0.1/provider");

      msProvider = (MsProvider) myEnv
          .lookup("slee/resources/media/1.0/provider");
      mediaAcif = (MediaRaActivityContextInterfaceFactory) myEnv
          .lookup("slee/resources/media/1.0/acifactory");

    } catch (NamingException ne) {
      ne.printStackTrace();
    }
  }

  public void onOrderShipped(CustomEvent event, ActivityContextInterface ac) {
    logger.info("======== OrderShipDateSbb ORDER_SHIPPED ========");
    makeCall(event, ac);
  }

  private void makeCall(CustomEvent event, ActivityContextInterface ac) {

    EntityManager mgr = null;
    Order order = null;

    this.setCustomEvent(event);
    this.setDateAndTime("");

    mgr = this.persistenceResourceAdaptorSbbInterface.createEntityManager(
        new HashMap(), "custom-pu");

    order = (Order) mgr.createQuery(
        "select o from Order o where o.orderId = :orderId")
        .setParameter("orderId", this.getCustomEvent().getOrderId())
        .getSingleResult();

    Timestamp orderDate = order.getDeliveryDate();

    mgr.close();

    TTSSession ttsSession = getTTSProvider().getNewTTSSession(
        audioFilePath, "kevin16");

    StringBuffer stringBuffer = new StringBuffer();
    stringBuffer.append("Welcome ");
    stringBuffer.append(event.getCustomerName());
    stringBuffer.append(". This is a reminedr call for your order number ");
    stringBuffer.append(event.getOrderId());
    stringBuffer.append(". The shippment will be at your door step on .");
    stringBuffer.append(orderDate.getDate());
    stringBuffer.append(" of ");

    String month = null;

    switch (orderDate.getMonth()) {
    case 0:
      month = "January";
      break;
    case 1:
      month = "February";
      break;
    case 2:
      month = "March";
      break;
    case 3:
      month = "April";
      break;
    case 4:
      month = "May";
      break;
    case 5:
      month = "June";
      break;
    case 6:
      month = "July";
      break;
    case 7:
      month = "August";
      break;
    case 8:
      month = "September";
      break;
    case 9:
      month = "October";
      break;
    case 10:
      month = "November";
      break;
    case 11:
      month = "December";
      break;
    default:
      break;
    }

    stringBuffer.append(month);
    stringBuffer.append(" ");
    stringBuffer.append(1900 + orderDate.getYear());
    stringBuffer.append(" at ");
    stringBuffer.append(orderDate.getHours());
    stringBuffer.append(" hour and ");
    stringBuffer.append(orderDate.getMinutes());
    stringBuffer.append(" minute. Thank you. Bye.");

    ttsSession.textToAudioFile(stringBuffer.toString());

    try {
      // Set the caller address to the address of our call controller
      Address callerAddress = getSipUtils()
          .convertURIToAddress(callerSip);
      callerAddress.setDisplayName(callerSip);

      // Retrieve the callee addresses from the event
      Address calleeAddress = getSipUtils().convertURIToAddress(
          event.getCustomerPhone());

      // Build the INVITE request
      Request request = getSipUtils().buildInvite(callerAddress,
          calleeAddress, null, 1);

      // Create a new transaction based on the generated request
      ClientTransaction ct = getSipProvider().getNewClientTransaction(
          request);

      Header h = ct.getRequest().getHeader(CallIdHeader.NAME);
      String calleeCallId = ((CallIdHeader) h).getCallId();

      SessionAssociation sa = new SessionAssociation(
          "org.mobicents.slee.service.callcontrol.CallControlSbb$InitialState");

      Session calleeSession = new Session(calleeCallId);
      calleeSession.setSipAddress(calleeAddress);
      calleeSession.setToBeCancelledClientTransaction(ct);

      // The dialog for the client transaction in which the INVITE is sent
      Dialog dialog = ct.getDialog();
      if (dialog != null && logger.isDebugEnabled()) {
        logger
            .debug("Obtained dialog from ClientTransaction : automatic dialog support on");
      }
      if (dialog == null) {
        // Automatic dialog support turned off
        try {
          dialog = getSipProvider().getNewDialog(ct);
          if (logger.isDebugEnabled()) {
            logger
                .debug("Obtained dialog for INVITE request to callee with getNewDialog");
          }
        } catch (Exception e) {
          logger.error("Error getting dialog", e);
        }
      }

      if (logger.isDebugEnabled()) {
        logger
            .debug("Obtained dialog in onThirdPCCTriggerEvent : callId = "
                + dialog.getCallId().getCallId());
      }

      // Get activity context from factory
      ActivityContextInterface sipACI = getSipActivityContextInterfaceFactory()
          .getActivityContextInterface(dialog);

      ActivityContextInterface clientSipACI = getSipActivityContextInterfaceFactory()
          .getActivityContextInterface(ct);

     
      calleeSession.setDialog(dialog);
      sa.setCalleeSession(calleeSession);

      /**
       * Actually callerSession is not required for this example and clean
       * up is needed
       */
      Session callerSession = new Session();

      // Create a new caller address from caller URI specified in the
      // event (the real caller address) since we need this in the next
      // INVITE.
      callerAddress = getSipUtils().convertURIToAddress(callerSip);
      callerSession.setSipAddress(callerAddress);
      // Since we don't have the client transaction for the caller yet,
      // just set the to be cancelled client transaction to null.
      callerSession.setToBeCancelledClientTransaction(null);
      sa.setCallerSession(callerSession);

      // put the callId for the callee dialog in the cache
      getCacheUtility().put(calleeCallId, sa);

      ChildRelation relation = getCallControlSbbChild();
      // Create child SBB
      CallControlSbbLocalObject child = (CallControlSbbLocalObject) relation
          .create();

      setChildSbbLocalObject(child);

      child.setParent(getSbbContext().getSbbLocalObject());

      // Attach child SBB to the activity context
      sipACI.attach(child);
      clientSipACI.attach(child);
      sipACI.attach(this.getSbbContext().getSbbLocalObject());

      // Send the INVITE request
      ct.sendRequest();

    } catch (ParseException parExc) {
      logger.error("Parse Exception while parsing the callerAddess",
          parExc);
    } catch (InvalidArgumentException invalidArgExcep) {
      logger.error(
          "InvalidArgumentException while building Invite Request",
          invalidArgExcep);
    } catch (TransactionUnavailableException tranUnavExce) {
      logger
          .error(
              "TransactionUnavailableException when trying to getNewClientTransaction",
              tranUnavExce);
    } catch (UnrecognizedActivityException e) {
      // TODO Auto-generated catch block
      logger
          .error(
              "UnrecognizedActivityException when trying to getActivityContextInterface",
              e);
    } catch (CreateException creaExce) {
      logger.error("CreateException while trying to create Child",
          creaExce);
    } catch (SipException sipExec) {
      logger.error("SipException while trying to send INVITE Request",
          sipExec);
    }

  }

  public void onLinkReleased(MsLinkEvent evt, ActivityContextInterface aci) {
    logger.info("-----onLinkReleased-----");
    getChildSbbLocalObject().sendBye();

  }

  public void onAnnouncementComplete(MsNotifyEvent evt,
      ActivityContextInterface aci) {
    logger.info("Announcement complete: ");

    MsLink link = this.getLink();
    link.release();

  }

  public void onLinkCreated(MsLinkEvent evt, ActivityContextInterface aci) {
    logger.info("--------onLinkCreated------------");
    MsLink link = evt.getSource();
    String announcementEndpoint = link.getEndpoints()[1];

    String endpointName = link.getEndpoints()[0];
    logger.info("endpoint name: " + endpointName);
    logger.info("Announcement endpoint: " + announcementEndpoint);

    MsSignalGenerator generator = msProvider
        .getSignalGenerator(announcementEndpoint);

    try {
      ActivityContextInterface generatorActivity = mediaAcif
          .getActivityContextInterface(generator);
      generatorActivity.attach(getSbbContext().getSbbLocalObject());

      String announcementFile = "file:" + audioFilePath;
      generator.apply(Announcement.PLAY,
          new String[] { announcementFile });

    } catch (UnrecognizedActivityException e) {
      e.printStackTrace();
    }

  }

  public MsLink getLink() {
    ActivityContextInterface[] activities = getSbbContext().getActivities();
    for (int i = 0; i < activities.length; i++) {
      if (activities[i].getActivity() instanceof MsLink) {
        return (MsLink) activities[i].getActivity();
      }
    }
    return null;
  }

  // child relation
  public abstract ChildRelation getCallControlSbbChild();

  public abstract void setCustomEvent(CustomEvent customEvent);

  public abstract CustomEvent getCustomEvent();

  public abstract void setSendBye(boolean isBye);

  public abstract boolean getSendBye();

  public abstract void setDateAndTime(String dateAndTime);

  public abstract String getDateAndTime();

  public abstract void setChildSbbLocalObject(
      CallControlSbbLocalObject childSbbLocalObject);

  public abstract CallControlSbbLocalObject getChildSbbLocalObject();
}
TOP

Related Classes of org.mobicents.slee.service.user.ship.OrderShipDateSbb

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.