Skip to content

Commit 823c4e8

Browse files
stephenfinmriedem
authored andcommitted
Remove support for /os-floating-ips-bulk REST API
Drop support for the os-floating-ips-bulk API which has been deprecated since Newton: Idca478c566f9a7b5b30a3172453ce7c66d9fd8f0 This API now returns a 410 response for all routes. Unit tests are removed and the functional API sample tests are just asserting the 410 response now. The API sample docs are left intact since the API reference still builds from those and can be considered more or less branchless, so people looking at the API reference can apply it to older deployments of nova before os-floating-ips-bulk was removed. The release note added for previous nova-network API removals is amended to note this additional change. Part of blueprint remove-nova-network Change-Id: I89d081108b398d8efba9636279088c61349b21e6 Depends-On: https://review.openstack.org/582945
1 parent 50f4085 commit 823c4e8

17 files changed

+42
-566
lines changed

api-ref/source/index.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,6 @@ the `API guide <http://developer.openstack.org/api-guide/compute/index.html>`_.
6363
.. include:: os-floating-ip-dns.inc
6464
.. include:: os-floating-ip-pools.inc
6565
.. include:: os-floating-ips.inc
66-
.. include:: os-floating-ips-bulk.inc
6766
.. include:: os-security-groups.inc
6867
.. include:: os-security-group-default-rules.inc
6968
.. include:: os-security-group-rules.inc
@@ -81,3 +80,4 @@ Compute API in the past, but no longer exist.
8180
.. include:: os-fping.inc
8281
.. include:: os-virtual-interfaces.inc
8382
.. include:: os-fixed-ips.inc
83+
.. include:: os-floating-ips-bulk.inc

api-ref/source/os-floating-ips-bulk.inc

+8-4
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88

99
Since these APIs are only implemented for **nova-network**, they are
1010
deprecated. These will fail with a 404 starting from microversion 2.36.
11+
It was removed in the 18.0.0 Rocky release.
1112

1213
Bulk-creates, deletes, and lists floating IPs.
1314
Default pool name is ``nova``.
@@ -24,7 +25,8 @@ Lists all floating IPs.
2425

2526
Normal response codes: 200
2627

27-
Error response codes: unauthorized(401), forbidden(403), itemNotFound(404)
28+
Error response codes: unauthorized(401), forbidden(403), itemNotFound(404),
29+
gone(410)
2830

2931
Response
3032
--------
@@ -54,7 +56,7 @@ Bulk-creates floating IPs.
5456
Normal response codes: 200
5557

5658
Error response codes: badRequest(400), unauthorized(401), forbidden(403),
57-
conflict(409)
59+
conflict(409), gone(410)
5860

5961
Request
6062
-------
@@ -96,7 +98,8 @@ Bulk-deletes floating IPs.
9698

9799
Normal response codes: 200
98100

99-
Error response codes: badRequest(400), unauthorized(401), forbidden(403), itemNotFound(404)
101+
Error response codes: badRequest(400), unauthorized(401), forbidden(403),
102+
itemNotFound(404), gone(410)
100103

101104
Request
102105
-------
@@ -131,7 +134,8 @@ Lists all floating IPs for a host.
131134

132135
Normal response codes: 200
133136

134-
Error response codes: unauthorized(401), forbidden(403), itemNotFound(404)
137+
Error response codes: unauthorized(401), forbidden(403), itemNotFound(404),
138+
gone(410)
135139

136140
Request
137141
-------

nova/api/openstack/compute/floating_ips_bulk.py

+9-125
Original file line numberDiff line numberDiff line change
@@ -12,141 +12,25 @@
1212
# License for the specific language governing permissions and limitations
1313
# under the License.
1414

15-
import netaddr
16-
import six
17-
import webob.exc
15+
from webob import exc
1816

