mirror of
https://github.com/AvengeMedia/DankMaterialShell.git
synced 2026-08-02 03:28:28 -04:00
dc75f1f01d
* Add hotspot contract layer with capability-gated dispatch. Establish the interface and manager plumbing for hotspot support so backends can opt in without expanding the core Backend contract. Only backends that implement HotspotBackend get hotspot state propagated; others are forced to unsupported regardless of what they self-report. * Add IPC handlers and API docs for hotspot actions. Wire up configure/ start/ stop hotspot through the request router so the QML service layer can drive hotspot operations. Bump API version to 27 and document the capability-gating contract clients should follow. * Implement NetworkManager hotspot backend. Implement HotspotBackend on NetworkManagerBackend with DMS-owned profile management, AP capability detection, and band validation. Device resolution is deferred to StartHotspot when no device is specified, so profiles survive hardware changes. * Isolate client Wi-Fi state from AP-mode connections. Filter AP-mode profiles and access points out of all client Wi-Fi paths so the DMS hotspot (and user-created APs) never appear as saved networks, visible networks, or connected state. This protects existing client behavior before hotspot controls are exposed in the UI. * Prefer idle radios for automatic hotspot device selection. * Add hotspot properties and methods to QML service layer. Expose hotspot state and actions through DMSNetworkService, NetworkService, and LegacyNetworkService. Capability is gated on API version and backend-reported support, not backend name checks, and stays stable when Wi-Fi radio is disabled. * Add hotspot controls to Settings and Control Center. Settings shows a hotspot setup card as a sibling in the Wi-Fi tab with SSID, password, device, band, save, and start/ stop controls. Control Center shows a compact row that toggles a configured hotspot or routes to Settings for initial setup. Both stay visible when Wi-Fi is disabled, explaining the requirement instead of hiding. * Add translator context to hotspot strings.
101 lines
3.1 KiB
Go
101 lines
3.1 KiB
Go
package network
|
|
|
|
type Backend interface {
|
|
Initialize() error
|
|
Close()
|
|
|
|
GetWiFiEnabled() (bool, error)
|
|
SetWiFiEnabled(enabled bool) error
|
|
|
|
ScanWiFi() error
|
|
ScanWiFiDevice(device string) error
|
|
GetWiFiNetworkDetails(ssid string) (*NetworkInfoResponse, error)
|
|
GetWiFiQRCodeContent(ssid string) (string, error)
|
|
GetWiFiDevices() []WiFiDevice
|
|
|
|
ConnectWiFi(req ConnectionRequest) error
|
|
DisconnectWiFi() error
|
|
DisconnectWiFiDevice(device string) error
|
|
ForgetWiFiNetwork(ssid string) error
|
|
SetWiFiAutoconnect(ssid string, autoconnect bool) error
|
|
|
|
GetEthernetDevices() []EthernetDevice
|
|
GetWiredConnections() ([]WiredConnection, error)
|
|
GetWiredNetworkDetails(uuid string) (*WiredNetworkInfoResponse, error)
|
|
ConnectEthernet() error
|
|
DisconnectEthernet() error
|
|
DisconnectEthernetDevice(device string) error
|
|
ActivateWiredConnection(uuid string) error
|
|
|
|
ListVPNProfiles() ([]VPNProfile, error)
|
|
ListActiveVPN() ([]VPNActive, error)
|
|
ConnectVPN(uuidOrName string, singleActive bool) error
|
|
DisconnectVPN(uuidOrName string) error
|
|
DisconnectAllVPN() error
|
|
ClearVPNCredentials(uuidOrName string) error
|
|
ListVPNPlugins() ([]VPNPlugin, error)
|
|
ImportVPN(filePath string, name string) (*VPNImportResult, error)
|
|
GetVPNConfig(uuidOrName string) (*VPNConfig, error)
|
|
UpdateVPNConfig(uuid string, updates map[string]any) error
|
|
SetVPNCredentials(uuid string, username string, password string, save bool) error
|
|
DeleteVPN(uuidOrName string) error
|
|
|
|
GetCurrentState() (*BackendState, error)
|
|
|
|
StartMonitoring(onStateChange func()) error
|
|
StopMonitoring()
|
|
|
|
GetPromptBroker() PromptBroker
|
|
SetPromptBroker(broker PromptBroker) error
|
|
SubmitCredentials(token string, secrets map[string]string, save bool) error
|
|
CancelCredentials(token string) error
|
|
}
|
|
|
|
type HotspotBackend interface {
|
|
ConfigureHotspot(req HotspotRequest) error
|
|
StartHotspot() error
|
|
StopHotspot() error
|
|
GetHotspotSecrets() (string, error)
|
|
}
|
|
|
|
type BackendState struct {
|
|
Backend string
|
|
NetworkStatus NetworkStatus
|
|
EthernetIP string
|
|
EthernetDevice string
|
|
EthernetConnected bool
|
|
EthernetConnectionUuid string
|
|
EthernetDevices []EthernetDevice
|
|
WiFiIP string
|
|
WiFiDevice string
|
|
WiFiConnected bool
|
|
WiFiEnabled bool
|
|
WiFiSSID string
|
|
WiFiBSSID string
|
|
WiFiSignal uint8
|
|
WiFiNetworks []WiFiNetwork
|
|
SavedWiFiNetworks []WiFiNetwork
|
|
WiFiDevices []WiFiDevice
|
|
HotspotAvailable bool
|
|
HotspotConfigured bool
|
|
HotspotEnabled bool
|
|
HotspotActivating bool
|
|
HotspotSecured bool
|
|
HotspotSSID string
|
|
HotspotDevice string
|
|
HotspotBand string
|
|
HotspotLastError string
|
|
WiredConnections []WiredConnection
|
|
VPNProfiles []VPNProfile
|
|
VPNActive []VPNActive
|
|
IsConnecting bool
|
|
ConnectingSSID string
|
|
ConnectingDevice string
|
|
ConnectingPreExisting bool
|
|
IsConnectingVPN bool
|
|
ConnectingVPNUUID string
|
|
LastError string
|
|
VPNError string
|
|
VPNErrorUuid string
|
|
}
|