Move device ID generation to sync.DeviceIDGen

This commit is contained in:
2024-05-16 21:26:42 -04:00
parent 8bd6bfe8ab
commit a70e92fb14
3 changed files with 19 additions and 2 deletions
+1 -1
View File
@@ -187,7 +187,7 @@ func deletionSync(deletions []string) {
}
// folderSync creates folders on the client (from the given list of folder names)
func folderSync(folders []string) { // TODO also add folders on server when they are created from the client
func folderSync(folders []string) {
for _, folder := range folders {
// check if folder already exists
isFile, isAccessible := backend.TargetIsFile(backend.EntryRoot+folder, false, 1)
+17
View File
@@ -0,0 +1,17 @@
package sync
import (
"github.com/rwinkhart/MUTN/src/backend"
"math/rand"
"os"
)
// DeviceIDGen generates a new client device ID and registers it with the server
// device IDs are only needed for online synchronization
func DeviceIDGen() {
deviceIDPrefix, _ := os.Hostname()
deviceIDSuffix := backend.StringGen(rand.Intn(48)+48, false, 0) // TODO consider using complex string generator and removing unsafe characters manually
deviceID := deviceIDPrefix + "-" + deviceIDSuffix
os.Create(backend.ConfigDir + backend.PathSeparator + "devices" + backend.PathSeparator + deviceID) // TODO remove existing device ID file if it exists (from both client and server)
GetSSHOutput("libmuttonserver register "+deviceID, false) // register device ID with server
}