Class: Puppet::NetDev::CE::ChannelApi

Inherits:
ApiBase
  • Object
show all
Defined in:
lib/puppet/provider/ce/api/port_channel/channel_api.rb

Instance Method Summary collapse

Constructor Details

#initializeChannelApi

Returns a new instance of ChannelApi.



22
23
24
# File 'lib/puppet/provider/ce/api/port_channel/channel_api.rb', line 22

def initialize
  super()
end

Instance Method Details

#create_channel(resource) ⇒ Object



129
130
131
132
133
134
135
# File 'lib/puppet/provider/ce/api/port_channel/channel_api.rb', line 129

def create_channel(resource)
session = Puppet::NetDev::CE::Device.session

create_channel_xml = '<rpc><edit-config><target><running/></target><default-operation>merge</default-operation><error-option>rollback-on-error</error-option><config><ifm xmlns="http://www.huawei.com/netconf/vrp" content-version="1.0" format-version="1.0"><interfaces><interface operation="create"><ifName>' + (resource[:name]).to_s + '</ifName></interface></interfaces></ifm></config></edit-config></rpc>'

session.rpc.do_config(create_channel_xml)
end

#delete_channel(resource) ⇒ Object



137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
# File 'lib/puppet/provider/ce/api/port_channel/channel_api.rb', line 137

def delete_channel(resource)
          session = Puppet::NetDev::CE::Device.session

          get_channel_port_xml = '<rpc><get><filter type="subtree"><ifmtrunk xmlns="http://www.huawei.com/netconf/vrp" content-version="1.0" format-version="1.0"><TrunkIfs><TrunkIf><ifName>' + (resource[:name]).to_s + '</ifName><TrunkMemberIfs><TrunkMemberIf><memberIfName/></TrunkMemberIf></TrunkMemberIfs></TrunkIf></TrunkIfs></ifmtrunk></filter></get></rpc>'

          channel_all = session.rpc.do_config(get_channel_port_xml)

          if channel_all.element_children.count != 0

channel_element = channel_all.first_element_child.first_element_child
channel_doc = Nokogiri::XML(channel_element.element_children.to_s)

channel_interface = []
i = 0
channel_doc.xpath('/TrunkIf/TrunkMemberIfs/TrunkMemberIf/memberIfName').children.each do |memberifname|
  channel_interface[i] = memberifname.text
  i += 1
end
count = channel_interface.count

delete_channel_port_xml = '<rpc><edit-config><target><running/></target><default-operation>merge</default-operation><error-option>rollback-on-error</error-option><config><ifmtrunk xmlns="http://www.huawei.com/netconf/vrp" content-version="1.0" format-version="1.0"><TrunkIfs><TrunkIf operation="merge"><ifName>' + (resource[:name]).to_s + '</ifName><TrunkMemberIfs>'

for i in 0..count - 1
  delete_channel_port_xml += '<TrunkMemberIf operation="delete"><memberIfName>' + (channel_interface[i]).to_s + '</memberIfName></TrunkMemberIf>'
end

delete_channel_port_xml += '</TrunkMemberIfs></TrunkIf></TrunkIfs></ifmtrunk></config></edit-config></rpc>'

session.rpc.do_config(delete_channel_port_xml)
          end

          delete_channel_xml = '<rpc><edit-config><target><running/></target><default-operation>merge</default-operation><error-option>rollback-on-error</error-option><config><ifm xmlns="http://www.huawei.com/netconf/vrp" content-version="1.0" format-version="1.0"><interfaces><interface operation="delete"><ifName>' + (resource[:name]).to_s + '</ifName></interface></interfaces></ifm></config></edit-config></rpc>'

          session.rpc.do_config(delete_channel_xml)
end

#get_channelObject



26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
# File 'lib/puppet/provider/ce/api/port_channel/channel_api.rb', line 26

def get_channel
channel_array = []
session = Puppet::NetDev::CE::Device.session
get_channel_xml = '<rpc><get><filter type="subtree"><ifmtrunk xmlns="http://www.huawei.com/netconf/vrp" content-version="1.0" format-version="1.0"><TrunkIfs><TrunkIf><ifName></ifName><workMode/><TrunkMemberIfs><TrunkMemberIf><memberIfName/><memberIfState/></TrunkMemberIf></TrunkMemberIfs></TrunkIf></TrunkIfs></ifmtrunk></filter></get></rpc>'

