Class: Zm::Client::AccountJsnsBuilder

Inherits:
Object
  • Object
show all
Defined in:
lib/zm/client/account/account_jsns_builder.rb

Overview

class for account jsns builder

Instance Method Summary collapse

Constructor Details

#initialize(item) ⇒ AccountJsnsBuilder

Returns a new instance of AccountJsnsBuilder.



7
8
9
# File 'lib/zm/client/account/account_jsns_builder.rb', line 7

def initialize(item)
  @item = item
end

Instance Method Details

#attrs_only_set_hObject



62
63
64
65
66
67
68
69
70
71
72
73
74
# File 'lib/zm/client/account/account_jsns_builder.rb', line 62

def attrs_only_set_h
  selected_attrs = @item.attrs_write.map { |a| Utils.arrow_name_sym(a) }
  attrs_only_set = @item.instance_variables & selected_attrs

  arr = attrs_only_set.map do |name|
    n = name.to_s[1..]
    values = @item.instance_variable_get(name)
    values = [values] unless values.is_a?(Array)
    [n, values]
  end

  Hash[arr]
end

#to_createObject



11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
# File 'lib/zm/client/account/account_jsns_builder.rb', line 11

def to_create
  req = {
    name: @item.name,
    password: @item.password
  }.reject { |_, v| v.nil? }

  soap_request = SoapElement.admin(SoapAdminConstants::CREATE_ACCOUNT_REQUEST).add_attributes(req)

  attrs_only_set_h.each do |key, values|
    values.each do |value|
      node_attr = SoapElement.create(SoapConstants::A).add_attribute(SoapConstants::N, key).add_content(value)
      soap_request.add_node(node_attr)
    end
  end

  soap_request
end

#to_deleteObject



58
59
60
# File 'lib/zm/client/account/account_jsns_builder.rb', line 58

def to_delete
  SoapElement.admin(SoapAdminConstants::DELETE_ACCOUNT_REQUEST).add_attribute('id', @item.id)
end

#to_patch(hash) ⇒ Object



43
44
45
46
47
48
49
50
51
52
53
54
55
56
# File 'lib/zm/client/account/account_jsns_builder.rb', line 43

def to_patch(hash)
  soap_request = SoapElement.admin(SoapAdminConstants::MODIFY_ACCOUNT_REQUEST).add_attribute(SoapConstants::ID,
                                                                                             @item.id)

  hash.each do |key, values|
    values = [values] unless values.is_a?(Array)
    values.each do |value|
      node_attr = SoapElement.create(SoapConstants::A).add_attribute(SoapConstants::N, key).add_content(value)
      soap_request.add_node(node_attr)
    end
  end

  soap_request
end

#to_updateObject



29
30
31
32
33
34
35
36
37
38
39
40
41
# File 'lib/zm/client/account/account_jsns_builder.rb', line 29

def to_update
  soap_request = SoapElement.admin(SoapAdminConstants::MODIFY_ACCOUNT_REQUEST).add_attribute(SoapConstants::ID,
                                                                                             @item.id)

  attrs_only_set_h.each do |key, values|
    values.each do |value|
      node_attr = SoapElement.create(SoapConstants::A).add_attribute(SoapConstants::N, key).add_content(value)
      soap_request.add_node(node_attr)
    end
  end

  soap_request
end