openIDConnect

OpenIDConnect client for UnityBase

 var oID = require('openIDConnect'),
 oIdEndPoint = oID.registerEndpoint('openIDConnect');
 oIdEndPoint.registerProvider('Google',{
      authUrl: 'https://accounts.google.com/o/oauth2/auth',
     tokenUrl: 'https://accounts.google.com/o/oauth2/token',
      userInfoUrl: 'https://www.googleapis.com/oauth2/v1/userinfo',
      userInfoHTTPMethod: 'GET',
      scope: 'openid',
      nonce: '123',
      response_type: 'code',
      client_id: '350085411136-lpj0qvr87ce0r0ae0a3imcm25joj2t2o.apps.googleusercontent.com',
      client_secret: 'dF4qmUxhHoBAj-E1R8YZUCqA',
      getOnFinishAction: function (response) {
         return 'opener.UB.view.LoginWindow.onFinishOpenIDAuth(' + JSON.stringify(response) + '); close();'
      },
      getUserID: function(userInfo) {
          var inst = UB.Repository('uba_user').attrs(['ID'])
              .where('[name]', '=', userInfo.id).select();
          return inst.eof ? null : inst.get('ID');
      }
 });

Methods

openIDConnect(req, resp) inner

If called as host:port[/app]/endpoint - return a list of registered openIDConnect providers, If called as host:port[/app]/endpoint/provider without parameters - redirect to provider authUrl If called as host:port[/app]/endpoint/provider with parameters code and state - call doProviderAuthHandshake method
Arguments:
  1. req (THTTPRequest)
  2. resp (THTTPResponse)

getAuthCustomHeadersString(customHeaders)string inner

Arguments:
  1. customHeaders (Object)

notifyProviderError(resp, provider) inner

Arguments:
  1. resp (THTTPResponse)
  2. provider