Google Actions Java SDK


Source link: https://github.com/frogermcs/Google-Actions-Java-SDK

Unofficial Google Actions Java SDK

Official Google Actions SDK is written in Node.js. But in many situations voice interfaces like Google Home or Google Assistant will extend or replace mobile apps. If you are old fashioned Android engineer and the most of your code is already written in Java, why not reuse it and build voice extension to app on your own? And this is the main reason to build Google Actions Java SDK - enabling as much developers as possible to build their brilliant ideas for Google Assistant and Home.

Currently this is just working proof of concept of Google Actions Java SDK. It means that there is no documentation, fixed interface, (not much) unit tests and many, many others.

Google Actions Java SDK is build based on official Node.js library, but it's not a mirror copy of it. The goal is to make it fully compatible with Conversational Protocol of Assistant Platform.

About project

Project is split into two modules:

Assistant Actions Java SDK

This code is responsible for handling requests and responses compatible with Conversational Protocol.

Assistant Actions Java Sample

Example projects showing how Assistant Actions SDK can be used in AppEngine Java project. For now Servlet is able to greet user and repeat utterance.

How to work with limited SDK

Even if it's very early stage project and there is not much utils in it, entire communication with Google Actions is based on proper responses. So even if you find any limitations you can always build RootResponse object by hand which in a moment of writing this is fully compatible with Conversational Protocol. Same with RootRequest - object should reflect all data which Google Actions send to us.

Download

Library can be downloaded from jCenter:

repositories {

  jcenter() 
}
  dependencies {

  compile 'com.frogermcs.gactions:gactions:0.1.1' 
}

Code

Here is example code showing how to use Google Actions Java SDK

AssistantActions assistantActions =

new AssistantActions.Builder(new AppEngineResponseHandler(response))

  .addRequestHandlerFactory(StandardIntents.MAIN, new MainRequestHandlerFactory())

  .addRequestHandlerFactory(StandardIntents.TEXT, new TextRequestHandlerFactory())

  .addRequestHandlerFactory(StandardIntents.PERMISSION, new MyPermissionRequestHandlerFactory())

  .build();
  assistantActions.handleRequest(request);

To build AssistantActions object, we need to pass implementation of ResponseHandler interface. This class will be responsible for passing json response to Google Actions. Then we need to build intents mapping to delegate request to proper RequestHandlers. RequestHandlers are responsible for preparing response for Google Actions.
At the end we need to pass request coming from Google Actions to our AssistantActions object.

Example implementation

Here are the most important classes from example AppEngine Java implementation

ActionsServlet - entry class in our endpoint.

public class ActionsServlet extends HttpServlet {

 @Override
  protected void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {

AssistantActions assistantActions =

  new AssistantActions.Builder(new AppEngineResponseHandler(response))

 .addRequestHandlerFactory(StandardIntents.MAIN, new MainRequestHandlerFactory())

 .addRequestHandlerFactory(StandardIntents.TEXT, new TextRequestHandlerFactory())

 .addRequestHandlerFactory(StandardIntents.PERMISSION, new MyPermissionRequestHandlerFactory())

 .build();

 assistantActions.handleRequest(parseActionRequest(request));

  
}

//... 
}

AppEngineResponseHandler - implementation or ResponseHandler. Method onResponse(RootResponse rootResponse) passes back prepared response to HttpServletResponse.

public class AppEngineResponseHandler implements ResponseHandler {

  private final HttpServletResponse httpServletResponse;

@Override
  public void onPrepareContentType(String contentType) {

httpServletResponse.setContentType(contentType);

  
}

@Override
  public void onPrepareResponseHeaders(Map<String, String> headers) {

for (String headerName : headers.keySet()) {

 httpServletResponse.addHeader(headerName, headers.get(headerName));

}

  
}

@Override
  public void onResponse(RootResponse rootResponse) {

gson.toJson(rootResponse, httpServletResponse.getWriter());

  
}
 
}
 

MainRequestHandler - In response to initial Intent assistant.intent.action.MAIN we are asking user for NAME permission.

public class MainRequestHandler extends RequestHandler {

  MainRequestHandler(RootRequest rootRequest) {

super(rootRequest);

  
}

@Override
  public RootResponse getResponse() {

return ResponseBuilder.askForPermissionResponse("See how permissions work",

  SupportedPermissions.NAME);

  
}
 
}

MyPermissionRequestHandler - whether permission is granted or not, we asking user to tell us something so we'll be able to repeat this response.

public class MyPermissionRequestHandler extends PermissionRequestHandler {

MyPermissionRequestHandler(RootRequest rootRequest) {

super(rootRequest);

  
}

@Override
  public RootResponse getResponse() {

UserProfile userProfile = getUserProfile();

if (isPermissionGranted() && userProfile != null) {

 return ResponseBuilder.askResponse("Hey " + userProfile.given_name + ". It's nice to meet you!" +

"Now tell me something so I could repeat it.");

 
}
 else {

 return ResponseBuilder.askResponse("Hey. I don't know your name, but it's ok. :)" +

"Now tell me something so I could repeat it.");

}

  
}
 
}

TextRequestHandler - finally we're replying what user's just said.

