PiwigoDirectoryUploader/internal/app/app.go

38 lines
974 B
Go
Raw Normal View History

2019-02-23 21:57:54 +01:00
package app
import (
"github.com/sirupsen/logrus"
"haefelfinger.net/piwigo/DirectoriesToAlbums/internal/pkg/localFileStructure"
)
func AuthenticateToPiwigo() {
logrus.Warnln("Authenticating to piwigo server (NotImplemented)")
}
func ScanLocalDirectories(root string) {
fileNodes := localFileStructure.ScanLocalFileStructure(root)
logrus.Debugln("filepath.Walk() returned %v\n", fileNodes)
}
2019-02-23 22:02:12 +01:00
func GetAllCategoriesFromServer() {
2019-02-23 21:57:54 +01:00
// get all categories from server and flatten structure to match directory names
// 2018/2018 album blah
logrus.Warnln("Loading all categories from the server (NotImplemented)")
}
2019-02-23 22:02:12 +01:00
func FindMissingAlbums() {
2019-02-23 21:57:54 +01:00
logrus.Warnln("Looking up missing albums (NotImplemented)")
}
2019-02-23 22:02:12 +01:00
func CreateMissingAlbums() {
2019-02-23 21:57:54 +01:00
logrus.Warnln("Creating missing albums (NotImplemented)")
}
2019-02-23 22:02:12 +01:00
func FindMissingImages() {
2019-02-23 21:57:54 +01:00
logrus.Warnln("Finding missing images (NotImplemented)")
}
2019-02-23 22:02:12 +01:00
func UploadImages() {
2019-02-23 21:57:54 +01:00
logrus.Warnln("Uploading missing images (NotImplemented)")
2019-02-23 22:02:12 +01:00
}