PiwigoDirectoryUploader/internal/app/app.go

81 lines
2.3 KiB
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"
"haefelfinger.net/piwigo/DirectoriesToAlbums/internal/pkg/piwigo/authentication"
2019-02-23 21:57:54 +01:00
)
func Run(rootPath string) {
2019-02-24 01:17:10 +01:00
context := configureContext(rootPath)
loginToPiwigoAndConfigureContext(context)
//ScanLocalDirectories(context)
//GetAllCategoriesFromServer()
//FindMissingAlbums()
//CreateMissingAlbums()
//FindMissingImages()
//UploadImages()
authentication.Logout(context.Piwigo)
2019-02-23 21:57:54 +01:00
}
func ScanLocalDirectories(context *AppContext) {
var fileNodes map[string]localFileStructure.FilesystemNode = localFileStructure.ScanLocalFileStructure(context.LocalRootPath)
for _, node := range fileNodes {
logrus.Debugln("found path entry:", node.Key)
}
2019-02-23 21:57:54 +01:00
}
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
}
2019-02-24 01:17:10 +01:00
func configureContext(rootPath string) *AppContext {
logrus.Infoln("Preparing application context and configuration")
context := new(AppContext)
context.LocalRootPath = rootPath
context.Piwigo = new(authentication.PiwigoContext)
//TODO: Move this values to configuration files
//No, these are not real credentials :-P
context.Piwigo.Url = "http://pictures.haefelfinger.net/ws.php?format=json"
context.Piwigo.Username = "admin"
context.Piwigo.Password = "asdf"
return context
}
func loginToPiwigoAndConfigureContext(context *AppContext) {
logrus.Infoln("Logging in to piwigo and getting chunk size configuration for uploads")
authentication.Login(context.Piwigo)
initializeUploadChunkSize(context)
}
func initializeUploadChunkSize(context *AppContext) {
userStatus := authentication.GetStatus(context.Piwigo)
context.ChunkSizeBytes = userStatus.Result.UploadFormChunkSize * 1024
logrus.Debugln(context.ChunkSizeBytes)
}