Meshtastic-Apple/Meshtastic/Views/Settings/Config/DeviceConfig.swift

299 lines
9.4 KiB
Swift
Raw Normal View History

2022-06-13 20:43:51 -07:00
//
// DeviceConfig.swift
// Meshtastic Apple
//
// Copyright (c) Garth Vander Houwen 6/13/22.
//
import SwiftUI
struct DeviceConfig: View {
2022-06-13 20:43:51 -07:00
@Environment(\.managedObjectContext) var context
@EnvironmentObject var bleManager: BLEManager
@Environment(\.dismiss) private var goBack
var node: NodeInfoEntity?
@State private var isPresentingNodeDBResetConfirm = false
2022-07-26 21:52:36 -07:00
@State private var isPresentingFactoryResetConfirm = false
@State private var isPresentingSaveConfirm = false
2022-06-21 02:43:37 -07:00
@State var hasChanges = false
2022-06-13 20:43:51 -07:00
@State var deviceRole = 0
2022-12-05 19:47:56 -08:00
@State var buzzerGPIO = 0
@State var buttonGPIO = 0
2022-06-13 20:43:51 -07:00
@State var serialEnabled = true
@State var debugLogEnabled = false
@State var rebroadcastMode = 0
2022-06-13 20:43:51 -07:00
var body: some View {
2022-06-20 00:13:04 -07:00
VStack {
2022-06-20 00:13:04 -07:00
Form {
if node != nil && node?.metadata == nil && node?.num ?? 0 != bleManager.connectedPeripheral?.num ?? 0 {
Text("There has been no response to a request for device metadata over the admin channel for this node.")
.font(.callout)
.foregroundColor(.orange)
} else if node != nil && node?.num ?? 0 != bleManager.connectedPeripheral?.num ?? 0 {
// Let users know what is going on if they are using remote admin and don't have the config yet
2023-03-14 12:44:10 -07:00
if node?.deviceConfig == nil {
Text("Device config data was requested over the admin channel but no response has been returned from the remote node. You can check the status of admin message requests in the admin message log.")
.font(.callout)
.foregroundColor(.orange)
} else {
Text("Remote administration for: \(node?.user?.longName ?? "Unknown")")
.font(.title3)
.onAppear {
setDeviceValues()
}
}
2023-03-14 12:44:10 -07:00
} else if node != nil && node?.num ?? 0 == bleManager.connectedPeripheral?.num ?? 0 {
Text("Configuration for: \(node?.user?.longName ?? "Unknown")")
.font(.title3)
} else {
Text("Please connect to a radio to configure settings.")
.font(.callout)
.foregroundColor(.orange)
}
2022-12-13 08:47:14 -08:00
Section(header: Text("options")) {
2022-06-20 00:13:04 -07:00
Picker("Device Role", selection: $deviceRole ) {
ForEach(DeviceRoles.allCases) { dr in
2023-01-31 22:08:03 -08:00
Text(dr.name)
2022-06-13 20:43:51 -07:00
}
}
.pickerStyle(DefaultPickerStyle())
2022-06-20 00:13:04 -07:00
.padding(.top, 10)
2023-01-31 22:08:03 -08:00
Text(DeviceRoles(rawValue: deviceRole)?.description ?? "")
.foregroundColor(.gray)
.font(.caption)
Picker("Rebroadcast Mode", selection: $rebroadcastMode ) {
ForEach(RebroadcastModes.allCases) { rm in
Text(rm.name)
}
}
.pickerStyle(DefaultPickerStyle())
.padding(.top, 10)
Text(RebroadcastModes(rawValue: rebroadcastMode)?.description ?? "")
.foregroundColor(.gray)
.font(.caption)
2022-06-20 00:13:04 -07:00
}
2022-06-20 00:13:04 -07:00
Section(header: Text("Debug")) {
2022-06-20 00:13:04 -07:00
Toggle(isOn: $serialEnabled) {
2022-06-20 00:13:04 -07:00
Label("Serial Console", systemImage: "terminal")
}
.toggleStyle(SwitchToggleStyle(tint: .accentColor))
2022-06-20 00:13:04 -07:00
Toggle(isOn: $debugLogEnabled) {
2022-06-20 00:13:04 -07:00
Label("Debug Log", systemImage: "ant.fill")
2022-06-13 20:43:51 -07:00
}
2022-06-20 00:13:04 -07:00
.toggleStyle(SwitchToggleStyle(tint: .accentColor))
}
2022-12-05 19:47:56 -08:00
Section(header: Text("GPIO")) {
2022-12-05 19:47:56 -08:00
Picker("Button GPIO", selection: $buttonGPIO) {
2023-04-03 17:48:58 -07:00
ForEach(0..<46) {
2022-12-05 19:47:56 -08:00
if $0 == 0 {
2022-12-30 17:44:39 -08:00
Text("unset")
2022-12-05 19:47:56 -08:00
} else {
Text("Pin \($0)")
}
}
}
.pickerStyle(DefaultPickerStyle())
Picker("Buzzer GPIO", selection: $buzzerGPIO) {
2023-04-03 17:48:58 -07:00
ForEach(0..<46) {
2022-12-05 19:47:56 -08:00
if $0 == 0 {
2022-12-30 17:44:39 -08:00
Text("unset")
2022-12-05 19:47:56 -08:00
} else {
Text("Pin \($0)")
}
}
}
.pickerStyle(DefaultPickerStyle())
}
2022-06-20 00:13:04 -07:00
}
.disabled(self.bleManager.connectedPeripheral == nil || node?.deviceConfig == nil)
2023-02-02 22:03:27 -08:00
// Only show these buttons for the BLE connected node
if bleManager.connectedPeripheral != nil && node?.num ?? -1 == bleManager.connectedPeripheral.num {
HStack {
2023-02-02 22:03:27 -08:00
Button("Reset NodeDB", role: .destructive) {
isPresentingNodeDBResetConfirm = true
}
.disabled(node?.user == nil)
.buttonStyle(.bordered)
.buttonBorderShape(.capsule)
.controlSize(.large)
.padding()
.confirmationDialog(
"are.you.sure",
isPresented: $isPresentingNodeDBResetConfirm,
titleVisibility: .visible
) {
Button("Erase all device and app data?", role: .destructive) {
2023-02-02 22:03:27 -08:00
if bleManager.sendNodeDBReset(fromUser: node!.user!, toUser: node!.user!) {
bleManager.disconnectPeripheral()
clearCoreDataDatabase(context: context)
} else {
print("NodeDB Reset Failed")
}
2022-10-02 09:19:03 -07:00
}
}
2023-02-02 22:03:27 -08:00
Button("Factory Reset", role: .destructive) {
isPresentingFactoryResetConfirm = true
}
.disabled(node?.user == nil)
.buttonStyle(.bordered)
.buttonBorderShape(.capsule)
.controlSize(.large)
.padding()
.confirmationDialog(
"All device and app data will be deleted. You will also need to forget your devices under Settings > Bluetooth.",
isPresented: $isPresentingFactoryResetConfirm,
titleVisibility: .visible
) {
Button("Factory reset your device and app? ", role: .destructive) {
2023-02-02 22:03:27 -08:00
if bleManager.sendFactoryReset(fromUser: node!.user!, toUser: node!.user!) {
bleManager.disconnectPeripheral()
clearCoreDataDatabase(context: context)
} else {
print("Factory Reset Failed")
2023-02-02 22:03:27 -08:00
}
2022-10-02 09:19:03 -07:00
}
}
}
}
2022-06-21 02:43:37 -07:00
HStack {
2022-06-21 02:43:37 -07:00
Button {
isPresentingSaveConfirm = true
2022-06-21 02:43:37 -07:00
} label: {
2022-12-12 20:35:38 -08:00
Label("save", systemImage: "square.and.arrow.down")
2022-06-21 02:43:37 -07:00
}
.disabled(bleManager.connectedPeripheral == nil || !hasChanges)
.buttonStyle(.bordered)
.buttonBorderShape(.capsule)
.controlSize(.large)
.padding()
.confirmationDialog(
2022-12-30 11:08:59 -08:00
"are.you.sure",
2022-09-23 21:41:07 -07:00
isPresented: $isPresentingSaveConfirm,
titleVisibility: .visible
2022-06-21 02:43:37 -07:00
) {
2023-01-31 22:08:03 -08:00
let nodeName = node?.user?.longName ?? NSLocalizedString("unknown", comment: "Unknown")
2023-01-09 18:34:43 -08:00
let buttonText = String.localizedStringWithFormat(NSLocalizedString("save.config %@", comment: "Save Config for %@"), nodeName)
Button(buttonText) {
2023-01-31 22:08:03 -08:00
let connectedNode = getNodeInfo(id: bleManager.connectedPeripheral.num, context: context)
if connectedNode != nil {
var dc = Config.DeviceConfig()
dc.role = DeviceRoles(rawValue: deviceRole)!.protoEnumValue()
dc.serialEnabled = serialEnabled
dc.debugLogEnabled = debugLogEnabled
dc.buttonGpio = UInt32(buttonGPIO)
dc.buzzerGpio = UInt32(buzzerGPIO)
2023-04-01 15:01:11 -07:00
dc.rebroadcastMode = RebroadcastModes(rawValue: rebroadcastMode)?.protoEnumValue() ?? RebroadcastModes.all.protoEnumValue()
2023-03-15 09:27:33 -07:00
let adminMessageId = bleManager.saveDeviceConfig(config: dc, fromUser: connectedNode!.user!, toUser: node!.user!, adminIndex: connectedNode?.myInfo?.adminIndex ?? 0)
if adminMessageId > 0 {
// Should show a saved successfully alert once I know that to be true
// for now just disable the button after a successful save
hasChanges = false
goBack()
}
2022-06-21 02:43:37 -07:00
}
}
2022-09-23 21:41:07 -07:00
}
message: {
Text("config.save.confirm")
}
2022-06-13 20:43:51 -07:00
}
2022-06-20 00:13:04 -07:00
Spacer()
}
2022-12-13 07:49:46 -08:00
.navigationTitle("device.config")
2022-06-20 00:13:04 -07:00
.navigationBarItems(trailing:
ZStack {
ConnectedDevice(bluetoothOn: bleManager.isSwitchedOn, deviceConnected: bleManager.connectedPeripheral != nil, name: (bleManager.connectedPeripheral != nil) ? bleManager.connectedPeripheral.shortName : "????")
2022-06-20 00:13:04 -07:00
})
.onAppear {
2022-10-18 19:50:42 -07:00
self.bleManager.context = context
setDeviceValues()
2023-01-31 22:08:03 -08:00
// Need to request a LoRaConfig from the remote node before allowing changes
if bleManager.connectedPeripheral != nil && node?.deviceConfig == nil {
print("empty device config")
2023-02-22 20:31:08 -08:00
let connectedNode = getNodeInfo(id: bleManager.connectedPeripheral?.num ?? -1, context: context)
2023-03-05 14:40:07 -08:00
if node != nil && connectedNode != nil {
_ = bleManager.requestDeviceConfig(fromUser: connectedNode!.user!, toUser: node!.user!, adminIndex: connectedNode?.myInfo?.adminIndex ?? 0)
2023-01-31 22:08:03 -08:00
}
}
2022-06-21 02:43:37 -07:00
}
.onChange(of: deviceRole) { newRole in
2022-07-11 16:18:16 -07:00
if node != nil && node!.deviceConfig != nil {
2022-07-11 16:18:16 -07:00
if newRole != node!.deviceConfig!.role { hasChanges = true }
}
2022-06-21 02:43:37 -07:00
}
.onChange(of: serialEnabled) { newSerial in
2022-07-11 16:18:16 -07:00
if node != nil && node!.deviceConfig != nil {
2022-07-11 16:18:16 -07:00
if newSerial != node!.deviceConfig!.serialEnabled { hasChanges = true }
}
2022-06-21 02:43:37 -07:00
}
.onChange(of: debugLogEnabled) { newDebugLog in
2022-07-11 16:18:16 -07:00
if node != nil && node!.deviceConfig != nil {
2022-07-11 16:18:16 -07:00
if newDebugLog != node!.deviceConfig!.debugLogEnabled { hasChanges = true }
}
2022-06-13 20:43:51 -07:00
}
2022-12-05 19:47:56 -08:00
.onChange(of: buttonGPIO) { newButtonGPIO in
2022-12-05 19:47:56 -08:00
if node != nil && node!.deviceConfig != nil {
2022-12-05 19:47:56 -08:00
if newButtonGPIO != node!.deviceConfig!.buttonGpio { hasChanges = true }
}
}
.onChange(of: buzzerGPIO) { newBuzzerGPIO in
2022-12-05 19:47:56 -08:00
if node != nil && node!.deviceConfig != nil {
2022-12-05 19:47:56 -08:00
if newBuzzerGPIO != node!.deviceConfig!.buttonGpio { hasChanges = true }
}
}
2023-04-01 15:01:11 -07:00
.onChange(of: rebroadcastMode) { newRebroadcastMode in
if node != nil && node!.deviceConfig != nil {
if newRebroadcastMode != node!.deviceConfig!.rebroadcastMode { hasChanges = true }
}
}
2022-06-13 20:43:51 -07:00
}
func setDeviceValues() {
self.deviceRole = Int(node?.deviceConfig?.role ?? 0)
self.serialEnabled = (node?.deviceConfig?.serialEnabled ?? true)
self.debugLogEnabled = node?.deviceConfig?.debugLogEnabled ?? false
self.buttonGPIO = Int(node?.deviceConfig?.buttonGpio ?? 0)
self.buzzerGPIO = Int(node?.deviceConfig?.buzzerGpio ?? 0)
2023-04-01 15:01:11 -07:00
self.rebroadcastMode = Int(node?.deviceConfig?.rebroadcastMode ?? 0)
self.hasChanges = false
}
2022-06-13 20:43:51 -07:00
}