├── conf ├── PBK_routed-ap.conf ├── PBK_dnsmasq.conf ├── update_profile.py ├── PBK_dhcpcd.conf └── config.py ├── report.log ├── .github └── FUNDING.yml ├── static └── style.css ├── templates ├── pibackup_report.html ├── pitimelapse.html ├── piclean.html ├── piclone.html ├── pibackup.html ├── home.html └── piduplicated.html ├── install.sh ├── README.md ├── piclean.py ├── piclone.py ├── piduplicated.py ├── pitimelapse.py ├── pibackup_web.py ├── pibackup.py └── LICENSE /conf/PBK_routed-ap.conf: -------------------------------------------------------------------------------- 1 | #Enable IP4v routing 2 | net.ipv4.ip_foward=1 3 | -------------------------------------------------------------------------------- /report.log: -------------------------------------------------------------------------------- 1 | ***** PiBackup ***** 2 | 3 | 4 | End (Disk unmounted!) 5 | -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | # These are supported funding model platforms 2 | 3 | github: ['richonguzman'] 4 | custom: ['paypal.me/richonguzman'] 5 | -------------------------------------------------------------------------------- /conf/PBK_dnsmasq.conf: -------------------------------------------------------------------------------- 1 | interface=wlan0 # Listening interface 2 | dhcp-range=192.168.100.5,192.168.100.20,255.255.255.0,24h #Pool of IP addresses served via DHCP 3 | domain=wlan # Local wireless DNS domain 4 | address=/gw.wlan/192.168.100.1 # Alias for this router -------------------------------------------------------------------------------- /static/style.css: -------------------------------------------------------------------------------- 1 | body { 2 | background: black; 3 | color: white; 4 | } 5 | 6 | .button { 7 | font: bold 24px Arial; 8 | text-decoration: none; 9 | background-color: #E74C3C; 10 | color: #ECF0F1; 11 | padding: 3px 5px 3px 5px; 12 | border-top: 1px solid #FDFEFE; 13 | border-right: 1px solid #FDFEFE; 14 | border-bottom: 1px solid #FDFEFE; 15 | border-left: 1px solid #FDFEFE; 16 | } 17 | 18 | -------------------------------------------------------------------------------- /templates/pibackup_report.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | {{ title }} PiBackup Report 5 | 7 | 8 | 9 |

PiBackup Report

10 |
11 |
{{ n }}
12 | 13 |
14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /conf/update_profile.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python3 2 | 3 | import os 4 | 5 | current_folder = os.getcwd() + '/' 6 | 7 | def start_update(): 8 | with open('/etc/profile','r') as input_file: 9 | lines = input_file.readlines() 10 | for line in lines: 11 | with open(current_folder + 'conf/profile','a') as output_file: 12 | output_file.write(line) 13 | input_file.close() 14 | with open(current_folder + 'conf/profile','a') as output_file: 15 | output_file.write('sudo python3 /home/pi/PiBackup/pibackup_web.py &') 16 | output_file.close() 17 | 18 | ############ UPDATE_PROFILE ############ 19 | start_update() -------------------------------------------------------------------------------- /templates/pitimelapse.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | {{ title }} PiTimelapse 5 | 7 | 8 | 9 |

10 |

PiTimelapse : (SD ---> SSD)

11 | 12 |

13 |

14 |
15 | 16 |

17 | 18 |

19 | 20 |
21 | 22 | 23 | -------------------------------------------------------------------------------- /templates/piclean.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | {{ title }} PiClean 5 | 7 | 8 | 9 |

10 |

PiClean SSD

11 | 12 |

13 |

14 |
15 | 16 |

17 | 18 |

19 | 20 |
21 | 22 | 23 | -------------------------------------------------------------------------------- /templates/piclone.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | {{ title }} PiClone 5 | 7 | 8 | 9 |

10 |

PiClone : (SSD 1--->SSD 2)

11 | 12 |

13 |

14 |
15 | 16 |

17 | 18 |

19 | 20 |
21 | 22 | 23 | -------------------------------------------------------------------------------- /templates/pibackup.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | {{ title }} PiBackup 5 | 7 | 8 | 9 |

10 |

PiBackup : (SD ---> SSD)

11 | 12 |

13 |

14 |
15 | 16 |

17 | 18 |

19 | 20 |

21 | 22 |

23 | 24 |
25 | 26 | 27 | -------------------------------------------------------------------------------- /install.sh: -------------------------------------------------------------------------------- 1 | python3 /home/pi/PiBackup/conf/config.py 2 | sleep 1 3 | python3 /home/pi/PiBackup/conf/update_profile.py 4 | sleep 3 5 | sudo apt update 6 | sleep 1 7 | sudo apt install exfat-fuse exfat-utils ntfs-3g -y 8 | sleep 1 9 | sudo apt-get install -y libimage-exiftool-perl 10 | sleep 1 11 | sudo pip3 install PyExifTool 12 | sleep 1 13 | sudo apt install hostapd dnsmasq -y 14 | sleep 1 15 | sudo systemctl unmask hostapd 16 | sleep 1 17 | sudo systemctl enable hostapd 18 | sleep 1 19 | sudo DEBIAN_FRONTEND=noninteractive apt install -y netfilter-persistent iptables-persistent 20 | sleep 1 21 | sudo cp /home/pi/PiBackup/conf/PBK_dhcpcd.conf /etc/dhcpcd.conf 22 | sleep 1 23 | sudo cp /home/pi/PiBackup/conf/PBK_routed-ap.conf /etc/sysctl.d/routed-ap.conf 24 | sleep 1 25 | sudo iptables -t nat -A POSTROUTING -o eth0 -j MASQUERADE 26 | sleep 1 27 | sudo netfilter-persistent save 28 | sleep 1 29 | sudo mv /etc/dnsmasq.conf /etc/dnsmasq.conf.orig 30 | sleep 1 31 | sudo cp /home/pi/PiBackup/conf/PBK_dnsmasq.conf /etc/dnsmasq.conf 32 | sleep 1 33 | sudo rfkill unblock wlan 34 | sleep 1 35 | sudo cp /home/pi/PiBackup/conf/PBK_hostapd.conf /etc/hostapd/hostapd.conf 36 | sleep 1 37 | sudo cp /home/pi/PiBackup/conf/profile /etc/profile 38 | sleep 5 39 | sudo systemctl reboot -------------------------------------------------------------------------------- /templates/home.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | {{ title }} Home 5 | 7 | 8 | 9 |

10 |

PiBackup by @richonguzman

11 |

12 | 13 |

14 | 15 |

16 | 17 |

18 | 19 |

20 | 21 |

22 |

23 |
24 | 25 |
26 | 27 | 28 | -------------------------------------------------------------------------------- /templates/piduplicated.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | {{ title }} PiDuplicated 5 | 7 | 8 | 9 |

10 |

PiDuplicated Analysis on SSD

11 | 12 |

13 |

14 |
15 | 16 |

17 | 18 |

19 |

20 | 21 |

22 | 23 |

24 | 25 |

26 |

27 | 28 |

29 | 30 |

