media2import.sh 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156
  1. #
  2. # this is simple script for importing media files from source (such as memory cards)
  3. # to destination (such as local storage), creating date directories and renaming them by timestamp
  4. # of given file in desired format
  5. #
  6. #
  7. # Author: Anton TETERIN (https://og2k.com)
  8. # Source: https://github.com/InstallAndUse/Graphics
  9. #
  10. # History:
  11. # 2023-05-07 * init /A
  12. # 2023-05-08 + read flags from CLI /A
  13. # 2023-05-16 * moved from rsync to file 'for' itiration /A
  14. # 2023-06-27 * upgrading /A
  15. #
  16. function ts() {
  17. # change d
  18. ts=$(date)
  19. echo $(date )
  20. }
  21. # read flags
  22. usage () {
  23. echo "Usage: $0 -s - source, -d destination, -n note";
  24. exit 1;
  25. }
  26. while getopts s:d:n: flag
  27. do
  28. case "${flag}" in
  29. s) src=${OPTARG};;
  30. d) dst=${OPTARG};;
  31. n) note=${OPTARG};;
  32. ?) usage;;
  33. esac
  34. done
  35. # read source, by default current path (if not given)
  36. # assuming not recursive, only in-directory files will be imported
  37. if [ -z ${src} ]; then
  38. read -p "Source [$(pwd)]: " src
  39. if [ -z ${src} ]; then
  40. src="$(pwd)"
  41. fi
  42. fi
  43. # read destination, by default current path (if not given)
  44. if [ -z ${dst} ]; then
  45. read -p "Destination [$(pwd)]: " dst
  46. if [ -z ${dst} ]; then
  47. dst="$(pwd)"
  48. fi
  49. fi
  50. # read noteription, by default empty
  51. if [ -z ${note} ]; then
  52. read -p "Note of session/event: " note
  53. if [ -z ${note} ]; then
  54. note=""
  55. else
  56. # adding hyphen before noteription, if it is not empty
  57. note=" - ${note}"
  58. fi
  59. fi
  60. # source and destination can not be the same, exit
  61. if [ ${src} = ${dst} ]; then
  62. echo "Source and destination are the same, exiting..."
  63. exit 2
  64. fi
  65. # confirm
  66. echo "Source: [${src}]"
  67. echo "Destination: [${dst}]"
  68. echo "Note: [${note}]"
  69. read -p "Confirm (Y): " confirm
  70. if [ ${confirm} = "Y" ]; then
  71. echo "Reading source and beginning to move..."
  72. # check that source directory exists, otherwise - exit
  73. if ! [ -d ${src} ]; then
  74. echo "Source directory does not exist, exiting..."
  75. exit 2
  76. fi
  77. # check and create destination directory, if needed
  78. if [ -d ${dst} ]; then
  79. mkdir -p -m 700 ${dst}
  80. fi
  81. # # itirating files
  82. # for file in ${src}/*; do
  83. # # calculate total size for source files, as they will be copied (not recursive for directory)
  84. # done
  85. # echo "The size of all NN files is YY bytes (YY/1024 MB = YY/1024/104) GB."
  86. # src, dst total and free disk space before transfer
  87. # itirating files
  88. for file in ${src}/*; do
  89. filename="$(basename ${file})"
  90. # figure out when is the creation date
  91. file_mdate="$( stat -f %Sm -t %Y-%m-%d ${file} )"
  92. # create subdirectory for creation date
  93. mkdir -p ${dst}/${file_mdate}
  94. echo "[ $(ts) ]: src file : [${filename}], modification date is: ${file_mdate}, size: 11.5 MB"
  95. # linux/BSD check
  96. echo "sha256sum: [$( shasum -a 256 ${file} )]"
  97. echo "dst dir: [${dst}/${file_mdate}]"
  98. # main operation
  99. cp ${file} ${dst}/${file_mdate}
  100. echo "sha256sum: [$( shasum -a 256 ${dst}/${file_mdate}/${filename} )]"
  101. # if shasum is the same, remove file
  102. # add original file with fullpath to array:
  103. # files_src[]="${file}]"
  104. # add copied file with fullpath to array:
  105. # files_dst[]="${dst}/${file_mdate}/${filename}"
  106. done
  107. # src, dst total and free disk space before transfer
  108. # src, dst total and free disk space after copy
  109. # time taken to transfer
  110. # avarage transfer speed
  111. # unmount disk ?
  112. # diskutil unmount /Volumes/empty
  113. # open latest directory created?
  114. # TODO: output total amount of files and size
  115. # itirate files
  116. # read creation date of file
  117. #dst_subdir="${dst}/${file_creation_date}${note}"
  118. # read creation date and time of file
  119. #file_new_name="$(read creation date and time, format)-${file}"
  120. # output debug
  121. # hash before move
  122. # TODO: check if file exists
  123. # hash after
  124. # TODO: compare hashes, output result
  125. else
  126. # not confirmed
  127. echo "Operation is not confirmed."
  128. exit 1
  129. fi