-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: consolidated extension logic (#16)
- Loading branch information
1 parent
4abbc62
commit 63ed5ab
Showing
9 changed files
with
410 additions
and
154 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,108 @@ | ||
package cmd | ||
|
||
import ( | ||
"errors" | ||
"log/slog" | ||
"net/http" | ||
|
||
"github.com/karl-cardenas-coding/mywhoop/export" | ||
"github.com/karl-cardenas-coding/mywhoop/internal" | ||
"github.com/karl-cardenas-coding/mywhoop/notifications" | ||
) | ||
|
||
// determineExtension determines the notification extension to use and returns the appropriate notification. | ||
func determineNotificationExtension(cfg internal.ConfigurationData) (internal.Notification, error) { | ||
|
||
var notificationMethod internal.Notification | ||
|
||
switch cfg.Notification.Method { | ||
case "ntfy": | ||
ntfy := notifications.NewNtfy() | ||
ntfy.ServerEndpoint = cfg.Notification.Ntfy.ServerEndpoint | ||
ntfy.SubscriptionID = cfg.Notification.Ntfy.SubscriptionID | ||
ntfy.UserName = cfg.Notification.Ntfy.UserName | ||
ntfy.Events = cfg.Notification.Ntfy.Events | ||
err := ntfy.SetUp() | ||
if err != nil { | ||
return notificationMethod, err | ||
} | ||
slog.Info("Ntfy notification method configured") | ||
notificationMethod = ntfy | ||
|
||
default: | ||
slog.Info("no notification method specified. Defaulting to stdout.") | ||
std := notifications.NewStdout() | ||
notificationMethod = std | ||
} | ||
|
||
return notificationMethod, nil | ||
|
||
} | ||
|
||
// determineExporterExtension determines the export extension to use and returns the appropriate export. | ||
// The paramter isServerMode is used to determine if the exporter is being used in server mode. Use this flag to set server mode defaults. | ||
func determineExporterExtension(cfg internal.ConfigurationData, client *http.Client, dataLocation string) (internal.Export, error) { | ||
|
||
var ( | ||
filePath string | ||
exporter internal.Export | ||
) | ||
|
||
switch cfg.Export.Method { | ||
case "file": | ||
if dataLocation == "" { | ||
filePath = cfg.Export.FileExport.FilePath | ||
} | ||
|
||
if dataLocation != "" { | ||
filePath = dataLocation | ||
} | ||
|
||
fileExp := export.NewFileExport(filePath, | ||
cfg.Export.FileExport.FileType, | ||
cfg.Export.FileExport.FileName, | ||
cfg.Export.FileExport.FileNamePrefix, | ||
cfg.Server.Enabled, | ||
) | ||
slog.Info("File export method specified") | ||
exporter = fileExp | ||
|
||
case "s3": | ||
slog.Info("AWS S3 export method specified") | ||
if dataLocation != "" { | ||
cfg.Export.AWSS3.FileConfig.FilePath = dataLocation | ||
} | ||
|
||
awsS3, err := export.NewAwsS3Export(cfg.Export.AWSS3.Region, | ||
cfg.Export.AWSS3.Bucket, | ||
cfg.Export.AWSS3.Profile, | ||
client, | ||
&cfg.Export.AWSS3.FileConfig, | ||
cfg.Server.Enabled, | ||
) | ||
if err != nil { | ||
return exporter, errors.New("unable initialize AWS S3 export. Additional error context: " + err.Error()) | ||
} | ||
exporter = awsS3 | ||
|
||
default: | ||
if dataLocation == "" { | ||
filePath = cfg.Export.FileExport.FilePath | ||
} else { | ||
filePath = dataLocation | ||
} | ||
slog.Info("no valid export method specified. Defaulting to file.") | ||
|
||
fileExp := export.NewFileExport(filePath, | ||
cfg.Export.FileExport.FileType, | ||
cfg.Export.FileExport.FileName, | ||
cfg.Export.FileExport.FileNamePrefix, | ||
cfg.Server.Enabled, | ||
) | ||
exporter = fileExp | ||
|
||
} | ||
|
||
return exporter, nil | ||
|
||
} |
Oops, something went wrong.