Update.
[scripts.git] / archivepics.sh
1 #!/bin/bash
2
3 #########################################################################
4 # This program is free software: you can redistribute it and/or modify  #
5 # it under the terms of the version 3 of the GNU General Public License #
6 # as published by the Free Software Foundation.                         #
7 #                                                                       #
8 # This program is distributed in the hope that it will be useful, but   #
9 # WITHOUT ANY WARRANTY; without even the implied warranty of            #
10 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU      #
11 # General Public License for more details.                              #
12 #                                                                       #
13 # You should have received a copy of the GNU General Public License     #
14 # along with this program. If not, see <http://www.gnu.org/licenses/>.  #
15 #                                                                       #
16 # Written by and Copyright (C) Francois Fleuret                         #
17 # Contact <francois@fleuret.org> for comments & bug reports             #
18 #########################################################################
19
20 # (1) Check that all JPG are larger than 1M if there is no
21 # corresponding MOV
22
23 # (2) Change the modification time to match the EXIF info (use the
24 # accompanying JPG for the MOV)
25
26 # (3) Move the JPG and MOV to an archive directory of the form
27 # ${IMAGE_ARCHIVE_DIR}/year/month, create the directory when necessary.
28
29 [[ ${archive_size_min} ]] || archive_size_min=1048576 # 1Mb
30
31 # if [[ -z $* ]] && [[ ${PHO_NOTE_1} ]]; then
32     # echo "$0 ${PHO_NOTE_1}"
33     # $0 ${PHO_NOTE_1}
34     # exit 0
35 # fi
36
37 MONTHS=("Jan" "Feb" "Mar" "Apr" "May" "Jun" "Jul" "Aug" "Sep" "Oct" "Nov" "Dec")
38
39 export ARCHIVED_PICS="$@"
40
41 set -e
42
43 if [[ ! ${IMAGE_ARCHIVE_DIR} ]]; then
44     echo "You have to set \$IMAGE_ARCHIVE_DIR" >&2
45     exit 1
46 fi
47
48 # Checking the image sizes
49
50 for i in "$@"; do
51
52     if [[ ! -f ${i/JPG/MOV} ]] && [[ ! -f ${i/JPG/3gp} ]]; then
53
54         if [[ $(stat --printf=%s "$i") -lt ${archive_size_min} ]]; then
55             echo "Image $i is too small."
56             exit 1
57         fi
58
59     fi
60
61 done
62
63 # Setting the file modification date according to the exif tag
64
65 for i in "$@"; do
66
67     base=${i/%.???/}
68
69     if [[ -f ${base}.JPG ]]; then ref=${base}.JPG; fi
70     if [[ -f ${base}.jpg ]]; then ref=${base}.jpg; fi
71     if [[ -f ${base}.jpeg ]]; then ref=${base}.jpeg; fi
72
73     # echo "ref=${ref}"
74
75     if [[ -f ${ref} ]]; then
76
77         echo "Checking ${ref} date"
78
79         TAG_VALUE=$(exiv2 -P nv "${ref}" 2>/dev/null | grep ^DateTimeOriginal | \
80             sed -e "s/^[^ ]* *\([0-9]*\):\([0-9]*\):\([0-9]*\) *\([0-9]*\):\([0-9]*\):\([0-9]*\).*$/\1\2\3\4\5.\6/")
81
82         if [[ "${TAG_VALUE}" ]]; then
83             touch -t ${TAG_VALUE} "$i"
84         else
85             echo "No exif tag in $i, can not set the date properly."
86         fi
87
88         # TAG=$(exif --ifd=EXIF -t "Date and Time (original)" "${ref}" | grep Value)
89
90         # if [[ ${TAG} ]]; then
91             # TIMESTAMP=$(echo ${TAG} | sed -e \
92                 # "s/^ *Value: *\([0-9]*\):\([0-9]*\):\([0-9]*\) *\([0-9]*\):\([0-9]*\):\([0-9]*\).*$/\1\2\3\4\5.\6/")
93             # touch -t $TIMESTAMP "$i"
94         # else
95             # echo "No exif tag in $i, can not set the date properly."
96         # fi
97
98     else
99
100         timestamp=($(basename $i | sed -e "s/^VID_\([0-9][0-9][0-9][0-9]\)\([0-9][0-9]\)\([0-9][0-9]\)_\([0-9][0-9]\)\([0-9][0-9]\)\([0-9][0-9]\).*$/\1\2\3\4\5.\6/"))
101
102         if [[ "${timestamp}" ]]; then
103             echo "Setting time of $i to ${timestamp}"
104             touch -t ${timestamp} "$i"
105         else
106             echo "Can not guess date for $i."
107         fi
108
109     fi
110
111 done
112
113 # Moving the file to the proper archive directory, which is created
114 # first when needed
115
116 LOG_ARCHIVING=archive_$(date +%Y_%m_%d_%H:%M:%S).log
117
118 for i in "$@"; do
119
120     ARCHIVING_PATH=$(ls -l --time-style=+%Y/%b --format=verbose "$i" | awk '{ print $6 }')
121
122     mkdir -p ${IMAGE_ARCHIVE_DIR}/${ARCHIVING_PATH}
123
124     echo "Archiving ${IMAGE_ARCHIVE_DIR}/${ARCHIVING_PATH}/"$(basename "$i")
125
126     cp -p -i "$i" ${IMAGE_ARCHIVE_DIR}/${ARCHIVING_PATH} && \
127         echo "$i -> ${IMAGE_ARCHIVE_DIR}/${ARCHIVING_PATH}" >> ${LOG_ARCHIVING}
128
129 done