Sync Android photos to Synology NAS

A wonderful little app disappeared from the Play Store recently: Sweet Home WiFi Picture Backup. This app perfectly (for me) synchronised my phone’s photos with my Synology NAS (via CIFS/SMB), creating the year/month/day filing I prefer, retaining photos on the phone for a specified period – in my case, one month.

Frustratingly there seems to be no other app that does exactly this. After much research and a bit of coding, I settled on the following:

  • Use Syncthing to synchronise my phone’s photos/videos to an interim holding area on my NAS.
  • Use a Python script to copy the media from that holding area to the permanent location in the year/month/day structure I prefer.
  • Allow the script to delete media from the holding area more than 30 days old. Syncthing propagates the deletions back to my phone.
  • Have the script use checksums (SHA1) to ensure that nothing is deleted unless it has been copied to the permanent location.
  • Use checksums also to ensure that no media is overwritten with different media of the same same.

To do this you will need:

  1. SynoCommunity installed on your NAS
  2. Syncthing from SynoCommunity installed on your NAS
  3. Syncthing-Fork installed on your phone
  4. The Python and Bash scripts from my GitHub repository: robpomeroy/photo_sync

High-level steps:

  1. Install Syncthing-Fork on your phone
  2. Install Synthing on your NAS
  3. One on device add the other, within Syncthing
  4. On the phone, share the DCIM folder, within Syncthing
  5. On the NAS, set the target directory to (e.g.) a new folder photos-inbound in your user directory
  6. Clone the photo_sync repository to your NAS, and ensure photo_sync.sh is executable
  7. Set up the Python environment and install the necessary modules by running the following on the NAS (in a shell, in the folder containing the scripts):
    • python -m venv .venv
    • source .venv/bin/activate
    • pip install -r requirements.txt
    • deactivate
  8. Copy the .env.example file to .env and edit the settings to suit you
  9. Set a scheduled task to run photo_sync.sh as often as you require (I have it set to run daily at midnight)

See the code and the README in the GitHub repo for more details. Note that the Bash script activates the Python virtual environment and runs the Python script from within that environment.