2022-09-22 17:45:33 +00:00
|
|
|
package models
|
|
|
|
|
|
|
|
import (
|
|
|
|
"encoding/json"
|
|
|
|
"fmt"
|
|
|
|
"io/ioutil"
|
|
|
|
"os"
|
|
|
|
)
|
|
|
|
|
|
|
|
type User struct {
|
|
|
|
AuthUser string`json:"authUser"`
|
|
|
|
NextcloudBaseUrl string`json:"nextcloudUrl"`
|
|
|
|
Username string`json:"username"`
|
|
|
|
Password string`json:"password"`
|
2022-09-23 09:58:53 +00:00
|
|
|
ConvertJobs []ConvertJob`json:"jobs"`
|
2022-09-22 17:45:33 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
type ConvertJob struct {
|
|
|
|
JobName string`json:"jobName"`
|
|
|
|
SourceDir string`json:"sourceDir"`
|
|
|
|
DestinationDir string`json:"destinationDir"`
|
|
|
|
KeepFolders string`json:"keepFolders"`
|
|
|
|
Recursive string`json:"recursive"`
|
|
|
|
Executions []string`json:"execution"`
|
|
|
|
}
|
|
|
|
|
2022-09-23 09:58:53 +00:00
|
|
|
type NcConvertUsers struct {
|
2022-09-22 17:45:33 +00:00
|
|
|
Users []User`json:"users"`
|
|
|
|
}
|
|
|
|
|
|
|
|
// Parses the given file to the in memory struct
|
2022-09-23 09:58:53 +00:00
|
|
|
func ParseConvertUsers(filePath string) (*NcConvertUsers, error) {
|
2022-09-22 17:45:33 +00:00
|
|
|
|
2022-09-23 09:58:53 +00:00
|
|
|
file, err := os.OpenFile(filePath, os.O_APPEND|os.O_CREATE, 0644)
|
2022-09-22 17:45:33 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, fmt.Errorf("failed to open the file '%s': %s", filePath, err)
|
|
|
|
}
|
|
|
|
defer file.Close()
|
|
|
|
|
|
|
|
byteValue, err := ioutil.ReadAll(file)
|
|
|
|
if err != nil {
|
|
|
|
return nil, fmt.Errorf("failed to parse 'ncConverter.json': %s", err)
|
|
|
|
}
|
|
|
|
|
2022-09-23 09:58:53 +00:00
|
|
|
var conv NcConvertUsers
|
2022-09-22 17:45:33 +00:00
|
|
|
|
|
|
|
json.Unmarshal(byteValue, &conv)
|
|
|
|
|
|
|
|
return &conv, nil
|
|
|
|
}
|