]> git.r.bdr.sh - rbdr/captura/blobdiff - Captura/Data/CapturaSettings.swift
Add license and contributing
[rbdr/captura] / Captura / Data / CapturaSettings.swift
index 01ef78c56bf222a1ec2f960e284cff28134094e9..c8af096b40e37f96367921e7271a4fe965989bc9 100644 (file)
@@ -1,12 +1,42 @@
+/*
+ Copyright (C) 2024 Rubén Beltrán del Río
+
+ 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 https://captura.tranquil.systems.
+ */
 import Foundation
 
 struct CapturaSettings {
   static var frameRate: Int {
 import Foundation
 
 struct CapturaSettings {
   static var frameRate: Int {
-    UserDefaults.standard.integer(forKey: "frameRate")
+    get {
+      if UserDefaults.standard.object(forKey: "frameRate") == nil {
+        return 10
+      } else {
+        return min(10, max(4, UserDefaults.standard.integer(forKey: "frameRate")))
+      }
+    }
+    set {
+      UserDefaults.standard.setValue(newValue, forKey: "frameRate")
+    }
   }
   
   static var outputFormats: OutputFormatSetting {
   }
   
   static var outputFormats: OutputFormatSetting {
-    OutputFormatSetting(rawValue: UserDefaults.standard.integer(forKey: "outputFormats")) ?? .all
+    get {
+      OutputFormatSetting(rawValue: UserDefaults.standard.integer(forKey: "outputFormats")) ?? .all
+    }
+    set {
+      UserDefaults.standard.setValue(newValue.rawValue, forKey: "outputFormats")
+    }
   }
   
   static var shouldSaveMp4: Bool {
   }
   
   static var shouldSaveMp4: Bool {
@@ -30,17 +60,63 @@ struct CapturaSettings {
   }
   
   static var backend: URL? {
   }
   
   static var backend: URL? {
-    if let url = UserDefaults.standard.string(forKey: "backendUrl") {
-      return URL(string: url)
+    get {
+      if let url = UserDefaults.standard.string(forKey: "backendUrl") {
+        return URL(string: url)
+      }
+      return nil
+    }
+    set {
+      UserDefaults.standard.setValue(newValue?.absoluteString, forKey: "backendUrl")
     }
     }
-    return nil
   }
   
   static var backendFormat: OutputFormatSetting {
   }
   
   static var backendFormat: OutputFormatSetting {
-    OutputFormatSetting(rawValue: UserDefaults.standard.integer(forKey: "backendFormat")) ?? .all
+    get {
+      OutputFormatSetting(rawValue: UserDefaults.standard.integer(forKey: "backendFormat")) ?? .gifOnly
+    }
+    set {
+      UserDefaults.standard.setValue(newValue.rawValue, forKey: "backendFormat")
+    }
   }
   
   static var shouldKeepLocalFiles: Bool {
   }
   
   static var shouldKeepLocalFiles: Bool {
-    UserDefaults.standard.bool(forKey: "keepFiles")
+    get {
+      if UserDefaults.standard.object(forKey: "keepFiles") == nil {
+        return true
+      } else {
+        return UserDefaults.standard.bool(forKey: "keepFiles")
+      }
+    }
+    set {
+      UserDefaults.standard.set(newValue, forKey: "keepFiles")
+    }
+  }
+  
+  static var shouldAllowURLAutomation: Bool {
+    get {
+      UserDefaults.standard.bool(forKey: "allowURLAutomation")
+    }
+    set {
+      UserDefaults.standard.setValue(newValue, forKey: "allowURLAutomation")
+    }
+  }
+  
+  static func apply(_ config: ConfigureAction) {
+    if let fps = config.fps {
+      frameRate = fps
+    }
+    if let outputs = config.outputs {
+      outputFormats = outputs
+    }
+    if let newBackend = config.backend {
+      backend = newBackend
+    }
+    if let backendOutput = config.backendOutput {
+      backendFormat = backendOutput
+    }
+    if let keepLocalFiles = config.keepLocalFiles {
+      shouldKeepLocalFiles = keepLocalFiles
+    }
   }
 }
   }
 }