opendaylight 0.1.3 → 0.1.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/lib/opendaylight.rb +70 -70
- data/lib/opendaylight/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 14e0b3d76e3c585cf331d04943bbbb08f09bcdf8
|
4
|
+
data.tar.gz: 57c1cca1a743f733e7dc90b9809c80c0acc3a44b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 47ff984ccb589125e575a77b0bbc8bf6581fcef146a1cf0020251e6e899a975b2e8c677cd14b157478f74fd6be7648a9ab7ec4dc4b3181e78ac69d5ac29cbd1d
|
7
|
+
data.tar.gz: 25cc2ee49647f940c81fae52d651e2a356e1069d1dd2c9692981ed68864f87f42e58fb5be3c0cc746c30450030e0c5669801669500ae3332d55f6998452d800c
|
data/lib/opendaylight.rb
CHANGED
@@ -4,101 +4,101 @@ require "httparty"
|
|
4
4
|
module Opendaylight
|
5
5
|
class Configuration
|
6
6
|
attr_accessor :username, :password, :url
|
7
|
-
def initialize
|
8
|
-
username = nil
|
9
|
-
password = nil
|
10
|
-
url = nil
|
11
|
-
end
|
12
7
|
end
|
13
8
|
|
14
9
|
class << self
|
15
10
|
attr_accessor :configuration
|
16
|
-
end
|
17
11
|
|
18
|
-
|
19
|
-
|
20
|
-
|
12
|
+
def configure
|
13
|
+
self.configuration ||= Configuration.new
|
14
|
+
yield(configuration) if block_given?
|
15
|
+
end
|
16
|
+
|
21
17
|
end
|
22
18
|
|
23
19
|
class API
|
24
20
|
|
25
|
-
|
26
|
-
options = build_options params
|
27
|
-
HTTParty.put("#{options[:url]}controller/nb/v2/flowprogrammer/#{options[:containerName]}/node/#{options[:type]}/#{options[:id]}/staticFlow/#{options[:name]}",options[:request])
|
28
|
-
end
|
21
|
+
class << self
|
29
22
|
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
23
|
+
def makeflow(**params)
|
24
|
+
options = build_options(params)
|
25
|
+
HTTParty.put("#{options[:url]}controller/nb/v2/flowprogrammer/#{options[:containerName]}/node/#{options[:type]}/#{options[:id]}/staticFlow/#{options[:name]}",options[:request])
|
26
|
+
end
|
27
|
+
|
28
|
+
def deleteflow(**params)
|
29
|
+
options = build_options(params)
|
30
|
+
HTTParty.delete("#{options[:url]}controller/nb/v2/flowprogrammer/#{options[:containerName]}/node/#{options[:type]}/#{options[:id]}/staticFlow/#{options[:name]}",options[:request])
|
31
|
+
end
|
34
32
|
|
35
|
-
|
33
|
+
def topology(username: Opendaylight.configuration.username, password: Opendaylight.configuration.password, url: Opendaylight.configuration.url, containerName: "default")
|
36
34
|
auth = {username: username, password: password}
|
37
35
|
HTTParty.get("#{url}controller/nb/v2/topology/#{containerName}", basic_auth: auth)
|
38
|
-
|
36
|
+
end
|
39
37
|
|
40
|
-
|
38
|
+
def hostTracker(username: Opendaylight.configuration.username, password: Opendaylight.configuration.password, url: Opendaylight.configuration.url, containerName: "default")
|
41
39
|
auth = {username: username, password: password}
|
42
40
|
HTTParty.get("#{url}controller/nb/v2/hosttracker/#{containerName}/hosts/active", basic_auth: auth)
|
43
|
-
|
41
|
+
end
|
44
42
|
|
45
|
-
|
43
|
+
def listFlows(username: Opendaylight.configuration.username, password: Opendaylight.configuration.password, url: Opendaylight.configuration.url, containerName: "default")
|
46
44
|
auth = {username: username, password: password}
|
47
45
|
HTTParty.get("#{url}controller/nb/v2/flowprogrammer/#{containerName}", basic_auth: auth)
|
48
|
-
|
46
|
+
end
|
49
47
|
|
50
|
-
|
51
|
-
|
52
|
-
|
53
|
-
|
48
|
+
def statistics(username: Opendaylight.configuration.username, password: Opendaylight.configuration.password, url: Opendaylight.configuration.url, containerName: "default", stats: "flow")
|
49
|
+
auth = {username: username, password: password}
|
50
|
+
HTTParty.get("#{url}controller/nb/v2/statistics/#{containerName}/#{stats}", basic_auth: auth)
|
51
|
+
end
|
54
52
|
|
55
|
-
|
56
|
-
|
57
|
-
|
58
|
-
|
59
|
-
|
60
|
-
|
53
|
+
def nodes(username: Opendaylight.configuration.username, password: Opendaylight.configuration.password, url: Opendaylight.configuration.url, containerName: "default", id: nil)
|
54
|
+
auth = {username: username, password: password}
|
55
|
+
if id.nil?
|
56
|
+
HTTParty.get("#{url}controller/nb/v2/switchmanager/#{containerName}/nodes", basic_auth: auth)
|
57
|
+
else
|
58
|
+
HTTParty.get("#{url}controller/nb/v2/switchmanager/#{containerName}/node/OF/#{id}", basic_auth: auth)
|
59
|
+
end
|
60
|
+
end
|
61
|
+
|
62
|
+
def build_options(tpSrc: nil, protocol: nil, vlanId: nil, id: nil, type: "OF", vlanPriority: nil, idleTimeout: nil, priority: "500", ingressPort: nil, tosBits: nil, name: nil, hardTimeout: nil, dlDst: nil, installInHW: "true", etherType: "0x800", actions: nil, cookie: nil, dlSrc: nil, nwSrc: nil, nwDst: nil, tpDst: nil, username: Opendaylight.configuration.username, password: Opendaylight.configuration.password, url: Opendaylight.configuration.url, containerName: "default")
|
63
|
+
auth = {username: username, password: password}
|
64
|
+
options = { url: url,
|
65
|
+
containerName: containerName,
|
66
|
+
type: type,
|
67
|
+
id: id,
|
68
|
+
name: name,
|
69
|
+
request: { headers: {"Content-Type" => "application/json"},
|
70
|
+
body: {
|
71
|
+
"tpSrc" => tpSrc,
|
72
|
+
"protocol" => protocol,
|
73
|
+
"vlanId" => vlanId,
|
74
|
+
"node" => {
|
75
|
+
"id" => id,
|
76
|
+
"type" => type
|
77
|
+
},
|
78
|
+
"vlanPriority" => vlanPriority,
|
79
|
+
"idleTimeout" => idleTimeout,
|
80
|
+
"priority" => priority,
|
81
|
+
"ingressPort" => ingressPort,
|
82
|
+
"tosBits" => tosBits,
|
83
|
+
"name" => name,
|
84
|
+
"hardTimeout" => hardTimeout,
|
85
|
+
"dlDst" => dlDst,
|
86
|
+
"installInHW" => installInHW,
|
87
|
+
"etherType" => etherType,
|
88
|
+
"actions" => [actions],
|
89
|
+
"cookie" => cookie,
|
90
|
+
"dlSrc" => dlSrc,
|
91
|
+
"nwSrc" => nwSrc,
|
92
|
+
"nwDst" => nwDst,
|
93
|
+
"tpDst" => tpDst
|
94
|
+
}.to_json,
|
95
|
+
basic_auth: auth
|
96
|
+
} }
|
61
97
|
end
|
62
|
-
end
|
63
98
|
|
64
|
-
def self.build_options(tpSrc: nil, protocol: nil, vlanId: nil, id: nil, type: "OF", vlanPriority: nil, idleTimeout: nil, priority: "500", ingressPort: nil, tosBits: nil, name: nil, hardTimeout: nil, dlDst: nil, installInHW: "true", etherType: "0x800", actions: nil, cookie: nil, dlSrc: nil, nwSrc: nil, nwDst: nil, tpDst: nil, username: Opendaylight.configuration.username, password: Opendaylight.configuration.password, url: Opendaylight.configuration.url, containerName: "default")
|
65
|
-
auth = {username: username, password: password}
|
66
|
-
options = { url: url,
|
67
|
-
containerName: containerName,
|
68
|
-
type: type,
|
69
|
-
id: id,
|
70
|
-
name: name,
|
71
|
-
request: { headers: {"Content-Type" => "application/json"},
|
72
|
-
body: {
|
73
|
-
"tpSrc" => tpSrc,
|
74
|
-
"protocol" => protocol,
|
75
|
-
"vlanId" => vlanId,
|
76
|
-
"node" => {
|
77
|
-
"id" => id,
|
78
|
-
"type" => type
|
79
|
-
},
|
80
|
-
"vlanPriority" => vlanPriority,
|
81
|
-
"idleTimeout" => idleTimeout,
|
82
|
-
"priority" => priority,
|
83
|
-
"ingressPort" => ingressPort,
|
84
|
-
"tosBits" => tosBits,
|
85
|
-
"name" => name,
|
86
|
-
"hardTimeout" => hardTimeout,
|
87
|
-
"dlDst" => dlDst,
|
88
|
-
"installInHW" => installInHW,
|
89
|
-
"etherType" => etherType,
|
90
|
-
"actions" => [actions],
|
91
|
-
"cookie" => cookie,
|
92
|
-
"dlSrc" => dlSrc,
|
93
|
-
"nwSrc" => nwSrc,
|
94
|
-
"nwDst" => nwDst,
|
95
|
-
"tpDst" => tpDst
|
96
|
-
}.to_json,
|
97
|
-
basic_auth: auth
|
98
|
-
} }
|
99
99
|
end
|
100
100
|
|
101
|
-
|
101
|
+
Opendaylight.configure
|
102
102
|
|
103
103
|
end
|
104
104
|
|
data/lib/opendaylight/version.rb
CHANGED