public class TextRequestHandler extends RequestHandler {

TextRequestHandler(RootRequest rootRequest) {

super(rootRequest);

  
}

@Override
  public RootResponse getResponse() {

return ResponseBuilder.tellResponse("You've just said: " + getRootRequest().inputs.get(0).raw_inputs.get(0).query);

  
}
 
}

How to deploy this project to our Google Cloud

This description isn't very detailed. It's pretty similar to description in official documentation, but instead of Node.js we are using Java environment on AppEngine.

Google Cloud

  • Follow steps from here: https://cloud.google.com/sdk/docs/. At the end you should have created Project, know your application id, and be able to use gcloud on your computer.

Configuration

Files to edit:

  • google-actions-java-sample/src/main/webapp/WEB-INF/appengine-web.xml -> Edit application_id (your project id from https://console.cloud.google.com/, if not edited it's fancy name like "mythic-origin-36343").
  • google-actions-java-sample/action.json -> Edit application_id (setup endpoint where Google Actions will be able to reach your servlet)

If you have Google Cloud SDK already installed on you machine, and you are ready to deploy, use this gradle task:

$ ./gradlew google-actions-java-sample:appengineDeploy

Testing

Just visit Web Simulator and start testing!

TODO

This is very general list of things planned to do to make this project as useful as possible. Your commitment is highly appreciated!

  • Better project structure, code cleanup and style rules
  • Add ssml support to responses
  • API.AI support (based on official SDK)
  • Keep conversation context
  • Unit tests (at least 70% coverage)
  • Build and distribute as a java library

License

See LICENSE.md.

Resources

Android DialogFragment that enables Dialog to be swiped away to dismiss.

RX based bus with lifecycle based queuing support.

An Android library that checks for your application's updates on Google Play Store. This library uses Android Publisher API.

This plugin integrates Google Play Developer API (Publishing API) with the Gradle build system. With this plugin, you can upload apks and listings directly via command line, IntelliJ, Android Studio and other IDEs.

RxJava extension for Android to access camera and gallery to take images.

This library allows you to create a shadow effect for your layout based on your child.

Topics


2D Engines   3D Engines   9-Patch   Action Bars   Activities   ADB   Advertisements   Analytics   Animations   ANR   AOP   API   APK   APT   Architecture   Audio   Autocomplete   Background Processing   Backward Compatibility   Badges   Bar Codes   Benchmarking   Bitmaps   Bluetooth   Blur Effects   Bread Crumbs   BRMS   Browser Extensions   Build Systems   Bundles   Buttons   Caching   Camera   Canvas   Cards   Carousels   Changelog   Checkboxes   Cloud Storages   Color Analysis   Color Pickers   Colors   Comet/Push   Compass Sensors   Conferences   Content Providers   Continuous Integration   Crash Reports   Credit Cards   Credits   CSV   Curl/Flip   Data Binding   Data Generators   Data Structures   Database   Database Browsers   Date &   Debugging   Decompilers   Deep Links   Dependency Injections   Design   Design Patterns   Dex   Dialogs   Distributed Computing   Distribution Platforms   Download Managers   Drawables   Emoji   Emulators   EPUB   Equalizers &   Event Buses   Exception Handling   Face Recognition   Feedback &   File System   File/Directory   Fingerprint   Floating Action   Fonts   Forms   Fragments   FRP   FSM   Functional Programming   Gamepads   Games   Geocaching   Gestures   GIF   Glow Pad   Gradle Plugins   Graphics   Grid Views   Highlighting   HTML   HTTP Mocking   Icons   IDE   IDE Plugins   Image Croppers   Image Loaders   Image Pickers   Image Processing   Image Views   Instrumentation   Intents   Job Schedulers   JSON   Keyboard   Kotlin   Layouts   Library Demos   List View   List Views   Localization   Location   Lock Patterns   Logcat   Logging   Mails   Maps   Markdown   Mathematics   Maven Plugins   MBaaS   Media   Menus   Messaging   MIME   Mobile Web   Native Image   Navigation   NDK   Networking   NFC   NoSQL   Number Pickers   OAuth   Object Mocking   OCR Engines   OpenGL   ORM   Other Pickers   Parallax List   Parcelables   Particle Systems   Password Inputs   PDF   Permissions   Physics Engines   Platforms   Plugin Frameworks   Preferences   Progress Indicators   ProGuard   Properties   Protocol Buffer   Pull To   Purchases   Push/Pull   QR Codes   Quick Return   Radio Buttons   Range Bars   Ratings   Recycler Views   Resources   REST   Ripple Effects   RSS   Screenshots   Scripting   Scroll Views   SDK   Search Inputs   Security   Sensors   Services   Showcase Views   Signatures   Sliding Panels   Snackbars   SOAP   Social Networks   Spannable   Spinners   Splash Screens   SSH   Static Analysis   Status Bars   Styling   SVG   System   Tags   Task Managers   TDD &   Template Engines   Testing   Testing Tools   Text Formatting   Text Views   Text Watchers   Text-to   Toasts   Toolkits For   Tools   Tooltips   Trainings   TV   Twitter   Updaters   USB   User Stories   Utils   Validation   Video   View Adapters   View Pagers   Views   Watch Face   Wearable Data   Wearables   Weather   Web Tools   Web Views   WebRTC   WebSockets   Wheel Widgets   Wi-Fi   Widgets   Windows   Wizards   XML   XMPP   YAML   ZIP Codes