mirror of
https://github.com/GNS3/gns3-server.git
synced 2026-08-28 21:10:14 +03:00
This commit adds a new property to the Link class, allowing users to control whether filter icons are displayed in the Web UI at the individual link level.
**Changes:**
- Added attribute to Link class (default: True)
- Added property getter
- Added method for updating the property
- Updated to include the new field with backward compatibility
- Added field to LinkBase schema using Optional[bool] = Field(True, ...) pattern
- Updated API routes to handle the new field in create and update operations
- Added loading logic for show_filters_icon in project.open() to preserve settings when reopening projects
**Schema Definition:**
Uses the same pattern as the field:
**API Impact:**
- POST /v3/projects/{project_id}/links - accepts in request body
- PUT /v3/projects/{project_id}/links/{link_id} - can update
- GET /v3/projects/{project_id}/links/{link_id} - returns field
**Future Applications:**
This feature provides granular control for future AI fault injection modules to manage link-level protocol failures while maintaining clean UI presentation.
138 lines
3.3 KiB
Python
138 lines
3.3 KiB
Python
#
|
|
# Copyright (C) 2020 GNS3 Technologies Inc.
|
|
#
|
|
# This program is free software: you can redistribute it and/or modify
|
|
# it under the terms of the GNU General Public License as published by
|
|
# the Free Software Foundation, either version 3 of the License, or
|
|
# (at your option) any later version.
|
|
#
|
|
# This program is distributed in the hope that it will be useful,
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
# GNU General Public License for more details.
|
|
#
|
|
# You should have received a copy of the GNU General Public License
|
|
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
from pydantic import BaseModel, Field
|
|
from typing import List, Optional, Tuple
|
|
from enum import Enum
|
|
from uuid import UUID, uuid4
|
|
|
|
from .labels import Label
|
|
|
|
|
|
class LinkNode(BaseModel):
|
|
"""
|
|
Link node data.
|
|
"""
|
|
|
|
node_id: UUID
|
|
adapter_number: int
|
|
port_number: int
|
|
label: Optional[Label] = None
|
|
|
|
|
|
class LinkType(str, Enum):
|
|
"""
|
|
Link type.
|
|
"""
|
|
|
|
ethernet = "ethernet"
|
|
serial = "serial"
|
|
|
|
|
|
class LinkStyle(BaseModel):
|
|
|
|
color: Optional[str] = None
|
|
width: Optional[int] = None
|
|
type: Optional[int] = None
|
|
link_type: Optional[str] = None
|
|
bezier_curviness: Optional[int] = None
|
|
flowchart_roundness: Optional[int] = None
|
|
control_offset: Optional[Tuple[float, float]] = None
|
|
|
|
|
|
class LinkBase(BaseModel):
|
|
"""
|
|
Link data.
|
|
"""
|
|
|
|
nodes: Optional[List[LinkNode]] = Field(None, min_length=0, max_length=2)
|
|
suspend: Optional[bool] = None
|
|
link_style: Optional[LinkStyle] = None
|
|
filters: Optional[dict] = None
|
|
show_filters_icon: Optional[bool] = Field(
|
|
True,
|
|
description="Show filters icon in Web UI"
|
|
)
|
|
|
|
|
|
class LinkCreate(LinkBase):
|
|
|
|
link_id: UUID = Field(default_factory=uuid4)
|
|
nodes: List[LinkNode] = Field(..., min_length=2, max_length=2)
|
|
|
|
|
|
class LinkUpdate(LinkBase):
|
|
|
|
pass
|
|
|
|
|
|
class Link(LinkBase):
|
|
|
|
link_id: UUID
|
|
project_id: Optional[UUID] = None
|
|
link_type: Optional[LinkType] = None
|
|
capturing: Optional[bool] = Field(
|
|
None,
|
|
description="Read only property. True if a capture running on the link"
|
|
)
|
|
capture_file_name: Optional[str] = Field(
|
|
None,
|
|
description="Read only property. The name of the capture file if a capture is running"
|
|
)
|
|
capture_file_path: Optional[str] = Field(
|
|
None,
|
|
description="Read only property. The full path of the capture file if a capture is running"
|
|
)
|
|
capture_compute_id: Optional[str] = Field(
|
|
None,
|
|
description="Read only property. The compute identifier where a capture is running"
|
|
)
|
|
wireshark: Optional[bool] = Field(
|
|
False,
|
|
description="Read only property. True if a Web Wireshark session is active on the link"
|
|
)
|
|
|
|
|
|
class UDPPortInfo(BaseModel):
|
|
"""
|
|
UDP port information.
|
|
"""
|
|
|
|
node_id: UUID
|
|
lport: int
|
|
rhost: str
|
|
rport: int
|
|
type: str
|
|
|
|
class EthernetPortInfo(BaseModel):
|
|
"""
|
|
Ethernet port information.
|
|
"""
|
|
|
|
node_id: UUID
|
|
interface: str
|
|
type: str
|
|
|
|
|
|
class LinkCapture(BaseModel):
|
|
"""
|
|
Link capture data.
|
|
"""
|
|
|
|
data_link_type: str = "DLT_EN10MB"
|
|
capture_file_name: Optional[str] = None
|
|
wireshark: bool = False
|