PiwigoDirectoryUploader/README.md

133 lines
4.3 KiB
Markdown
Raw Normal View History

2019-03-04 00:00:27 +01:00
# PiwigoDirectoryUploader
2019-02-22 23:04:11 +01:00
2019-03-04 00:00:27 +01:00
This tools mirrors the directory structure of the given root directory as albums and subalbums in piwigo
and uploads all images to the albums.
## Features
Currently the following features are supported
- Creating directory structure as album hierarchy in Piwigo
2019-03-20 23:53:25 +01:00
- Check if an image needs to be uploaded (only md5sum variant currently supported)
2019-03-04 00:00:27 +01:00
- Upload image and assign it to the album based on the directory structure
2019-03-20 23:53:25 +01:00
- Upload updated images that changed locally
- Local metadata storage using sqlite to make change detection easier
- Rebuild the local metadata database without uploading any pictures. Though, The categories get created!
2019-03-24 23:58:46 +01:00
- Remove images no longer present (configurable)
2019-03-04 00:00:27 +01:00
2019-03-20 23:53:25 +01:00
There are some features planned but not ready yet:
2019-03-04 00:00:27 +01:00
2019-03-20 23:53:25 +01:00
- Optimize performance on initial matadata build up.
- Upload more than one file at a time
- Fully support files within multiple albums
2019-03-04 00:00:27 +01:00
- Specify more than one root path to gather images on the local system
2019-03-24 23:58:46 +01:00
- Storing categories in the local database
2019-03-04 00:00:27 +01:00
## Build and run the application
### checkout
To get the latest version, you should check out https://git.haefelfinger.net/piwigo/PiwigoDirectoryUploader.git to
your local go source directory.
### Dependencies
There are some external dependencies to build the application.
- logrus: This is a little logging library that is quite handy
- iniflags: The iniflags makes handling configuration files and applications parameters quite easy.
You may install these manually with the following commands or just use the command under "Build" to get all dependencies.
```
go get github.com/sirupsen/logrus
go get github.com/vharitonsky/iniflags
```
To build the mocks there are two go:generate dependencies:
```
go get github.com/golang/mock/gomock
go get github.com/golang/mock/mockgen
```
2019-03-04 00:00:27 +01:00
### Build
Get all dependencies first.
```
go get ./...
```
2019-03-20 23:53:25 +01:00
Build the main executable by using the following command. By default it gets the name PiwigoDirectoryUploader.go but
can be renamed to your favorite application name.
2019-03-04 00:00:27 +01:00
```
2019-03-04 21:35:18 +01:00
go build cmd/PiwigoDirectoryUploader/PiwigoDirectoryUploader.go
2019-03-04 00:00:27 +01:00
```
To rebuild the mocks you can simply use the following command:
```
go generate ./...
```
2019-03-20 23:53:25 +01:00
### Configuration
#### Command line
You get the following help information to the command line by using:
```
./PiwigoDirectoryUploader -help
```
The following options are supported to run the application from the command line.
```
Usage of ./PiwigoDirectoryUploader:
-allowMissingConfig
Don't terminate the app if the ini file cannot be read.
-allowUnknownFlags
Don't terminate the app if ini file contains unknown flags.
-config string
Path to ini config for using in go flags. May be relative to the current executable path.
-configUpdateInterval duration
Update interval for re-reading config file set via -config flag. Zero disables config file re-reading.
-dumpflags
Dumps values for all flags defined in the app into stdout in ini-compatible syntax and terminates the app.
-imagesRootPath string
This is the images root path that should be mirrored to piwigo.
-logLevel string
The minimum log level required to write out a log message. (panic,fatal,error,warn,info,debug,trace) (default "info")
-noUpload
If set to true, the metadata gets prepared but the upload is not called and the application is exited with code 90
-piwigoPassword string
This is password to the given username.
-piwigoUrl string
The root url without tailing slash to your piwigo installation.
-piwigoUser string
The username to use during sync.
2019-03-24 23:58:46 +01:00
-removeImages
If set to true, images scheduled to delete will be removed from the piwigo server. Be sure you want to delete images before enabling this flag.
2019-03-20 23:53:25 +01:00
-sqliteDb string
The connection string to the sql lite database file. (default "./localstate.db")
```
#### Configuration file
2019-03-04 00:00:27 +01:00
2019-03-21 22:22:53 +01:00
It is also possible to use a configuration file to save the settings to be used with multiple piwigo instances.
To use configuration files, just copy the default one and edit the parameters to your wish.
2019-03-04 00:00:27 +01:00
```
cp ./configs/defaultConfig.ini ./localConfig.ini
nano ./localConfig.ini
```
2019-03-20 23:53:25 +01:00
### Run the uploader
2019-03-04 00:00:27 +01:00
Finally you may run the application using the following example command.
```
2019-03-04 21:35:18 +01:00
./PiwigoDirectoryUploader -config=./localConfig.ini
2019-03-04 00:00:27 +01:00
```