Git Product home page Git Product logo

alexa-force's Introduction

Salesforce Alexa Skills Kit

Author: @enreeco (http://enree.co)

Repository: https://github.com/enreeco/alexa-force

This is an Apex implementation of the Alexa Skills Kit request/response paradigm.

Deploy on your Salesforce ORG

Click the following button to automatically deploy the Salesforce Alexa Skills Kit on your Org.

Deploy to Salesforce

Setup actions

To enable the functionalities of the provided AlexaRestTest skill implementation you need:

  • Create a Site / Community to expose a custom domain URL
  • Expose the AlexaRestTest class on the public profile of the Site
  • Create a Connected App for the profiles you want to access the service
  • Create an Alexa Skill configuration on the Amazon Developer Site
  • The Redirect URL of your connected account configuration is [community-url]/AlexaOAuthStarter

If you don't need account linking, the connected app steps are not necessary (you just need a public endpoint for your REST services).

Example Code changes

The example classes needs some changes to be correctly executed on your Org.

AlexaOAuthStarterController

//Class used to handle Amazon Echo linked accounts, controller of the AlexaOAuthStarter Visualforce page
//Executes a redirect appending the mandatory "redirect_uri" parameter that the Alexa's Skill configuration
//cannot handle at the moment.
//ATTENTION: this class must be customized based on your Org's configuration
public class AlexaOAuthStarterController {

    //Load action executed by the visualforce page called by Alexa's linked account attempt
    //ATTENTION: change the "communityName" and "alexaOauthCallbackURL" variables with the 
    //correct values
    public PageReference onLoad(){
        //change this with your current community folder name (or leave blank string)
        String communityFolder = '/alexaforce';
        //redirect uri configured in the Alexa Skill configuration
        String alexaOauthCallbackURL = 
            'https://pitangui.amazon.com/spa/skill/account-linking-status.html?vendorId=XXXXXXXXX';
        String communityURL = URL.getSalesforceBaseUrl().toExternalForm()+communityFolder;
        PageReference page = new PageReference(communityURL+'/services/oauth2/authorize');
        for(String k : ApexPages.currentPage().getParameters().keyset()){
            page.getParameters().put(k, ApexPages.currentPage().getParameters().get(k));
        }
        //appends the "redirect_uri" that amazon's configuration does not send
        //this class should be configured to change depending on the context (1 visualorce page per skill?)
        page.getParameters().put('redirect_uri',alexaOauthCallbackURL);
        return page;
    }
}

Change the communityFolder variable value with the name of the folder of your Site/Community (leave blank string if not set).

AlexaRestTest

@RestResource(urlMapping='/AlexaRestTest/*')
global class AlexaRestTest {
	@HttpGet
    global static void get(){
        AlexaSkillRESTApp.handleGet(createAlexaSkill());
    }
	@HttpPost
    global static void post(){
        AlexaSkillRESTApp.handlePost(createAlexaSkill());
    }
    
    //Creates a new Skill
    private static AlexaSkill createAlexaSkill(){
        AlexaSkill skill = new AlexaSkill();
        skill.setApplicationId('amzn1.echo-sdk-ams.app.APP_ID');
        skill.addIntent(new AlexaUserInfoIntent());
        skill.addIntent(new AlexaForceHelpIntent());
        skill.addIntent(new AlexaForceStopIntent());
        skill.addOnLaunchIntent(new AlexaForceHelpIntent());
        return skill;
    }

}

This is the skill's webservice pubblicly exposed by your Site/Community: change the setApplicationId() with the value of your own application ID (from Alexa skill configuration page, first step).

AlexaSkillRESTApp

public class AlexaSkillRESTApp {
    
    //Enable debug
    public static BOOLEAN ENABLE_DEBUG{
        get{
            //to be replace with a CS / Custom Metadata
            return true;
        }
    }

    //. . .
}

You can disable the debugging feature that stores in the RestLog__c Sobject the request/response couple for every request (makes debugging easier).

Library usage

Create an Intent

Extend the AlexaIntent class to handle your intent:

public class MyEchoIntent extends AlexaIntent{
	public AlexaForceHelpIntent(){
        super('EchoIntent');
		List<AlexaIntent.Slot> slots = new List<AlexaIntent.Slot>();
		slots.add(new AlexaIntent.Slot('name','AMAZON.LITERAL'));
        List<String> utterances = new List<String>();
        utterances.add('My name is {name}'); 
        this.setSlots(slots);
        this.setUtterances(utterances);
    }
    
    public override ASkillResponse execute(ASkillRequest req){
    	Stirng slotName = req.getSlot('name');
        String responseText = 'Your name is '+slotName;
        return this.say(responseText, null, null, null, true);
    }
}

Use the intent's constructor to define the intent's name, schema and utterances (this will be output when describing the skill).

The say(String text, String cardTitle, String cardContent, String reprompt, Boolean shouldEndSession) method allow to create a valid response on the fly.

Create a Skill

Create a new instance of the AlexaSkill class:

AlexaSkill skill = new AlexaSkill();
skill.setApplicationId('amzn1.echo-sdk-ams.app.APP_ID');
skill.addIntent(new MyEchoIntent());
skill.addDefaultIntent(new MyEchoIntent());
skill.addOnLaunchIntent(new MyEchoIntent());

A skill can have:

  • As manu intents as you want (addIntent())
  • A default intent (addDefaultIntent(), this is used as a precaution to handle unimplemented intents)
  • An on launch intent (addOnLaunchIntent(), this is used when you activate a skill without saying any utterance; e.g. Alexa ask myskill)

Create the REST service

Use the AlexaSkillRESTApp to handle most of the service logic:

@RestResource(urlMapping='/AlexaRestTest/*')
global class AlexaRestTest {
	@HttpGet
    global static void get(){
        AlexaSkillRESTApp.handleGet(createAlexaSkill());
    }
	@HttpPost
    global static void post(){
        AlexaSkillRESTApp.handlePost(createAlexaSkill());
    }
    
    //Creates a new Skill
    private static AlexaSkill createAlexaSkill(){
        AlexaSkill skill = new AlexaSkill();
		skill.setApplicationId('amzn1.echo-sdk-ams.app.APP_ID');
		skill.addIntent(new MyEchoIntent());
		skill.addDefaultIntent(new MyEchoIntent());
		skill.addOnLaunchIntent(new MyEchoIntent());
		return skill;
        return skill;
    }

}

The GET method will give you the skill's schema and utterances list to help you configure the skill on Amazon's site.

E.g. GET https://[community-domain]/services/apexrest/AlexaRestTest?schema=utterances

MyEchoIntent my name is {name}

E.g. GET https://[community-domain]/services/apexrest/AlexaRestTest

{
  "intents" : [ {
    "slots" : [ {
      "type" : "AMAZON.LITERAL",
      "name" : "name"
    } ],
    "intent" : "MyEchoIntent"
  } ]
}

The POST method will decide which intent execute.

Examples

Refer to the AlexaRestTest class for a complete REST webservice example.

To complete the account linking configuration use the AlexaOAuthStarter page as main login page.

Test classes

No test class available in this version of the library.

License

The MIT License (MIT)

Copyright (c) 2015 Enrico Murru

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

alexa-force's People

Contributors

amitgupta23 avatar enreeco avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.