/usr/share/plowshare/modules/filejoker.sh is in plowshare-modules 0~git20160124.8a8190d-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 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 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 | # Plowshare filejoker.net module
# by idleloop <idleloop@yahoo.com>, v1.0, Jan 2016
#
# This file is part of Plowshare.
#
# Plowshare is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# Plowshare is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with Plowshare. If not, see <http://www.gnu.org/licenses/>.
MODULE_FILEJOKER_REGEXP_URL='https\?://\(www\.\)\?filejoker\.net/[[:alnum:]]\+'
MODULE_FILEJOKER_DOWNLOAD_OPTIONS="
AUTH_FREE,b,auth-free,a=EMAIL:PASSWORD,Free account"
MODULE_FILEJOKER_DOWNLOAD_RESUME=yes
MODULE_FILEJOKER_DOWNLOAD_FINAL_LINK_NEEDS_COOKIE=unused
MODULE_FILEJOKER_DOWNLOAD_SUCCESSIVE_INTERVAL=
MODULE_FILEJOKER_PROBE_OPTIONS=""
# Output a filejoker file download URL
# $1: cookie file (unused here)
# $2: filejoker url
# stdout: real file download link
filejoker_download() {
local -r COOKIE_FILE=$1
local -r URL=$2
local -r BASE_URL='https://www.filejoker.net/'
local PAGE FILE_URL FILE_NAME WAIT_LINE WAIT_TIME
# no login support
#if [ -n "$AUTH_FREE" ]; then
# filejoker_login "$AUTH_FREE" "$COOKIE_FILE" "$BASE_URL" || return
# PAGE=$(curl -L -b "$COOKIE_FILE" -c "$COOKIE_FILE" "$URL") || return
#else
PAGE=$(curl -L -b "COOKIE_FILE" -c "$COOKIE_FILE" "$URL") || return
#fi
if match 'File Not Found' "$PAGE"; then
return $ERR_LINK_DEAD
fi
# We are sorry, but your download request can not be processed right now.
if match 'id="timeToWait"' "$PAGE"; then
WAIT_LINE=$(echo "$PAGE" | parse_tag 'timeToWait' span)
WAIT_TIME=${WAIT_LINE%% *}
if match 'minute' "$WAIT_LINE"; then
echo $(( WAIT_TIME * 60 ))
else
echo $((WAIT_TIME))
fi
return $ERR_LINK_TEMP_UNAVAILABLE
fi
FORM_HTML=$(grep_form_by_name "$PAGE" 'F22') || return
FORM_ID=$(parse_form_input_by_name 'id' <<< "$FORM_HTML") || return
FORM_OP=$(parse_form_input_by_name 'op' <<< "$FORM_HTML") || return
FORM_FILENAME=$(parse_form_input_by_name 'fname' <<< "$FORM_HTML") || return
FILE_NAME=$FORM_FILENAME
FORM_METHOD_F=$(parse_form_input_by_name 'method_free' <<< "$FORM_HTML") || return
FORM_ACTION=$FORM_ID
# request download
PAGE=$(curl -b "$COOKIE_FILE" -c "$COOKIE_FILE" -F "id=$FORM_ID" \
-F "op=$FORM_OP" \
-F "fname=$FORM_FILENAME" \
-F "usr_login=" \
-F "referer=" \
-F "method_free=$FORM_METHOD_F" \
"$URL") || return
# check for forced delay
if matchi 'Please wait .* until the next download' "$PAGE"; then
local HOURS MINS SECS
HOURS=$(echo "$PAGE" | \
parse_quiet 'Please wait .* until the next download' ' \([[:digit:]]\+\) hour')
MINS=$(echo "$PAGE" | \
parse_quiet 'Please wait .* until the next download' ' \([[:digit:]]\+\) minute')
SECS=$(echo "$PAGE" | \
parse_quiet 'Please wait .* until the next download' ', \([[:digit:]]\+\) second')
log_error 'Forced delay between downloads.'
echo $(( HOURS * 60 * 60 + MINS * 60 + SECS ))
return $ERR_LINK_TEMP_UNAVAILABLE
fi
# Free user can't download large files.
if match "Free user can't download large files" "$PAGE" ; then
return $ERR_LINK_NEED_PERMISSIONS
fi
# parse wait time
WAIT=$(parse_quiet 'Please Wait ' \
'Wait <.\+>\([[:digit:]]\+\)<.\+> seconds' <<< "$PAGE") || return
if [ -n "$WAIT" ]; then
wait $(( WAIT + 1 )) || return
fi
# check for and handle CAPTCHA (if any)
# Note: emulate 'grep_form_by_id_quiet'
FORM_HTML=$(grep_form_by_name "$PAGE" 'F1' 2>/dev/null)
log_debug $FORM_HTML
if [ -n "$FORM_HTML" ]; then
local RESP WORD ID CAPTCHA_DATA
if match 'recaptcha_image' "$FORM_HTML"; then
log_debug 'reCaptcha found'
local CHALL
local -r PUBKEY='6LetAu0SAAAAACCJkqZLvjNS4L7eSL8fGxr-Jzy2'
RESP=$(recaptcha_process $PUBKEY) || return
{ read WORD; read CHALL; read ID; } <<< "$RESP"
CAPTCHA_DATA="-F recaptcha_challenge_field=$CHALL -F recaptcha_response_field=$WORD"
else
log_error 'Unexpected content/captcha type. Site updated?'
return $ERR_FATAL
fi
log_debug "Captcha data: $CAPTCHA_DATA"
FORM_ID=$(parse_form_input_by_name 'id' <<< "$FORM_HTML") || return
#FORM_ACTION=$(parse_form_action <<< "$FORM_HTML") || return
FORM_OP=$(parse_form_input_by_name 'op' <<< "$FORM_HTML") || return
FORM_RAND=$(parse_form_input_by_name 'rand' <<< "$FORM_HTML") || return
PAGE=$(curl -b "$COOKIE_FILE" -c "$COOKIE_FILE" $CAPTCHA_DATA \
-F "op=$FORM_OP" -F "id=$FORM_ID" -F "rand=$FORM_RAND" \
-F 'referer=' -F "method_free=$FORM_METHOD_F" \
"$URL") || return
if match 'Wrong Captcha' "$PAGE"; then
log_error 'Wrong captcha'
captcha_nack "$ID"
return $ERR_CAPTCHA
fi
log_debug 'Correct captcha'
captcha_ack "$ID"
else
log_error 'Unexpected content. Site updated?'
return $ERR_FATAL
fi
parse_attr 'Download File' href <<< "$PAGE"
echo "$FILE_NAME"
}
# Probe a download URL
# $1: cookie file (unused here)
# $2: filejoker.net url
# $3: requested capability list
filejoker_probe() {
local -r REQ_IN=$3
local PAGE REQ_OUT FILE_SIZE
PAGE=$(curl --location "$URL") || return
# The file link that you requested is not valid (anymore).
if match 'File Not Found' "$PAGE"; then
return $ERR_LINK_DEAD
fi
# The file link that you requested is incorrect.
if ! match 'div class="name-size"' "$PAGE"; then
return $ERR_LINK_DEAD
fi
REQ_OUT=c
if [[ $REQ_IN = *f* ]]; then
echo "$PAGE" | parse_form_input_by_name 'fname' | html_to_utf8 && REQ_OUT="${REQ_OUT}f"
fi
if [[ $REQ_IN = *s* ]]; then
FILE_SIZE=$(echo "$PAGE" |
parse_all 'name-size' \
'[^0-9\.]\([0-9\.]\+[[:space:]]\?[KkMG]\?[bB]\)' 0) &&
FILE_SIZE=$(replace 'b' 'B' <<< $FILE_SIZE) &&
translate_size "${FILE_SIZE/,/}" && REQ_OUT="${REQ_OUT}s"
fi
if [[ $REQ_IN = *i* ]]; then
parse_form_input_by_name 'id' <<< "$PAGE" && REQ_OUT="${REQ_OUT}i"
fi
echo $REQ_OUT
}
|