19-
from nova.api.openstack.api_version_request \
20-
import MAX_PROXY_API_SUPPORT_VERSION
21-
from nova.api.openstack.compute.schemas import floating_ips_bulk
2217
from nova.api.openstack import wsgi
23-
from nova.api import validation
24-
import nova.conf
25-
from nova import exception
26-
from nova.i18n import _
27-
from nova import objects
28-
from nova.policies import floating_ips_bulk as fib_policies
29-
30-
CONF = nova.conf.CONF
3118

3219

3320
class FloatingIPBulkController(wsgi.Controller):
3421

35-
@wsgi.Controller.api_version("2.1", MAX_PROXY_API_SUPPORT_VERSION)
36-
@wsgi.expected_errors(404)
22+
@wsgi.expected_errors(410)
3723
def index(self, req):
38-
"""Return a list of all floating IPs."""
39-
context = req.environ['nova.context']
40-
context.can(fib_policies.BASE_POLICY_NAME)
41-
42-
return self._get_floating_ip_info(context)
24+
raise exc.HTTPGone()
4325

44-
@wsgi.Controller.api_version("2.1", MAX_PROXY_API_SUPPORT_VERSION)
45-
@wsgi.expected_errors(404)
26+
@wsgi.expected_errors(410)
4627
def show(self, req, id):
47-
"""Return a list of all floating IPs for a given host."""
48-
context = req.environ['nova.context']
49-
context.can(fib_policies.BASE_POLICY_NAME)
50-
51-
return self._get_floating_ip_info(context, id)
52-
53-
def _get_floating_ip_info(self, context, host=None):
54-
floating_ip_info = {"floating_ip_info": []}
55-
56-
if host is None:
57-
try:
58-
floating_ips = objects.FloatingIPList.get_all(context)
59-
except exception.NoFloatingIpsDefined:
60-
return floating_ip_info
61-
else:
62-
try:
63-
floating_ips = objects.FloatingIPList.get_by_host(context,
64-
host)
65-
except exception.FloatingIpNotFoundForHost as e:
66-
raise webob.exc.HTTPNotFound(explanation=e.format_message())
28+
raise exc.HTTPGone()
6729

68-
for floating_ip in floating_ips:
69-
instance_uuid = None
70-
fixed_ip = None
71-
if floating_ip.fixed_ip:
72-
instance_uuid = floating_ip.fixed_ip.instance_uuid
73-
fixed_ip = str(floating_ip.fixed_ip.address)
74-
75-
result = {'address': str(floating_ip.address),
76-
'pool': floating_ip.pool,
77-
'interface': floating_ip.interface,
78-
'project_id': floating_ip.project_id,
79-
'instance_uuid': instance_uuid,
80-
'fixed_ip': fixed_ip}
81-
floating_ip_info['floating_ip_info'].append(result)
82-
83-
return floating_ip_info
84-
85-
@wsgi.Controller.api_version("2.1", MAX_PROXY_API_SUPPORT_VERSION)
86-
@wsgi.expected_errors((400, 409))
87-
@validation.schema(floating_ips_bulk.create)
30+
@wsgi.expected_errors(410)
8831
def create(self, req, body):
89-
"""Bulk create floating IPs."""
90-
context = req.environ['nova.context']
91-
context.can(fib_policies.BASE_POLICY_NAME)
92-
93-
params = body['floating_ips_bulk_create']
94-
ip_range = params['ip_range']
32+
raise exc.HTTPGone()
9533

