Class: Zm::Client::ResourceJsnsBuilder

Inherits:
Object
  • Object
show all
Defined in:
lib/zm/client/resource/resource_jsns_builder.rb

Overview

class for resource jsns builder

Instance Method Summary collapse

Constructor Details

#initialize(item) ⇒ ResourceJsnsBuilder

Returns a new instance of ResourceJsnsBuilder.



7
8
9
# File 'lib/zm/client/resource/resource_jsns_builder.rb', line 7

def initialize(item)
  @item = item
end

Instance Method Details

#attrs_only_set_hObject



71
72
73
74
75
76
77
78
79
80
81
82
83
# File 'lib/zm/client/resource/resource_jsns_builder.rb', line 71

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

  arr.to_h
end

#to_createObject



11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
# File 'lib/zm/client/resource/resource_jsns_builder.rb', line 11

def to_create
  req = {
    name: @item.name,
    password: @item.password
  }
  req.compact!

  soap_request = SoapElement.admin(SoapAdminConstants::CREATE_CALENDAR_RESOURCE_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



66
67
68
69
# File 'lib/zm/client/resource/resource_jsns_builder.rb', line 66

def to_delete
  SoapElement.admin(SoapAdminConstants::DELETE_CALENDAR_RESOURCE_REQUEST)
             .add_attribute(SoapConstants::ID, @item.id)
end

#to_patch(hash) ⇒ Object



49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
# File 'lib/zm/client/resource/resource_jsns_builder.rb', line 49

def to_patch(hash)
  soap_request = SoapElement.admin(SoapAdminConstants::MODIFY_CALENDAR_RESOURCE_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



33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
# File 'lib/zm/client/resource/resource_jsns_builder.rb', line 33

def to_update
  soap_request = SoapElement.admin(SoapAdminConstants::MODIFY_CALENDAR_RESOURCE_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