From dfe1bdfeb483a1169f3ea63707427d1547ee9f3d Mon Sep 17 00:00:00 2001 From: Joshua Ramon Enslin Date: Sun, 23 Feb 2025 03:56:35 +0100 Subject: [PATCH] Renamed configLoader to configloader --- src/configLoader/configLoader.go | 83 -------------------------------- src/setup/setup.go | 7 ++- src/setup/setup_test.go | 7 +++ 3 files changed, 12 insertions(+), 85 deletions(-) delete mode 100644 src/configLoader/configLoader.go create mode 100644 src/setup/setup_test.go diff --git a/src/configLoader/configLoader.go b/src/configLoader/configLoader.go deleted file mode 100644 index ea59a3b..0000000 --- a/src/configLoader/configLoader.go +++ /dev/null @@ -1,83 +0,0 @@ -package configLoader - -type MDWebDavUploaderConfig struct { - InstanceLink string `json:"instance"` - Mail string `json:"mail"` - WebDavAuthToken string `json:"token"` - InstitutionId int `json:"institution_id"` - Parser string `json:"parser"` - MetadataFolder string `json:"metadata_folder"` - MediaFolder string `json:"media_folder"` - PublishOnImport bool `json:"visible"` -} - -type ParserListItem struct { - name string - -} - -// Returns a uniform filepath for the configuration of this tool. -// To be compatible across operating systems, this will be a JSON -// file in the same directory as the current programm. -func getConfigFilepath() string { - -} - -// Loads configuration from the configuration file (located using -// getConfigFilepath()). -func loadFromFile() MDWebDavUploaderConfig { - -} - -// Returns a uniform filepath for the cache for the list of -// available parsers. -func getParserCacheFilepath() string { - -} - -// Stores a parser list to a cache file (located via -// getParserCacheFilepath()). -func storeParserList(parserList []ParserListItem) { - -} - -// Returns a list of the available parsers. -func listParsers() []ParserListItem { - -} - - -// Checks if inputParser is in the list of available parsers. -// Returns the parser name or an error. -func validateParser(inputParser string) (string, error) { - -} - -// Checks if a directory is the entered directory can be used -// as an source directory for export data. As such, it does need -// to exist. -// Returns the directory name or an error. -func validateDir(dir string) (string, error) { - -} - -// Validates an input mail address. -// Returns the valid mail address or an eQueries therror. -func validateMail(mail string) (string, error) { - -} - -// Validates an entered instance URL. -// Returns the entered URL in a unified form (minus optional -// trailing slashes and the /musdb suffix) or an error. -func validateInstanceLink(instanceUrl string) (string, error) { - -} - -// Validates an institution ID. -// A valid institution ID returns a HTTP 200 response code when queried -// + "/institution/" + institution_id. -// Returns either the entered instance URL or an error. -func validateInstitutionId(institutionId int, instanceUrl string) (int, error) { - -} diff --git a/src/setup/setup.go b/src/setup/setup.go index f44e450..2b0414b 100644 --- a/src/setup/setup.go +++ b/src/setup/setup.go @@ -1,6 +1,6 @@ package setup -import "gitea.armuli.eu/museum-digital/museum-digital-webdav-uploader/src/configLoader" +import "gitea.armuli.eu/museum-digital/museum-digital-webdav-uploader/src/configloader" // Fetches user information from the relevant musdb API: // https://demo.museum-digital.org/musdb/swagger/#/user/userReadOwnData @@ -18,7 +18,10 @@ func getWebDavAccessTokenFromApi(instanceUrl string) (string, error) { func setup() error { // Request input data - + validateInstanceLink() + // Get user name + // Get password + } diff --git a/src/setup/setup_test.go b/src/setup/setup_test.go new file mode 100644 index 0000000..8d5c404 --- /dev/null +++ b/src/setup/setup_test.go @@ -0,0 +1,7 @@ +package setup + +import ( + "testing" +) + +