96-
pool = params.get('pool', CONF.default_floating_pool)
97-
interface = params.get('interface', CONF.public_interface)
98-
99-
try:
100-
ips = [objects.FloatingIPList.make_ip_info(addr, pool, interface)
101-
for addr in self._address_to_hosts(ip_range)]
102-
except exception.InvalidInput as exc:
103-
raise webob.exc.HTTPBadRequest(explanation=exc.format_message())
104-
105-
try:
106-
objects.FloatingIPList.create(context, ips)
107-
except exception.FloatingIpExists as exc:
108-
raise webob.exc.HTTPConflict(explanation=exc.format_message())
109-
110-
return {"floating_ips_bulk_create": {"ip_range": ip_range,
111-
"pool": pool,
112-
"interface": interface}}
113-
114-
@wsgi.Controller.api_version("2.1", MAX_PROXY_API_SUPPORT_VERSION)
115-
@wsgi.expected_errors((400, 404))
116-
@validation.schema(floating_ips_bulk.delete)
34+
@wsgi.expected_errors(410)
11735
def update(self, req, id, body):
118-
"""Bulk delete floating IPs."""
119-
context = req.environ['nova.context']
120-
context.can(fib_policies.BASE_POLICY_NAME)
121-
122-
if id != "delete":
123-
msg = _("Unknown action")
124-
raise webob.exc.HTTPNotFound(explanation=msg)
125-
ip_range = body['ip_range']
126-
try:
127-
ips = (objects.FloatingIPList.make_ip_info(address, None, None)
128-
for address in self._address_to_hosts(ip_range))
129-
except exception.InvalidInput as exc:
130-
raise webob.exc.HTTPBadRequest(explanation=exc.format_message())
131-
objects.FloatingIPList.destroy(context, ips)
132-
133-
return {"floating_ips_bulk_delete": ip_range}
134-
135-
def _address_to_hosts(self, addresses):
136-
"""Iterate over hosts within an address range.
137-
138-
If an explicit range specifier is missing, the parameter is
139-
interpreted as a specific individual address.
140-
"""
141-
try:
142-
return [netaddr.IPAddress(addresses)]
143-
except ValueError:
144-
net = netaddr.IPNetwork(addresses)
145-
if net.size < 4:
146-
reason = _("/%s should be specified as single address(es) "
147-
"not in cidr format") % net.prefixlen
148-
raise exception.InvalidInput(reason=reason)
149-
else:
150-
return net.iter_hosts()
151-
except netaddr.AddrFormatError as exc:
152-
raise exception.InvalidInput(reason=six.text_type(exc))
36+
raise exc.HTTPGone()

nova/api/openstack/compute/schemas/floating_ips_bulk.py

-52
This file was deleted.

nova/policies/__init__.py

-2
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,6 @@
4444
from nova.policies import floating_ip_dns
4545
from nova.policies import floating_ip_pools
4646
from nova.policies import floating_ips
47-
from nova.policies import floating_ips_bulk
4847
from nova.policies import hide_server_addresses
4948
from nova.policies import hosts
5049
from nova.policies import hypervisors
@@ -119,7 +118,6 @@ def list_rules():
119118
floating_ip_dns.list_rules(),
120119
floating_ip_pools.list_rules(),
121120
floating_ips.list_rules(),
122-
floating_ips_bulk.list_rules(),
123121
hide_server_addresses.list_rules(),
124122
hosts.list_rules(),
125123
hypervisors.list_rules(),

nova/policies/floating_ips_bulk.py

-51
This file was deleted.

nova/tests/functional/api_sample_tests/api_samples/os-floating-ips-bulk/floating-ips-bulk-create-req.json.tpl

-7
This file was deleted.

nova/tests/functional/api_sample_tests/api_samples/os-floating-ips-bulk/floating-ips-bulk-create-resp.json.tpl

-7
This file was deleted.

nova/tests/functional/api_sample_tests/api_samples/os-floating-ips-bulk/floating-ips-bulk-delete-req.json.tpl

-3
This file was deleted.

nova/tests/functional/api_sample_tests/api_samples/os-floating-ips-bulk/floating-ips-bulk-delete-resp.json.tpl

-3
This file was deleted.

nova/tests/functional/api_sample_tests/api_samples/os-floating-ips-bulk/floating-ips-bulk-list-by-host-resp.json.tpl

-12
This file was deleted.

nova/tests/functional/api_sample_tests/api_samples/os-floating-ips-bulk/floating-ips-bulk-list-resp.json.tpl

-28
This file was deleted.

0 commit comments

Comments
 (0)