channel_all = session.rpc.do_config(get_channel_xml)
if channel_all.element_children.count != 0
  channel_elements = channel_all.first_element_child.first_element_child
  channel_elements.element_children.each do |channel_elem|
    channel_doc = Nokogiri::XML(channel_elem.to_s)
    channel_name = channel_doc.xpath('/TrunkIf/ifName').text
    # channel_id = channel_doc.xpath("/TrunkIf/lagID").text
    channel_mode = channel_doc.xpath('/TrunkIf/workMode').text

    channel_interface = []
    i = 0
    channel_doc.xpath('/TrunkIf/TrunkMemberIfs/TrunkMemberIf/memberIfName').children.each do |memberifname|
      channel_interface[i] = memberifname.text
      i += 1
    end

    property_hash = { ensure: :present }
    property_hash[:name] = channel_name

    property_hash[:id] = channel_name[9..-1]

    if channel_mode == 'Manual'
      property_hash[:mode] = :disabled
    elsif channel_mode == 'Static'
      property_hash[:mode] = :passive
    elsif channel_mode == 'Dynamic'
      property_hash[:mode] = :active
    end

    property_hash[:interfaces] = channel_interface if channel_interface

    channel_array << property_hash
  end
         end
channel_array
end

#set_channel(resource) ⇒ Object



68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
# File 'lib/puppet/provider/ce/api/port_channel/channel_api.rb', line 68

def set_channel(resource)
    session = Puppet::NetDev::CE::Device.session

    if resource[:mode] == :disabled
      channel_mode = 'Manual'
    elsif resource[:mode] == :passive
      channel_mode = 'Static'
    elsif resource[:mode] == :active
      channel_mode = 'Dynamic'
    end

    set_channel_mode_xml = '<rpc><edit-config><target><running/></target><default-operation>merge</default-operation><error-option>rollback-on-error</error-option><config><ifmtrunk xmlns="http://www.huawei.com/netconf/vrp" content-version="1.0" format-version="1.0"><TrunkIfs><TrunkIf operation="merge"><ifName>' + (resource[:name]).to_s + '</ifName><workMode>' + channel_mode.to_s + '</workMode></TrunkIf></TrunkIfs></ifmtrunk></config></edit-config></rpc>'

    session.rpc.do_config(set_channel_mode_xml)

    get_channel_port_xml = '<rpc><get><filter type="subtree"><ifmtrunk xmlns="http://www.huawei.com/netconf/vrp" content-version="1.0" format-version="1.0"><TrunkIfs><TrunkIf><ifName>' + (resource[:name]).to_s + '</ifName><TrunkMemberIfs><TrunkMemberIf><memberIfName/></TrunkMemberIf></TrunkMemberIfs></TrunkIf></TrunkIfs></ifmtrunk></filter></get></rpc>'

    channel_all = session.rpc.do_config(get_channel_port_xml)

    if channel_all.element_children.count != 0

      channel_element = channel_all.first_element_child.first_element_child
      channel_doc = Nokogiri::XML(channel_element.element_children.to_s)

      channel_interface = []
      i = 0
      channel_doc.xpath('/TrunkIf/TrunkMemberIfs/TrunkMemberIf/memberIfName').children.each do |memberifname|
        channel_interface[i] = memberifname.text
        i += 1
      end
      count = channel_interface.count

      delete_channel_port_xml = '<rpc><edit-config><target><running/></target><default-operation>merge</default-operation><error-option>rollback-on-error</error-option><config><ifmtrunk xmlns="http://www.huawei.com/netconf/vrp" content-version="1.0" format-version="1.0"><TrunkIfs><TrunkIf operation="merge"><ifName>' + (resource[:name]).to_s + '</ifName><TrunkMemberIfs>'

      for i in 0..count - 1
        delete_channel_port_xml += '<TrunkMemberIf operation="delete"><memberIfName>' + (channel_interface[i]).to_s + '</memberIfName></TrunkMemberIf>'
      end

      delete_channel_port_xml += '</TrunkMemberIfs></TrunkIf></TrunkIfs></ifmtrunk></config></edit-config></rpc>'

      session.rpc.do_config(delete_channel_port_xml)
    end

    count = resource[:interfaces].count

    if count > 0 && !resource[:interfaces][0].empty?
      add_channel_port_xml = '<rpc><edit-config><target><running/></target><default-operation>merge</default-operation><error-option>rollback-on-error</error-option><config><ifmtrunk xmlns="http://www.huawei.com/netconf/vrp" content-version="1.0" format-version="1.0"><TrunkIfs><TrunkIf operation="merge"><ifName>' + (resource[:name]).to_s + '</ifName><TrunkMemberIfs>'

      if resource[:interfaces]
        for i in 0..count - 1
          add_channel_port_xml += '<TrunkMemberIf operation="create"><memberIfName>' + (resource[:interfaces][i]).to_s + '</memberIfName></TrunkMemberIf>'
       end
      end

      add_channel_port_xml += '</TrunkMemberIfs></TrunkIf></TrunkIfs></ifmtrunk></config></edit-config></rpc>'

      session.rpc.do_config(add_channel_port_xml)

     end
end