Advertisement
orborbson

ftp_upload.sh

Dec 15th, 2024 (edited)
38
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 1.59 KB | Source Code | 0 0
  1. #!/usr/bin/bash
  2.  
  3. # wychodzę, jeżeli skrypt już działa
  4. if pidof -o %PPID -q -x `basename "$0"`; then
  5.     echo -e "\n[BŁĄD]:\tskrypt jest już uruchomiony, wychodzę.\n"; exit 1
  6. fi
  7.  
  8. # konfig
  9. KAMERA="http://109.233.191.130:8080/cam_5.jpg"
  10. FTP_SERWER="serwer"
  11. FTP_LOGIN="login"
  12. FTP_HASLO="haslo"
  13. PLIK="/htdocs/kamera/cam1.jpg"
  14.  
  15. # "-s" debug off, "-v" debug on
  16. DEBUG="-s"
  17. PAUZA_SEKUNDY=10
  18.  
  19. # liczniki
  20. BLAD_FTP=0; BLAD_KAM=0; OK=0; LICZ=1
  21.  
  22. # funkcje
  23. wrzuc_jpg() {
  24.     if [[ `curl "$DEBUG" --connect-timeout 10 --retry 3 --output /dev/null -I -w "%{http_code}:%{content_type}" "$KAMERA"` =~ ^200:image/jpeg.* ]]; then
  25.         curl "$DEBUG" --connect-timeout 15 --retry 3 --output - "$KAMERA" | curl "$DEBUG" --connect-timeout 15 --retry 3 --ftp-create-dirs -T - "ftp://${FTP_LOGIN}:${FTP_HASLO}@${FTP_SERWER}${PLIK}"
  26.         if [[ $? -eq 0 ]]; then
  27.             (( OK++ ))
  28.         else
  29.             (( BLAD_FTP++ ))
  30.         fi
  31.     else
  32.         (( BLAD_KAM++ ))
  33.     fi
  34.    
  35.     if [[ "$DEBUG" == "-s" ]]; then
  36.         echo -en "\033[2K\r[STATUS]: ($(( LICZ++ ))) => `date +"%Y-%m-%d %H:%M:%S"`\t\tOK: ${OK}\t\tBŁĄD_KAMERY: ${BLAD_KAM}\t\tBŁĄD_FTP: ${BLAD_FTP} "
  37.     fi
  38. }
  39.  
  40. uruchom_normalnie() {
  41.     while true; do wrzuc_jpg; sleep "$PAUZA_SEKUNDY"; done
  42. }
  43.  
  44. weryfikuj_arg() {
  45.     case "$DEBUG" in
  46.     "-v" | "-s") ;;
  47.     *) echo -e "\n[BŁĄD]:\tniewłaściwy argument \$DEBUG (\"${DEBUG}\"), dozwolone: \"-v\" i \"-s\"\n"; exit 1 ;;
  48.     esac
  49. }
  50.  
  51. start() {
  52.     echo -en "\033[2K\r[INFO]: start ... "
  53. }
  54.  
  55. # main
  56. weryfikuj_arg
  57. start
  58. case "$1" in
  59. "-c") wrzuc_jpg ;;
  60. "") uruchom_normalnie ;;
  61. *) echo -e "\n[BŁĄD]:\tnieobsługiwany parametr \"${1}\"\n" ;;
  62. esac
  63.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement