summaryrefslogtreecommitdiff
path: root/novaclient/v2/contrib/__init__.py
blob: 3cbadc17b3fc4e3c91a985f6b924fce6039d8950 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
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
#    Licensed under the Apache License, Version 2.0 (the "License"); you may
#    not use this file except in compliance with the License. You may obtain
#    a copy of the License at
#
#         http://www.apache.org/licenses/LICENSE-2.0
#
#    Unless required by applicable law or agreed to in writing, software
#    distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
#    WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
#    License for the specific language governing permissions and limitations
#    under the License.

import inspect
import warnings

from novaclient.i18n import _

# NOTE(andreykurilin): "tenant_networks" extension excluded
#   here deliberately. It was deprecated separately from deprecation
#   extension mechanism and I prefer to not auto-load it by default
#   (V2_0_EXTENSIONS is designed for such behaviour).
V2_0_EXTENSIONS = {
    'assisted_volume_snapshots':
        'novaclient.v2.assisted_volume_snapshots',
    'cells': 'novaclient.v2.cells',
    'instance_action': 'novaclient.v2.instance_action',
    'list_extensions': 'novaclient.v2.list_extensions',
    'migrations': 'novaclient.v2.migrations',
    'server_external_events': 'novaclient.v2.server_external_events',
}


def warn(alternative=True):
    """Prints warning msg for contrib modules."""
    frm = inspect.stack()[1]
    module_name = inspect.getmodule(frm[0]).__name__
    if module_name.startswith("novaclient.v2.contrib."):
        if alternative:
            new_module_name = module_name.replace("contrib.", "")
            msg = _("Module `%(module)s` is deprecated as of OpenStack "
                    "Ocata in favor of `%(new_module)s` and will be "
                    "removed after OpenStack Pike.") % {
                "module": module_name, "new_module": new_module_name}

        if not alternative:
            msg = _("Module `%s` is deprecated as of OpenStack Ocata "
                    "All shell commands were moved to "
                    "`novaclient.v2.shell` and will be automatically "
                    "loaded.") % module_name

        warnings.warn(msg)