class NetSuite::Actions::Login

Public Class Methods

call(credentials) click to toggle source

<userId xmlns:platformCore=“urn:core_2013_1.platform.webservices.netsuite.com” internalId=“460362”>

<platformCore:name>REDACTED ORG NAME</platformCore:name>

</userId> <platformCore:wsRoleList xmlns:platformCore=“urn:core_2013_1.platform.webservices.netsuite.com”>

<platformCore:wsRole>
  <platformCore:role internalId="1047">
    <platformCore:name>REDACTED ROLE</platformCore:name>
  </platformCore:role>
  <platformCore:isDefault>false</platformCore:isDefault>
  <platformCore:isInactive>false</platformCore:isInactive>
  <platformCore:isLoggedInRole>true</platformCore:isLoggedInRole>
</platformCore:wsRole>
<platformCore:wsRole>
  <platformCore:role internalId="1047">
    <platformCore:name>REDACTED ROLE</platformCore:name>
  </platformCore:role>
  <platformCore:isDefault>false</platformCore:isDefault>
  <platformCore:isInactive>false</platformCore:isInactive>
  <platformCore:isLoggedInRole>true</platformCore:isLoggedInRole>
</platformCore:wsRole>

</platformCore:wsRoleList>

# File lib/netsuite/actions/login.rb, line 30
def self.call(credentials)

  soap_header = {}
  if !credentials[:application_id].nil? && !credentials[:application_id].empty?
    soap_header = NetSuite::Configuration.soap_header.dup
    soap_header['platformMsgs:ApplicationInfo'] ||= {}
    soap_header['platformMsgs:ApplicationInfo']['platformMsgs:applicationId'] = credentials[:application_id]
  end

  passport = NetSuite::Configuration.auth_header.dup


  passport['platformMsgs:passport'] ||= {}
  passport['platformMsgs:passport']['platformCore:email'] = credentials[:email] || ''
  passport['platformMsgs:passport']['platformCore:password'] = credentials[:password] || ''
  passport['platformMsgs:passport']['platformCore:role'] = credentials[:role] || ''

  if passport['platformMsgs:tokenPassport']
    passport['platformMsgs:passport']['platformCore:account'] ||= passport['platformMsgs:tokenPassport']['platformCore:account']
  end

  passport['platformMsgs:passport']['platformCore:account'] = credentials[:account] if !credentials[:account].nil?

  passport.delete('platformMsgs:tokenPassport')

  begin
    response = NetSuite::Configuration.connection(soap_header: soap_header).call :login, message: passport
  rescue Savon::SOAPFault => e
    error_details = e.to_hash[:fault]

    if error_details[:detail].has_key?(:invalid_credentials_fault)
      return NetSuite::Response.new(
        success: false,
        errors: [ NetSuite::Error.new(
          code: error_details[:detail][:invalid_credentials_fault][:code],
          message: error_details[:faultstring]
        )],
        body: error_details
      )
    else
      raise(e)
    end
  end

  # include more data in body; leave it up to the user to pull the data they are looking for
  NetSuite::Response.new(
    success: response.to_hash[:login_response][:session_response][:status][:@is_success] == 'true',
    body: response.to_hash[:login_response][:session_response]
  )
end