You are currently viewing Login Service in SUSI AI

Login Service in SUSI AI

SUSI.AI has 7 different user roles (bot, anonymous, user, account creator, reviewer, admin and bureaucrat). Users are classified based on these user roles. To distinguish each user’s identity, SUSI Server uses email id as the key. So before using any of the services user needs to login with SUSI. In this blog I discuss how SUSI makes login a smooth experience for the users.

Every app should provide a smooth and user-friendly login experience, as it is the first point of contact between app and user. SUSI Server uses DAO in which accounting object is stored as JSONTray. The Susi server provides the required API endpoints to its web and mobile clients.

Login service across various web, iOS, android and IoT client allows users to login, logout or to check their login status. Login endpoint uses the HttpServlet class which provides methods, such as doGet and doPost, for handling HTTP-specific services.Thus the LoginService class was inherited from AbstractAPIHandler and implement APIhandler interface. In Susi Server the AbsrtactAPI handler extends a HTTPServlet which implements doGet and doPost ,all servlet in SUSI Server extends this class to increase code reusability.

	@Override
	public UserRole getMinimalUserRole() {
		return UserRole.ANONYMOUS;
	}

The AbstractAPIHandler checks the permissions of the user using the user roles of and comparing it with the value minimum base role of each servlet. Thus to specify the user permission for a servlet we need Override the getMinimalBaseUserRole method.
Below given is the end point at which requests are made.

http://api.susi.ai/aaa/login.json

Login servlet handles various types of requests. Requests can be made in following ways with different parameter lists:

  • Login with given user email id, password, type of login = access_token

try {
	valid_seconds = post.get("valid_seconds", defaultAccessTokenExpireTime);
} catch (Throwable e) {
  throw new APIException(400, "Invalid value for 'valid_seconds'");					}
String token = createAccessToken(identity, valid_seconds);

In this type of request an access token is created and stored with some expiry time, by default the expiry time is set to one week. The generated access token is then sent as a response from server with success flags having value true

  • Login with given user email id, password, type of login = session

case "session": // create a browser session				post.getRequest().getSession().setAttribute("identity", identity);

It creates a new browser session for the logged in client based on the session id of the current session associated with it. if there is no session associated with the request an exception is thrown.

  • Login with given user email id, password, type of login = cookie

String loginToken = createRandomString(30);
Cookie loginCookie = new Cookie("login", loginToken);				loginCookie.setMaxAge(defaultCookieTime.intValue());
Authentication cookieAuth = DAO.getAuthentication(cookieCredential);
					cookieAuth.setIdentity(identity)		cookieAuth.setExpireTime(defaultCookieTime);

In this request  it sets a long living cookie, creates random string as token with long age and finally write cookie to database with expiry time as age of the cookie.

  • Login with given user email id, password, type of login = check password

try {
				passwordHash = authentication.getString("passwordHash");
				salt = authentication.getString("salt");
			} catch (Throwable e) {
				Log.getLog().info("Invalid login try for user: " + identity.getName() + " from host: " + post.getClientHost() + " : password or salt missing in database");
				throw new APIException(422, "Invalid credentials");
			}

For this request server checks if the password is valid by comparing it with the hashed password, if the comparison fails an exception is thrown for client to display “Invalid Credentials” Otherwise response is returned for successful login of the user.

This is how Login Service is implemented in SUSI Server.  Try it out, using  web and mobile clients. To add more skills or modify the existing ones visit skills.susi.ai. For more information and complete code take a look at Susi server and Susi_Skill_cms and join gitter chat channel for discussions.

Resources

Leave a Reply

This site uses Akismet to reduce spam. Learn how your comment data is processed.