Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #!/usr/bin/bash
- # wychodzę, jeżeli skrypt już działa
- if pidof -o %PPID -q -x `basename "$0"`; then
- echo -e "\n[BŁĄD]:\tskrypt jest już uruchomiony, wychodzę.\n"; exit 1
- fi
- # konfig
- KAMERA="http://109.233.191.130:8080/cam_5.jpg"
- FTP_SERWER="serwer"
- FTP_LOGIN="login"
- FTP_HASLO="haslo"
- PLIK="/htdocs/kamera/cam1.jpg"
- # "-s" debug off, "-v" debug on
- DEBUG="-s"
- PAUZA_SEKUNDY=10
- # liczniki
- BLAD_FTP=0; BLAD_KAM=0; OK=0; LICZ=1
- # funkcje
- wrzuc_jpg() {
- if [[ `curl "$DEBUG" --connect-timeout 10 --retry 3 --output /dev/null -I -w "%{http_code}:%{content_type}" "$KAMERA"` =~ ^200:image/jpeg.* ]]; then
- 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}"
- if [[ $? -eq 0 ]]; then
- (( OK++ ))
- else
- (( BLAD_FTP++ ))
- fi
- else
- (( BLAD_KAM++ ))
- fi
- if [[ "$DEBUG" == "-s" ]]; then
- 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} "
- fi
- }
- uruchom_normalnie() {
- while true; do wrzuc_jpg; sleep "$PAUZA_SEKUNDY"; done
- }
- weryfikuj_arg() {
- case "$DEBUG" in
- "-v" | "-s") ;;
- *) echo -e "\n[BŁĄD]:\tniewłaściwy argument \$DEBUG (\"${DEBUG}\"), dozwolone: \"-v\" i \"-s\"\n"; exit 1 ;;
- esac
- }
- start() {
- echo -en "\033[2K\r[INFO]: start ... "
- }
- # main
- weryfikuj_arg
- start
- case "$1" in
- "-c") wrzuc_jpg ;;
- "") uruchom_normalnie ;;
- *) echo -e "\n[BŁĄD]:\tnieobsługiwany parametr \"${1}\"\n" ;;
- esac
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement