Module: Login

Included in:
TessituraRest
Defined in:
lib/tessitura_rest/web/login.rb

Instance Method Summary collapse

Instance Method Details

#login_as_guest(email, key, options = {}) ⇒ Object



50
51
52
53
54
55
56
57
58
59
60
61
62
# File 'lib/tessitura_rest/web/login.rb', line 50

def (email, key, options = {})
  # promotion will be added as a parameter in v 16.0
  parameters =
    {
      'ElectronicAddressTypeId': 1,
      'EmailAddress': email,
      'LoginTypeId': 1,
    }
  options.merge!(basic_auth: @auth, headers: @headers)
  options.merge!(body: parameters)
  response = self.class.post(base_api_endpoint("Web/Session/#{key}/LoginAsGuest"), options)
  JSON.parse(response.body)
end

#login_using_email(email, password, login_type_id, promotion, session_key, options = {}) ⇒ Object



8
9
10
11
12
13
14
15
16
17
18
19
20
21
# File 'lib/tessitura_rest/web/login.rb', line 8

def (email, password, , promotion, session_key, options = {})
  parameters =
    {
      'UserName': email,
      'Password': password,
      'LoginTypeId': ,
      'PromotionCode': promotion,
      'PersistSessionOnFailure': true,
    }
  options.merge!(basic_auth: @auth, headers: @headers)
  options.merge!(:body => parameters)
  post = self.class.post(base_api_endpoint("Web/Session/#{session_key}/Login"), options)
  post['IsLoggedIn']
end

#login_using_external(email, login_type_id, promotion, session_key, options = {}) ⇒ Object



23
24
25
26
27
28
29
30
31
32
33
34
# File 'lib/tessitura_rest/web/login.rb', line 23

def (email, , promotion, session_key, options = {})
  parameters =
    {
      'UserName': email,
      'LoginTypeId': ,
      'PromotionCode': promotion,
    }
  options.merge!(basic_auth: @auth, headers: @headers)
  options.merge!(:body => parameters.to_json, :headers => { 'Content-Type' => 'application/json' })
  post = self.class.post(base_api_endpoint("Web/Session/#{session_key}/Login/External"), options)
  post.success?
end

#login_with_token(email, login_type_id, token, promotion, session_key, options = {}) ⇒ Object



36
37
38
39
40
41
42
43
44
45
46
47
48
# File 'lib/tessitura_rest/web/login.rb', line 36

def (email, , token, promotion, session_key, options = {})
  parameters =
    {
      'EmailAddress': email,
      'ForgotLoginToken': token,
      'LoginTypeId': ,
      'PromotionCode': promotion,
    }
  options.merge!(basic_auth: @auth, headers: @headers)
  options.merge!(:body => parameters.to_json, :headers => { 'Content-Type' => 'application/json' })
  post = self.class.post(base_api_endpoint("Web/Session/#{session_key}/Login/Token"), options)
  post['IsLoggedIn']
end

#logout(session_key, options = {}) ⇒ Object



64
65
66
67
68
# File 'lib/tessitura_rest/web/login.rb', line 64

def logout(session_key, options = {})
  options.merge!(basic_auth: @auth, headers: @headers)
  options.merge!(:body => {}, :headers => { 'Content-Type' => 'application/json' })
  self.class.post(base_api_endpoint("/Web/Session/#{session_key}/Logout"), options)
end

#with_user(_ip_address, _business_unit_id, options = {}) ⇒ Object



2
3
4
5
6
# File 'lib/tessitura_rest/web/login.rb', line 2

def with_user(_ip_address, _business_unit_id, options = {})
  options.merge!(basic_auth: @auth, headers: @headers)
  response = self.class.get(base_api_endpoint('Web/Session/'), options)
  JSON.parse(response.body)
end