31 | 32 |
33 | 34 | 35 | -------------------------------------------------------------------------------- /conf/PBK_dhcpcd.conf: -------------------------------------------------------------------------------- 1 | # A sample configuration for dhcpcd. 2 | # See dhcpcd.conf(5) for details. 3 | 4 | # Allow users of this group to interact with dhcpcd via the control socket. 5 | #controlgroup wheel 6 | 7 | # Inform the DHCP server of our hostname for DDNS. 8 | hostname 9 | 10 | # Use the hardware address of the interface for the Client ID. 11 | clientid 12 | # or 13 | # Use the same DUID + IAID as set in DHCPv6 for DHCPv4 ClientID as per RFC4361. 14 | # Some non-RFC compliant DHCP servers do not reply with this set. 15 | # In this case, comment out duid and enable clientid above. 16 | #duid 17 | 18 | # Persist interface configuration when dhcpcd exits. 19 | persistent 20 | 21 | # Rapid commit support. 22 | # Safe to enable by default because it requires the equivalent option set 23 | # on the server to actually work. 24 | option rapid_commit 25 | 26 | # A list of options to request from the DHCP server. 27 | option domain_name_servers, domain_name, domain_search, host_name 28 | option classless_static_routes 29 | # Respect the network MTU. This is applied to DHCP routes. 30 | option interface_mtu 31 | 32 | # Most distributions have NTP support. 33 | #option ntp_servers 34 | 35 | # A ServerID is required by RFC2131. 36 | require dhcp_server_identifier 37 | 38 | # Generate SLAAC address using the Hardware Address of the interface 39 | #slaac hwaddr 40 | # OR generate Stable Private IPv6 Addresses based from the DUID 41 | slaac private 42 | 43 | # Example static IP configuration: 44 | #interface eth0 45 | #static ip_address=192.168.0.10/24 46 | #static ip6_address=fd51:42f8:caae:d92e::ff/64 47 | #static routers=192.168.0.1 48 | #static domain_name_servers=192.168.0.1 8.8.8.8 fd51:42f8:caae:d92e::1 49 | 50 | # It is possible to fall back to a static IP if DHCP fails: 51 | # define static profile 52 | #profile static_eth0 53 | #static ip_address=192.168.1.23/24 54 | #static routers=192.168.1.1 55 | #static domain_name_servers=192.168.1.1 56 | 57 | # fallback to static profile on eth0 58 | #interface eth0 59 | #fallback static_eth0 60 | interface wlan0 61 | static ip_address=192.168.100.1/24 62 | nohook wpa_supplicant 63 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # PiBackup 2 | 3 | Transform your Raspberry Pi 4 (tested on RP 4 only) into your Photography companion like a Gnarbox (which currently is no more available as it seems the don't produce it anymore) 4 | 5 | This will transform your Raspberry into an Wifi-Hotspot (with your custom SSID and Password if you like). Then you use your iPhone (soon the be tested with other brands) to connect to the Hotspot and open '192.168.100.1:5000/' and control the operations of the Backup in the webpage. You choose if you want only '.JPG' or only '.RAW' or just 'Video' files in the Backup. 6 | 7 | ------------------------- 8 | NEW FUNTIONS: 9 | 1) PiBackup from SD to SSD: 10 | - Connect the Backup Disk (to which the backup will be saved). 11 | - Connect the Source Disk (usually a microSD/SD from your loved Camera). 12 | - Checks/creates a 'PiBackup' folder on the Backup Disk (all backups will be saved inside this folder). 13 | - By default it only copies files avoiding duplication (checking by name, size and even hash). 14 | - Each file is processed to extract exif info and put each inside its own folder (Example: [FUJIFILM XT-3]). 15 | - Each folder is then separated by '.JPG' or '.RAW' files into [JGP] and [RAW] folders to ease the uploading to your prefered photography editor. 16 | 17 | 2) PiClean: (Deletes only JPG Files from 'PiBackup' and/or 'PiTimelapse' folders to get more space if Backup-Disk is (almost) full) 18 | - Connect the Backup Disk and let it work. 19 | 20 | 3) PiClone: (Clones 'PiBackup' and/or 'PiTimelapse' folders from Backup-Disk to another) 21 | - Connect the New Backup Disk (to which the new backup will be cloned). 22 | - Connect the Source Disk (your Backup-Disk) and let it work. 23 | 24 | 4) PiDuplicated: (Checks all your files in your Backup-Disk with hash info and makes a Log file of it or Deletes all duplicated files) 25 | - Connect the Backup Disk and let it work. 26 | 27 | 5) PiTimelapse: (Backups all photographs from microSD/SD and sort/rename files into for importing ease) 28 | - Connect the Backup Disk (to which the backup will be saved). 29 | - Connect the Source Disk (usually a microSD/SD from your loved Camera). 30 | - Checks/creates a 'PiTimelapse' folder on the Backup Disk (all Timelapse Backups will be saved inside this folder). 31 | - By default it only copies files avoiding duplication. 32 | - Creates a folder with the oldes file date and the Camera Maker and Camera Model. 33 | - Puts all photographs inside, separated by extension and renames each into 'Timelapse_000X'. 34 | 35 | ------------------------- 36 | 37 | To start the 'PiBackup': 38 | - "Burn" your microSD with Raspberry Pi OS Bullseye (the regular 32 bits version -not light-) [ 8GB microSD is enough ] 39 | - Let it boot and set your Country, Languague and Timezone, Raspberry Pi OS Password, select your Wifi and Password and 'Next' for updates) 40 | - Open a Terminal Window and write: 41 | 42 | git clone https://github.com/richonguzman/PiBackup.git 43 | 44 | cd PiBackup 45 | 46 | bash install.sh 47 | 48 | 49 | This will open a configuration program to select your : 50 | - 'country_code' (two letters only, example: 'CL' (for Chile)) 51 | - 'WIFI-SSID' 52 | - 'WIFI-Password' 53 | 54 | let it install everything and it will reboot and will be ready to work (connect to the WIFI-SSID and open '192.168.100.1:5000/' for the menu) 55 | 56 | ------------------------- 57 | 58 | Please help me get a new lens with: 59 | -- 60 | 61 | [![Donate with PayPal](https://raw.githubusercontent.com/stefan-niedermann/paypal-donate-button/master/paypal-donate-button.png)](https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=GT9Z466ZSEFRN) 62 | ------------------------- 63 | 64 | More things to come with this: 65 | - any ideas to work with??? 66 | - anything we can think off 67 | -------------------------------------------------------------------------------- /piclean.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python3 2 | 3 | #----------------------------------------------------------# 4 | # == PiClean == # 5 | # # 6 | # Clean(Delete) all JPG files in PiBackup or PiTimelapse # 7 | # folders in the external Backup SSD/HD # 8 | # # 9 | # https://github.com/richonguzman/PiBackup # 10 | # # 11 | # Copyright (C) 2022 Ricardo Guzman richonguzman@gmail.com # 12 | # # 13 | #----------------------------------------------------------# 14 | 15 | import os, time, sys 16 | import RPi.GPIO as GPIO 17 | 18 | led_pin = 16 # 3mm Red LED in series with 2k2 resistor connected to pin 16 19 | GPIO.setmode(GPIO.BOARD) 20 | GPIO.setup(led_pin, GPIO.OUT) 21 | GPIO.setwarnings(False) 22 | 23 | path_mounted_disk = '/media/pi/' 24 | 25 | def check_connected_disks(): 26 | while len(os.listdir(path_mounted_disk)) == 0: 27 | GPIO.output(led_pin, False) 28 | time.sleep(0.5) 29 | GPIO.output(led_pin, True) 30 | time.sleep(0.5) 31 | disk_to_clean = os.listdir(path_mounted_disk)[0] 32 | path_disk_to_clean = os.path.join(path_mounted_disk, disk_to_clean) 33 | print("Disk to be Cleaned : " + disk_to_clean + '\n') 34 | return path_disk_to_clean 35 | 36 | def cleaning(path_cleaned): 37 | time.sleep(1) 38 | GPIO.output(led_pin, False) 39 | folders_to_clean = [] 40 | if sys.argv[1] == 'bk': 41 | folders_to_clean = ['PiBackup'] 42 | elif sys.argv[1] == 'tm': 43 | folders_to_clean = ['PiTimelapse'] 44 | elif sys.argv[1] == 'bktm': 45 | folders_to_clean = ['PiBackup', 'PiTimelapse'] 46 | else: 47 | print("Folders to be cleaned not in disk") 48 | all_folders_counter = [0,0] 49 | all_folders_weight = [0,0] 50 | for x in range(len(folders_to_clean)): 51 | counter = 0 52 | folder_weight = 0 53 | path_clean_folder = os.path.join(path_cleaned, folders_to_clean[x]) 54 | if os.path.isdir(path_clean_folder): 55 | for D, sD, F in os.walk(path_clean_folder): 56 | for file in F: 57 | path_file_to_clean = os.path.join(path_clean_folder, D, file) 58 | if file.endswith(('jpeg', 'JPEG', 'jpg', 'JPG', 'heic', 'HEIC', 'heif', 'HEIF')): 59 | counter += 1 60 | file_weight = os.path.getsize(path_file_to_clean) 61 | folder_weight += file_weight 62 | os.remove(path_file_to_clean) 63 | all_folders_counter[x] = counter 64 | all_folders_weight[x] = round(folder_weight/1000000000,2) 65 | print(str(all_folders_counter[x]) + " JPG files deleted (" + str(all_folders_weight[x]) + " GB)") 66 | else: 67 | print(path_clean_folder + " folder does not exists") 68 | 69 | def finalize(path_clean_disk): 70 | counter = 0 71 | GPIO.output(led_pin, False) 72 | time.sleep(1) 73 | while counter < 4: 74 | GPIO.output(led_pin, True) 75 | time.sleep(0.1) 76 | GPIO.output(led_pin, False) 77 | time.sleep(0.1) 78 | GPIO.output(led_pin, True) 79 | time.sleep(0.1) 80 | GPIO.output(led_pin, False) 81 | time.sleep(0.1) 82 | GPIO.output(led_pin, True) 83 | time.sleep(0.1) 84 | GPIO.output(led_pin, False) 85 | time.sleep(0.6) 86 | counter += 1 87 | # GPIO.cleanup() 88 | command = 'sudo eject ' + path_clean_disk 89 | os.system(command) 90 | print('\n' + "End (Disk unmounted!)") 91 | 92 | def start_piclean(): 93 | print("***** PiClean *****" + '\n') 94 | path_disk_to_be_cleaned = check_connected_disks() 95 | cleaning(path_disk_to_be_cleaned) 96 | finalize(path_disk_to_be_cleaned) 97 | 98 | 99 | ####################################### PiClean ####################################### 100 | start_piclean() -------------------------------------------------------------------------------- /conf/config.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python3 2 | 3 | import os 4 | 5 | current_folder = os.getcwd() + '/' 6 | 7 | country_letters = ['AF','AX','AL','DZ','AS','AD','AO','AI','AQ','AG','AR','AM','AW','AU','AT','AZ', 8 | 'BH','BS','BD','BB','BY','BE','BZ','BJ','BM','BT','BO','BQ','BA','BW','BV','BR', 9 | 'IO','BN','BG','BF','BI','KH','CM','CA','CV','KY','CF','TD','CL','CN','CX','CC', 10 | 'CO','KM','CG','CD','CK','CR','CI','HR','CU','CW','CY','CZ','DK','DJ','DM','DO', 11 | 'EC','EG','SV','GQ','ER','EE','ET','FK','FO','FJ','FI','FR','GF','PF','TF','GA', 12 | 'GM','GE','DE','GH','GI','GR','GL','GD','GP','GU','GT','GG','GN','GW','GY','HT', 13 | 'HM','VA','HN','HK','HU','IS','IN','ID','IR','IQ','IE','IM','IL','IT','JM','JP', 14 | 'JE','JO','KZ','KE','KI','KP','KR','KW','KG','LA','LV','LB','LS','LR','LY','LI', 15 | 'LT','LU','MO','MK','MG','MW','MY','MV','ML','MT','MH','MQ','MR','MU','YT','MX', 16 | 'FM','MD','MC','MN','ME','MS','MA','MZ','MM','NA','NR','NP','NL','NC','NZ','NI', 17 | 'NE','NG','NU','NF','MP','NO','OM','PK','PW','PS','PA','PG','PY','PE','PH','PN', 18 | 'PL','PT','PR','QA','RE','RO','RU','RW','BL','SH','KN','LC','MF','PM','VC','WS', 19 | 'SM','ST','SA','SN','RS','SC','SL','SG','SX','SK','SI','SB','SO','ZA','GS','SS', 20 | 'ES','LK','SD','SR','SJ','SZ','SE','CH','SY','TW','TJ','TZ','TH','TL','TG','TK', 21 | 'TO','TT','TN','TR','TM','TC','TV','UG','UA','AE','GB','US','UM','UY','UZ','VU', 22 | 'VE','VN','VG','VI','WF','EH','YE','ZM','ZW'] 23 | 24 | answer_letters = ['y','n','Y','N'] 25 | 26 | 27 | def start_config(): 28 | print('\n### PiBackup Country and Wifi configuration ###\n') 29 | country = input("-Country Code (just two letters) : ") 30 | country = country.upper() 31 | while not country in country_letters: 32 | country = input("-Input a valid Country Code (just two letters) : ") 33 | country = country.upper() 34 | print("\nThe default Wifi Hotspot Name is 'PiBackup'") 35 | answer_1 = input("-do you want to change it? (y/n) ") 36 | while not answer_1 in answer_letters: 37 | answer_1 = input("-do you want to change it? (y/n) ") 38 | if answer_1 == 'y' or answer_1 == 'Y': 39 | wifi_hotspot_name = input("-Name of NEW Wifi Hotspot Name : ") 40 | else: 41 | wifi_hotspot_name = 'PiBackup' 42 | print(wifi_hotspot_name) 43 | print("\nThe default Wifi Hotspot Password is '8Fotografia8'") 44 | answer_2 = input("-do you want to change it? (y/n) ") 45 | while not answer_2 in answer_letters: 46 | answer_2 = input("-do you want to change it? (y/n) ") 47 | if answer_2 == 'y' or answer_2 == 'Y': 48 | wifi_hotspot_password = input("-NEW Password (8 digits/letters or more): ") 49 | while len(wifi_hotspot_password) < 8: 50 | print("\nwifi Password must be 8 or more digits/letters") 51 | wifi_hotspot_password = input("-NEW Password : ") 52 | else: 53 | wifi_hotspot_password = '8Fotografia8' 54 | print(wifi_hotspot_password) 55 | 56 | with open(current_folder + 'conf/PBK_hostapd.conf','w') as output_file: 57 | output_file.write('interface=wlan0\n') 58 | output_file.write('ssid='+str(wifi_hotspot_name)+'\n') 59 | output_file.write('macaddr_acl=0\n') 60 | output_file.write('ignore_broadcast_ssid=0\n\n') 61 | 62 | output_file.write('## 5GHz\n') 63 | output_file.write('hw_mode=a\n') 64 | output_file.write('channel=36\n') 65 | output_file.write('country_code='+str(country)+'\n') 66 | output_file.write('ieee80211d=1\n') 67 | output_file.write('ieee80211n=1\n') 68 | output_file.write('ieee80211ac=1\n') 69 | output_file.write('wmm_enabled=1\n\n') 70 | output_file.write('## wpa auth\n') 71 | output_file.write('auth_algs=1\n') 72 | output_file.write('wpa=2\n') 73 | output_file.write('wpa_passphrase='+str(wifi_hotspot_password)+'\n') 74 | output_file.write('wpa_key_mgmt=WPA-PSK\n') 75 | output_file.write('wpa_pairwise=TKIP\n') 76 | output_file.write('rsn_pairwise=CCMP\n') 77 | output_file.close() 78 | 79 | print("\n\nPiBackup configuration updated...") 80 | 81 | 82 | ############ CONFIGURATION ############ 83 | start_config() -------------------------------------------------------------------------------- /piclone.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python3 2 | 3 | #----------------------------------------------------------# 4 | # == PiClone == # 5 | # # 6 | # Clone every file from 'PiBackup' or 'PiTimelapse' # 7 | # folder to your Backup SSD/HD to another SSD/HD # 8 | # # 9 | # https://github.com/richonguzman/PiBackup # 10 | # # 11 | # Copyright (C) 2022 Ricardo Guzman richonguzman@gmail.com # 12 | # # 13 | #----------------------------------------------------------# 14 | 15 | import os, time, sys 16 | import RPi.GPIO as GPIO 17 | 18 | led_pin = 16 # 3mm Red LED in series with 2k2 resistor connected to pin 16 19 | GPIO.setmode(GPIO.BOARD) 20 | GPIO.setup(led_pin, GPIO.OUT) 21 | GPIO.setwarnings(False) 22 | 23 | path_mounted_disk = '/media/pi/' 24 | 25 | def check_connected_disks(): 26 | while len(os.listdir(path_mounted_disk)) == 0: 27 | GPIO.output(led_pin, False) 28 | time.sleep(0.5) 29 | GPIO.output(led_pin, True) 30 | time.sleep(0.5) 31 | destination_disk = os.listdir(path_mounted_disk)[0] 32 | destination = os.path.join(path_mounted_disk, destination_disk) 33 | while len(os.listdir(path_mounted_disk)) == 1: 34 | GPIO.output(led_pin, True) 35 | time.sleep(0.1) 36 | GPIO.output(led_pin, False) 37 | time.sleep(0.1) 38 | if destination_disk == os.listdir(path_mounted_disk)[0]: 39 | source_disk = os.listdir(path_mounted_disk)[1] 40 | else: 41 | source_disk = os.listdir(path_mounted_disk)[0] 42 | source = os.path.join(path_mounted_disk, source_disk) 43 | destination = os.path.join(path_mounted_disk, destination_disk) 44 | print("Source Disk : " + source_disk) 45 | print("Backup Disk : " + destination_disk + "\n") 46 | return source, destination 47 | 48 | def clone(path_source, path_destination): 49 | time.sleep(1) 50 | GPIO.output(led_pin, True) 51 | time.sleep(1) 52 | if sys.argv[1] == 'bk': 53 | folders_to_clone = ['PiBackup'] 54 | elif sys.argv[1] == 'tm': 55 | folders_to_clone = ['PiTimelapse'] 56 | elif sys.argv[1] == 'bktm': 57 | folders_to_clone = ['PiBackup', 'PiTimelapse'] 58 | for x in range(len(folders_to_clone)): 59 | path_source_clone = os.path.join(path_source, folders_to_clone[x]) 60 | path_destination_clone = os.path.join(path_destination, folders_to_clone[x]) 61 | if os.path.isdir(path_source_clone): 62 | if not os.path.isdir(path_destination_clone): 63 | os.mkdir(path_destination_clone) 64 | clone_command= 'rsync -au '+ path_source_clone + "/ " + path_destination_clone 65 | print("PiClone '" + folders_to_clone[x] + "' folder ") 66 | os.system(clone_command) 67 | print("('" + folders_to_clone[x] + "' cloned)\n") 68 | else: 69 | print("'" + folders_to_clone[x] + "' folder does not exist in Source Disk\n") 70 | 71 | def finalize(path_source_dsk, path_destination_dsk): 72 | counter = 0 73 | GPIO.output(led_pin, False) 74 | time.sleep(1) 75 | while counter < 4: 76 | GPIO.output(led_pin, True) 77 | time.sleep(0.1) 78 | GPIO.output(led_pin, False) 79 | time.sleep(0.1) 80 | GPIO.output(led_pin, True) 81 | time.sleep(0.1) 82 | GPIO.output(led_pin, False) 83 | time.sleep(0.1) 84 | GPIO.output(led_pin, True) 85 | time.sleep(0.1) 86 | GPIO.output(led_pin, False) 87 | time.sleep(0.6) 88 | counter += 1 89 | # GPIO.cleanup() 90 | command_1 = 'sudo eject ' + path_source_dsk 91 | command_2 = 'sudo eject ' + path_destination_dsk 92 | os.system(command_1) 93 | time.sleep(0.5) 94 | os.system(command_2) 95 | print('\n' + "End (Disks unmounted!)") 96 | 97 | def start_piclone(): 98 | print("***** PiClone *****" + '\n') 99 | path_source_disk, path_destination_disk = check_connected_disks() 100 | clone(path_source_disk, path_destination_disk) 101 | finalize(path_source_disk, path_destination_disk) 102 | 103 | 104 | ####################################### PiClone ####################################### 105 | start_piclone() -------------------------------------------------------------------------------- /piduplicated.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python3 2 | 3 | #----------------------------------------------------------# 4 | # == PiDuplicated == # 5 | # # 6 | # Check for duplicated files inside 'PiBackup' and/or # 7 | # 'PiTimelapse' folder in the Backup SSD/HD and # 8 | # deletes or informs into '.log' file # 9 | # # 10 | # https://github.com/richonguzman/PiBackup # 11 | # # 12 | # Copyright (C) 2022 Ricardo Guzman richonguzman@gmail.com # 13 | # # 14 | #----------------------------------------------------------# 15 | 16 | import os, time, sys 17 | import RPi.GPIO as GPIO 18 | from hashlib import blake2s 19 | 20 | led_pin = 16 # 3mm Red LED in series with 2k2 resistor connected to pin 16 21 | GPIO.setmode(GPIO.BOARD) 22 | GPIO.setup(led_pin, GPIO.OUT) 23 | GPIO.setwarnings(False) 24 | 25 | path_mounted_disk = '/media/pi/' 26 | 27 | def check_connected_disks(): 28 | while len(os.listdir(path_mounted_disk)) == 0: 29 | GPIO.output(led_pin, False) 30 | time.sleep(0.5) 31 | GPIO.output(led_pin, True) 32 | time.sleep(0.5) 33 | duplicate_analysis_disk = os.listdir(path_mounted_disk)[0] 34 | path_duplicate_analysis_disk = os.path.join(path_mounted_disk, duplicate_analysis_disk) 35 | print("Duplicated File Analysis on Disk : " + duplicate_analysis_disk + '\n') 36 | return path_duplicate_analysis_disk 37 | 38 | def get_hash(archivo): 39 | m = blake2s(digest_size=32) 40 | with open(archivo, 'rb') as fp: 41 | for chunk in fp: 42 | m.update(chunk) 43 | return m.hexdigest() 44 | 45 | def check_for_log_file(path_ext_disk): 46 | if os.path.isfile(os.path.join(path_ext_disk, 'duplicated_files.log')): 47 | n = 1 48 | path_log = os.path.join(path_ext_disk, 'duplicated_files_' + str(n) + '.log') 49 | while os.path.isfile(os.path.join(path_ext_disk, 'duplicated_files_' + str(n) + '.log')): 50 | n += 1 51 | path_log = os.path.join(path_ext_disk, 'duplicated_files_' + str(n) + '.log') 52 | else: 53 | path_log = os.path.join(path_ext_disk, 'duplicated_files.log') 54 | return path_log 55 | 56 | def duplicated_analysis(path_disk): 57 | time.sleep(1) 58 | duplicated = False 59 | if sys.argv[1] == 'log': 60 | path_log_file = check_for_log_file(path_disk) 61 | path_file_list = [] 62 | hash_path_file_list = [] 63 | jpg_extension = ('jpeg', 'JPEG', 'jpg', 'JPG', 'heic', 'HEIC', 'heif', 'HEIF') 64 | raw_extension = ('raf', 'RAF', 'crw', 'CRW', 'cr2', 'CR2', 'cr3', 'CR3', 'rw2', 65 | 'RW2', 'nef', 'NEF', 'nrw', 'NRW', 'orf', 'ORF', 'dng', 'DNG', 66 | 'ptx', 'PTX', 'pef', 'PEF', 'arw', 'ARW', 'srf', 'SRF', 'sr2', 67 | 'SR2', 'tiff', 'TIFF', 'thm', 'THM', 'fff', 'FFF', 'gpr', 'GPR') 68 | video_extension = ('hevc', 'HEVC', 'mkv', 'MKV', 'avi', 'AVI', 'mov', 'MOV', 'wmv', 69 | 'WMV', 'mp4', 'MP4', 'm4p', 'M4P', 'm4v', 'M4V', 'mpg', 'MPG', 70 | 'mpeg', 'MPEG', 'lrv', 'LRV') 71 | time.sleep(0.2) 72 | if sys.argv[2] == 'j': 73 | extension = jpg_extension 74 | elif sys.argv[2] == 'r': 75 | extension = raw_extension 76 | elif sys.argv[2] == 'jr': 77 | extension = jpg_extension + raw_extension 78 | elif sys.argv[2] == 'jrv': 79 | extension = jpg_extension + raw_extension + video_extension 80 | for D, SD, F in os.walk(path_disk): 81 | for file in F: 82 | if file.endswith(extension): 83 | path_file = os.path.join(path_disk, D, file) 84 | path_file_list.append(path_file) 85 | path_file_list.sort() 86 | for x in range(len(path_file_list)): 87 | hash_file = get_hash(path_file_list[x]) 88 | if hash_file in hash_path_file_list: 89 | duplicated = True 90 | if sys.argv[1] == 'log': 91 | with open(path_log_file,'a') as output_log: 92 | output_log.write(path_file_list[x] + '\n') 93 | print('Duplicated File : ' + path_file_list[x]) 94 | elif sys.argv[1] == 'delete': 95 | print(path_file_list[x] + ' duplicated and deleted') 96 | os.remove(path_file_list[x]) 97 | else: 98 | hash_path_file_list.append(hash_file) 99 | if not duplicated: 100 | print("\nNo Duplicated Files Found") 101 | 102 | def finalize(path_ext_disk): 103 | counter = 0 104 | GPIO.output(led_pin, False) 105 | time.sleep(1) 106 | while counter < 4: 107 | GPIO.output(led_pin, True) 108 | time.sleep(0.1) 109 | GPIO.output(led_pin, False) 110 | time.sleep(0.1) 111 | GPIO.output(led_pin, True) 112 | time.sleep(0.1) 113 | GPIO.output(led_pin, False) 114 | time.sleep(0.1) 115 | GPIO.output(led_pin, True) 116 | time.sleep(0.1) 117 | GPIO.output(led_pin, False) 118 | time.sleep(0.6) 119 | counter += 1 120 | # GPIO.cleanup() 121 | command = 'sudo eject ' + path_ext_disk 122 | os.system(command) 123 | print('\n' + "End (Disk unmounted!)") 124 | 125 | def start_piduplicated(): 126 | print("*** PiDuplicated ***" + '\n') 127 | path_external_disk = check_connected_disks() 128 | duplicated_analysis(path_external_disk) 129 | finalize(path_external_disk) 130 | 131 | 132 | ####################################### PiDuplicated ####################################### 133 | start_piduplicated() -------------------------------------------------------------------------------- /pitimelapse.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python3 2 | 3 | #----------------------------------------------------------# 4 | # == PiTimelapse == # 5 | # # 6 | # Sort and rename all the photographs of a Timelapse to # 7 | # help with importing, processing and making a backup # 8 | # # 9 | # https://github.com/richonguzman/PiBackup # 10 | # # 11 | # Copyright (C) 2022 Ricardo Guzman richonguzman@gmail.com # 12 | # # 13 | #----------------------------------------------------------# 14 | 15 | import os, time, exiftool, shutil, sys 16 | from datetime import datetime 17 | import RPi.GPIO as GPIO 18 | 19 | led_pin = 16 # 3mm Red LED in series with 2k2 resistor connected to pin 16 20 | GPIO.setmode(GPIO.BOARD) 21 | GPIO.setup(led_pin, GPIO.OUT) 22 | GPIO.setwarnings(False) 23 | 24 | path_mounted_disk = '/media/pi/' 25 | 26 | def check_connected_disks(): 27 | while len(os.listdir(path_mounted_disk)) == 0: 28 | GPIO.output(led_pin, False) 29 | time.sleep(0.5) 30 | GPIO.output(led_pin, True) 31 | time.sleep(0.5) 32 | destination_disk = os.listdir(path_mounted_disk)[0] 33 | destination = os.path.join(path_mounted_disk, destination_disk) 34 | while len(os.listdir(path_mounted_disk)) == 1: 35 | GPIO.output(led_pin, True) 36 | time.sleep(0.1) 37 | GPIO.output(led_pin, False) 38 | time.sleep(0.1) 39 | if destination_disk == os.listdir(path_mounted_disk)[0]: 40 | source_disk = os.listdir(path_mounted_disk)[1] 41 | else: 42 | source_disk = os.listdir(path_mounted_disk)[0] 43 | source = os.path.join(path_mounted_disk, source_disk) 44 | destination = os.path.join(path_mounted_disk, destination_disk, 'PiTimelapse') 45 | if not os.path.isdir(destination): 46 | os.mkdir(destination) 47 | print("'PiTimelapse' folder created") 48 | print("Source Disk : " + source_disk) 49 | print("Backup Disk : " + destination_disk) 50 | return source, destination 51 | 52 | def copy_timelapse_sd_to_ssd(path_timelapse_source, path_timelapse_destination): 53 | time.sleep(1) 54 | led_counter = 0 55 | files_being_processed = [] 56 | jpg_extension = ('jpeg', 'JPEG', 'jpg', 'JPG', 'heic', 'HEIC', 'heif', 'HEIF') 57 | raw_extension = ('raf', 'RAF', 'crw', 'CRW', 'cr2', 'CR2', 'cr3', 'CR3', 'rw2', 58 | 'RW2', 'nef', 'NEF', 'nrw', 'NRW', 'orf', 'ORF', 'dng', 'DNG', 59 | 'ptx', 'PTX', 'pef', 'PEF', 'arw', 'ARW', 'srf', 'SRF', 'sr2', 60 | 'SR2', 'tiff', 'TIFF', 'thm', 'THM', 'fff', 'FFF', 'gpr', 'GPR') 61 | if sys.argv[1] == 'j': 62 | extension = jpg_extension 63 | elif sys.argv[1] == 'r': 64 | extension = raw_extension 65 | elif sys.argv[1] == 'jr': 66 | extension = jpg_extension + raw_extension 67 | GPIO.output(led_pin, True) 68 | excludes = os.listdir(path_timelapse_destination) 69 | for D, sD, f in os.walk(path_timelapse_destination): 70 | sD[:] = [d for d in sD if d not in excludes] 71 | for file_in_folder in f: 72 | if file_in_folder.endswith(extension): 73 | files_being_processed.append(file_in_folder) 74 | for D, sD, F in os.walk(path_timelapse_source): 75 | for file in F: 76 | if file.endswith(extension): 77 | path_source_file = os.path.join(path_timelapse_source, D, file) 78 | if file in files_being_processed: 79 | size_source_file = os.path.getsize(path_source_file) 80 | for x in range(len(files_being_processed)): 81 | if file == files_being_processed[x]: 82 | path_file_in_folder = os.path.join(path_timelapse_destination, files_being_processed[x]) 83 | size_file_in_folder = os.path.getsize(path_file_in_folder) 84 | if size_source_file != size_file_in_folder: 85 | shutil.copy2(path_source_file, os.path.join(path_timelapse_destination, file)) 86 | files_being_processed.append(file) 87 | if led_counter == 0: 88 | GPIO.output(led_pin, False) 89 | time.sleep(0.05) 90 | led_counter = 1 91 | else: 92 | GPIO.output(led_pin, True) 93 | time.sleep(0.05) 94 | led_counter = 0 95 | else: 96 | shutil.copy2(path_source_file, os.path.join(path_timelapse_destination, file)) 97 | files_being_processed.append(file) 98 | if led_counter == 0: 99 | GPIO.output(led_pin, False) 100 | time.sleep(0.05) 101 | led_counter = 1 102 | else: 103 | GPIO.output(led_pin, True) 104 | time.sleep(0.05) 105 | led_counter = 0 106 | if len(files_being_processed) > 0: 107 | date_and_camera_model = oldest_file_exif_data(path_timelapse_destination) 108 | new_timelapse_date_folder = os.path.join(path_timelapse_destination, date_and_camera_model) 109 | organize_folder(path_timelapse_destination, new_timelapse_date_folder) 110 | extension_separator(new_timelapse_date_folder) 111 | sequence_order(new_timelapse_date_folder) 112 | print(date_and_camera_model) 113 | print('(' + str(len(files_being_processed)) + ' files processed)') 114 | 115 | def oldest_file_exif_data(path_destination): 116 | first_data = True 117 | saved_date = 0 118 | saved_path = "" 119 | excludes = os.listdir(path_destination) 120 | for D, sD, f in os.walk(path_destination): 121 | sD[:] = [d for d in sD if d not in excludes] 122 | for file in f: 123 | path_file = os.path.join(path_destination, D, file) 124 | file_date = os.path.getmtime(path_file) 125 | if first_data: 126 | saved_path = path_file 127 | saved_date = file_date 128 | first_data = False 129 | if saved_date > file_date: 130 | saved_path = path_file 131 | saved_date = file_date 132 | formated_date = datetime.fromtimestamp(saved_date).strftime('%Y_%m_%d_%Hh%Mm') 133 | with exiftool.ExifToolHelper() as et: 134 | make = et.get_tags(saved_path, 'Make') 135 | model = et.get_tags(saved_path, 'Model') 136 | camera_company = make[0]['EXIF:Make'] 137 | camera_model = model[0]['EXIF:Model'] 138 | if make==None: 139 | date_and_camera_info = "No_Date_Info" 140 | else: 141 | date_and_camera_info = formated_date + ' ' + str(camera_company) +' ' + str(camera_model) 142 | return date_and_camera_info 143 | 144 | def organize_folder(path_pitimelapse_folder, new_folder): 145 | if not os.path.isdir(new_folder): 146 | os.mkdir(new_folder) 147 | excludes = os.listdir(path_pitimelapse_folder) 148 | for D, sD, F in os.walk(path_pitimelapse_folder): 149 | sD[:] = [d for d in sD if d not in excludes] 150 | for file in F: 151 | path_file = os.path.join(path_pitimelapse_folder, D, file) 152 | new_path_file = os.path.join(new_folder, file) 153 | shutil.move(path_file, new_path_file) 154 | 155 | def extension_separator(path_timelapse_folder): 156 | jpg_folder = False 157 | raw_folder = False 158 | jpg_extension = ('jpeg', 'JPEG', 'jpg', 'JPG', 'heic', 'HEIC', 'heif', 'HEIF') 159 | raw_extension = ('raf', 'RAF', 'crw', 'CRW', 'cr2', 'CR2', 'cr3', 'CR3', 'rw2', 'RW2', 160 | 'nef', 'NEF', 'nrw', 'NRW', 'orf', 'ORF', 'dng', 'DNG', 'ptx', 'PTX', 161 | 'pef', 'PEF', 'arw', 'ARW', 'srf', 'SRF', 'sr2', 'SR2', 'tiff', 'TIFF', 162 | 'thm', 'THM', 'fff', 'FFF', 'gpr', 'GPR') 163 | excludes = os.listdir(path_timelapse_folder) 164 | for D, sD, f in os.walk(path_timelapse_folder): 165 | sD[:] = [d for d in sD if d not in excludes] 166 | for file in f: 167 | path_file = os.path.join(D, file) 168 | if file.endswith((jpg_extension)): 169 | path_jpg_folder = os.path.join(path_timelapse_folder, 'JPG') 170 | if not jpg_folder: 171 | if not os.path.isdir(path_jpg_folder): 172 | os.mkdir(path_jpg_folder) 173 | jpg_folder = True 174 | shutil.move(path_file, os.path.join(path_jpg_folder, file)) 175 | elif file.endswith((raw_extension)): 176 | path_raw_folder = os.path.join(path_timelapse_folder, 'RAW') 177 | if not raw_folder: 178 | if not os.path.isdir(path_raw_folder): 179 | os.mkdir(path_raw_folder) 180 | raw_folder = True 181 | shutil.move(path_file, os.path.join(path_raw_folder, file)) 182 | 183 | def sequence_order(path_folder): 184 | if os.path.isdir(os.path.join(path_folder, 'JPG')): 185 | file_date_list = [] 186 | path_new_sequence = os.path.join(path_folder,'JPG') 187 | who_are_they = os.listdir(path_new_sequence) 188 | for z in range(len(who_are_they)): 189 | file_date = os.path.getmtime(os.path.join(path_new_sequence, who_are_they[z])) 190 | file_date_list.append(file_date) 191 | file_date_list.sort() 192 | counter = 1 193 | for y in range(len(who_are_they)): 194 | searched_file_date = file_date_list[y] 195 | for D, sD, f in os.walk(path_new_sequence): 196 | for file in f: 197 | if not file.startswith(('Timelapse')): 198 | path_file = os.path.join(path_new_sequence, file) 199 | posible_file_date = os.path.getmtime(path_file) 200 | if searched_file_date == posible_file_date: 201 | current_folder, file_name = os.path.split(path_file) 202 | string_counter = str(counter) 203 | sequence_counter = string_counter.zfill(4) 204 | new_file_name = 'Timelapse_' + sequence_counter + "_" + file_name 205 | os.rename(path_file, os.path.join(path_new_sequence, new_file_name)) 206 | counter += 1 207 | GPIO.output(led_pin, True) 208 | if os.path.isdir(os.path.join(path_folder, 'RAW')): 209 | file_date_list = [] 210 | path_new_sequence = os.path.join(path_folder, 'RAW') 211 | who_are_they = os.listdir(path_new_sequence) 212 | for z in range(len(who_are_they)): 213 | file_date = os.path.getmtime(os.path.join(path_new_sequence, who_are_they[z])) 214 | file_date_list.append(file_date) 215 | file_date_list.sort() 216 | counter = 1 217 | for y in range(len(who_are_they)): 218 | searched_file_date = file_date_list[y] 219 | for D, sD, f in os.walk(path_new_sequence): 220 | for file in f: 221 | if not file.startswith(('Timelapse')): 222 | path_file = os.path.join(path_new_sequence, file) 223 | posible_file_date = os.path.getmtime(path_file) 224 | if searched_file_date == posible_file_date: 225 | current_folder, file_name = os.path.split(path_file) 226 | string_counter = str(counter) 227 | sequence_counter = string_counter.zfill(4) 228 | new_file_name = 'Timelapse_' + sequence_counter + "_" + file_name 229 | os.rename(path_file, os.path.join(path_new_sequence, new_file_name)) 230 | counter += 1 231 | GPIO.output(led_pin, True) 232 | print("\nTimelapse Sequence Ready") 233 | 234 | def finalize(path_source_dsk, path_destination_dsk): 235 | counter = 0 236 | GPIO.output(led_pin, False) 237 | time.sleep(1) 238 | while counter < 4: 239 | GPIO.output(led_pin, True) 240 | time.sleep(0.1) 241 | GPIO.output(led_pin, False) 242 | time.sleep(0.1) 243 | GPIO.output(led_pin, True) 244 | time.sleep(0.1) 245 | GPIO.output(led_pin, False) 246 | time.sleep(0.1) 247 | GPIO.output(led_pin, True) 248 | time.sleep(0.1) 249 | GPIO.output(led_pin, False) 250 | time.sleep(0.6) 251 | counter += 1 252 | # GPIO.cleanup() 253 | command_1 = 'sudo eject ' + path_source_dsk 254 | command_2 = 'sudo eject ' + path_destination_dsk.split('/PiTimelapse')[0] 255 | os.system(command_1) 256 | time.sleep(0.5) 257 | os.system(command_2) 258 | print('\n' + "End (Disks unmounted!)") 259 | 260 | def start_pitimelapse(): 261 | print("*** PiTimelapse ***" + '\n') 262 | path_source_disk, path_destination_disk = check_connected_disks() 263 | copy_timelapse_sd_to_ssd(path_source_disk, path_destination_disk) 264 | finalize(path_source_disk, path_destination_disk) 265 | 266 | 267 | ####################################### PiTimelapse ####################################### 268 | start_pitimelapse() -------------------------------------------------------------------------------- /pibackup_web.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python3 2 | 3 | #----------------------------------------------------------# 4 | # == PiBackup == # 5 | # # 6 | # A complete pack of great python scripts to Backup files # 7 | # with your Raspberry Pi 4: # 8 | # - Backup your Camera SD-Card into your external SSD/HD # 9 | # - Clone your Backup SSD into another SSD # 10 | # - Delete only JPG of your Backup SSD and keep RAW files # 11 | # - Analyze and Delete (optional) all duplicated files # 12 | # - Sort/Rename Timelapse files for importing ease # 13 | # # 14 | # https://github.com/richonguzman/PiBackup # 15 | # # 16 | # Copyright (C) 2022 Ricardo Guzman richonguzman@gmail.com # 17 | # # 18 | #----------------------------------------------------------# 19 | 20 | 21 | 22 | from flask import Flask, render_template, request, redirect 23 | from hashlib import blake2s 24 | from datetime import datetime 25 | import RPi.GPIO as GPIO 26 | import exiftool, os, shutil, subprocess, sys, time, glob 27 | 28 | led_pin = 16 # 3mm Red LED in series with 2k2 resistor connected to pin 16 29 | GPIO.setmode(GPIO.BOARD) 30 | GPIO.setup(led_pin, GPIO.OUT) 31 | GPIO.setwarnings(False) 32 | 33 | app = Flask(__name__) 34 | 35 | def shut_down(): 36 | time.sleep(5) 37 | os.system('sudo shutdown -h now') 38 | 39 | 40 | @app.route("/", methods=['GET', 'POST']) 41 | def welcome_home(): 42 | templateData = { 'title' : 'Richon -', } 43 | print("Home") 44 | GPIO.output(16, True) 45 | if request.method == 'POST': 46 | if request.form.get('Turn RP OFF') == 'Turn RP OFF': 47 | print("Turning RP OFF...") 48 | shut_down() 49 | return render_template('home.html', **templateData) 50 | 51 | 52 | @app.route("/pibackup/", methods=['GET', 'POST']) 53 | def pi_backup(): 54 | templateData = { 'title' : 'Richon -', } 55 | print("PiBackup") 56 | if request.method == 'POST': 57 | if request.form.get('PBK_J') == 'JPG': 58 | print("Pibackup only JPG") 59 | with open('/home/pi/PiBackup/report.log', 'wb') as f: 60 | process = subprocess.Popen([sys.executable, '/home/pi/PiBackup/pibackup.py','j'], stdout = subprocess.PIPE) 61 | for line in process.stdout: 62 | # sys.stdout.write(str(line) + '\n') 63 | f.write(line) 64 | f.close() 65 | elif request.form.get('PBK_R') == 'RAW': 66 | print("Pibackup only RAW") 67 | with open('/home/pi/PiBackup/report.log', 'wb') as f: 68 | process = subprocess.Popen([sys.executable, '/home/pi/PiBackup/pibackup.py','r'], stdout = subprocess.PIPE) 69 | for line in process.stdout: 70 | # sys.stdout.write(str(line) + '\n') 71 | f.write(line) 72 | f.close() 73 | elif request.form.get('PBK_JR') == 'JPG+RAW': 74 | print("Pibackup JPG + RAW") 75 | with open('/home/pi/PiBackup/report.log', 'wb') as f: 76 | process = subprocess.Popen([sys.executable, '/home/pi/PiBackup/pibackup.py','jr'], stdout = subprocess.PIPE) 77 | for line in process.stdout: 78 | # sys.stdout.write(str(line) + '\n') 79 | f.write(line) 80 | f.close() 81 | elif request.form.get('PBK_V') == 'Video': 82 | print("Pibackup Video") 83 | with open('/home/pi/PiBackup/report.log', 'wb') as f: 84 | process = subprocess.Popen([sys.executable, '/home/pi/PiBackup/pibackup.py','v'], stdout = subprocess.PIPE) 85 | for line in process.stdout: 86 | # sys.stdout.write(str(line) + '\n') 87 | f.write(line) 88 | f.close() 89 | elif request.form.get('PBK_JRV') == 'JPG+RAW+Video': 90 | print("Pibackup JPG + RAW + Video") 91 | with open('/home/pi/PiBackup/report.log', 'wb') as f: 92 | process = subprocess.Popen([sys.executable, '/home/pi/PiBackup/pibackup.py','jrv'], stdout = subprocess.PIPE) 93 | for line in process.stdout: 94 | # sys.stdout.write(str(line) + '\n') 95 | f.write(line) 96 | f.close() 97 | return redirect('/pibackup_report/') 98 | return render_template('pibackup.html', **templateData) 99 | 100 | 101 | @app.route("/piclone/", methods=['GET', 'POST']) 102 | def pi_clone(): 103 | templateData = { 'title' : 'Richon -', } 104 | print("PiClone") 105 | if request.method == 'POST': 106 | if request.form.get('CLONE_BK') == "Clone 'PiBackup' folder": 107 | print("Clone PiBackup") 108 | with open('/home/pi/PiBackup/report.log', 'wb') as f: 109 | process = subprocess.Popen([sys.executable, '/home/pi/PiBackup/piclone.py','bk'], stdout = subprocess.PIPE) 110 | for line in process.stdout: 111 | # sys.stdout.write(str(line) + '\n') 112 | f.write(line) 113 | f.close() 114 | elif request.form.get('CLONE_TM') == "Clone 'PiTimelapse' folder": 115 | print("Clone PiTimelapse") 116 | with open('/home/pi/PiBackup/report.log', 'wb') as f: 117 | process = subprocess.Popen([sys.executable, '/home/pi/PiBackup/piclone.py', 'tm'], stdout = subprocess.PIPE) 118 | for line in process.stdout: 119 | # sys.stdout.write(str(line) + '\n') 120 | f.write(line) 121 | f.close() 122 | elif request.form.get('CLONE_BKTM') == "Clone 'PiBackup' and 'PiTimelapse'": 123 | print("Clone PiBackup and PiTimelapse") 124 | with open('/home/pi/PiBackup/report.log', 'wb') as f: 125 | process = subprocess.Popen([sys.executable, '/home/pi/PiBackup/piclone.py', 'bktm'], stdout = subprocess.PIPE) 126 | for line in process.stdout: 127 | # sys.stdout.write(str(line) + '\n') 128 | f.write(line) 129 | f.close() 130 | return redirect('/pibackup_report/') 131 | return render_template('piclone.html', **templateData) 132 | 133 | 134 | @app.route("/piclean/", methods=['GET', 'POST']) 135 | def pi_clean(): 136 | templateData = { 'title' : 'Richon -', } 137 | print("PiClean") 138 | if request.method == 'POST': 139 | if request.form.get('CLEAN_BK') == "Clean 'PiBackup' folder": 140 | print("Clean PiBackup") 141 | with open('/home/pi/PiBackup/report.log', 'wb') as f: 142 | process = subprocess.Popen([sys.executable, '/home/pi/PiBackup/piclean.py','bk'], stdout = subprocess.PIPE) 143 | for line in process.stdout: 144 | # sys.stdout.write(str(line) + '\n') 145 | f.write(line) 146 | f.close() 147 | elif request.form.get('CLEAN_TM') == "Clean 'PiTimelapse' folder": 148 | print("Clean PiTimelapse") 149 | with open('/home/pi/PiBackup/report.log', 'wb') as f: 150 | process = subprocess.Popen([sys.executable, '/home/pi/PiBackup/piclean.py', 'tm'], stdout = subprocess.PIPE) 151 | for line in process.stdout: 152 | # sys.stdout.write(str(line) + '\n') 153 | f.write(line) 154 | f.close() 155 | elif request.form.get('CLEAN_BKTM') == "Clean 'PiBackup' and 'PiTimelapse'": 156 | print("Clean PiBackup and PiTimelapse") 157 | with open('/home/pi/PiBackup/report.log', 'wb') as f: 158 | process = subprocess.Popen([sys.executable, '/home/pi/PiBackup/piclean.py', 'bktm'], stdout = subprocess.PIPE) 159 | for line in process.stdout: 160 | # sys.stdout.write(str(line) + '\n') 161 | f.write(line) 162 | f.close() 163 | return redirect('/pibackup_report/') 164 | return render_template('piclean.html', **templateData) 165 | 166 | 167 | @app.route("/pitimelapse/", methods=['GET', 'POST']) 168 | def pi_timelapse(): 169 | templateData = { 'title' : 'Richon -', } 170 | print("PiTimelapse") 171 | if request.method == 'POST': 172 | if request.form.get('T_J') == 'Timelapse JPG': 173 | print("Timelapse only JPG") 174 | with open('/home/pi/PiBackup/report.log', 'wb') as f: 175 | process = subprocess.Popen([sys.executable, '/home/pi/PiBackup/pitimelapse.py','j'], stdout = subprocess.PIPE) 176 | for line in process.stdout: 177 | # sys.stdout.write(str(line) + '\n') 178 | f.write(line) 179 | f.close() 180 | elif request.form.get('T_R') == 'Timelapse RAW': 181 | print("Timelapse only RAW") 182 | with open('/home/pi/PiBackup/report.log', 'wb') as f: 183 | process = subprocess.Popen([sys.executable, '/home/pi/PiBackup/pitimelapse.py','r'], stdout = subprocess.PIPE) 184 | for line in process.stdout: 185 | # sys.stdout.write(str(line) + '\n') 186 | f.write(line) 187 | f.close() 188 | elif request.form.get('T_JR') == 'Timelapse JPG+RAW': 189 | print("Timelapse JPG and RAW") 190 | with open('/home/pi/PiBackup/report.log', 'wb') as f: 191 | process = subprocess.Popen([sys.executable, '/home/pi/PiBackup/pitimelapse.py','jr'], stdout = subprocess.PIPE) 192 | for line in process.stdout: 193 | # sys.stdout.write(str(line) + '\n') 194 | f.write(line) 195 | f.close() 196 | return redirect('/pibackup_report/') 197 | return render_template('pitimelapse.html', **templateData) 198 | 199 | 200 | @app.route("/piduplicated/", methods=['GET', 'POST']) 201 | def pi_duplicated(): 202 | templateData = { 'title' : 'Richon -', } 203 | print("PiDuplicated") 204 | if request.method == 'POST': 205 | if request.form.get('DUP_LOG_JR') == "Duplicated JPG+RAW --> Log": 206 | print("Create LOG of Duplicated JPG+RAW Files") 207 | with open('/home/pi/PiBackup/report.log', 'wb') as f: 208 | process = subprocess.Popen([sys.executable, '/home/pi/PiBackup/piduplicated.py','log','jr'], stdout = subprocess.PIPE) 209 | for line in process.stdout: 210 | # sys.stdout.write(str(line) + '\n') 211 | f.write(line) 212 | f.close() 213 | elif request.form.get('DUP_LOG_J') == "Duplicated JPG --> Log": 214 | print("Create LOG of Duplicated JPG Files") 215 | with open('/home/pi/PiBackup/report.log', 'wb') as f: 216 | process = subprocess.Popen([sys.executable, '/home/pi/PiBackup/piduplicated.py','log','j'], stdout = subprocess.PIPE) 217 | for line in process.stdout: 218 | # sys.stdout.write(str(line) + '\n') 219 | f.write(line) 220 | f.close() 221 | elif request.form.get('DUP_LOG_R') == "Duplicated RAW --> Log": 222 | print("Create LOG of Duplicated RAW Files") 223 | with open('/home/pi/PiBackup/report.log', 'wb') as f: 224 | process = subprocess.Popen([sys.executable, '/home/pi/PiBackup/piduplicated.py','log','r'], stdout = subprocess.PIPE) 225 | for line in process.stdout: 226 | # sys.stdout.write(str(line) + '\n') 227 | f.write(line) 228 | f.close() 229 | elif request.form.get('DUP_LOG_JRV') == "Duplicated JPG+RAW+VIDEO --> Log": 230 | print("Create LOG of Duplicated JPG+RAW+VIDEO Files") 231 | with open('/home/pi/PiBackup/report.log', 'wb') as f: 232 | process = subprocess.Popen([sys.executable, '/home/pi/PiBackup/piduplicated.py','log','jrv'], stdout = subprocess.PIPE) 233 | for line in process.stdout: 234 | # sys.stdout.write(str(line) + '\n') 235 | f.write(line) 236 | f.close() 237 | 238 | elif request.form.get('DUP_DELETE_JR') == "DELETE Duplicated JPG+RAW": 239 | print("Delete Duplicated JPG+RAW Files") 240 | with open('/home/pi/PiBackup/report.log', 'wb') as f: 241 | process = subprocess.Popen([sys.executable, '/home/pi/PiBackup/piduplicated.py', 'delete','jr'], stdout = subprocess.PIPE) 242 | for line in process.stdout: 243 | # sys.stdout.write(str(line) + '\n') 244 | f.write(line) 245 | f.close() 246 | elif request.form.get('DUP_DELETE_J') == "DELETE Duplicated JPG": 247 | print("Delete Duplicated JPG Files") 248 | with open('/home/pi/PiBackup/report.log', 'wb') as f: 249 | process = subprocess.Popen([sys.executable, '/home/pi/PiBackup/piduplicated.py', 'delete','j'], stdout = subprocess.PIPE) 250 | for line in process.stdout: 251 | # sys.stdout.write(str(line) + '\n') 252 | f.write(line) 253 | f.close() 254 | elif request.form.get('DUP_DELETE_R') == "DELETE Duplicated RAW": 255 | print("Delete Duplicated RAW Files") 256 | with open('/home/pi/PiBackup/report.log', 'wb') as f: 257 | process = subprocess.Popen([sys.executable, '/home/pi/PiBackup/piduplicated.py', 'delete','r'], stdout = subprocess.PIPE) 258 | for line in process.stdout: 259 | # sys.stdout.write(str(line) + '\n') 260 | f.write(line) 261 | f.close() 262 | elif request.form.get('DUP_DELETE_JRV') == "DELETE Duplicated JPG+RAW+VIDEO": 263 | print("Delete Duplicated JPG+RAW+VIDEO Files") 264 | with open('/home/pi/PiBackup/report.log', 'wb') as f: 265 | process = subprocess.Popen([sys.executable, '/home/pi/PiBackup/piduplicated.py', 'delete','jrv'], stdout = subprocess.PIPE) 266 | for line in process.stdout: 267 | # sys.stdout.write(str(line) + '\n') 268 | f.write(line) 269 | f.close() 270 | return redirect('/pibackup_report/') 271 | return render_template('piduplicated.html', **templateData) 272 | 273 | 274 | @app.route("/pibackup_report/") 275 | def pi_report(): 276 | templateData = { 'title' : 'Richon -', } 277 | print("Finished Process") 278 | report = open('/home/pi/PiBackup/report.log','r') 279 | muestra = report.read() 280 | report.close 281 | return render_template('pibackup_report.html', **templateData, n = muestra ) 282 | 283 | 284 | if __name__ == "__main__": 285 | app.run(host= '192.168.100.1', port=5000, debug=True) -------------------------------------------------------------------------------- /pibackup.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python3 2 | 3 | #----------------------------------------------------------# 4 | # == PiBackup == # 5 | # # 6 | # Backup (photography) files from your Camera SD-Card # 7 | # into your external SSD/HD with a Raspberry Pi 4 # 8 | # # 9 | # https://github.com/richonguzman/PiBackup # 10 | # # 11 | # Copyright (C) 2022 Ricardo Guzman richonguzman@gmail.com # 12 | # # 13 | #----------------------------------------------------------# 14 | 15 | import os, exiftool, shutil, psutil, time, sys 16 | from hashlib import blake2s 17 | import RPi.GPIO as GPIO 18 | 19 | led_pin = 16 # 3mm Red LED in series with 2k2 resistor connected to pin 16 20 | GPIO.setmode(GPIO.BOARD) 21 | GPIO.setup(led_pin, GPIO.OUT) 22 | GPIO.setwarnings(False) 23 | 24 | path_mounted_disk = '/media/pi/' 25 | 26 | def check_connected_disks(): 27 | while len(os.listdir(path_mounted_disk)) == 0: 28 | GPIO.output(led_pin, False) 29 | time.sleep(0.5) 30 | GPIO.output(led_pin, True) 31 | time.sleep(0.5) 32 | destination_disk = os.listdir(path_mounted_disk)[0] 33 | destination = os.path.join(path_mounted_disk, destination_disk) 34 | while len(os.listdir(path_mounted_disk)) == 1: 35 | GPIO.output(led_pin, True) 36 | time.sleep(0.1) 37 | GPIO.output(led_pin, False) 38 | time.sleep(0.1) 39 | if destination_disk == os.listdir(path_mounted_disk)[0]: 40 | source_disk = os.listdir(path_mounted_disk)[1] 41 | else: 42 | source_disk = os.listdir(path_mounted_disk)[0] 43 | source = os.path.join(path_mounted_disk, source_disk) 44 | destination = os.path.join(path_mounted_disk, destination_disk, 'PiBackup') 45 | if not os.path.isdir(destination): 46 | os.mkdir(destination) 47 | print("'PiBackup' folder created") 48 | print("Source Disk : " + source_disk) 49 | print("Backup Disk : " + destination_disk) 50 | return source, destination 51 | 52 | def creating_file_list(source_path, destination_path): 53 | time.sleep(1) 54 | souce_files = [] 55 | souce_path_files = [] 56 | destination_files = [] 57 | destination_path_files = [] 58 | jpg_extension = ('jpeg', 'JPEG', 'jpg', 'JPG', 'heic', 'HEIC', 'heif', 'HEIF') 59 | raw_extension = ('raf', 'RAF', 'crw', 'CRW', 'cr2', 'CR2', 'cr3', 'CR3', 'rw2', 60 | 'RW2', 'nef', 'NEF', 'nrw', 'NRW', 'orf', 'ORF', 'dng', 'DNG', 61 | 'ptx', 'PTX', 'pef', 'PEF', 'arw', 'ARW', 'srf', 'SRF', 'sr2', 62 | 'SR2', 'tiff', 'TIFF', 'thm', 'THM', 'fff', 'FFF', 'gpr', 'GPR') 63 | video_extension = ('hevc', 'HEVC', 'mkv', 'MKV', 'avi', 'AVI', 'mov', 'MOV', 'wmv', 64 | 'WMV', 'mp4', 'MP4', 'm4p', 'M4P', 'm4v', 'M4V', 'mpg', 'MPG', 65 | 'mpeg', 'MPEG', 'lrv', 'LRV') 66 | if sys.argv[1] == 'j': 67 | extension = jpg_extension 68 | elif sys.argv[1] == 'r': 69 | extension = raw_extension 70 | elif sys.argv[1] == 'v': 71 | extension = video_extension 72 | elif sys.argv[1] == 'jr': 73 | extension = jpg_extension + raw_extension 74 | elif sys.argv[1] == 'jrv': 75 | extension = jpg_extension + raw_extension + video_extension 76 | for D, SD, F in os.walk(source_path): 77 | for file in F: 78 | if not file.endswith('DS_Store'): 79 | if file.endswith((extension)): 80 | souce_files.append(file) 81 | path_1 = os.path.join(source_path, D, file) 82 | souce_path_files.append(path_1) 83 | for D2, SD2, F2 in os.walk(destination_path): 84 | for file2 in F2: 85 | if not file2.endswith('DS_Store'): 86 | if file2.endswith((extension)): 87 | destination_files.append(file2) 88 | path_2 = os.path.join(destination_path, D2, file2) 89 | destination_path_files.append(path_2) 90 | return souce_files, souce_path_files, destination_files, destination_path_files 91 | 92 | def get_hash(file_to_hash): 93 | m = blake2s(digest_size=32) 94 | with open(file_to_hash, 'rb') as fp: 95 | for chunk in fp: 96 | m.update(chunk) 97 | return m.hexdigest() 98 | 99 | def list_analysis(source_file_list, source_path_file_list, destination_file_list, destination_path_file_list, path_destination_folder): 100 | GPIO.output(led_pin, True) 101 | duplicated = False 102 | total_weight = 0 103 | files_to_copy_list = [] 104 | path_files_to_copy_list = [] 105 | for a in range(len(source_file_list)): 106 | duplicated = False 107 | file_name, file_extension = os.path.splitext(source_file_list[a]) 108 | for b in range(len(destination_file_list)): 109 | if duplicated == False: 110 | if file_name in destination_file_list[b] and destination_file_list[b].endswith(file_extension): 111 | if source_file_list[a] == destination_file_list[b]: 112 | source_file_size = os.path.getsize(source_path_file_list[a]) 113 | destination_file_size = os.path.getsize(destination_path_file_list[b]) 114 | if source_file_size == destination_file_size: 115 | duplicated = True 116 | else: 117 | n = 1 118 | hash_source_file = get_hash(source_path_file_list[a]) 119 | destination_file_name, destination_file_extension = os.path.splitext(destination_path_file_list[b]) 120 | while os.path.isfile(destination_file_name[:-1] + str(n) + file_extension): 121 | path = os.path.join(destination_file_name[:-1] + str(n) + destination_file_extension) 122 | hash_destination_file = get_hash(path) 123 | if hash_source_file == hash_destination_file: 124 | duplicated = True 125 | n += 1 126 | else: 127 | n = 1 128 | hash_source_file = get_hash(source_path_file_list[a]) 129 | destination_file_name, destination_file_extension = os.path.splitext(destination_path_file_list[b]) 130 | while os.path.isfile(destination_file_name[:-1] + str(n) + file_extension): 131 | path = os.path.join(destination_file_name[:-1] + str(n) + destination_file_extension) 132 | hash_destination_file = get_hash(path) 133 | if hash_source_file == hash_destination_file: 134 | duplicated = True 135 | n += 1 136 | if not duplicated: 137 | files_to_copy_list.append(source_file_list[a]) 138 | path_files_to_copy_list.append(source_path_file_list[a]) 139 | total_weight += os.path.getsize(source_path_file_list[a]) 140 | print('\nFiles to copy : ' + str(len(files_to_copy_list))) 141 | print('Size of Backup : ' + str(round((total_weight/1000000000),3)) + ' GB') 142 | 143 | partitions = psutil.disk_partitions() 144 | for partition in partitions: 145 | partition_usage = psutil.disk_usage(partition.mountpoint) 146 | if partition.mountpoint == path_destination_folder.split('/PiBackup')[0]: 147 | available_space = partition_usage.free/1000000000 148 | print('Available Space : ' +str(round(available_space,1)) + ' GB') 149 | if (total_weight/1000000000) < available_space: 150 | return files_to_copy_list, path_files_to_copy_list 151 | else: 152 | print("\nNot enough space on 'Backup Disk' to make Backup !") 153 | 154 | def copying(files_copy, path_files_copy, destination_names , path_destination_folder): 155 | led_counter = 0 156 | n_process = False 157 | print('\ncopying files...') 158 | for a in range(len(files_copy)): 159 | for b in range(len(destination_names)): 160 | if files_copy[a] == destination_names[b]: 161 | n_process = True 162 | if n_process: 163 | n = 1 164 | file_name, file_extension = os.path.splitext(files_copy[a]) 165 | while (file_name + "_" + str(n) + file_extension) in destination_names: 166 | n += 1 167 | shutil.copy2(path_files_copy[a], path_destination_folder + '/' + file_name + "_" + str(n) + file_extension) 168 | destination_names.append(file_name + "_" + str(n) + file_extension) 169 | if led_counter == 0: 170 | GPIO.output(led_pin, False) 171 | time.sleep(0.05) 172 | led_counter = 1 173 | else: 174 | GPIO.output(led_pin, True) 175 | time.sleep(0.05) 176 | led_counter = 0 177 | else: 178 | shutil.copy2(path_files_copy[a], path_destination_folder + '/' + files_copy[a]) 179 | destination_names.append(files_copy[a]) 180 | if led_counter == 0: 181 | GPIO.output(led_pin, False) 182 | time.sleep(0.05) 183 | led_counter = 1 184 | else: 185 | GPIO.output(led_pin, True) 186 | time.sleep(0.05) 187 | led_counter = 0 188 | 189 | def sort_files_by_exif_data(path_folders_to_check): 190 | exif_files_counter = 0 191 | led_counter = 0 192 | excludes = os.listdir(path_folders_to_check) 193 | for dirName, subdirList, fileList in os.walk(path_folders_to_check): 194 | subdirList[:] = [d for d in subdirList if d not in excludes] 195 | if len(fileList) > 0: 196 | print("\nprocessing Exif Data from files...") 197 | for fname in fileList: 198 | path_source_exif_file = os.path.join(path_folders_to_check, dirName, fname) 199 | with exiftool.ExifToolHelper() as et: 200 | make = et.get_tags(path_source_exif_file, 'Make') 201 | model = et.get_tags(path_source_exif_file, 'Model') 202 | camera_company = make[0]['EXIF:Make'] 203 | camera_model = model[0]['EXIF:Model'] 204 | if camera_company==None: 205 | new_folder = os.path.join(path_folders_to_check ,'other_files') 206 | new_destination_path = os.path.join(new_folder, fname) 207 | if not os.path.isdir(new_folder): 208 | os.mkdir(new_folder) 209 | shutil.move(path_source_exif_file, new_destination_path) 210 | else: 211 | new_folder = os.path.join(path_folders_to_check, str(camera_company) + " " + str(camera_model)) 212 | new_destination_path = os.path.join(new_folder, fname) 213 | if not os.path.isdir(new_folder): 214 | os.mkdir(new_folder) 215 | shutil.move(path_source_exif_file, new_destination_path) 216 | if led_counter == 0: 217 | GPIO.output(led_pin, False) 218 | time.sleep(0.05) 219 | led_counter = 1 220 | else: 221 | GPIO.output(led_pin, True) 222 | time.sleep(0.05) 223 | led_counter = 0 224 | exif_files_counter += 1 225 | print("("+ str(exif_files_counter) + " EXIF Data from files processed)") 226 | 227 | def separate_files_by_extension(path_folders_to_check): 228 | jpg_extension = ('jpeg', 'JPEG', 'jpg', 'JPG', 'heic', 'HEIC', 'heif', 'HEIF') 229 | raw_extension = ('raf', 'RAF', 'crw', 'CRW', 'cr2', 'CR2', 'cr3', 'CR3', 'rw2', 'RW2', 230 | 'nef', 'NEF', 'nrw', 'NRW', 'orf', 'ORF', 'dng', 'DNG', 'ptx', 'PTX', 231 | 'pef', 'PEF', 'arw', 'ARW', 'srf', 'SRF', 'sr2', 'SR2', 'tiff', 'TIFF', 232 | 'thm', 'THM', 'fff', 'FFF', 'gpr', 'GPR') 233 | jpg_counter = 0 234 | raw_counter = 0 235 | folders_to_check = os.listdir(path_folders_to_check) 236 | folders_to_check.sort() 237 | for x in range(len(folders_to_check)): 238 | folder_being_checked = os.path.join(path_folders_to_check, folders_to_check[x]) 239 | excludes = os.listdir(folder_being_checked) 240 | for D, sD, f in os.walk(folder_being_checked): 241 | sD[:] = [d for d in sD if d not in excludes] 242 | for file in f: 243 | path = os.path.join(folder_being_checked, file) 244 | if file.endswith((jpg_extension)): 245 | if jpg_counter == 0: 246 | path_jpg_folder = os.path.join(folder_being_checked, 'JPG') 247 | if not os.path.isdir(path_jpg_folder): 248 | os.mkdir(path_jpg_folder) 249 | jpg_counter = 1 250 | shutil.move(path, os.path.join(path_jpg_folder, file)) 251 | if file.endswith((raw_extension)): 252 | if raw_counter == 0: 253 | path_raw_folder = os.path.join(folder_being_checked, 'RAW') 254 | if not os.path.isdir(path_raw_folder): 255 | os.mkdir(path_raw_folder) 256 | raw_counter = 1 257 | shutil.move(path, os.path.join(path_raw_folder, file)) 258 | print("\n(files separated by extension)") 259 | 260 | def finalize(path_source_dsk, path_destination_dsk): 261 | counter = 0 262 | GPIO.output(led_pin, False) 263 | time.sleep(1) 264 | while counter < 4: 265 | GPIO.output(led_pin, True) 266 | time.sleep(0.1) 267 | GPIO.output(led_pin, False) 268 | time.sleep(0.1) 269 | GPIO.output(led_pin, True) 270 | time.sleep(0.1) 271 | GPIO.output(led_pin, False) 272 | time.sleep(0.1) 273 | GPIO.output(led_pin, True) 274 | time.sleep(0.1) 275 | GPIO.output(led_pin, False) 276 | time.sleep(0.6) 277 | counter += 1 278 | # GPIO.cleanup() 279 | command_1 = 'sudo eject ' + path_source_dsk 280 | command_2 = 'sudo eject ' + path_destination_dsk.split('/PiBackup')[0] 281 | os.system(command_1) 282 | time.sleep(0.5) 283 | os.system(command_2) 284 | print('\n' + "End (Disks unmounted!)") 285 | 286 | def start_pibackup(): 287 | print("***** PiBackup *****" + '\n') 288 | path_source_disk, path_destination_disk = check_connected_disks() 289 | s_files, path_s_files, d_files, path_d_files = creating_file_list(path_source_disk, path_destination_disk) 290 | files_to_copy, path_files_to_copy = list_analysis(s_files, path_s_files, d_files, path_d_files, path_destination_disk) 291 | if len(files_to_copy) == 0: 292 | print("\nNo new files to backup") 293 | else: 294 | copying(files_to_copy, path_files_to_copy, d_files, path_destination_disk) 295 | sort_files_by_exif_data(path_destination_disk) 296 | separate_files_by_extension(path_destination_disk) 297 | finalize(path_source_disk, path_destination_disk) 298 | 299 | 300 | ####################################### PiBackup ####################################### 301 | start_pibackup() -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | GNU GENERAL PUBLIC LICENSE 2 | Version 3, 29 June 2007 3 | 4 | Copyright (C) 2007 Free Software Foundation, Inc. 5 | Everyone is permitted to copy and distribute verbatim copies 6 | of this license document, but changing it is not allowed. 7 | 8 | Preamble 9 | 10 | The GNU General Public License is a free, copyleft license for 11 | software and other kinds of works. 12 | 13 | The licenses for most software and other practical works are designed 14 | to take away your freedom to share and change the works. By contrast, 15 | the GNU General Public License is intended to guarantee your freedom to 16 | share and change all versions of a program--to make sure it remains free 17 | software for all its users. We, the Free Software Foundation, use the 18 | GNU General Public License for most of our software; it applies also to 19 | any other work released this way by its authors. You can apply it to 20 | your programs, too. 21 | 22 | When we speak of free software, we are referring to freedom, not 23 | price. Our General Public Licenses are designed to make sure that you 24 | have the freedom to distribute copies of free software (and charge for 25 | them if you wish), that you receive source code or can get it if you 26 | want it, that you can change the software or use pieces of it in new 27 | free programs, and that you know you can do these things. 28 | 29 | To protect your rights, we need to prevent others from denying you 30 | these rights or asking you to surrender the rights. Therefore, you have 31 | certain responsibilities if you distribute copies of the software, or if 32 | you modify it: responsibilities to respect the freedom of others. 33 | 34 | For example, if you distribute copies of such a program, whether 35 | gratis or for a fee, you must pass on to the recipients the same 36 | freedoms that you received. You must make sure that they, too, receive 37 | or can get the source code. And you must show them these terms so they 38 | know their rights. 39 | 40 | Developers that use the GNU GPL protect your rights with two steps: 41 | (1) assert copyright on the software, and (2) offer you this License 42 | giving you legal permission to copy, distribute and/or modify it. 43 | 44 | For the developers' and authors' protection, the GPL clearly explains 45 | that there is no warranty for this free software. For both users' and 46 | authors' sake, the GPL requires that modified versions be marked as 47 | changed, so that their problems will not be attributed erroneously to 48 | authors of previous versions. 49 | 50 | Some devices are designed to deny users access to install or run 51 | modified versions of the software inside them, although the manufacturer 52 | can do so. This is fundamentally incompatible with the aim of 53 | protecting users' freedom to change the software. The systematic 54 | pattern of such abuse occurs in the area of products for individuals to 55 | use, which is precisely where it is most unacceptable. Therefore, we 56 | have designed this version of the GPL to prohibit the practice for those 57 | products. If such problems arise substantially in other domains, we 58 | stand ready to extend this provision to those domains in future versions 59 | of the GPL, as needed to protect the freedom of users. 60 | 61 | Finally, every program is threatened constantly by software patents. 62 | States should not allow patents to restrict development and use of 63 | software on general-purpose computers, but in those that do, we wish to 64 | avoid the special danger that patents applied to a free program could 65 | make it effectively proprietary. To prevent this, the GPL assures that 66 | patents cannot be used to render the program non-free. 67 | 68 | The precise terms and conditions for copying, distribution and 69 | modification follow. 70 | 71 | TERMS AND CONDITIONS 72 | 73 | 0. Definitions. 74 | 75 | "This License" refers to version 3 of the GNU General Public License. 76 | 77 | "Copyright" also means copyright-like laws that apply to other kinds of 78 | works, such as semiconductor masks. 79 | 80 | "The Program" refers to any copyrightable work licensed under this 81 | License. Each licensee is addressed as "you". "Licensees" and 82 | "recipients" may be individuals or organizations. 83 | 84 | To "modify" a work means to copy from or adapt all or part of the work 85 | in a fashion requiring copyright permission, other than the making of an 86 | exact copy. The resulting work is called a "modified version" of the 87 | earlier work or a work "based on" the earlier work. 88 | 89 | A "covered work" means either the unmodified Program or a work based 90 | on the Program. 91 | 92 | To "propagate" a work means to do anything with it that, without 93 | permission, would make you directly or secondarily liable for 94 | infringement under applicable copyright law, except executing it on a 95 | computer or modifying a private copy. Propagation includes copying, 96 | distribution (with or without modification), making available to the 97 | public, and in some countries other activities as well. 98 | 99 | To "convey" a work means any kind of propagation that enables other 100 | parties to make or receive copies. Mere interaction with a user through 101 | a computer network, with no transfer of a copy, is not conveying. 102 | 103 | An interactive user interface displays "Appropriate Legal Notices" 104 | to the extent that it includes a convenient and prominently visible 105 | feature that (1) displays an appropriate copyright notice, and (2) 106 | tells the user that there is no warranty for the work (except to the 107 | extent that warranties are provided), that licensees may convey the 108 | work under this License, and how to view a copy of this License. If 109 | the interface presents a list of user commands or options, such as a 110 | menu, a prominent item in the list meets this criterion. 111 | 112 | 1. Source Code. 113 | 114 | The "source code" for a work means the preferred form of the work 115 | for making modifications to it. "Object code" means any non-source 116 | form of a work. 117 | 118 | A "Standard Interface" means an interface that either is an official 119 | standard defined by a recognized standards body, or, in the case of 120 | interfaces specified for a particular programming language, one that 121 | is widely used among developers working in that language. 122 | 123 | The "System Libraries" of an executable work include anything, other 124 | than the work as a whole, that (a) is included in the normal form of 125 | packaging a Major Component, but which is not part of that Major 126 | Component, and (b) serves only to enable use of the work with that 127 | Major Component, or to implement a Standard Interface for which an 128 | implementation is available to the public in source code form. A 129 | "Major Component", in this context, means a major essential component 130 | (kernel, window system, and so on) of the specific operating system 131 | (if any) on which the executable work runs, or a compiler used to 132 | produce the work, or an object code interpreter used to run it. 133 | 134 | The "Corresponding Source" for a work in object code form means all 135 | the source code needed to generate, install, and (for an executable 136 | work) run the object code and to modify the work, including scripts to 137 | control those activities. However, it does not include the work's 138 | System Libraries, or general-purpose tools or generally available free 139 | programs which are used unmodified in performing those activities but 140 | which are not part of the work. For example, Corresponding Source 141 | includes interface definition files associated with source files for 142 | the work, and the source code for shared libraries and dynamically 143 | linked subprograms that the work is specifically designed to require, 144 | such as by intimate data communication or control flow between those 145 | subprograms and other parts of the work. 146 | 147 | The Corresponding Source need not include anything that users 148 | can regenerate automatically from other parts of the Corresponding 149 | Source. 150 | 151 | The Corresponding Source for a work in source code form is that 152 | same work. 153 | 154 | 2. Basic Permissions. 155 | 156 | All rights granted under this License are granted for the term of 157 | copyright on the Program, and are irrevocable provided the stated 158 | conditions are met. This License explicitly affirms your unlimited 159 | permission to run the unmodified Program. The output from running a 160 | covered work is covered by this License only if the output, given its 161 | content, constitutes a covered work. This License acknowledges your 162 | rights of fair use or other equivalent, as provided by copyright law. 163 | 164 | You may make, run and propagate covered works that you do not 165 | convey, without conditions so long as your license otherwise remains 166 | in force. You may convey covered works to others for the sole purpose 167 | of having them make modifications exclusively for you, or provide you 168 | with facilities for running those works, provided that you comply with 169 | the terms of this License in conveying all material for which you do 170 | not control copyright. Those thus making or running the covered works 171 | for you must do so exclusively on your behalf, under your direction 172 | and control, on terms that prohibit them from making any copies of 173 | your copyrighted material outside their relationship with you. 174 | 175 | Conveying under any other circumstances is permitted solely under 176 | the conditions stated below. Sublicensing is not allowed; section 10 177 | makes it unnecessary. 178 | 179 | 3. Protecting Users' Legal Rights From Anti-Circumvention Law. 180 | 181 | No covered work shall be deemed part of an effective technological 182 | measure under any applicable law fulfilling obligations under article 183 | 11 of the WIPO copyright treaty adopted on 20 December 1996, or 184 | similar laws prohibiting or restricting circumvention of such 185 | measures. 186 | 187 | When you convey a covered work, you waive any legal power to forbid 188 | circumvention of technological measures to the extent such circumvention 189 | is effected by exercising rights under this License with respect to 190 | the covered work, and you disclaim any intention to limit operation or 191 | modification of the work as a means of enforcing, against the work's 192 | users, your or third parties' legal rights to forbid circumvention of 193 | technological measures. 194 | 195 | 4. Conveying Verbatim Copies. 196 | 197 | You may convey verbatim copies of the Program's source code as you 198 | receive it, in any medium, provided that you conspicuously and 199 | appropriately publish on each copy an appropriate copyright notice; 200 | keep intact all notices stating that this License and any 201 | non-permissive terms added in accord with section 7 apply to the code; 202 | keep intact all notices of the absence of any warranty; and give all 203 | recipients a copy of this License along with the Program. 204 | 205 | You may charge any price or no price for each copy that you convey, 206 | and you may offer support or warranty protection for a fee. 207 | 208 | 5. Conveying Modified Source Versions. 209 | 210 | You may convey a work based on the Program, or the modifications to 211 | produce it from the Program, in the form of source code under the 212 | terms of section 4, provided that you also meet all of these conditions: 213 | 214 | a) The work must carry prominent notices stating that you modified 215 | it, and giving a relevant date. 216 | 217 | b) The work must carry prominent notices stating that it is 218 | released under this License and any conditions added under section 219 | 7. This requirement modifies the requirement in section 4 to 220 | "keep intact all notices". 221 | 222 | c) You must license the entire work, as a whole, under this 223 | License to anyone who comes into possession of a copy. This 224 | License will therefore apply, along with any applicable section 7 225 | additional terms, to the whole of the work, and all its parts, 226 | regardless of how they are packaged. This License gives no 227 | permission to license the work in any other way, but it does not 228 | invalidate such permission if you have separately received it. 229 | 230 | d) If the work has interactive user interfaces, each must display 231 | Appropriate Legal Notices; however, if the Program has interactive 232 | interfaces that do not display Appropriate Legal Notices, your 233 | work need not make them do so. 234 | 235 | A compilation of a covered work with other separate and independent 236 | works, which are not by their nature extensions of the covered work, 237 | and which are not combined with it such as to form a larger program, 238 | in or on a volume of a storage or distribution medium, is called an 239 | "aggregate" if the compilation and its resulting copyright are not 240 | used to limit the access or legal rights of the compilation's users 241 | beyond what the individual works permit. Inclusion of a covered work 242 | in an aggregate does not cause this License to apply to the other 243 | parts of the aggregate. 244 | 245 | 6. Conveying Non-Source Forms. 246 | 247 | You may convey a covered work in object code form under the terms 248 | of sections 4 and 5, provided that you also convey the 249 | machine-readable Corresponding Source under the terms of this License, 250 | in one of these ways: 251 | 252 | a) Convey the object code in, or embodied in, a physical product 253 | (including a physical distribution medium), accompanied by the 254 | Corresponding Source fixed on a durable physical medium 255 | customarily used for software interchange. 256 | 257 | b) Convey the object code in, or embodied in, a physical product 258 | (including a physical distribution medium), accompanied by a 259 | written offer, valid for at least three years and valid for as 260 | long as you offer spare parts or customer support for that product 261 | model, to give anyone who possesses the object code either (1) a 262 | copy of the Corresponding Source for all the software in the 263 | product that is covered by this License, on a durable physical 264 | medium customarily used for software interchange, for a price no 265 | more than your reasonable cost of physically performing this 266 | conveying of source, or (2) access to copy the 267 | Corresponding Source from a network server at no charge. 268 | 269 | c) Convey individual copies of the object code with a copy of the 270 | written offer to provide the Corresponding Source. This 271 | alternative is allowed only occasionally and noncommercially, and 272 | only if you received the object code with such an offer, in accord 273 | with subsection 6b. 274 | 275 | d) Convey the object code by offering access from a designated 276 | place (gratis or for a charge), and offer equivalent access to the 277 | Corresponding Source in the same way through the same place at no 278 | further charge. You need not require recipients to copy the 279 | Corresponding Source along with the object code. If the place to 280 | copy the object code is a network server, the Corresponding Source 281 | may be on a different server (operated by you or a third party) 282 | that supports equivalent copying facilities, provided you maintain 283 | clear directions next to the object code saying where to find the 284 | Corresponding Source. Regardless of what server hosts the 285 | Corresponding Source, you remain obligated to ensure that it is 286 | available for as long as needed to satisfy these requirements. 287 | 288 | e) Convey the object code using peer-to-peer transmission, provided 289 | you inform other peers where the object code and Corresponding 290 | Source of the work are being offered to the general public at no 291 | charge under subsection 6d. 292 | 293 | A separable portion of the object code, whose source code is excluded 294 | from the Corresponding Source as a System Library, need not be 295 | included in conveying the object code work. 296 | 297 | A "User Product" is either (1) a "consumer product", which means any 298 | tangible personal property which is normally used for personal, family, 299 | or household purposes, or (2) anything designed or sold for incorporation 300 | into a dwelling. In determining whether a product is a consumer product, 301 | doubtful cases shall be resolved in favor of coverage. For a particular 302 | product received by a particular user, "normally used" refers to a 303 | typical or common use of that class of product, regardless of the status 304 | of the particular user or of the way in which the particular user 305 | actually uses, or expects or is expected to use, the product. A product 306 | is a consumer product regardless of whether the product has substantial 307 | commercial, industrial or non-consumer uses, unless such uses represent 308 | the only significant mode of use of the product. 309 | 310 | "Installation Information" for a User Product means any methods, 311 | procedures, authorization keys, or other information required to install 312 | and execute modified versions of a covered work in that User Product from 313 | a modified version of its Corresponding Source. The information must 314 | suffice to ensure that the continued functioning of the modified object 315 | code is in no case prevented or interfered with solely because 316 | modification has been made. 317 | 318 | If you convey an object code work under this section in, or with, or 319 | specifically for use in, a User Product, and the conveying occurs as 320 | part of a transaction in which the right of possession and use of the 321 | User Product is transferred to the recipient in perpetuity or for a 322 | fixed term (regardless of how the transaction is characterized), the 323 | Corresponding Source conveyed under this section must be accompanied 324 | by the Installation Information. But this requirement does not apply 325 | if neither you nor any third party retains the ability to install 326 | modified object code on the User Product (for example, the work has 327 | been installed in ROM). 328 | 329 | The requirement to provide Installation Information does not include a 330 | requirement to continue to provide support service, warranty, or updates 331 | for a work that has been modified or installed by the recipient, or for 332 | the User Product in which it has been modified or installed. Access to a 333 | network may be denied when the modification itself materially and 334 | adversely affects the operation of the network or violates the rules and 335 | protocols for communication across the network. 336 | 337 | Corresponding Source conveyed, and Installation Information provided, 338 | in accord with this section must be in a format that is publicly 339 | documented (and with an implementation available to the public in 340 | source code form), and must require no special password or key for 341 | unpacking, reading or copying. 342 | 343 | 7. Additional Terms. 344 | 345 | "Additional permissions" are terms that supplement the terms of this 346 | License by making exceptions from one or more of its conditions. 347 | Additional permissions that are applicable to the entire Program shall 348 | be treated as though they were included in this License, to the extent 349 | that they are valid under applicable law. If additional permissions 350 | apply only to part of the Program, that part may be used separately 351 | under those permissions, but the entire Program remains governed by 352 | this License without regard to the additional permissions. 353 | 354 | When you convey a copy of a covered work, you may at your option 355 | remove any additional permissions from that copy, or from any part of 356 | it. (Additional permissions may be written to require their own 357 | removal in certain cases when you modify the work.) You may place 358 | additional permissions on material, added by you to a covered work, 359 | for which you have or can give appropriate copyright permission. 360 | 361 | Notwithstanding any other provision of this License, for material you 362 | add to a covered work, you may (if authorized by the copyright holders of 363 | that material) supplement the terms of this License with terms: 364 | 365 | a) Disclaiming warranty or limiting liability differently from the 366 | terms of sections 15 and 16 of this License; or 367 | 368 | b) Requiring preservation of specified reasonable legal notices or 369 | author attributions in that material or in the Appropriate Legal 370 | Notices displayed by works containing it; or 371 | 372 | c) Prohibiting misrepresentation of the origin of that material, or 373 | requiring that modified versions of such material be marked in 374 | reasonable ways as different from the original version; or 375 | 376 | d) Limiting the use for publicity purposes of names of licensors or 377 | authors of the material; or 378 | 379 | e) Declining to grant rights under trademark law for use of some 380 | trade names, trademarks, or service marks; or 381 | 382 | f) Requiring indemnification of licensors and authors of that 383 | material by anyone who conveys the material (or modified versions of 384 | it) with contractual assumptions of liability to the recipient, for 385 | any liability that these contractual assumptions directly impose on 386 | those licensors and authors. 387 | 388 | All other non-permissive additional terms are considered "further 389 | restrictions" within the meaning of section 10. If the Program as you 390 | received it, or any part of it, contains a notice stating that it is 391 | governed by this License along with a term that is a further 392 | restriction, you may remove that term. If a license document contains 393 | a further restriction but permits relicensing or conveying under this 394 | License, you may add to a covered work material governed by the terms 395 | of that license document, provided that the further restriction does 396 | not survive such relicensing or conveying. 397 | 398 | If you add terms to a covered work in accord with this section, you 399 | must place, in the relevant source files, a statement of the 400 | additional terms that apply to those files, or a notice indicating 401 | where to find the applicable terms. 402 | 403 | Additional terms, permissive or non-permissive, may be stated in the 404 | form of a separately written license, or stated as exceptions; 405 | the above requirements apply either way. 406 | 407 | 8. Termination. 408 | 409 | You may not propagate or modify a covered work except as expressly 410 | provided under this License. Any attempt otherwise to propagate or 411 | modify it is void, and will automatically terminate your rights under 412 | this License (including any patent licenses granted under the third 413 | paragraph of section 11). 414 | 415 | However, if you cease all violation of this License, then your 416 | license from a particular copyright holder is reinstated (a) 417 | provisionally, unless and until the copyright holder explicitly and 418 | finally terminates your license, and (b) permanently, if the copyright 419 | holder fails to notify you of the violation by some reasonable means 420 | prior to 60 days after the cessation. 421 | 422 | Moreover, your license from a particular copyright holder is 423 | reinstated permanently if the copyright holder notifies you of the 424 | violation by some reasonable means, this is the first time you have 425 | received notice of violation of this License (for any work) from that 426 | copyright holder, and you cure the violation prior to 30 days after 427 | your receipt of the notice. 428 | 429 | Termination of your rights under this section does not terminate the 430 | licenses of parties who have received copies or rights from you under 431 | this License. If your rights have been terminated and not permanently 432 | reinstated, you do not qualify to receive new licenses for the same 433 | material under section 10. 434 | 435 | 9. Acceptance Not Required for Having Copies. 436 | 437 | You are not required to accept this License in order to receive or 438 | run a copy of the Program. Ancillary propagation of a covered work 439 | occurring solely as a consequence of using peer-to-peer transmission 440 | to receive a copy likewise does not require acceptance. However, 441 | nothing other than this License grants you permission to propagate or 442 | modify any covered work. These actions infringe copyright if you do 443 | not accept this License. Therefore, by modifying or propagating a 444 | covered work, you indicate your acceptance of this License to do so. 445 | 446 | 10. Automatic Licensing of Downstream Recipients. 447 | 448 | Each time you convey a covered work, the recipient automatically 449 | receives a license from the original licensors, to run, modify and 450 | propagate that work, subject to this License. You are not responsible 451 | for enforcing compliance by third parties with this License. 452 | 453 | An "entity transaction" is a transaction transferring control of an 454 | organization, or substantially all assets of one, or subdividing an 455 | organization, or merging organizations. If propagation of a covered 456 | work results from an entity transaction, each party to that 457 | transaction who receives a copy of the work also receives whatever 458 | licenses to the work the party's predecessor in interest had or could 459 | give under the previous paragraph, plus a right to possession of the 460 | Corresponding Source of the work from the predecessor in interest, if 461 | the predecessor has it or can get it with reasonable efforts. 462 | 463 | You may not impose any further restrictions on the exercise of the 464 | rights granted or affirmed under this License. For example, you may 465 | not impose a license fee, royalty, or other charge for exercise of 466 | rights granted under this License, and you may not initiate litigation 467 | (including a cross-claim or counterclaim in a lawsuit) alleging that 468 | any patent claim is infringed by making, using, selling, offering for 469 | sale, or importing the Program or any portion of it. 470 | 471 | 11. Patents. 472 | 473 | A "contributor" is a copyright holder who authorizes use under this 474 | License of the Program or a work on which the Program is based. The 475 | work thus licensed is called the contributor's "contributor version". 476 | 477 | A contributor's "essential patent claims" are all patent claims 478 | owned or controlled by the contributor, whether already acquired or 479 | hereafter acquired, that would be infringed by some manner, permitted 480 | by this License, of making, using, or selling its contributor version, 481 | but do not include claims that would be infringed only as a 482 | consequence of further modification of the contributor version. For 483 | purposes of this definition, "control" includes the right to grant 484 | patent sublicenses in a manner consistent with the requirements of 485 | this License. 486 | 487 | Each contributor grants you a non-exclusive, worldwide, royalty-free 488 | patent license under the contributor's essential patent claims, to 489 | make, use, sell, offer for sale, import and otherwise run, modify and 490 | propagate the contents of its contributor version. 491 | 492 | In the following three paragraphs, a "patent license" is any express 493 | agreement or commitment, however denominated, not to enforce a patent 494 | (such as an express permission to practice a patent or covenant not to 495 | sue for patent infringement). To "grant" such a patent license to a 496 | party means to make such an agreement or commitment not to enforce a 497 | patent against the party. 498 | 499 | If you convey a covered work, knowingly relying on a patent license, 500 | and the Corresponding Source of the work is not available for anyone 501 | to copy, free of charge and under the terms of this License, through a 502 | publicly available network server or other readily accessible means, 503 | then you must either (1) cause the Corresponding Source to be so 504 | available, or (2) arrange to deprive yourself of the benefit of the 505 | patent license for this particular work, or (3) arrange, in a manner 506 | consistent with the requirements of this License, to extend the patent 507 | license to downstream recipients. "Knowingly relying" means you have 508 | actual knowledge that, but for the patent license, your conveying the 509 | covered work in a country, or your recipient's use of the covered work 510 | in a country, would infringe one or more identifiable patents in that 511 | country that you have reason to believe are valid. 512 | 513 | If, pursuant to or in connection with a single transaction or 514 | arrangement, you convey, or propagate by procuring conveyance of, a 515 | covered work, and grant a patent license to some of the parties 516 | receiving the covered work authorizing them to use, propagate, modify 517 | or convey a specific copy of the covered work, then the patent license 518 | you grant is automatically extended to all recipients of the covered 519 | work and works based on it. 520 | 521 | A patent license is "discriminatory" if it does not include within 522 | the scope of its coverage, prohibits the exercise of, or is 523 | conditioned on the non-exercise of one or more of the rights that are 524 | specifically granted under this License. You may not convey a covered 525 | work if you are a party to an arrangement with a third party that is 526 | in the business of distributing software, under which you make payment 527 | to the third party based on the extent of your activity of conveying 528 | the work, and under which the third party grants, to any of the 529 | parties who would receive the covered work from you, a discriminatory 530 | patent license (a) in connection with copies of the covered work 531 | conveyed by you (or copies made from those copies), or (b) primarily 532 | for and in connection with specific products or compilations that 533 | contain the covered work, unless you entered into that arrangement, 534 | or that patent license was granted, prior to 28 March 2007. 535 | 536 | Nothing in this License shall be construed as excluding or limiting 537 | any implied license or other defenses to infringement that may 538 | otherwise be available to you under applicable patent law. 539 | 540 | 12. No Surrender of Others' Freedom. 541 | 542 | If conditions are imposed on you (whether by court order, agreement or 543 | otherwise) that contradict the conditions of this License, they do not 544 | excuse you from the conditions of this License. If you cannot convey a 545 | covered work so as to satisfy simultaneously your obligations under this 546 | License and any other pertinent obligations, then as a consequence you may 547 | not convey it at all. For example, if you agree to terms that obligate you 548 | to collect a royalty for further conveying from those to whom you convey 549 | the Program, the only way you could satisfy both those terms and this 550 | License would be to refrain entirely from conveying the Program. 551 | 552 | 13. Use with the GNU Affero General Public License. 553 | 554 | Notwithstanding any other provision of this License, you have 555 | permission to link or combine any covered work with a work licensed 556 | under version 3 of the GNU Affero General Public License into a single 557 | combined work, and to convey the resulting work. The terms of this 558 | License will continue to apply to the part which is the covered work, 559 | but the special requirements of the GNU Affero General Public License, 560 | section 13, concerning interaction through a network will apply to the 561 | combination as such. 562 | 563 | 14. Revised Versions of this License. 564 | 565 | The Free Software Foundation may publish revised and/or new versions of 566 | the GNU General Public License from time to time. Such new versions will 567 | be similar in spirit to the present version, but may differ in detail to 568 | address new problems or concerns. 569 | 570 | Each version is given a distinguishing version number. If the 571 | Program specifies that a certain numbered version of the GNU General 572 | Public License "or any later version" applies to it, you have the 573 | option of following the terms and conditions either of that numbered 574 | version or of any later version published by the Free Software 575 | Foundation. If the Program does not specify a version number of the 576 | GNU General Public License, you may choose any version ever published 577 | by the Free Software Foundation. 578 | 579 | If the Program specifies that a proxy can decide which future 580 | versions of the GNU General Public License can be used, that proxy's 581 | public statement of acceptance of a version permanently authorizes you 582 | to choose that version for the Program. 583 | 584 | Later license versions may give you additional or different 585 | permissions. However, no additional obligations are imposed on any 586 | author or copyright holder as a result of your choosing to follow a 587 | later version. 588 | 589 | 15. Disclaimer of Warranty. 590 | 591 | THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY 592 | APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT 593 | HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY 594 | OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, 595 | THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR 596 | PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM 597 | IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF 598 | ALL NECESSARY SERVICING, REPAIR OR CORRECTION. 599 | 600 | 16. Limitation of Liability. 601 | 602 | IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING 603 | WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS 604 | THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY 605 | GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE 606 | USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF 607 | DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD 608 | PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), 609 | EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF 610 | SUCH DAMAGES. 611 | 612 | 17. Interpretation of Sections 15 and 16. 613 | 614 | If the disclaimer of warranty and limitation of liability provided 615 | above cannot be given local legal effect according to their terms, 616 | reviewing courts shall apply local law that most closely approximates 617 | an absolute waiver of all civil liability in connection with the 618 | Program, unless a warranty or assumption of liability accompanies a 619 | copy of the Program in return for a fee. 620 | 621 | END OF TERMS AND CONDITIONS 622 | 623 | How to Apply These Terms to Your New Programs 624 | 625 | If you develop a new program, and you want it to be of the greatest 626 | possible use to the public, the best way to achieve this is to make it 627 | free software which everyone can redistribute and change under these terms. 628 | 629 | To do so, attach the following notices to the program. It is safest 630 | to attach them to the start of each source file to most effectively 631 | state the exclusion of warranty; and each file should have at least 632 | the "copyright" line and a pointer to where the full notice is found. 633 | 634 | 635 | Copyright (C) 636 | 637 | This program is free software: you can redistribute it and/or modify 638 | it under the terms of the GNU General Public License as published by 639 | the Free Software Foundation, either version 3 of the License, or 640 | (at your option) any later version. 641 | 642 | This program is distributed in the hope that it will be useful, 643 | but WITHOUT ANY WARRANTY; without even the implied warranty of 644 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 645 | GNU General Public License for more details. 646 | 647 | You should have received a copy of the GNU General Public License 648 | along with this program. If not, see . 649 | 650 | Also add information on how to contact you by electronic and paper mail. 651 | 652 | If the program does terminal interaction, make it output a short 653 | notice like this when it starts in an interactive mode: 654 | 655 | Copyright (C) 656 | This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'. 657 | This is free software, and you are welcome to redistribute it 658 | under certain conditions; type `show c' for details. 659 | 660 | The hypothetical commands `show w' and `show c' should show the appropriate 661 | parts of the General Public License. Of course, your program's commands 662 | might be different; for a GUI interface, you would use an "about box". 663 | 664 | You should also get your employer (if you work as a programmer) or school, 665 | if any, to sign a "copyright disclaimer" for the program, if necessary. 666 | For more information on this, and how to apply and follow the GNU GPL, see 667 | . 668 | 669 | The GNU General Public License does not permit incorporating your program 670 | into proprietary programs. If your program is a subroutine library, you 671 | may consider it more useful to permit linking proprietary applications with 672 | the library. If this is what you want to do, use the GNU Lesser General 673 | Public License instead of this License. But first, please read 674 | . 675 | --------------------------------------------------------------------------------