Search in sources :

Example 41 with PlainTextOutputSpeech

use of com.amazon.speech.ui.PlainTextOutputSpeech in project amos-ss17-alexa by c-i-ber.

the class AmosAlexaSpeechlet method getWelcomeResponse.

/**
     * Creates and returns a {@code SpeechletResponse} with a welcome message.
     *
     * @return SpeechletResponse spoken and visual response for the given intent
     */
private SpeechletResponse getWelcomeResponse() {
    String speechText = "Welcome to the Alexa Skills Kit, you can say hello";
    // Create the Simple card content.
    SimpleCard card = new SimpleCard();
    card.setTitle("HelloWorld");
    card.setContent(speechText);
    // Create the plain text output.
    PlainTextOutputSpeech speech = new PlainTextOutputSpeech();
    speech.setText(speechText);
    // Create reprompt
    Reprompt reprompt = new Reprompt();
    reprompt.setOutputSpeech(speech);
    return SpeechletResponse.newAskResponse(speech, reprompt, card);
}
Also used : SimpleCard(com.amazon.speech.ui.SimpleCard) Reprompt(com.amazon.speech.ui.Reprompt) PlainTextOutputSpeech(com.amazon.speech.ui.PlainTextOutputSpeech)

Example 42 with PlainTextOutputSpeech

use of com.amazon.speech.ui.PlainTextOutputSpeech in project amos-ss17-alexa by c-i-ber.

the class AmosAlexaSpeechlet method getCreditLimitResponse.

/**
     * Creates and returns a {@code SpeechletResponse} with the current account balance.
     *
     * @return SpeechletResponse spoken and visual response for the given intent
     */
private SpeechletResponse getCreditLimitResponse() {
    double creditLimit = 2000.91;
    String speechText = "Your credit limit is " + Double.toString(creditLimit);
    // Create the Simple card content.
    SimpleCard card = new SimpleCard();
    card.setTitle("CreditLimit");
    card.setContent(speechText);
    // Create the plain text output.
    PlainTextOutputSpeech speech = new PlainTextOutputSpeech();
    speech.setText(speechText);
    // Create reprompt
    Reprompt reprompt = new Reprompt();
    reprompt.setOutputSpeech(speech);
    return SpeechletResponse.newAskResponse(speech, reprompt, card);
}
Also used : SimpleCard(com.amazon.speech.ui.SimpleCard) Reprompt(com.amazon.speech.ui.Reprompt) PlainTextOutputSpeech(com.amazon.speech.ui.PlainTextOutputSpeech)

Example 43 with PlainTextOutputSpeech

use of com.amazon.speech.ui.PlainTextOutputSpeech in project amos-ss17-alexa by c-i-ber.

the class StandingOrderService method smartCreateStandingOrderResponse.

/**
 * Creates a {@code SpeechletResponse} for the standing orders intent.
 *
 * @return SpeechletResponse spoken and visual response for the given intent
 */
private SpeechletResponse smartCreateStandingOrderResponse(Session session) {
    SimpleCard card = new SimpleCard();
    card.setTitle("Daueraufträge");
    LOGGER.info("SmartStandingOrders create called.");
    int standingOrderToModify = (int) session.getAttribute("StandingOrderToModify");
    String newAmount = (String) session.getAttribute("NewAmount");
    StandingOrder oldStandingOrder = AccountAPI.getStandingOrder(ACCOUNT_NUMBER, standingOrderToModify);
    StandingOrder standingOrder = new StandingOrder();
    standingOrder.setAmount(Integer.parseInt(newAmount));
    standingOrder.setDescription("description");
    standingOrder.setDestinationAccount(oldStandingOrder.getDestinationAccount());
    standingOrder.setExecutionRate(oldStandingOrder.getExecutionRate());
    standingOrder.setFirstExecution(oldStandingOrder.getFirstExecution());
    standingOrder.setPayee(oldStandingOrder.getPayee());
    standingOrder.setSourceAccount(oldStandingOrder.getSourceAccount());
    standingOrder.setStatus(oldStandingOrder.getStatus());
    AccountAPI.createStandingOrderForAccount(ACCOUNT_NUMBER, standingOrder);
    // Create the plain text output
    PlainTextOutputSpeech speech = new PlainTextOutputSpeech();
    speech.setText("Der neue Dauerauftrag für " + oldStandingOrder.getPayee().toLowerCase() + " über " + newAmount + " Euro wurde erfolgreich eingerichtet");
    // delete session attributes
    session.removeAttribute("SmartCreateStandingOrderIntent");
    session.removeAttribute("StandingOrderToModify");
    session.removeAttribute("NewAmount");
    // Create reprompt
    Reprompt reprompt = new Reprompt();
    reprompt.setOutputSpeech(speech);
    return SpeechletResponse.newTellResponse(speech, card);
}
Also used : StandingOrder(model.banking.StandingOrder) SimpleCard(com.amazon.speech.ui.SimpleCard) Reprompt(com.amazon.speech.ui.Reprompt) PlainTextOutputSpeech(com.amazon.speech.ui.PlainTextOutputSpeech)

Example 44 with PlainTextOutputSpeech

use of com.amazon.speech.ui.PlainTextOutputSpeech in project amos-ss17-alexa by c-i-ber.

the class StandingOrderService method getNextStandingOrderInfo.

private SpeechletResponse getNextStandingOrderInfo(Session session) {
    int nextEntry = (int) session.getAttribute("NextStandingOrder");
    StringBuilder builder = new StringBuilder();
    if (nextEntry < standingOrders.size()) {
        builder.append(standingOrders.get(nextEntry).getSpeechOutput());
        if (nextEntry == (standingOrders.size() - 1)) {
            builder.append("Das waren alle vorhandenen Dauerauftraege. ");
            PlainTextOutputSpeech speech = new PlainTextOutputSpeech();
            speech.setText(builder.toString());
            return SpeechletResponse.newTellResponse(speech);
        } else {
            return askForFurtherStandingOrderEntry(session, builder, nextEntry + 1);
        }
    } else {
        // Create the plain text output
        PlainTextOutputSpeech speech = new PlainTextOutputSpeech();
        speech.setText("Das waren alle vorhandenen Dauerauftraege. ");
        return SpeechletResponse.newTellResponse(speech);
    }
}
Also used : PlainTextOutputSpeech(com.amazon.speech.ui.PlainTextOutputSpeech)

Aggregations

PlainTextOutputSpeech (com.amazon.speech.ui.PlainTextOutputSpeech)44 Reprompt (com.amazon.speech.ui.Reprompt)22 SimpleCard (com.amazon.speech.ui.SimpleCard)18 Slot (com.amazon.speech.slu.Slot)8 ArrayList (java.util.ArrayList)4 StandingOrder (model.banking.StandingOrder)4 JSONException (com.amazonaws.util.json.JSONException)3 ObjectMapper (com.fasterxml.jackson.databind.ObjectMapper)3 ApiHelper (amosalexa.ApiHelper)2 SpeechletException (com.amazon.speech.speechlet.SpeechletException)2 SsmlOutputSpeech (com.amazon.speech.ui.SsmlOutputSpeech)2 IOException (java.io.IOException)2 List (java.util.List)2 Card (model.banking.Card)2 StandingOrder (model.banking.account.StandingOrder)2 BankingRESTClient (api.BankingRESTClient)1 Intent (com.amazon.speech.slu.Intent)1 AskForPermissionsConsentCard (com.amazon.speech.ui.AskForPermissionsConsentCard)1 JSONObject (com.amazonaws.util.json.JSONObject)1 DateFormat (java.text.DateFormat)1