summaryrefslogtreecommitdiffstats
path: root/aioeapi/config_session.py
blob: f1beb5e426cd18a1d0e64692ae8d5a24fd6b8668 (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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
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
128
129
130
131
132
133
134
135
136
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
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
# -----------------------------------------------------------------------------
# System Imports
# -----------------------------------------------------------------------------
import re
from typing import Optional, TYPE_CHECKING, Union, List

if TYPE_CHECKING:
    from .device import Device

# -----------------------------------------------------------------------------
# Exports
# -----------------------------------------------------------------------------

__all__ = ["SessionConfig"]

# -----------------------------------------------------------------------------
#
#                                 CODE BEGINS
#
# -----------------------------------------------------------------------------


class SessionConfig:
    """
    The SessionConfig instance is used to send configuration to a device using
    the EOS session mechanism.  This is the preferred way of managing
    configuraiton changes.

    Notes
    -----
    This class definition is used by the parent Device class definition as
    defined by `config_session`.  A Caller can use the SessionConfig directly
    as well, but it is not required.
    """

    CLI_CFG_FACTORY_RESET = "rollback clean-config"

    def __init__(self, device: "Device", name: str):
        """
        Creates a new instance of the session config instance bound
        to the given device instance, and using the session `name`.

        Parameters
        ----------
        device:
            The associated device instance

        name:
            The name of the config session
        """
        self._device = device
        self._cli = device.cli
        self._name = name
        self._cli_config_session = f"configure session {self.name}"

    # -------------------------------------------------------------------------
    # properties for read-only attributes
    # -------------------------------------------------------------------------

    @property
    def name(self) -> str:
        """returns read-only session name attribute"""
        return self._name

    @property
    def device(self) -> "Device":
        """returns read-only device instance attribute"""
        return self._device

    # -------------------------------------------------------------------------
    #                               Public Methods
    # -------------------------------------------------------------------------

    async def status_all(self) -> dict:
        """
        Get the status of the session config by running the command:
            # show configuration sessions detail

        Returns
        -------
        dict object of native EOS eAPI response; see `status` method for
        details.
        """
        return await self._cli("show configuration sessions detail")

    async def status(self) -> Union[dict, None]:
        """
        Get the status of the session config by running the command:
            # show configuration sessions detail

        And returning only the status dictionary for this session. If you want
        all sessions, then use the `status_all` method.

        Returns
        -------
        Dict instance of the session status.  If the session does not exist,
        then this method will return None.

        The native eAPI results from JSON output, see exmaple:

        Examples
        --------
        all results:
            {
                "maxSavedSessions": 1,
                "maxOpenSessions": 5,
                "sessions": {
                    "jeremy1": {
                        "instances": {},
                        "state": "pending",
                        "commitUser": "",
                        "description": ""
                    },
                    "ansible_167510439362": {
                        "instances": {},
                        "state": "completed",
                        "commitUser": "joe.bob",
                        "description": "",
                        "completedTime": 1675104396.4500246
                    }
                }
            }

        if the session name was 'jeremy1', then this method would return
            {
                "instances": {},
                "state": "pending",
                "commitUser": "",
                "description": ""
            }
        """
        res = await self.status_all()
        return res["sessions"].get(self.name)

    async def push(
        self, content: Union[List[str], str], replace: Optional[bool] = False
    ):
        """
        Sends the configuration content to the device.  If `replace` is true,
        then the command "rollback clean-config" is issued before sendig the
        configuration content.

        Parameters
        ----------
        content: Union[List[str], str]
            The text configuration CLI commands, as a list of strings, that
            will be sent to the device.  If the parameter is a string, and not
            a list, then split the string across linebreaks.  In either case
            any empty lines will be discarded before they are send to the
            device.

        replace: bool
            When True, the content will replace the existing configuration
            on the device.
        """

        # if given s string, we need to break it up into individual command
        # lines.

        if isinstance(content, str):
            content = content.splitlines()

        # prepare the initial set of command to enter the config session and
        # rollback clean if the `replace` argument is True.

        commands = [self._cli_config_session]
        if replace:
            commands.append(self.CLI_CFG_FACTORY_RESET)

        # add the Caller's commands, filtering out any blank lines. any command
        # lines (!) are still included.

        commands.extend(filter(None, content))

        await self._cli(commands=commands)

    async def commit(self, timer: Optional[str] = None):
        """
        Commits the session config using the commands
            # configure session <name>
            # commit

        If the timer is specified, format is "hh:mm:ss", then a commit timer is
        started.  A second commit action must be made to confirm the config
        session before the timer expires; otherwise the config-session is
        automatically aborted.
        """
        command = f"{self._cli_config_session} commit"

        if timer:
            command += f" timer {timer}"

        await self._cli(command)

    async def abort(self):
        """
        Aborts the configuration session using the command:
            # configure session <name> abort
        """
        await self._cli(f"{self._cli_config_session} abort")

    async def diff(self) -> str:
        """
        Returns the "diff" of the session config relative to the running config, using
        the command:
            # show session-config named <name> diffs

        Returns
        -------
        Returns a string in diff-patch format.

        References
        ----------
          * https://www.gnu.org/software/diffutils/manual/diffutils.txt
        """
        return await self._cli(
            f"show session-config named {self.name} diffs", ofmt="text"
        )

    async def load_scp_file(self, filename: str, replace: Optional[bool] = False):
        """
        This function is used to load the configuration from <filename> into
        the session configuration.  If the replace parameter is True then the
        file contents will replace the existing session config (load-replace).

        Parameters
        ----------
        filename:
            The name of the configuration file.  The caller is required to
            specify the filesystem, for exmaple, the
            filename="flash:thisfile.cfg"

        replace:
            When True, the contents of the file will completely replace the
            session config for a load-replace behavior.

        Raises
        -------
        If there are any issues with loading the configuration file then a
        RuntimeError is raised with the error messages content.
        """
        commands = [self._cli_config_session]
        if replace:
            commands.append(self.CLI_CFG_FACTORY_RESET)

        commands.append(f"copy {filename} session-config")
        res = await self._cli(commands=commands)
        checks_re = re.compile(r"error|abort|invalid", flags=re.I)
        messages = res[-1]["messages"]

        if any(map(checks_re.search, messages)):
            raise RuntimeError("".join(messages))

    async def write(self):
        """
        Saves the running config to the startup config by issuing the command
        "write" to the device.
        """
        await self._cli("write")